From f334297d388f7a1167c34b3f50bc0513f5c7cfac Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 25 May 2009 16:32:47 -0400 Subject: Bump version to 0.2.1.15-rc-dev. --- configure.in | 2 +- contrib/tor-mingw.nsi.in | 2 +- src/win32/orconfig.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.in b/configure.in index cdcb44717..ceca53f07 100644 --- a/configure.in +++ b/configure.in @@ -5,7 +5,7 @@ dnl Copyright (c) 2007-2008, The Tor Project, Inc. dnl See LICENSE for licensing information AC_INIT -AM_INIT_AUTOMAKE(tor, 0.2.1.15-rc) +AM_INIT_AUTOMAKE(tor, 0.2.1.15-rc-dev) AM_CONFIG_HEADER(orconfig.h) AC_CANONICAL_HOST diff --git a/contrib/tor-mingw.nsi.in b/contrib/tor-mingw.nsi.in index 723b89311..5d67768f6 100644 --- a/contrib/tor-mingw.nsi.in +++ b/contrib/tor-mingw.nsi.in @@ -9,7 +9,7 @@ !include "FileFunc.nsh" !insertmacro GetParameters -!define VERSION "0.2.1.15-rc" +!define VERSION "0.2.1.15-rc-dev" !define INSTALLER "tor-${VERSION}-win32.exe" !define WEBSITE "https://www.torproject.org/" !define LICENSE "LICENSE" diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h index 73c5aaed3..65f21f6d3 100644 --- a/src/win32/orconfig.h +++ b/src/win32/orconfig.h @@ -226,6 +226,6 @@ #define USING_TWOS_COMPLEMENT /* Version number of package */ -#define VERSION "0.2.1.15-rc" +#define VERSION "0.2.1.15-rc-dev" -- cgit v1.2.3 From 99c315a473bdeb25680d07f7aaca089a6c1f8ecb Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 25 May 2009 16:38:50 -0400 Subject: Use tor_socket_strerror in eventdns.c. Fixes bug 987. --- ChangeLog | 6 ++++++ src/or/eventdns.c | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index dafdf274a..2de570dbb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Changes in version 0.2.1.16-?? - 2009-??-?? + o Minor bugfixes (on 0.2.0.x): + - Log correct error messages for DNS-related network errors on + Windows. + + Changes in version 0.2.1.15-rc - 2009-05-25 o Major bugfixes (on 0.2.0.x): - Fix a timing-dependent, allocator-dependent, DNS-related crash bug diff --git a/src/or/eventdns.c b/src/or/eventdns.c index cd1330314..446414814 100644 --- a/src/or/eventdns.c +++ b/src/or/eventdns.c @@ -1299,7 +1299,7 @@ nameserver_read(struct nameserver *ns) { if (r < 0) { int err = last_error(ns->socket); if (error_is_eagain(err)) return; - nameserver_failed(ns, strerror(err)); + nameserver_failed(ns, tor_socket_strerror(err)); return; } /* XXX Match port too? */ @@ -1331,7 +1331,7 @@ server_port_read(struct evdns_server_port *s) { int err = last_error(s->socket); if (error_is_eagain(err)) return; log(EVDNS_LOG_WARN, "Error %s (%d) while reading request.", - strerror(err), err); + tor_socket_strerror(err), err); return; } request_parse(packet, r, s, (struct sockaddr*) &addr, addrlen); @@ -1350,7 +1350,7 @@ server_port_flush(struct evdns_server_port *port) int err = last_error(port->socket); if (error_is_eagain(err)) return; - log(EVDNS_LOG_WARN, "Error %s (%d) while writing response to port; dropping", strerror(err), err); + log(EVDNS_LOG_WARN, "Error %s (%d) while writing response to port; dropping", tor_socket_strerror(err), err); } if (server_request_free(req)) { /* we released the last reference to req->port. */ @@ -2063,7 +2063,7 @@ evdns_request_transmit_to(struct evdns_request *req, struct nameserver *server) if (r < 0) { int err = last_error(server->socket); if (error_is_eagain(err)) return 1; - nameserver_failed(req->ns, strerror(err)); + nameserver_failed(req->ns, tor_socket_strerror(err)); return 2; } else if (r != (ssize_t)req->request_len) { return 1; /* short write */ -- cgit v1.2.3 From 031ce86cd4615c29c42a9c8dc344ab819ac91978 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 27 May 2009 12:10:37 -0400 Subject: Add *.swp to .gitignore as vim's editor dropping. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index f5d2d4ee9..46917c311 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ \#*\# .#* *~ +*.swp # C stuff *.o # Diff droppings -- cgit v1.2.3 From 5f03d6c547629af73dea2cfdaf888bc3a7caab5d Mon Sep 17 00:00:00 2001 From: Karsten Loesing Date: Tue, 26 May 2009 21:41:42 +0200 Subject: Fix bug 932 even more. Ignore connections two hours after switching from bridge to relay or back. --- src/or/config.c | 2 +- src/or/geoip.c | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/or/config.c b/src/or/config.c index 25364b6a3..6030849a1 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1331,7 +1331,7 @@ options_act(or_options_t *old_options) if (! bool_eq(options->BridgeRelay, old_options->BridgeRelay)) { log_info(LD_GENERAL, "Bridge status changed. Forgetting GeoIP stats."); - geoip_remove_old_clients(time(NULL)+3600); + geoip_remove_old_clients(time(NULL)+(2*60*60)); } if (options_transition_affects_workers(old_options, options)) { diff --git a/src/or/geoip.c b/src/or/geoip.c index eb0d7e43f..e1477d4ea 100644 --- a/src/or/geoip.c +++ b/src/or/geoip.c @@ -308,6 +308,9 @@ geoip_note_client_seen(geoip_client_action_t action, if (action == GEOIP_CLIENT_CONNECT) { if (!(options->BridgeRelay && options->BridgeRecordUsageByCountry)) return; + /* Did we recently switch from bridge to relay or back? */ + if (client_history_starts > now) + return; } else { #ifndef ENABLE_GEOIP_STATS return; -- cgit v1.2.3 From 02a417d4e0dee629a0026b726d108fda7c9a0884 Mon Sep 17 00:00:00 2001 From: Karsten Loesing Date: Tue, 26 May 2009 22:02:52 +0200 Subject: Improve documentation for the last fix of bug 932. --- src/or/geoip.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/or/geoip.c b/src/or/geoip.c index e1477d4ea..aabbe2688 100644 --- a/src/or/geoip.c +++ b/src/or/geoip.c @@ -389,7 +389,10 @@ _remove_old_client_helper(struct clientmap_entry_t *ent, void *_cutoff) } } -/** Forget about all clients that haven't connected since cutoff. */ +/** Forget about all clients that haven't connected since cutoff. + * If cutoff is in the future, clients won't be added to the history + * until this time is reached. This is useful to prevent relays that switch + * to bridges from reporting unbelievable numbers of clients. */ void geoip_remove_old_clients(time_t cutoff) { -- cgit v1.2.3 From 1843f3936c7ee834a5974d1914bf749f8ea27e39 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 27 May 2009 14:11:38 -0400 Subject: Changelog entry for Karsten's bug-932 patch. --- ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index 2de570dbb..ef12f4385 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,10 @@ Changes in version 0.2.1.16-?? - 2009-??-?? - Log correct error messages for DNS-related network errors on Windows. + o Minor bugfixes (on 0.2.1.x): + - When switching back and forth between bridge mode, do not start + gathering GeoIP data until two hours have passed. + Changes in version 0.2.1.15-rc - 2009-05-25 o Major bugfixes (on 0.2.0.x): -- cgit v1.2.3 From f0453c45c8c3963762b208cfe4f6fb2e1e96cc34 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 27 May 2009 16:35:03 -0400 Subject: Spelling fixes in comments and strings --- src/common/mempool.c | 2 +- src/common/torgzip.c | 2 +- src/common/tortls.c | 10 +++++----- src/common/util.c | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/common/mempool.c b/src/common/mempool.c index bbfa3c256..60fcb2ca7 100644 --- a/src/common/mempool.c +++ b/src/common/mempool.c @@ -54,7 +54,7 @@ * - One pointer overhead per allocated thing. (The alternative is * something like glib's use of an RB-tree to keep track of what * chunk any given piece of memory is in.) - * - Only aligns allocated things to void* level: redefign ALIGNMENT_TYPE + * - Only aligns allocated things to void* level: redefine ALIGNMENT_TYPE * if you need doubles. * - Could probably be optimized a bit; the representation contains * a bit more info than it really needs to have. diff --git a/src/common/torgzip.c b/src/common/torgzip.c index 196f5521f..762f2e71b 100644 --- a/src/common/torgzip.c +++ b/src/common/torgzip.c @@ -365,7 +365,7 @@ tor_zlib_new(int compress, compress_method_t method) return NULL; } -/** Compress/decommpress some bytes using state. Read up to +/** Compress/decompress some bytes using state. Read up to * *in_len bytes from *in, and write up to *out_len bytes * to *out, adjusting the values as we go. If finish is true, * we've reached the end of the input. diff --git a/src/common/tortls.c b/src/common/tortls.c index 581b35848..f14eab18a 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -26,7 +26,7 @@ #include #if OPENSSL_VERSION_NUMBER < 0x00907000l -#error "We require openssl >= 0.9.7" +#error "We require OpenSSL >= 0.9.7" #endif #define CRYPTO_PRIVATE /* to import prototypes from crypto.h */ @@ -70,7 +70,7 @@ struct tor_tls_t { tor_tls_context_t *context; /** A link to the context object for this tls. */ SSL *ssl; /**< An OpenSSL SSL object. */ int socket; /**< The underlying file descriptor for this TLS connection. */ - char *address; /**< An address to log when describing this connectinon. */ + char *address; /**< An address to log when describing this connection. */ enum { TOR_TLS_ST_HANDSHAKE, TOR_TLS_ST_OPEN, TOR_TLS_ST_GOTCLOSE, TOR_TLS_ST_SENTCLOSE, TOR_TLS_ST_CLOSED, TOR_TLS_ST_RENEGOTIATE, @@ -454,7 +454,7 @@ tor_tls_create_certificate(crypto_pk_env_t *rsa, #define CIPHER(id, name) name ":" #define XCIPHER(id, name) /** List of ciphers that clients should advertise, omitting items that - * our openssl doesn't know about. */ + * our OpenSSL doesn't know about. */ static const char CLIENT_CIPHER_LIST[] = #include "./ciphers.inc" ; @@ -464,7 +464,7 @@ static const char CLIENT_CIPHER_LIST[] = /** Holds a cipher that we want to advertise, and its 2-byte ID. */ typedef struct cipher_info_t { unsigned id; const char *name; } cipher_info_t; /** A list of all the ciphers that clients should advertise, including items - * that openssl might not know about. */ + * that OpenSSL might not know about. */ static const cipher_info_t CLIENT_CIPHER_INFO_LIST[] = { #define CIPHER(id, name) { id, name }, #define XCIPHER(id, name) { id, #name }, @@ -879,7 +879,7 @@ tor_tls_set_logged_address(tor_tls_t *tls, const char *address) /** Set cb to be called with argument arg whenever tls * next gets a client-side renegotiate in the middle of a read. Do not - * invoke this function untile after initial handshaking is done! + * invoke this function until after initial handshaking is done! */ void tor_tls_set_renegotiate_callback(tor_tls_t *tls, diff --git a/src/common/util.c b/src/common/util.c index 13c55b288..a3338b1d1 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -1088,7 +1088,7 @@ format_rfc1123_time(char *buf, time_t t) /** Parse the the RFC1123 encoding of some time (in GMT) from buf, * and store the result in *t. * - * Return 0 on succcess, -1 on failure. + * Return 0 on success, -1 on failure. */ int parse_rfc1123_time(const char *buf, time_t *t) @@ -1319,7 +1319,7 @@ format_time_interval(char *out, size_t out_len, long interval) * ===== */ #ifndef TIME_IS_FAST -/** Cached estimate of the currrent time. Updated around once per second; +/** Cached estimate of the current time. Updated around once per second; * may be a few seconds off if we are really busy. This is a hack to avoid * calling time(NULL) (which not everybody has optimized) on critical paths. */ @@ -1350,7 +1350,7 @@ update_approx_time(time_t now) * XXXX022 Use this consistently or rip most of it out. * ===== */ -/* In a perfect world, everybody would run ntp, and ntp would be perfect, so +/* In a perfect world, everybody would run NTP, and NTP would be perfect, so * if we wanted to know "Is the current time before time X?" we could just say * "time(NULL) < X". * -- cgit v1.2.3 From ec7e0546681f57a1ba1769cca2b8339f9b0dc8b0 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 27 May 2009 17:55:51 -0400 Subject: Spell-check Tor. --- doc/tor.1.in | 40 ++++++++++++++++++++-------------------- src/common/address.c | 20 ++++++++++---------- src/common/aes.c | 12 ++++++------ src/common/compat.c | 18 +++++++++--------- src/common/compat.h | 2 +- src/common/container.c | 2 +- src/common/container.h | 4 ++-- src/common/crypto.c | 38 +++++++++++++++++++------------------- src/common/ht.h | 2 +- src/common/log.h | 2 +- src/common/util.h | 2 +- src/or/buffers.c | 16 ++++++++-------- src/or/circuitbuild.c | 4 ++-- src/or/circuituse.c | 14 +++++++------- src/or/config.c | 28 ++++++++++++++-------------- src/or/connection.c | 18 +++++++++--------- src/or/connection_edge.c | 26 +++++++++++++------------- src/or/control.c | 14 +++++++------- src/or/directory.c | 2 +- src/or/dirserv.c | 6 +++--- src/or/dirvote.c | 14 +++++++------- src/or/dns.c | 4 ++-- src/or/hibernate.c | 6 +++--- src/or/main.c | 16 ++++++++-------- src/or/networkstatus.c | 2 +- src/or/ntmain.c | 2 +- src/or/onion.c | 2 +- src/or/or.h | 32 ++++++++++++++++---------------- src/or/policies.c | 8 ++++---- src/or/relay.c | 8 ++++---- src/or/rendclient.c | 4 ++-- src/or/rendservice.c | 6 +++--- src/or/rephist.c | 4 ++-- src/or/router.c | 4 ++-- src/or/routerlist.c | 10 +++++----- src/or/routerparse.c | 10 +++++----- src/or/test.c | 6 +++--- 37 files changed, 204 insertions(+), 204 deletions(-) diff --git a/doc/tor.1.in b/doc/tor.1.in index 55f9a8e04..5d1105067 100644 --- a/doc/tor.1.in +++ b/doc/tor.1.in @@ -244,7 +244,7 @@ fetching early. Normal users should leave it off. \fBFetchHidServDescriptors \fR\fB0\fR|\fB1\fR\fP If set to 0, Tor will never fetch any hidden service descriptors from the rendezvous directories. This option is only useful if you're using -a Tor controller that handles hidserv fetches for you. +a Tor controller that handles hidden service fetches for you. (Default: 1) .LP .TP @@ -264,31 +264,31 @@ script to enumerate Tor nodes that exit to certain addresses. (Default: 0) .LP .TP -\fBHttpProxy\fR \fIhost\fR[:\fIport\fR]\fP +\fBHTTPProxy\fR \fIhost\fR[:\fIport\fR]\fP Tor will make all its directory requests through this host:port (or host:80 if port is not specified), rather than connecting directly to any directory servers. .LP .TP -\fBHttpProxyAuthenticator\fR \fIusername:password\fP -If defined, Tor will use this username:password for Basic Http proxy +\fBHTTPProxyAuthenticator\fR \fIusername:password\fP +If defined, Tor will use this username:password for Basic HTTP proxy authentication, as in RFC 2617. This is currently the only form of -Http proxy authentication that Tor supports; feel free to submit a +HTTP proxy authentication that Tor supports; feel free to submit a patch if you want it to support others. .LP .TP -\fBHttpsProxy\fR \fIhost\fR[:\fIport\fR]\fP +\fBHTTPSProxy\fR \fIhost\fR[:\fIport\fR]\fP Tor will make all its OR (SSL) connections through this host:port (or host:443 if port is not specified), via HTTP CONNECT rather than connecting directly to servers. You may want to set \fBFascistFirewall\fR -to restrict the set of ports you might try to connect to, if your Https +to restrict the set of ports you might try to connect to, if your HTTPS proxy only allows connecting to certain ports. .LP .TP -\fBHttpsProxyAuthenticator\fR \fIusername:password\fP -If defined, Tor will use this username:password for Basic Https proxy +\fBHTTPSProxyAuthenticator\fR \fIusername:password\fP +If defined, Tor will use this username:password for Basic HTTPS proxy authentication, as in RFC 2617. This is currently the only form of -Https proxy authentication that Tor supports; feel free to submit a +HTTPS proxy authentication that Tor supports; feel free to submit a patch if you want it to support others. .LP .TP @@ -500,7 +500,7 @@ firewall allows connections to everything inside net 99, rejects port Like \fBReachableAddresses\fP, a list of addresses and ports. Tor will obey these restrictions when fetching directory information, using standard HTTP GET requests. If not set explicitly then the value of \fBReachableAddresses\fP -is used. If \fBHttpProxy\fR is set then these connections will go through that +is used. If \fBHTTPProxy\fR is set then these connections will go through that proxy. .LP .TP @@ -508,11 +508,11 @@ proxy. Like \fBReachableAddresses\fP, a list of addresses and ports. Tor will obey these restrictions when connecting to Onion Routers, using TLS/SSL. If not set explicitly then the value of \fBReachableAddresses\fP is used. If -\fBHttpsProxy\fR is set then these connections will go through that proxy. +\fBHTTPSProxy\fR is set then these connections will go through that proxy. The separation between \fBReachableORAddresses\fP and \fBReachableDirAddresses\fP is only interesting when you are connecting through -proxies (see \fBHttpProxy\fR and \fBHttpsProxy\fR). Most proxies limit TLS +proxies (see \fBHTTPProxy\fR and \fBHTTPSProxy\fR). Most proxies limit TLS connections (which Tor uses to connect to Onion Routers) to port 443, and some limit HTTP GET requests (which Tor uses for fetching directory information) to port 80. @@ -595,7 +595,7 @@ to hosts that match this value and attempt to reuse the same exit node for each. If the value is prepended with a '.', it is treated as matching an entire domain. If one of the values is just a '.', it means match everything. This option is useful if you frequently connect to -sites that will expire all your authentication cookies (ie log you out) if +sites that will expire all your authentication cookies (i.e. log you out) if your IP address changes. Note that this option does have the disadvantage of making it more clear that a given history is associated with a single user. However, most people who would wish to observe @@ -784,7 +784,7 @@ The following options are useful only for servers (that is, if \fBORPort\fP is n .LP .TP \fBAddress \fR\fIaddress\fP -The IP address or fqdn of this server (e.g. moria.mit.edu). You can +The IP address or fully qualified domain name of this server (e.g. moria.mit.edu). You can leave this unset, and Tor will guess your IP address. .LP .TP @@ -964,7 +964,7 @@ behalf of clients. (Defaults to use the system DNS configuration.) \fBServerDNSAllowBrokenConfig \fR\fB0\fR|\fB1\fR\fP If this option is false, Tor exits immediately if there are problems parsing the system DNS configuration or connecting to nameservers. -Otherwise, Tor continues to periodically retry the system namesevers +Otherwise, Tor continues to periodically retry the system nameservers until it eventually succeeds. (Defaults to "1".) .LP @@ -1045,7 +1045,7 @@ admins at tor-ops@freehaven.net if you think you should be a directory. .LP .TP \fBDirPortFrontPage \fIFILENAME\fP -When this option is set, it takes an html file and publishes it as "/" on +When this option is set, it takes an HTML file and publishes it as "/" on the DirPort. Now relay operators can provide a disclaimer without needing to set up a separate webserver. There's a sample disclaimer in contrib/tor-exit-notice.html. @@ -1201,14 +1201,14 @@ for publication by this authority. \fBAuthDirListBadDirs \fR\fB0\fR|\fB1\fR\fP Authoritative directories only. If set to 1, this directory has some opinion about which nodes are unsuitable as directory caches. (Do not -set this to 1 unless you plan to list nonfunctioning directories as bad; +set this to 1 unless you plan to list non-functioning directories as bad; otherwise, you are effectively voting in favor of every declared directory.) .LP .TP \fBAuthDirListBadExits \fR\fB0\fR|\fB1\fR\fP Authoritative directories only. If set to 1, this directory has some opinion about which nodes are unsuitable as exit nodes. (Do not -set this to 1 unless you plan to list nonfunctioning exits as bad; +set this to 1 unless you plan to list non-functioning exits as bad; otherwise, you are effectively voting in favor of every declared exit as an exit.) .LP @@ -1217,7 +1217,7 @@ as an exit.) Authoritative directories only. If set to 1, the directory server rejects all uploaded server descriptors that aren't explicitly listed in the fingerprints file. This acts as a "panic button" if we get -Sybiled. (Default: 0) +with a Sybil attack. (Default: 0) .LP .TP \fBAuthDirMaxServersPerAddr\fR \fINUM\fP diff --git a/src/common/address.c b/src/common/address.c index ced1d0cd8..fac9d50e1 100644 --- a/src/common/address.c +++ b/src/common/address.c @@ -465,7 +465,7 @@ tor_addr_to_reverse_lookup_name(char *out, size_t outlen, *cp++ = "0123456789abcdef"[byte >> 4]; *cp++ = '.'; } - memcpy(cp, "ip6.arpa", 9); /* 8 characters plus nul */ + memcpy(cp, "ip6.arpa", 9); /* 8 characters plus NUL */ return 0; } return -1; @@ -619,7 +619,7 @@ tor_addr_parse_mask_ports(const char *s, tor_addr_t *addr_out, } else { if (mask) { log_warn(LD_GENERAL, - "Unexpected mask in addrss %s; rejecting", escaped(s)); + "Unexpected mask in address %s; rejecting", escaped(s)); goto err; } } @@ -642,7 +642,7 @@ tor_addr_parse_mask_ports(const char *s, tor_addr_t *addr_out, } else { if (port) { log_warn(LD_GENERAL, - "Unexpected ports in addrss %s; rejecting", escaped(s)); + "Unexpected ports in address %s; rejecting", escaped(s)); goto err; } } @@ -654,9 +654,9 @@ tor_addr_parse_mask_ports(const char *s, tor_addr_t *addr_out, return -1; } -/** Determine whether an address is IPv4, either native or ipv4-mapped ipv6. +/** Determine whether an address is IPv4, either native or IPv4-mapped IPv6. * Note that this is about representation only, as any decent stack will - * reject ipv4-mapped addresses received on the wire (and won't use them + * reject IPv4-mapped addresses received on the wire (and won't use them * on the wire either). */ int @@ -766,11 +766,11 @@ tor_addr_copy(tor_addr_t *dest, const tor_addr_t *src) /** Given two addresses addr1 and addr2, return 0 if the two * addresses are equivalent under the mask mbits, less than 0 if addr1 - * preceeds addr2, and greater than 0 otherwise. + * precedes addr2, and greater than 0 otherwise. * * Different address families (IPv4 vs IPv6) are always considered unequal if * how is CMP_EXACT; otherwise, IPv6-mapped IPv4 addresses are - * cosidered equivalent to their IPv4 equivalents. + * considered equivalent to their IPv4 equivalents. */ int tor_addr_compare(const tor_addr_t *addr1, const tor_addr_t *addr2, @@ -1021,7 +1021,7 @@ tor_addr_port_parse(const char *s, tor_addr_t *addr_out, uint16_t *port_out) } /** Set *addr to the IP address (if any) of whatever interface - * connects to the internet. This address should only be used in checking + * connects to the Internet. This address should only be used in checking * whether our address has changed. Return 0 on success, -1 on failure. */ int @@ -1039,7 +1039,7 @@ get_interface_address6(int severity, sa_family_t family, tor_addr_t *addr) /* Use the "discard" service port */ ((struct sockaddr_in*)&target_addr)->sin_port = 9; /* Don't worry: no packets are sent. We just need to use a real address - * on the actual internet. */ + * on the actual Internet. */ if (family == AF_INET6) { struct sockaddr_in6 *sin6 = (struct sockaddr_in6*)&target_addr; sock = tor_open_socket(PF_INET6,SOCK_DGRAM,IPPROTO_UDP); @@ -1380,7 +1380,7 @@ tor_dup_ip(uint32_t addr) /** * Set *addr to the host-order IPv4 address (if any) of whatever - * interface connects to the internet. This address should only be used in + * interface connects to the Internet. This address should only be used in * checking whether our address has changed. Return 0 on success, -1 on * failure. */ diff --git a/src/common/aes.c b/src/common/aes.c index 5a979bfa5..e07665635 100644 --- a/src/common/aes.c +++ b/src/common/aes.c @@ -27,9 +27,9 @@ * via OpenSSL's EVP_EncryptUpdate function, or via the built-in AES * implementation below. */ -/** Defined iff we're using openssl's AES functions for AES. */ +/** Defined iff we're using OpenSSL's AES functions for AES. */ #undef USE_OPENSSL_AES -/** Defined iff we're using openssl's EVP code for AES. */ +/** Defined iff we're using OpenSSL's EVP code for AES. */ #undef USE_OPENSSL_EVP /** Defined iff we're using Tor's internal AES implementation, defined * below. */ @@ -64,13 +64,13 @@ !defined(USE_OPENSSL_EVP)) /* OpenSSL 0.9.7 was the first to support AES. It was slower than our - * builtin implementation. + * built-in implementation. * OpenSSL 0.9.8 added assembly implementations for i386 and ia64. * Either the i386 stuff isn't used for x86-64, or it isn't faster. * OpenSSL 0.9.9 (not yet out) has added assembly implementations for * x86_64 (aka amd64), sparc9, and arm * - * Note: the "f" at the end of openssl version numbers below means + * Note: the "f" at the end of OpenSSL version numbers below means * "release". */ # if defined(CPU_IS_X86) || defined(CPU_IS_IA64) # if OPENSSL_VERSION_NUMBER >= 0x0090800fL @@ -84,7 +84,7 @@ # endif # endif -/* Otherwise, use the builtin implementation below. */ +/* Otherwise, use the built-in implementation below. */ # ifndef USE_OPENSSL_AES # define USE_BUILTIN_AES # endif @@ -380,7 +380,7 @@ aes_set_iv(aes_cnt_cipher_t *cipher, const char *iv) * * @version 3.0 (December 2000) * - * Optimised ANSI C code for the Rijndael cipher (now AES) + * Optimized ANSI C code for the Rijndael cipher (now AES) * * @author Vincent Rijmen * @author Antoon Bosselaers diff --git a/src/common/compat.c b/src/common/compat.c index 51794c762..35bb3a9ad 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -403,7 +403,7 @@ const char TOR_TOLOWER_TABLE[256] = { * function is called on __FILE__ to fix a MSVC nit where __FILE__ * contains the full path to the file. This is bad, because it * confuses users to find the home directory of the person who - * compiled the binary in their warrning messages. + * compiled the binary in their warning messages. */ const char * tor_fix_source_file(const char *fname) @@ -490,7 +490,7 @@ set_uint64(char *cp, uint64_t v) } /** - * Rename the file from to the file to. On unix, this is + * Rename the file from to the file to. On Unix, this is * the same as rename(2). On windows, this removes to first if * it already exists. * Returns 0 on success. Returns -1 and sets errno on failure. @@ -632,7 +632,7 @@ tor_lockfile_unlock(tor_lockfile_t *lockfile) tor_free(lockfile); } -/* Some old versions of unix didn't define constants for these values, +/* Some old versions of Unix didn't define constants for these values, * and instead expect you to say 0, 1, or 2. */ #ifndef SEEK_CUR #define SEEK_CUR 1 @@ -1568,7 +1568,7 @@ get_uname(void) if (!uname_result_is_set) { #ifdef HAVE_UNAME if (uname(&u) != -1) { - /* (linux says 0 is success, solaris says 1 is success) */ + /* (Linux says 0 is success, Solaris says 1 is success) */ tor_snprintf(uname_result, sizeof(uname_result), "%s %s", u.sysname, u.machine); } else @@ -1729,7 +1729,7 @@ tor_pthread_helper_fn(void *_data) #endif /** Minimalist interface to run a void function in the background. On - * unix calls fork, on win32 calls beginthread. Returns -1 on failure. + * Unix calls fork, on win32 calls beginthread. Returns -1 on failure. * func should not return, but rather should call spawn_exit. * * NOTE: if data is used, it should not be allocated on the stack, @@ -1803,7 +1803,7 @@ tor_gettimeofday(struct timeval *timeval) { #ifdef MS_WINDOWS /* Epoch bias copied from perl: number of units between windows epoch and - * unix epoch. */ + * Unix epoch. */ #define EPOCH_BIAS U64_LITERAL(116444736000000000) #define UNITS_PER_SEC U64_LITERAL(10000000) #define USEC_PER_SEC U64_LITERAL(1000000) @@ -1936,7 +1936,7 @@ static pthread_mutexattr_t attr_reentrant; /** True iff we've called tor_threads_init() */ static int threads_initialized = 0; /** Initialize mutex so it can be locked. Every mutex must be set - * up eith tor_mutex_init() or tor_mutex_new(); not both. */ + * up with tor_mutex_init() or tor_mutex_new(); not both. */ void tor_mutex_init(tor_mutex_t *mutex) { @@ -2259,7 +2259,7 @@ struct { int code; const char *msg; } windows_socket_errors[] = { */ { -1, NULL }, }; -/** There does not seem to be a strerror equivalent for winsock errors. +/** There does not seem to be a strerror equivalent for Winsock errors. * Naturally, we have to roll our own. */ const char * @@ -2301,7 +2301,7 @@ network_init(void) /** Return a newly allocated string describing the windows system error code * err. Note that error codes are different from errno. Error codes * come from GetLastError() when a winapi call fails. errno is set only when - * ansi functions fail. Whee. */ + * ANSI functions fail. Whee. */ char * format_win32_error(DWORD err) { diff --git a/src/common/compat.h b/src/common/compat.h index 0e2875dab..edc38faf6 100644 --- a/src/common/compat.h +++ b/src/common/compat.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2003-2004, Roger Dingledinex +/* Copyright (c) 2003-2004, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2009, The Tor Project, Inc. */ /* See LICENSE for licensing information */ diff --git a/src/common/container.c b/src/common/container.c index 1ef0044f1..c649787c0 100644 --- a/src/common/container.c +++ b/src/common/container.c @@ -1227,7 +1227,7 @@ IMPLEMENT_ORDER_FUNC(find_nth_long, long) digestset_t * digestset_new(int max_elements) { - /* The probability of false positivies is about P=(1 - exp(-kn/m))^k, where k + /* The probability of false positives is about P=(1 - exp(-kn/m))^k, where k * is the number of hash functions per entry, m is the bits in the array, * and n is the number of elements inserted. For us, k==4, n<=max_elements, * and m==n_bits= approximately max_elements*32. This gives diff --git a/src/common/container.h b/src/common/container.h index f7f835874..e62655246 100644 --- a/src/common/container.h +++ b/src/common/container.h @@ -11,7 +11,7 @@ /** A resizeable list of pointers, with associated helpful functionality. * * The members of this struct are exposed only so that macros and inlines can - * use them; all access to smartlist internals should go throuch the functions + * use them; all access to smartlist internals should go through the functions * and macros defined here. **/ typedef struct smartlist_t { @@ -229,7 +229,7 @@ char *smartlist_join_strings2(smartlist_t *sl, const char *join, STMT_END /* Helper: Given two lists of items, possibly of different types, such that - * both lists are sorted on some common field (as determened by a comparison + * both lists are sorted on some common field (as determined by a comparison * expression cmpexpr), and such that one list (sl1) has no * duplicates on the common field, loop through the lists in lockstep, and * execute unmatched_var2 on items in var2 that do not appear in diff --git a/src/common/crypto.c b/src/common/crypto.c index bc7eb0c6c..037982601 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -18,7 +18,7 @@ #define WIN32_LEAN_AND_MEAN #include #include -/* Windows defines this; so does openssl 0.9.8h and later. We don't actually +/* Windows defines this; so does OpenSSL 0.9.8h and later. We don't actually * use either definition. */ #undef OCSP_RESPONSE #endif @@ -56,7 +56,7 @@ #include "compat.h" #if OPENSSL_VERSION_NUMBER < 0x00907000l -#error "We require openssl >= 0.9.7" +#error "We require OpenSSL >= 0.9.7" #endif #include @@ -67,13 +67,13 @@ #define PRIVATE_KEY_OK(k) ((k) && (k)->key && (k)->key->p) #ifdef TOR_IS_MULTITHREADED -/** A number of prealloced mutexes for use by openssl. */ +/** A number of preallocated mutexes for use by OpenSSL. */ static tor_mutex_t **_openssl_mutexes = NULL; -/** How many mutexes have we allocated for use by openssl? */ +/** How many mutexes have we allocated for use by OpenSSL? */ static int _n_openssl_mutexes = 0; #endif -/** A public key, or a public/private keypair. */ +/** A public key, or a public/private key-pair. */ struct crypto_pk_env_t { int refs; /* reference counting so we don't have to copy keys */ @@ -405,10 +405,10 @@ crypto_pk_generate_key(crypto_pk_env_t *env) if (env->key) RSA_free(env->key); #if OPENSSL_VERSION_NUMBER < 0x00908000l - /* In openssl 0.9.7, RSA_generate_key is all we have. */ + /* In OpenSSL 0.9.7, RSA_generate_key is all we have. */ env->key = RSA_generate_key(PK_BYTES*8,65537, NULL, NULL); #else - /* In openssl 0.9.8, RSA_generate_key is deprecated. */ + /* In OpenSSL 0.9.8, RSA_generate_key is deprecated. */ { BIGNUM *e = BN_new(); RSA *r = NULL; @@ -452,7 +452,7 @@ crypto_pk_read_private_key_from_string(crypto_pk_env_t *env, tor_assert(env); tor_assert(s); - /* Create a read-only memory BIO, backed by the nul-terminated string 's' */ + /* Create a read-only memory BIO, backed by the NUL-terminated string 's' */ b = BIO_new_mem_buf((char*)s, -1); if (env->key) @@ -1054,7 +1054,7 @@ crypto_pk_asn1_decode(const char *str, size_t len) RSA *rsa; unsigned char *buf; /* This ifdef suppresses a type warning. Take out the first case once - * everybody is using openssl 0.9.7 or later. + * everybody is using OpenSSL 0.9.7 or later. */ const unsigned char *cp; cp = buf = tor_malloc(len); @@ -1393,7 +1393,7 @@ crypto_digest_add_bytes(crypto_digest_env_t *digest, const char *data, tor_assert(digest); tor_assert(data); /* Using the SHA1_*() calls directly means we don't support doing - * sha1 in hardware. But so far the delay of getting the question + * SHA1 in hardware. But so far the delay of getting the question * to the hardware, and hearing the answer, is likely higher than * just doing it ourselves. Hashes are fast. */ @@ -1554,7 +1554,7 @@ crypto_dh_generate_public(crypto_dh_env_t *dh) if (tor_check_dh_key(dh->dh->pub_key)<0) { log_warn(LD_CRYPTO, "Weird! Our own DH key was invalid. I guess once-in-" "the-universe chances really do happen. Trying again."); - /* Free and clear the keys, so openssl will actually try again. */ + /* Free and clear the keys, so OpenSSL will actually try again. */ BN_free(dh->dh->pub_key); BN_free(dh->dh->priv_key); dh->dh->pub_key = dh->dh->priv_key = NULL; @@ -1593,7 +1593,7 @@ crypto_dh_get_public(crypto_dh_env_t *dh, char *pubkey, size_t pubkey_len) return 0; } -/** Check for bad diffie-hellman public keys (g^x). Return 0 if the key is +/** Check for bad Diffie-Hellman public keys (g^x). Return 0 if the key is * okay (in the subgroup [2,p-2]), or -1 if it's bad. * See http://www.cl.cam.ac.uk/ftp/users/rja14/psandqs.ps.gz for some tips. */ @@ -1742,11 +1742,11 @@ crypto_dh_free(crypto_dh_env_t *dh) * work for us too. */ #define ADD_ENTROPY 32 -/* Use RAND_poll if openssl is 0.9.6 release or later. (The "f" means +/* Use RAND_poll if OpenSSL is 0.9.6 release or later. (The "f" means "release".) */ #define HAVE_RAND_POLL (OPENSSL_VERSION_NUMBER >= 0x0090600fl) -/* Versions of openssl prior to 0.9.7k and 0.9.8c had a bug where RAND_poll +/* Versions of OpenSSL prior to 0.9.7k and 0.9.8c had a bug where RAND_poll * would allocate an fd_set on the stack, open a new file, and try to FD_SET * that fd without checking whether it fit in the fd_set. Thus, if the * system has not just been started up, it is unsafe to call */ @@ -2281,7 +2281,7 @@ secret_to_key(char *key_out, size_t key_out_len, const char *secret, } #ifdef TOR_IS_MULTITHREADED -/** Helper: openssl uses this callback to manipulate mutexes. */ +/** Helper: OpenSSL uses this callback to manipulate mutexes. */ static void _openssl_locking_cb(int mode, int n, const char *file, int line) { @@ -2298,12 +2298,12 @@ _openssl_locking_cb(int mode, int n, const char *file, int line) tor_mutex_release(_openssl_mutexes[n]); } -/** OpenSSL helper type: wraps a Tor mutex so that openssl can */ +/** OpenSSL helper type: wraps a Tor mutex so that OpenSSL can */ struct CRYPTO_dynlock_value { tor_mutex_t *lock; }; -/** Openssl callback function to allocate a lock: see CRYPTO_set_dynlock_* +/** OpenSSL callback function to allocate a lock: see CRYPTO_set_dynlock_* * documentation in OpenSSL's docs for more info. */ static struct CRYPTO_dynlock_value * _openssl_dynlock_create_cb(const char *file, int line) @@ -2316,7 +2316,7 @@ _openssl_dynlock_create_cb(const char *file, int line) return v; } -/** Openssl callback function to acquire or release a lock: see +/** OpenSSL callback function to acquire or release a lock: see * CRYPTO_set_dynlock_* documentation in OpenSSL's docs for more info. */ static void _openssl_dynlock_lock_cb(int mode, struct CRYPTO_dynlock_value *v, @@ -2330,7 +2330,7 @@ _openssl_dynlock_lock_cb(int mode, struct CRYPTO_dynlock_value *v, tor_mutex_release(v->lock); } -/** Openssl callback function to free a lock: see CRYPTO_set_dynlock_* +/** OpenSSL callback function to free a lock: see CRYPTO_set_dynlock_* * documentation in OpenSSL's docs for more info. */ static void _openssl_dynlock_destroy_cb(struct CRYPTO_dynlock_value *v, diff --git a/src/common/ht.h b/src/common/ht.h index ff1e5551c..b31492ec3 100644 --- a/src/common/ht.h +++ b/src/common/ht.h @@ -426,7 +426,7 @@ ht_string_hash(const char *s) /* * Copyright 2005, Nick Mathewson. Implementation logic is adapted from code - * by Cristopher Clark, retrofit to allow drop-in memory management, and to + * by Christopher Clark, retrofit to allow drop-in memory management, and to * use the same interface as Niels Provos's HT_H. I'm not sure whether this * is a derived work any more, but whether it is or not, the license below * applies. diff --git a/src/common/log.h b/src/common/log.h index c72fb6fb1..834b1724b 100644 --- a/src/common/log.h +++ b/src/common/log.h @@ -53,7 +53,7 @@ /** Catch-all for miscellaneous events and fatal errors. */ #define LD_GENERAL (1u<<0) -/** The cryptography subsytem. */ +/** The cryptography subsystem. */ #define LD_CRYPTO (1u<<1) /** Networking. */ #define LD_NET (1u<<2) diff --git a/src/common/util.h b/src/common/util.h index 6d59754d9..dca2f86cd 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -29,7 +29,7 @@ */ #ifdef NDEBUG /* Nobody should ever want to build with NDEBUG set. 99% of our asserts will - * be outside the critical path anyway, so it's silly to disable bugchecking + * be outside the critical path anyway, so it's silly to disable bug-checking * throughout the entire program just because a few asserts are slowing you * down. Profile, optimize the critical path, and keep debugging on. * diff --git a/src/or/buffers.c b/src/or/buffers.c index cdab5490d..ed39bc0f8 100644 --- a/src/or/buffers.c +++ b/src/or/buffers.c @@ -161,7 +161,7 @@ chunk_free(chunk_t *chunk) } /** Allocate a new chunk with a given allocation size, or get one from the - * freelist. Note that a chunk with allocation size A can actualy hold only + * freelist. Note that a chunk with allocation size A can actually hold only * CHUNK_SIZE_WITH_ALLOC(A) bytes in its mem field. */ static INLINE chunk_t * chunk_new_with_alloc_size(size_t alloc) @@ -787,7 +787,7 @@ flush_chunk(int s, buf_t *buf, chunk_t *chunk, size_t sz, * chunk of buffer buf onto socket s. (Tries to write * more if there is a forced pending write size.) On success, deduct the * bytes written from *buf_flushlen. Return the number of bytes - * written on success, and a TOR_TLS error code on failue or blocking. + * written on success, and a TOR_TLS error code on failure or blocking. */ static INLINE int flush_chunk_tls(tor_tls_t *tls, buf_t *buf, chunk_t *chunk, @@ -1108,7 +1108,7 @@ buf_find_pos_of_char(char ch, buf_pos_t *out) } /** Advance pos by a single character, if there are any more characters - * in the buffer. Returns 0 on sucess, -1 on failure. */ + * in the buffer. Returns 0 on success, -1 on failure. */ static INLINE int buf_pos_inc(buf_pos_t *pos) { @@ -1169,13 +1169,13 @@ buf_find_string_offset(const buf_t *buf, const char *s, size_t n) } /** There is a (possibly incomplete) http statement on buf, of the - * form "\%s\\r\\n\\r\\n\%s", headers, body. (body may contain nuls.) + * form "\%s\\r\\n\\r\\n\%s", headers, body. (body may contain NULs.) * If a) the headers include a Content-Length field and all bytes in * the body are present, or b) there's no Content-Length field and * all headers are present, then: * - * - strdup headers into *headers_out, and nul-terminate it. - * - memdup body into *body_out, and nul-terminate it. + * - strdup headers into *headers_out, and NUL-terminate it. + * - memdup body into *body_out, and NUL-terminate it. * - Then remove them from buf, and return 1. * * - If headers or body is NULL, discard that part of the buf. @@ -1259,14 +1259,14 @@ fetch_from_buf_http(buf_t *buf, if (headers_out) { *headers_out = tor_malloc(headerlen+1); fetch_from_buf(*headers_out, headerlen, buf); - (*headers_out)[headerlen] = 0; /* nul terminate it */ + (*headers_out)[headerlen] = 0; /* NUL terminate it */ } if (body_out) { tor_assert(body_used); *body_used = bodylen; *body_out = tor_malloc(bodylen+1); fetch_from_buf(*body_out, bodylen, buf); - (*body_out)[bodylen] = 0; /* nul terminate it */ + (*body_out)[bodylen] = 0; /* NUL terminate it */ } check(); return 1; diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index e56290fb5..777f16aad 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1938,7 +1938,7 @@ entry_is_time_to_retry(entry_guard_t *e, time_t now) * right now. (Else return NULL.) In particular, it must be * - Listed as either up or never yet contacted; * - Present in the routerlist; - * - Listed as 'stable' or 'fast' by the current dirserver concensus, + * - Listed as 'stable' or 'fast' by the current dirserver consensus, * if demanded by need_uptime or need_capacity; * (This check is currently redundant with the Guard flag, but in * the future that might change. Best to leave it in for now.) @@ -2025,7 +2025,7 @@ log_entry_guards(int severity) /** Called when one or more guards that we would previously have used for some * purpose are no longer in use because a higher-priority guard has become - * useable again. */ + * usable again. */ static void control_event_guard_deferred(void) { diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 4ee99146e..bb19175a7 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -298,13 +298,13 @@ circuit_expire_building(time_t now) if (victim->purpose >= CIRCUIT_PURPOSE_C_INTRODUCING && victim->purpose <= CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED) { if (!victim->timestamp_dirty) - log_fn(LOG_DEBUG,"Considering %sopen purp %d to %s (circid %d)." + log_fn(LOG_DEBUG,"Considering %sopen purpose %d to %s (circid %d)." "(clean).", victim->state == CIRCUIT_STATE_OPEN ? "" : "non", victim->purpose, victim->build_state->chosen_exit_name, victim->n_circ_id); else - log_fn(LOG_DEBUG,"Considering %sopen purp %d to %s (circid %d). " + log_fn(LOG_DEBUG,"Considering %sopen purpose %d to %s (circid %d). " "%d secs since dirty.", victim->state == CIRCUIT_STATE_OPEN ? "" : "non", victim->purpose, victim->build_state->chosen_exit_name, @@ -512,7 +512,7 @@ circuit_predict_and_launch_new(void) flags |= CIRCLAUNCH_IS_INTERNAL; log_info(LD_CIRC, "Have %d clean circs (%d uptime-internal, %d internal), need" - " another hidserv circ.", + " another hidden service circ.", num, num_uptime_internal, num_internal); circuit_launch_by_router(CIRCUIT_PURPOSE_C_GENERAL, NULL, flags); return; @@ -642,7 +642,7 @@ circuit_expire_old_circuits(time_t now) if (circ->timestamp_dirty && circ->timestamp_dirty + get_options()->MaxCircuitDirtiness < now && !TO_ORIGIN_CIRCUIT(circ)->p_streams /* nothing attached */ ) { - log_debug(LD_CIRC, "Closing n_circ_id %d (dirty %d secs ago, purp %d)", + log_debug(LD_CIRC, "Closing n_circ_id %d (dirty %d secs ago, purpose %d)", circ->n_circ_id, (int)(now - circ->timestamp_dirty), circ->purpose); circuit_mark_for_close(circ, END_CIRC_REASON_FINISHED); @@ -1035,7 +1035,7 @@ circuit_get_open_circ_or_launch(edge_connection_t *conn, if (!want_onehop && !router_have_minimum_dir_info()) { if (!connection_get_by_type(CONN_TYPE_DIR)) { int severity = LOG_NOTICE; - /* FFFF if this is a tunnelled directory fetch, don't yell + /* FFFF if this is a tunneled directory fetch, don't yell * as loudly. the user doesn't even know it's happening. */ if (options->UseBridges && bridges_known_but_down()) { log_fn(severity, LD_APP|LD_DIR, @@ -1108,7 +1108,7 @@ circuit_get_open_circ_or_launch(edge_connection_t *conn, extend_info = rend_client_get_random_intro(conn->rend_data); if (!extend_info) { log_info(LD_REND, - "No intro points for '%s': refetching service descriptor.", + "No intro points for '%s': re-fetching service descriptor.", safe_str(conn->rend_data->onion_address)); /* Fetch both, v0 and v2 rend descriptors in parallel. Use whichever * arrives first. Exception: When using client authorization, only @@ -1451,7 +1451,7 @@ connection_ap_handshake_attach_circuit(edge_connection_t *conn) rendcirc->_base.n_circ_id, conn_age); /* Mark rendezvous circuits as 'newly dirty' every time you use * them, since the process of rebuilding a rendezvous circ is so - * expensive. There is a tradeoffs between linkability and + * expensive. There is a tradeoff between linkability and * feasibility, at this point. */ rendcirc->_base.timestamp_dirty = time(NULL); diff --git a/src/or/config.c b/src/or/config.c index 6030849a1..963ee10c5 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -25,7 +25,7 @@ typedef enum config_type_t { CONFIG_TYPE_MEMUNIT, /**< A number of bytes, with optional units*/ CONFIG_TYPE_DOUBLE, /**< A floating-point value */ CONFIG_TYPE_BOOL, /**< A boolean value, expressed as 0 or 1. */ - CONFIG_TYPE_ISOTIME, /**< An ISO-formated time relative to GMT. */ + CONFIG_TYPE_ISOTIME, /**< An ISO-formatted time relative to GMT. */ CONFIG_TYPE_CSV, /**< A list of strings, separated by commas and * optional whitespace. */ CONFIG_TYPE_LINELIST, /**< Uninterpreted config lines */ @@ -449,7 +449,7 @@ static config_var_description_t options_description[] = { "host:port (or host:80 if port is not set)." }, { "HTTPProxyAuthenticator", "A username:password pair to be used with " "HTTPProxy." }, - { "HTTPSProxy", "Force Tor to make all TLS (SSL) connectinos through this " + { "HTTPSProxy", "Force Tor to make all TLS (SSL) connections through this " "host:port (or host:80 if port is not set)." }, { "HTTPSProxyAuthenticator", "A username:password pair to be used with " "HTTPSProxy." }, @@ -1285,7 +1285,7 @@ options_act(or_options_t *old_options) finish_daemon(options->DataDirectory); } - /* Write our pid to the pid file. If we do not have write permissions we + /* Write our PID to the PID file. If we do not have write permissions we * will log a warning */ if (running_tor && options->PidFile) write_pidfile(options->PidFile); @@ -1407,7 +1407,7 @@ options_act(or_options_t *old_options) } } - /* Load the webpage we're going to serve everytime someone asks for '/' on + /* Load the webpage we're going to serve every time someone asks for '/' on our DirPort. */ tor_free(global_dirfrontpagecontents); if (options->DirPortFrontPage) { @@ -1440,7 +1440,7 @@ expand_abbrev(config_format_t *fmt, const char *option, int command_line, if (! fmt->abbrevs) return option; for (i=0; fmt->abbrevs[i].abbreviated; ++i) { - /* Abbreviations are casei. */ + /* Abbreviations are case insensitive. */ if (!strcasecmp(option,fmt->abbrevs[i].abbreviated) && (command_line || !fmt->abbrevs[i].commandline_only)) { if (warn_obsolete && fmt->abbrevs[i].warn) { @@ -1501,7 +1501,7 @@ config_get_commandlines(int argc, char **argv, config_line_t **result) (*new)->key = tor_strdup(expand_abbrev(&options_format, s, 1, 1)); (*new)->value = tor_strdup(argv[i+1]); (*new)->next = NULL; - log(LOG_DEBUG, LD_CONFIG, "Commandline: parsed keyword '%s', value '%s'", + log(LOG_DEBUG, LD_CONFIG, "command line: parsed keyword '%s', value '%s'", (*new)->key, (*new)->value); new = &((*new)->next); @@ -1610,7 +1610,7 @@ config_find_option(config_format_t *fmt, const char *key) int i; size_t keylen = strlen(key); if (!keylen) - return NULL; /* if they say "--" on the commandline, it's not an option */ + return NULL; /* if they say "--" on the command line, it's not an option */ /* First, check for an exact (case-insensitive) match */ for (i=0; fmt->vars[i].name; ++i) { if (!strcasecmp(key, fmt->vars[i].name)) { @@ -1815,7 +1815,7 @@ config_assign_line(config_format_t *fmt, or_options_t *options, if (!clear_first) { if (var->type == CONFIG_TYPE_LINELIST || var->type == CONFIG_TYPE_LINELIST_S) { - /* We got an empty linelist from the torrc or commandline. + /* We got an empty linelist from the torrc or command line. As a special case, call this an error. Warn and ignore. */ log_warn(LD_CONFIG, "Linelist option '%s' has no value. Skipping.", c->key); @@ -1865,7 +1865,7 @@ option_get_canonical_name(const char *key) return var ? var->name : NULL; } -/** Return a canonicalized list of the options assigned for key. +/** Return a canonical list of the options assigned for key. */ config_line_t * option_get_assignment(or_options_t *options, const char *key) @@ -3059,7 +3059,7 @@ options_validate(or_options_t *old_options, or_options_t *options, if (!options->ContactInfo && !options->TestingTorNetwork) REJECT("Authoritative directory servers must set ContactInfo"); if (options->V1AuthoritativeDir && !options->RecommendedVersions) - REJECT("V1 auth dir servers must set RecommendedVersions."); + REJECT("V1 authoritative dir servers must set RecommendedVersions."); if (!options->RecommendedClientVersions) options->RecommendedClientVersions = config_lines_dup(options->RecommendedVersions); @@ -3069,7 +3069,7 @@ options_validate(or_options_t *old_options, or_options_t *options, if (options->VersioningAuthoritativeDir && (!options->RecommendedClientVersions || !options->RecommendedServerVersions)) - REJECT("Versioning auth dir servers must set Recommended*Versions."); + REJECT("Versioning authoritative dir servers must set Recommended*Versions."); if (options->UseEntryGuards) { log_info(LD_CONFIG, "Authoritative directory servers can't set " "UseEntryGuards. Disabling."); @@ -3675,7 +3675,7 @@ options_transition_allowed(or_options_t *old, or_options_t *new_val, } /** Return 1 if any change from old_options to new_options - * will require us to rotate the cpu and dns workers; else return 0. */ + * will require us to rotate the CPU and DNS workers; else return 0. */ static int options_transition_affects_workers(or_options_t *old_options, or_options_t *new_options) @@ -3932,7 +3932,7 @@ options_init_from_torrc(int argc, char **argv) char *command_arg = NULL; char *errmsg=NULL; - if (argv) { /* first time we're called. save commandline args */ + if (argv) { /* first time we're called. save command line args */ backup_argv = argv; backup_argc = argc; } else { /* we're reloading. need to clean up old options first. */ @@ -4141,7 +4141,7 @@ get_torrc_fname(void) return get_default_conf_file(); } -/** Adjust the address map mased on the MapAddress elements in the +/** Adjust the address map based on the MapAddress elements in the * configuration options */ static void diff --git a/src/or/connection.c b/src/or/connection.c index 15a711042..32ae259cf 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -369,7 +369,7 @@ _connection_free(connection_t *conn) buf_free(conn->outbuf); } else { if (conn->socket_family == AF_UNIX) { - /* For now only control ports can be unix domain sockets + /* For now only control ports can be Unix domain sockets * and listeners at the same time */ tor_assert(conn->type == CONN_TYPE_CONTROL_LISTENER); @@ -474,7 +474,7 @@ connection_free(connection_t *conn) } /** Call _connection_free() on every connection in our array, and release all - * storage helpd by connection.c. This is used by cpuworkers and dnsworkers + * storage held by connection.c. This is used by cpuworkers and dnsworkers * when they fork, so they don't keep resources held open (especially * sockets). * @@ -747,7 +747,7 @@ connection_expire_held_open(void) * for the new structure. If no port is provided in listenaddress then * listenport is used. * - * If not NULL readable_addrress will contain a copy of the host part of + * If not NULL readable_address will contain a copy of the host part of * listenaddress. * * The listenaddr struct has to be freed by the caller. @@ -784,14 +784,14 @@ create_inet_sockaddr(const char *listenaddress, uint16_t listenport, #ifdef HAVE_SYS_UN_H /** Create an AF_UNIX listenaddr struct. - * listenaddress provides the path to the unix socket. + * listenaddress provides the path to the Unix socket. * * Eventually listenaddress will also optionally contain user, group, * and file permissions for the new socket. But not yet. XXX * Also, since we do not create the socket here the information doesn't help * here. * - * If not NULL readable_addrress will contain a copy of the path part of + * If not NULL readable_address will contain a copy of the path part of * listenaddress. * * The listenaddr struct has to be freed by the caller. @@ -919,7 +919,7 @@ connection_create_listener(struct sockaddr *listensockaddr, socklen_t socklen, } else if (listensockaddr->sa_family == AF_UNIX) { start_reading = 1; - /* For now only control ports can be unix domain sockets + /* For now only control ports can be Unix domain sockets * and listeners at the same time */ tor_assert(type == CONN_TYPE_CONTROL_LISTENER); @@ -1151,7 +1151,7 @@ connection_handle_listener_read(connection_t *conn, int new_type) newconn->address = tor_dup_addr(&addr); } else if (conn->socket_family == AF_UNIX) { - /* For now only control ports can be unix domain sockets + /* For now only control ports can be Unix domain sockets * and listeners at the same time */ tor_assert(conn->type == CONN_TYPE_CONTROL_LISTENER); @@ -1179,7 +1179,7 @@ connection_handle_listener_read(connection_t *conn, int new_type) } /** Initialize states for newly accepted connection conn. - * If conn is an OR, start the tls handshake. + * If conn is an OR, start the TLS handshake. * If conn is a transparent AP, get its original destination * and place it in circuit_wait. */ @@ -1810,7 +1810,7 @@ connection_bucket_init(void) } } -/** Refill a single bucket called name with bandwith rate +/** Refill a single bucket called name with bandwidth rate * rate and bandwidth burst burst, assuming that * seconds_elapsed seconds have passed since the last call. **/ diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index f7b4e3579..9b1f73791 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -266,7 +266,7 @@ connection_edge_end(edge_connection_t *conn, uint8_t reason) return 0; } -/** An error has just occured on an operation on an edge connection +/** An error has just occurred on an operation on an edge connection * conn. Extract the errno; convert it to an end reason, and send an * appropriate relay end cell to the other end of the connection's circuit. **/ @@ -509,10 +509,10 @@ connection_ap_attach_pending(void) }); } -/** Tell any AP streams that are waiting for a onehop tunnel to +/** Tell any AP streams that are waiting for a one-hop tunnel to * failed_digest that they are going to fail. */ /* XXX022 We should get rid of this function, and instead attach - * onehop streams to circ->p_streams so they get marked in + * one-hop streams to circ->p_streams so they get marked in * circuit_mark_for_close like normal p_streams. */ void connection_ap_fail_onehop(const char *failed_digest, @@ -543,7 +543,7 @@ connection_ap_fail_onehop(const char *failed_digest, build_state->chosen_exit->port != edge_conn->socks_request->port) continue; } - log_info(LD_APP, "Closing onehop stream to '%s/%s' because the OR conn " + log_info(LD_APP, "Closing one-hop stream to '%s/%s' because the OR conn " "just failed.", edge_conn->chosen_exit_name, edge_conn->socks_request->address); connection_mark_unattached_ap(edge_conn, END_STREAM_REASON_TIMEOUT); @@ -631,12 +631,12 @@ connection_ap_detach_retriable(edge_connection_t *conn, origin_circuit_t *circ, * - A MapAddress command from the controller [permanent] * - An AddressMap directive in the torrc [permanent] * - When a TrackHostExits torrc directive is triggered [temporary] - * - When a dns resolve succeeds [temporary] - * - When a dns resolve fails [temporary] + * - When a DNS resolve succeeds [temporary] + * - When a DNS resolve fails [temporary] * * When an addressmap request is made but one is already registered, * the new one is replaced only if the currently registered one has - * no "new_address" (that is, it's in the process of dns resolve), + * no "new_address" (that is, it's in the process of DNS resolve), * or if the new one is permanent (expires==0 or 1). * * (We overload the 'expires' field, using "0" for mappings set via @@ -955,7 +955,7 @@ client_dns_incr_failures(const char *address) return ent->num_resolve_failures; } -/** If address is in the client dns addressmap, reset +/** If address is in the client DNS addressmap, reset * the number of resolve failures we have on record for it. * This is used when we fail a stream because it won't resolve: * otherwise future attempts on that address will only try once. @@ -1696,7 +1696,7 @@ connection_ap_handshake_rewrite_and_attach(edge_connection_t *conn, } } else { conn->_base.state = AP_CONN_STATE_RENDDESC_WAIT; - log_info(LD_REND, "Stale descriptor %s. Refetching.", + log_info(LD_REND, "Stale descriptor %s. Re-fetching.", safe_str(conn->rend_data->onion_address)); /* Fetch both, v0 and v2 rend descriptors in parallel. Use whichever * arrives first. Exception: When using client authorization, only @@ -1717,7 +1717,7 @@ int get_pf_socket(void) { int pf; - /* This should be opened before dropping privs. */ + /* This should be opened before dropping privileges. */ if (pf_socket >= 0) return pf_socket; @@ -2739,7 +2739,7 @@ connection_exit_connect(edge_connection_t *edge_conn) connection_watch_events(conn, EV_WRITE | EV_READ); /* writable indicates finish; - * readable/error indicates broken link in windowsland. */ + * readable/error indicates broken link in windows-land. */ return; /* case 1: fall through */ } @@ -2925,14 +2925,14 @@ parse_extended_hostname(char *address) if (!s) return NORMAL_HOSTNAME; /* no dot, thus normal */ if (!strcmp(s+1,"exit")) { - *s = 0; /* nul-terminate it */ + *s = 0; /* NUL-terminate it */ return EXIT_HOSTNAME; /* .exit */ } if (strcmp(s+1,"onion")) return NORMAL_HOSTNAME; /* neither .exit nor .onion, thus normal */ /* so it is .onion */ - *s = 0; /* nul-terminate it */ + *s = 0; /* NUL-terminate it */ if (strlcpy(query, address, REND_SERVICE_ID_LEN_BASE32+1) >= REND_SERVICE_ID_LEN_BASE32+1) goto failed; diff --git a/src/or/control.c b/src/or/control.c index 3e0fb84c8..8ded31574 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -533,7 +533,7 @@ send_control_done(control_connection_t *conn) * If which & SHORT_NAMES, the event contains short-format names: send * it to controllers that haven't enabled the VERBOSE_NAMES feature. If * which & LONG_NAMES, the event contains long-format names: send it - * to contollers that have enabled VERBOSE_NAMES. + * to controllers that have enabled VERBOSE_NAMES. * * The EXTENDED_FORMAT and NONEXTENDED_FORMAT flags behave similarly with * respect to the EXTENDED_EVENTS feature. */ @@ -832,7 +832,7 @@ handle_control_getconf(control_connection_t *conn, uint32_t body_len, or_options_t *options = get_options(); int i, len; - (void) body_len; /* body is nul-terminated; so we can ignore len. */ + (void) body_len; /* body is NUL-terminated; so we can ignore len. */ smartlist_split_string(questions, body, " ", SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0); SMARTLIST_FOREACH(questions, const char *, q, @@ -1286,7 +1286,7 @@ handle_control_signal(control_connection_t *conn, uint32_t len, } /** Called when we get a MAPADDRESS command; try to bind all listed addresses, - * and report success or failrue. */ + * and report success or failure. */ static int handle_control_mapaddress(control_connection_t *conn, uint32_t len, const char *body) @@ -1296,7 +1296,7 @@ handle_control_mapaddress(control_connection_t *conn, uint32_t len, smartlist_t *reply; char *r; size_t sz; - (void) len; /* body is nul-terminated, so it's safe to ignore the length. */ + (void) len; /* body is NUL-terminated, so it's safe to ignore the length. */ lines = smartlist_create(); elts = smartlist_create(); @@ -2042,7 +2042,7 @@ handle_control_getinfo(control_connection_t *conn, uint32_t len, smartlist_t *unrecognized = smartlist_create(); char *msg = NULL, *ans = NULL; int i; - (void) len; /* body is nul-terminated, so it's safe to ignore the length. */ + (void) len; /* body is NUL-terminated, so it's safe to ignore the length. */ smartlist_split_string(questions, body, " ", SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0); @@ -2253,7 +2253,7 @@ handle_control_setcircuitpurpose(control_connection_t *conn, origin_circuit_t *circ = NULL; uint8_t new_purpose; smartlist_t *args; - (void) len; /* body is nul-terminated, so it's safe to ignore the length. */ + (void) len; /* body is NUL-terminated, so it's safe to ignore the length. */ args = getargs_helper("SETCIRCUITPURPOSE", conn, body, 2, -1); if (!args) @@ -3593,7 +3593,7 @@ control_event_newconsensus(const networkstatus_t *consensus) } /** Called when a single local_routerstatus_t has changed: Sends an NS event - * to any countroller that cares. */ + * to any controller that cares. */ int control_event_networkstatus_changed_single(routerstatus_t *rs) { diff --git a/src/or/directory.c b/src/or/directory.c index 082eca200..d783772ea 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -2894,7 +2894,7 @@ directory_handle_command_get(dir_connection_t *conn, const char *headers, "application/octet-stream", NULL, NULL, 0); note_request("/tor/rendezvous?/", desc_len); - /* need to send descp separately, because it may include nuls */ + /* need to send descp separately, because it may include NULs */ connection_write_to_buf(descp, desc_len, TO_CONN(conn)); /* report successful fetch to statistic */ if (options->HSAuthorityRecordStats) { diff --git a/src/or/dirserv.c b/src/or/dirserv.c index dde8959f8..88afe9fcc 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -2755,7 +2755,7 @@ dirserv_get_routerdesc_fingerprints(smartlist_t *fps_out, const char *key, * message. * * XXXX rename this function. It's only called from the controller. - * XXXX in fact, refactor this function, mergeing as much as possible. + * XXXX in fact, refactor this function, merging as much as possible. */ int dirserv_get_routerdescs(smartlist_t *descs_out, const char *key, @@ -2972,7 +2972,7 @@ get_signed_descriptor_by_fp(const char *fp, int extrainfo, return NULL; } -/** Return true iff we have any of the docments (extrainfo or routerdesc) +/** Return true iff we have any of the documents (extrainfo or routerdesc) * specified by the fingerprints in fps and spool_src. Used to * decide whether to send a 404. */ int @@ -3018,7 +3018,7 @@ dirserv_estimate_data_size(smartlist_t *fps, int is_serverdescs, routerinfo_t *me = router_get_my_routerinfo(); result = (me?me->cache_info.signed_descriptor_len:2048) * n; if (compressed) - result /= 2; /* observed compressability is between 35 and 55%. */ + result /= 2; /* observed compressibility is between 35 and 55%. */ } else { result = 0; SMARTLIST_FOREACH(fps, const char *, digest, { diff --git a/src/or/dirvote.c b/src/or/dirvote.c index f0feca95a..073c9e3aa 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -341,7 +341,7 @@ _compare_vote_rs(const void **_a, const void **_b) /** Given a list of vote_routerstatus_t, all for the same router identity, * return whichever is most frequent, breaking ties in favor of more * recently published vote_routerstatus_t and in case of ties there, - * in favour of smaller descriptor digest. + * in favor of smaller descriptor digest. */ static vote_routerstatus_t * compute_routerstatus_consensus(smartlist_t *votes) @@ -459,7 +459,7 @@ consensus_method_is_supported(int method) } /** Helper: given lst, a list of version strings such that every - * version appears once for every versioning voter who recommends it, returna + * version appears once for every versioning voter who recommends it, return a * newly allocated string holding the resulting client-versions or * server-versions list. May change contents of lst */ static char * @@ -843,7 +843,7 @@ networkstatus_compute_consensus(smartlist_t *votes, rs = smartlist_get(v->routerstatus_list, index[v_sl_idx]); if (memcmp(rs->status.identity_digest, lowest_id, DIGEST_LEN)) continue; /* doesn't include this router. */ - /* At this point, we know that we're looking at a routersatus with + /* At this point, we know that we're looking at a routerstatus with * identity "lowest". */ ++index[v_sl_idx]; @@ -955,7 +955,7 @@ networkstatus_compute_consensus(smartlist_t *votes, * that descriptor. If everybody plays nice all the voters who * listed that descriptor will have the same summary. If not then * something is fishy and we'll use the most common one (breaking - * ties in favor of lexigraphically larger one (only because it + * ties in favor of lexicographically larger one (only because it * lets me reuse more existing code. * * The other case that can happen is that no authority that voted @@ -996,7 +996,7 @@ networkstatus_compute_consensus(smartlist_t *votes, char dd[HEX_DIGEST_LEN+1]; base16_encode(id, sizeof(dd), rs_out.identity_digest, DIGEST_LEN); base16_encode(dd, sizeof(dd), rs_out.descriptor_digest, DIGEST_LEN); - log_warn(LD_DIR, "The voters disgreed on the exit policy summary for" + log_warn(LD_DIR, "The voters disagreed on the exit policy summary for" " router %s with descriptor %s. This really shouldn't" " have happened.", id, dd); @@ -2101,7 +2101,7 @@ dirvote_add_signatures_to_pending_consensus( return r; } -/** Helper: we just got the deteached_signatures_body sent to us as +/** Helper: we just got the detached_signatures_body sent to us as * signatures on the currently pending consensus. Add them to the pending * consensus (if we have one); otherwise queue them until we have a * consensus. Return negative on failure, nonnegative on success. */ @@ -2117,7 +2117,7 @@ dirvote_add_signatures(const char *detached_signatures_body, detached_signatures_body, msg); } else { log_notice(LD_DIR, "Got a signature from %s. " - "Queueing it for the next consensus.", source); + "Queuing it for the next consensus.", source); if (!pending_consensus_signature_list) pending_consensus_signature_list = smartlist_create(); smartlist_add(pending_consensus_signature_list, diff --git a/src/or/dns.c b/src/or/dns.c index 1742e3dd4..ad5b5de40 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -1109,7 +1109,7 @@ configure_nameservers(int force) socklen = tor_addr_to_sockaddr(&addr, 0, (struct sockaddr *)&ss, sizeof(ss)); if (socklen < 0) { - log_warn(LD_BUG, "Couldn't convert outboung bind address to sockaddr." + log_warn(LD_BUG, "Couldn't convert outbound bind address to sockaddr." " Ignoring."); } else { evdns_set_default_outgoing_bind_address((struct sockaddr *)&ss, @@ -1553,7 +1553,7 @@ dns_launch_correctness_checks(void) } } -/** Return true iff our DNS servers lie to us too much to be trustd. */ +/** Return true iff our DNS servers lie to us too much to be trusted. */ int dns_seems_to_be_broken(void) { diff --git a/src/or/hibernate.c b/src/or/hibernate.c index 8f347a48c..89f9aa701 100644 --- a/src/or/hibernate.c +++ b/src/or/hibernate.c @@ -583,10 +583,10 @@ read_bandwidth_usage(void) return -1; /* Okay; it looks like the state file is more up-to-date than the - * bw_accounting file, or the bw_accounting file is nonexistant, + * bw_accounting file, or the bw_accounting file is nonexistent, * or the bw_accounting file is corrupt. */ - log_info(LD_ACCT, "Reading bandwdith accounting data from state file"); + log_info(LD_ACCT, "Reading bandwidth accounting data from state file"); n_bytes_read_in_interval = state->AccountingBytesReadInInterval; n_bytes_written_in_interval = state->AccountingBytesWrittenInInterval; n_seconds_active_in_interval = state->AccountingSecondsActive; @@ -651,7 +651,7 @@ hibernate_begin(hibernate_state_t new_state, time_t now) if (new_state == HIBERNATE_STATE_EXITING && hibernate_state != HIBERNATE_STATE_LIVE) { - log_notice(LD_GENERAL,"Sigint received %s; exiting now.", + log_notice(LD_GENERAL,"SIGINT received %s; exiting now.", hibernate_state == HIBERNATE_STATE_EXITING ? "a second time" : "while hibernating"); tor_cleanup(); diff --git a/src/or/main.c b/src/or/main.c index 69ed12f12..a26fd0eff 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -911,7 +911,7 @@ run_scheduled_events(time_t now) } } - /* 1e. Periodicaly, if we're a v3 authority, we check whether our cert is + /* 1e. Periodically, if we're a v3 authority, we check whether our cert is * close to expiring and warn the admin if it is. */ if (time_to_check_v3_certificate < now) { v3_authority_check_key_expiry(); @@ -1135,7 +1135,7 @@ static void second_elapsed_callback(int fd, short event, void *args) { /* XXXX This could be sensibly refactored into multiple callbacks, and we - * could use libevent's timers for this rather than checking the current + * could use Libevent's timers for this rather than checking the current * time against a bunch of timeouts every second. */ static struct timeval one_second; static time_t current_second = 0; @@ -1472,7 +1472,7 @@ do_main_loop(void) * 1. We handle a different set of signals than those allowed in catch. * 2. Platforms without signal() are unlikely to define SIGfoo. * 3. The control spec is defined to use fixed numeric signal values - * which just happen to match the unix values. + * which just happen to match the Unix values. */ void control_signal_act(int the_signal) @@ -1531,7 +1531,7 @@ signal_callback(int fd, short events, void *arg) break; #ifdef SIGPIPE case SIGPIPE: - log_debug(LD_GENERAL,"Caught sigpipe. Ignoring."); + log_debug(LD_GENERAL,"Caught SIGPIPE. Ignoring."); break; #endif case SIGUSR1: @@ -1633,7 +1633,7 @@ dumpstats(int severity) tor_tls_get_buffer_sizes(or_conn->tls, &rbuf_cap, &rbuf_len, &wbuf_cap, &wbuf_len); log(severity, LD_GENERAL, - "Conn %d: %d/%d bytes used on openssl read buffer; " + "Conn %d: %d/%d bytes used on OpenSSL read buffer; " "%d/%d bytes used on write buffer.", i, rbuf_len, rbuf_cap, wbuf_len, wbuf_cap); } @@ -1709,12 +1709,12 @@ exit_function(void) void handle_signals(int is_parent) { -#ifndef MS_WINDOWS /* do signal stuff only on unix */ +#ifndef MS_WINDOWS /* do signal stuff only on Unix */ int i; static int signals[] = { SIGINT, /* do a controlled slow shutdown */ SIGTERM, /* to terminate now */ - SIGPIPE, /* otherwise sigpipe kills us */ + SIGPIPE, /* otherwise SIGPIPE kills us */ SIGUSR1, /* dump stats */ SIGUSR2, /* go to loglevel debug */ SIGHUP, /* to reload config, retry conns, etc */ @@ -1894,7 +1894,7 @@ release_lockfile(void) * * Helps us find the real leaks with dmalloc and the like. Also valgrind * should then report 0 reachable in its leak report (in an ideal world -- - * in practice libevent, ssl, libc etc never quite free everything). */ + * in practice libevent, SSL, libc etc never quite free everything). */ void tor_free_all(int postfork) { diff --git a/src/or/networkstatus.c b/src/or/networkstatus.c index 54ccb113c..573197a53 100644 --- a/src/or/networkstatus.c +++ b/src/or/networkstatus.c @@ -947,7 +947,7 @@ router_get_consensus_status_by_nickname(const char *nickname, }); if (any_unwarned) { log_warn(LD_CONFIG,"There are multiple matches for the nickname \"%s\"," - " but none is listed as named by the directory authorites. " + " but none is listed as named by the directory authorities. " "Choosing one arbitrarily.", nickname); } } else if (warn_if_unnamed && best && !best->name_lookup_warned) { diff --git a/src/or/ntmain.c b/src/or/ntmain.c index 2304be652..4f96fbe5d 100644 --- a/src/or/ntmain.c +++ b/src/or/ntmain.c @@ -299,7 +299,7 @@ nt_service_main(void) case CMD_LIST_FINGERPRINT: case CMD_HASH_PASSWORD: case CMD_VERIFY_CONFIG: - log_err(LD_CONFIG, "Unsupported command (--list-fingerint, " + log_err(LD_CONFIG, "Unsupported command (--list-fingerprint, " "--hash-password, or --verify-config) in NT service."); break; case CMD_RUN_UNITTESTS: diff --git a/src/or/onion.c b/src/or/onion.c index 9e8b43c23..b49a86aba 100644 --- a/src/or/onion.c +++ b/src/or/onion.c @@ -75,7 +75,7 @@ onion_pending_add(or_circuit_t *circ, char *onionskin) circ = ol_list->circ; onion_pending_remove(ol_list->circ); log_info(LD_CIRC, - "Circuit create request is too old; cancelling due to overload."); + "Circuit create request is too old; canceling due to overload."); circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_RESOURCELIMIT); } return 0; diff --git a/src/or/or.h b/src/or/or.h index a20015e0f..398275dca 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -136,7 +136,7 @@ /** Maximum size, in bytes, for any directory object that we've downloaded. */ #define MAX_DIR_DL_SIZE MAX_BUF_SIZE -/** For http parsing: Maximum number of bytes we'll accept in the headers +/** For HTTP parsing: Maximum number of bytes we'll accept in the headers * of an HTTP request or response. */ #define MAX_HEADERS_SIZE 50000 /** Maximum size, in bytes, for any directory object that we're accepting @@ -263,7 +263,7 @@ typedef enum { #define _OR_CONN_STATE_MAX 8 #define _EXIT_CONN_STATE_MIN 1 -/** State for an exit connection: waiting for response from dns farm. */ +/** State for an exit connection: waiting for response from DNS farm. */ #define EXIT_CONN_STATE_RESOLVING 1 /** State for an exit connection: waiting for connect() to finish. */ #define EXIT_CONN_STATE_CONNECTING 2 @@ -943,7 +943,7 @@ typedef struct connection_t { * could write? */ time_t timestamp_created; /**< When was this connection_t created? */ - /* XXXX_IP6 make this ipv6-capable */ + /* XXXX_IP6 make this IPv6-capable */ int socket_family; /**< Address family of this connection's socket. Usually * AF_INET, but it can also be AF_UNIX, or in the future * AF_INET6 */ @@ -1093,7 +1093,7 @@ typedef struct edge_connection_t { * already retried several times. */ uint8_t num_socks_retries; - /** True iff this connection is for a dns request only. */ + /** True iff this connection is for a DNS request only. */ unsigned int is_dns_request:1; /** True iff this stream must attach to a one-hop circuit (e.g. for @@ -1146,7 +1146,7 @@ typedef struct dir_connection_t { /** If we're fetching descriptors, what router purpose shall we assign * to them? */ uint8_t router_purpose; - /** List of fingerprints for networkstatuses or desriptors to be spooled. */ + /** List of fingerprints for networkstatuses or descriptors to be spooled. */ smartlist_t *fingerprint_stack; /** A cached_dir_t object that we're currently spooling out */ struct cached_dir_t *cached_dir; @@ -1253,9 +1253,9 @@ typedef struct addr_policy_t { /** A cached_dir_t represents a cacheable directory object, along with its * compressed form. */ typedef struct cached_dir_t { - char *dir; /**< Contents of this object, nul-terminated. */ + char *dir; /**< Contents of this object, NUL-terminated. */ char *dir_z; /**< Compressed contents of this object. */ - size_t dir_len; /**< Length of dir (not counting its nul). */ + size_t dir_len; /**< Length of dir (not counting its NUL). */ size_t dir_z_len; /**< Length of dir_z. */ time_t published; /**< When was this object published. */ int refcnt; /**< Reference count for this cached_dir_t. */ @@ -1312,7 +1312,7 @@ typedef struct signed_descriptor_t { * necessarily NUL-terminated. If saved_location is SAVED_IN_CACHE, this * pointer is null. */ char *signed_descriptor_body; - /** Length of the annotations preceeding the server descriptor. */ + /** Length of the annotations preceding the server descriptor. */ size_t annotations_len; /** Length of the server descriptor. */ size_t signed_descriptor_len; @@ -1619,7 +1619,7 @@ typedef enum { * status consensus. */ typedef struct networkstatus_t { networkstatus_type_t type; /**< Vote, consensus, or opinion? */ - time_t published; /**< Vote only: Tiem when vote was written. */ + time_t published; /**< Vote only: Time when vote was written. */ time_t valid_after; /**< Time after which this vote or consensus applies. */ time_t fresh_until; /**< Time before which this is the most recent vote or * consensus. */ @@ -1634,7 +1634,7 @@ typedef struct networkstatus_t { /** How long does this vote/consensus claim that authorities take to * distribute their votes to one another? */ int vote_seconds; - /** How long does this vote/consensus claim that authorites take to + /** How long does this vote/consensus claim that authorities take to * distribute their consensus signatures to one another? */ int dist_seconds; @@ -1915,7 +1915,7 @@ typedef struct circuit_t { /** The circuit_id used in the next (forward) hop of this circuit. */ circid_t n_circ_id; - /** The hop to which we want to extend this ciruit. Should be NULL if + /** The hop to which we want to extend this circuit. Should be NULL if * the circuit has attached to a connection. */ extend_info_t *n_hop; @@ -2180,7 +2180,7 @@ typedef struct { config_line_t *DirPolicy; /**< Lists of dir policy components */ /** Addresses to bind for listening for SOCKS connections. */ config_line_t *SocksListenAddress; - /** Addresses to bind for listening for transparent pf/nefilter + /** Addresses to bind for listening for transparent pf/netfilter * connections. */ config_line_t *TransListenAddress; /** Addresses to bind for listening for transparent natd connections */ @@ -2459,7 +2459,7 @@ typedef struct { int ServerDNSAllowBrokenConfig; smartlist_t *ServerDNSTestAddresses; /**< A list of addresses that definitely - * should be resolveable. Used for + * should be resolvable. Used for * testing our DNS server. */ int EnforceDistinctSubnets; /**< If true, don't allow multiple routers in the * same network zone in the same circuit. */ @@ -2566,7 +2566,7 @@ typedef struct { typedef struct { uint32_t _magic; /** The time at which we next plan to write the state to the disk. Equal to - * TIME_MAX if there are no saveable changes, 0 if there are changes that + * TIME_MAX if there are no savable changes, 0 if there are changes that * should be saved right away. */ time_t next_write; @@ -2830,7 +2830,7 @@ void circuit_build_failed(origin_circuit_t *circ); #define CIRCLAUNCH_ONEHOP_TUNNEL (1<<0) /** Flag to set when a circuit needs to be built of high-uptime nodes */ #define CIRCLAUNCH_NEED_UPTIME (1<<1) -/** Flag to set when a circuit needs to be build of high-capcity nodes */ +/** Flag to set when a circuit needs to be build of high-capacity nodes */ #define CIRCLAUNCH_NEED_CAPACITY (1<<2) /** Flag to set when the last hop of a circuit doesn't need to be an * exit node. */ @@ -3829,7 +3829,7 @@ void clear_pending_onions(void); /********************************* policies.c ************************/ /* (length of "accept 255.255.255.255/255.255.255.255:65535-65535\n" plus a - * nul.) + * NUL.) */ #define POLICY_BUF_LEN 52 diff --git a/src/or/policies.c b/src/or/policies.c index 6bff4e4da..cb914d11f 100644 --- a/src/or/policies.c +++ b/src/or/policies.c @@ -40,7 +40,7 @@ typedef struct policy_summary_item_t { uint16_t prt_min; /**< Lowest port number to accept/reject. */ uint16_t prt_max; /**< Highest port number to accept/reject. */ uint64_t reject_count; /**< Number of IP-Addresses that are rejected to - this portrange. */ + this port range. */ int accepted:1; /** Has this port already been accepted */ } policy_summary_item_t; @@ -795,7 +795,7 @@ exit_policy_remove_redundancies(smartlist_t *dest) * (accept/reject), A is a subset of B, and there is no other entry of * different type in between those two that intersects with A. * - * Anybody want to doublecheck the logic here? XXX + * Anybody want to double-check the logic here? XXX */ for (i = 0; i < smartlist_len(dest)-1; ++i) { ap = smartlist_get(dest, i); @@ -1136,8 +1136,8 @@ policy_summary_add_item(smartlist_t *summary, addr_policy_t *p) } /** Create a string representing a summary for an exit policy. - * The summary will either be an "accept" plus a comma-seperated list of port - * ranges or a "reject" plus portranges, depending on which is shorter. + * The summary will either be an "accept" plus a comma-separated list of port + * ranges or a "reject" plus port-ranges, depending on which is shorter. * * If no exits are allowed at all then NULL is returned, if no ports * are blocked instead of "reject " we return "accept 1-65535" (this diff --git a/src/or/relay.c b/src/or/relay.c index 937f4ee52..b47d16a2e 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -7,7 +7,7 @@ /** * \file relay.c * \brief Handle relay cell encryption/decryption, plus packaging and - * receiving from circuits, plus queueing on circuits. + * receiving from circuits, plus queuing on circuits. **/ #include "or.h" @@ -783,7 +783,7 @@ connection_ap_process_end_not_open( "Edge got end (%s) before we're connected. Marking for close.", stream_end_reason_to_string(rh->length > 0 ? reason : -1)); circuit_log_path(LOG_INFO,LD_APP,circ); - /* need to test because of detach_retriable*/ + /* need to test because of detach_retryable*/ if (!conn->_base.marked_for_close) connection_mark_unattached_ap(conn, control_reason); return 0; @@ -1353,7 +1353,7 @@ connection_edge_consider_sending_sendme(edge_connection_t *conn) while (conn->deliver_window < STREAMWINDOW_START - STREAMWINDOW_INCREMENT) { log_debug(conn->cpath_layer?LD_APP:LD_EXIT, - "Outbuf %d, Queueing stream sendme.", + "Outbuf %d, Queuing stream sendme.", (int)conn->_base.outbuf_flushlen); conn->deliver_window += STREAMWINDOW_INCREMENT; if (connection_edge_send_command(conn, RELAY_COMMAND_SENDME, @@ -1467,7 +1467,7 @@ circuit_consider_sending_sendme(circuit_t *circ, crypt_path_t *layer_hint) // layer_hint ? "defined" : "null"); while ((layer_hint ? layer_hint->deliver_window : circ->deliver_window) < CIRCWINDOW_START - CIRCWINDOW_INCREMENT) { - log_debug(LD_CIRC,"Queueing circuit sendme."); + log_debug(LD_CIRC,"Queuing circuit sendme."); if (layer_hint) layer_hint->deliver_window += CIRCWINDOW_INCREMENT; else diff --git a/src/or/rendclient.c b/src/or/rendclient.c index fb50e8dc0..784db9dad 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -80,8 +80,8 @@ rend_client_send_introduction(origin_circuit_t *introcirc, goto err; } - /* first 20 bytes of payload are the hash of bob's pk */ - if (entry->parsed->version == 0) { /* unversioned descriptor */ + /* first 20 bytes of payload are the hash of Bob's pk */ + if (entry->parsed->version == 0) { /* un-versioned descriptor */ intro_key = entry->parsed->pk; } else { /* versioned descriptor */ intro_key = NULL; diff --git a/src/or/rendservice.c b/src/or/rendservice.c index 94c619ced..2fd041d33 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -48,7 +48,7 @@ typedef struct rend_service_t { * authorization is performed. */ smartlist_t *clients; /**< List of rend_authorized_client_t's of * clients that may access our service. Can be NULL - * if no client authorization is peformed. */ + * if no client authorization is performed. */ /* Other fields */ crypto_pk_env_t *private_key; /**< Permanent hidden-service key. */ char service_id[REND_SERVICE_ID_LEN_BASE32+1]; /**< Onion address without @@ -66,7 +66,7 @@ typedef struct rend_service_t { * up-to-date. */ time_t next_upload_time; /**< Scheduled next hidden service descriptor * upload time. */ - /** Map from digests of diffie-hellman values INTRODUCE2 to time_t of when + /** Map from digests of Diffie-Hellman values INTRODUCE2 to time_t of when * they were received; used to prevent replays. */ digestmap_t *accepted_intros; /** Time at which we last removed expired values from accepted_intros. */ @@ -1644,7 +1644,7 @@ directory_post_to_hs_dir(rend_service_descriptor_t *renddesc, if (!router_get_by_digest(hs_dir->identity_digest)) { log_info(LD_REND, "Not sending publish request for v2 descriptor to " "hidden service directory '%s'; we don't have its " - "router descriptor. Queueing for later upload.", + "router descriptor. Queuing for later upload.", hs_dir->nickname); failed_upload = -1; continue; diff --git a/src/or/rephist.c b/src/or/rephist.c index 7bacd3abb..11e040c94 100644 --- a/src/or/rephist.c +++ b/src/or/rephist.c @@ -24,7 +24,7 @@ uint32_t rephist_total_num=0; /** If the total weighted run count of all runs for a router ever falls * below this amount, the router can be treated as having 0 MTBF. */ #define STABILITY_EPSILON 0.0001 -/** Value by which to discount all old intervals for MTBF purposses. This +/** Value by which to discount all old intervals for MTBF purposes. This * is compounded every STABILITY_INTERVAL. */ #define STABILITY_ALPHA 0.95 /** Interval at which to discount all old intervals for MTBF purposes. */ @@ -501,7 +501,7 @@ rep_hist_get_weighted_fractional_uptime(const char *id, time_t when) /** Return a number representing how long we've known about the router whose * digest is id. Return 0 if the router is unknown. * - * Be careful: this measure incresases monotonically as we know the router for + * Be careful: this measure increases monotonically as we know the router for * longer and longer, but it doesn't increase linearly. */ long diff --git a/src/or/router.c b/src/or/router.c index da922b750..658c567db 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -28,7 +28,7 @@ static tor_mutex_t *key_lock=NULL; static time_t onionkey_set_at=0; /**< When was onionkey last changed? */ /** Current private onionskin decryption key: used to decode CREATE cells. */ static crypto_pk_env_t *onionkey=NULL; -/** Previous private onionskin decription key: used to decode CREATE cells +/** Previous private onionskin decryption key: used to decode CREATE cells * generated by clients that have an older version of our descriptor. */ static crypto_pk_env_t *lastonionkey=NULL; /** Private "identity key": used to sign directory info and TLS @@ -293,7 +293,7 @@ init_key_from_file(const char *fname, int generate, int severity) * directory authority, and make sure they match. If legacy, load a * legacy key/cert set for emergency key migration; otherwise load the regular * key/cert set. On success, store them into *key_out and - * *cert_out respectively, and return 0. On failrue, return -1. */ + * *cert_out respectively, and return 0. On failure, return -1. */ static int load_authority_keyset(int legacy, crypto_pk_env_t **key_out, authority_cert_t **cert_out) diff --git a/src/or/routerlist.c b/src/or/routerlist.c index de38e354e..ed7f2f7a1 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -911,10 +911,10 @@ router_pick_directory_server(authority_type_t type, int flags) return choice; } -/** Try to determine which fraction of v2 and v3 directory requsts aimed at +/** Try to determine which fraction of v2 and v3 directory requests aimed at * caches will be sent to us. Set *v2_share_out and * *v3_share_out to the fractions of v2 and v3 protocol shares we - * expect to see, respectively. Return 0 on success, negative on failue. */ + * expect to see, respectively. Return 0 on success, negative on failure. */ int router_get_my_share_of_directory_requests(double *v2_share_out, double *v3_share_out) @@ -3270,7 +3270,7 @@ routerlist_remove_old_routers(void) if (caches && networkstatus_v2_list) { /* If we care about v2 statuses, we'll retain at most as many as are listed any of the v2 statues. This will be at least the length of - the largest v2 networstatus, and in the worst case, this set will be + the largest v2 networkstatus, and in the worst case, this set will be equal to the sum of the lengths of all v2 consensuses. Take the worst case. */ @@ -4616,7 +4616,7 @@ router_differences_are_cosmetic(routerinfo_t *r1, routerinfo_t *r2) (r2->bandwidthcapacity < r1->bandwidthcapacity/2)) return 0; - /* Did the bandwithrate or bandwithburst change? */ + /* Did the bandwidthrate or bandwidthburst change? */ if ((r1->bandwidthrate != r2->bandwidthrate) || (r1->bandwidthburst != r2->bandwidthburst)) return 0; @@ -4979,7 +4979,7 @@ routerset_refresh_countries(routerset_t *target) * * Three kinds of elements are allowed in routersets: nicknames, IP address * patterns, and fingerprints. They may be surrounded by optional space, and - * mst be separated by commas. + * must be separated by commas. */ int routerset_parse(routerset_t *target, const char *s, const char *description) diff --git a/src/or/routerparse.c b/src/or/routerparse.c index c08a058a0..8021158e3 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -167,7 +167,7 @@ typedef struct token_rule_t { /** If true, we concatenate all arguments for this item into a single * string. */ int concat_args; - /** Requirments on object syntax for this item. */ + /** Requirements on object syntax for this item. */ obj_syntax os; /** Lowest number of times this item may appear in a document. */ int min_cnt; @@ -217,7 +217,7 @@ typedef struct token_rule_t { /* Argument multiplicity: exactly n arguments. */ #define EQ(n) n,n,0 -/** List of tokens allowable in router derscriptors */ +/** List of tokens allowable in router descriptors */ static token_rule_t routerdesc_token_table[] = { T0N("reject", K_REJECT, ARGS, NO_OBJ ), T0N("accept", K_ACCEPT, ARGS, NO_OBJ ), @@ -601,7 +601,7 @@ router_append_dirobj_signature(char *buf, size_t buf_len, const char *digest, * versionlist is newer than myversion. Else, return * VS_NEW_IN_SERIES if there is at least one member of versionlist in * the same series (major.minor.micro) as myversion, but no such member - * is newer than myversion.. Else, return VS_NEW if every memeber of + * is newer than myversion.. Else, return VS_NEW if every member of * versionlist is older than myversion. Else, return * VS_UNRECOMMENDED. * @@ -3166,7 +3166,7 @@ tokenize_string(memarea_t *area, } if ((flags & TS_NO_NEW_ANNOTATIONS)) { if (first_nonannotation != prev_len) { - log_warn(LD_DIR, "parse error: Unexpectd annotations."); + log_warn(LD_DIR, "parse error: Unexpected annotations."); return -1; } } @@ -3453,7 +3453,7 @@ tor_version_same_series(tor_version_t *a, tor_version_t *b) } /** Helper: Given pointers to two strings describing tor versions, return -1 - * if _a precedes _b, 1 if _b preceeds _a, and 0 if they are equivalent. + * if _a precedes _b, 1 if _b precedes _a, and 0 if they are equivalent. * Used to sort a list of versions. */ static int _compare_tor_version_str_ptr(const void **_a, const void **_b) diff --git a/src/or/test.c b/src/or/test.c index bd0f485dd..2d15f1a9e 100644 --- a/src/or/test.c +++ b/src/or/test.c @@ -2492,7 +2492,7 @@ test_util_gzip(void) test_assert(buf3); test_streq(buf1,buf3); - /* Check whether we can uncompress concatenated, compresed strings. */ + /* Check whether we can uncompress concatenated, compressed strings. */ tor_free(buf3); buf2 = tor_realloc(buf2, len1*2); memcpy(buf2+len1, buf2, len1); @@ -2514,7 +2514,7 @@ test_util_gzip(void) test_assert(!tor_gzip_compress(&buf2, &len1, buf1, strlen(buf1)+1, ZLIB_METHOD)); tor_assert(len1>16); - /* when we allow an uncomplete string, we should succeed.*/ + /* when we allow an incomplete string, we should succeed.*/ tor_assert(!tor_gzip_uncompress(&buf3, &len2, buf2, len1-16, ZLIB_METHOD, 0, LOG_INFO)); buf3[len2]='\0'; @@ -3004,7 +3004,7 @@ test_dir_format(void) test_assert(!crypto_pk_get_fingerprint(pk2, fingerprint, 1)); strlcat(buf2, fingerprint, sizeof(buf2)); strlcat(buf2, "\nuptime 0\n" - /* XXX the "0" above is hardcoded, but even if we made it reflect + /* XXX the "0" above is hard-coded, but even if we made it reflect * uptime, that still wouldn't make it right, because the two * descriptors might be made on different seconds... hm. */ "bandwidth 1000 5000 10000\n" -- cgit v1.2.3 From d49711e52c22e77e95c30660f78b19d4f6025d04 Mon Sep 17 00:00:00 2001 From: Karsten Loesing Date: Wed, 27 May 2009 23:47:59 +0200 Subject: Fix unit tests that were broken after last fix of #932. With the last fix of task 932 (5f03d6c), client requests are only added to the history when they happen after the start of the current history. This conflicts with the unit tests that insert current requests first (defining the start of the client request history) followed by requests in the past. The fix is to insert requests in chronological order in the unit tests. --- src/or/test.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/or/test.c b/src/or/test.c index 2d15f1a9e..7b7411e2f 100644 --- a/src/or/test.c +++ b/src/or/test.c @@ -4678,25 +4678,25 @@ test_geoip(void) get_options()->BridgeRecordUsageByCountry = 1; /* Put 9 observations in AB... */ for (i=32; i < 40; ++i) - geoip_note_client_seen(GEOIP_CLIENT_CONNECT, i, now); - geoip_note_client_seen(GEOIP_CLIENT_CONNECT, 225, now); + geoip_note_client_seen(GEOIP_CLIENT_CONNECT, i, now-7200); + geoip_note_client_seen(GEOIP_CLIENT_CONNECT, 225, now-7200); /* and 3 observations in XY, several times. */ for (j=0; j < 10; ++j) for (i=52; i < 55; ++i) geoip_note_client_seen(GEOIP_CLIENT_CONNECT, i, now-3600); /* and 17 observations in ZZ... */ for (i=110; i < 127; ++i) - geoip_note_client_seen(GEOIP_CLIENT_CONNECT, i, now-7200); + geoip_note_client_seen(GEOIP_CLIENT_CONNECT, i, now); s = geoip_get_client_history(now+5*24*60*60, GEOIP_CLIENT_CONNECT); test_assert(s); test_streq("zz=24,ab=16,xy=8", s); tor_free(s); - /* Now clear out all the zz observations. */ + /* Now clear out all the AB observations. */ geoip_remove_old_clients(now-6000); s = geoip_get_client_history(now+5*24*60*60, GEOIP_CLIENT_CONNECT); test_assert(s); - test_streq("ab=16,xy=8", s); + test_streq("zz=24,xy=8", s); done: tor_free(s); -- cgit v1.2.3 From 260de44313a594b3f46670bd8b8a723267fda920 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 28 May 2009 11:54:56 -0400 Subject: Fixes to spelling fixes. Thanks, Roger! --- doc/tor.1.in | 2 +- src/common/crypto.c | 3 ++- src/or/circuituse.c | 3 ++- src/or/config.c | 3 ++- src/or/dirvote.c | 4 ++-- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/doc/tor.1.in b/doc/tor.1.in index 5d1105067..d85747958 100644 --- a/doc/tor.1.in +++ b/doc/tor.1.in @@ -1217,7 +1217,7 @@ as an exit.) Authoritative directories only. If set to 1, the directory server rejects all uploaded server descriptors that aren't explicitly listed in the fingerprints file. This acts as a "panic button" if we get -with a Sybil attack. (Default: 0) +hit with a Sybil attack. (Default: 0) .LP .TP \fBAuthDirMaxServersPerAddr\fR \fINUM\fP diff --git a/src/common/crypto.c b/src/common/crypto.c index 037982601..da38ddc62 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -2298,7 +2298,8 @@ _openssl_locking_cb(int mode, int n, const char *file, int line) tor_mutex_release(_openssl_mutexes[n]); } -/** OpenSSL helper type: wraps a Tor mutex so that OpenSSL can */ +/** OpenSSL helper type: wraps a Tor mutex so that OpenSSL can use it + * as a lock. */ struct CRYPTO_dynlock_value { tor_mutex_t *lock; }; diff --git a/src/or/circuituse.c b/src/or/circuituse.c index bb19175a7..6a54c3439 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -642,7 +642,8 @@ circuit_expire_old_circuits(time_t now) if (circ->timestamp_dirty && circ->timestamp_dirty + get_options()->MaxCircuitDirtiness < now && !TO_ORIGIN_CIRCUIT(circ)->p_streams /* nothing attached */ ) { - log_debug(LD_CIRC, "Closing n_circ_id %d (dirty %d secs ago, purpose %d)", + log_debug(LD_CIRC, "Closing n_circ_id %d (dirty %d secs ago, " + "purpose %d)", circ->n_circ_id, (int)(now - circ->timestamp_dirty), circ->purpose); circuit_mark_for_close(circ, END_CIRC_REASON_FINISHED); diff --git a/src/or/config.c b/src/or/config.c index 963ee10c5..b192ca8ff 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -3069,7 +3069,8 @@ options_validate(or_options_t *old_options, or_options_t *options, if (options->VersioningAuthoritativeDir && (!options->RecommendedClientVersions || !options->RecommendedServerVersions)) - REJECT("Versioning authoritative dir servers must set Recommended*Versions."); + REJECT("Versioning authoritative dir servers must set " + "Recommended*Versions."); if (options->UseEntryGuards) { log_info(LD_CONFIG, "Authoritative directory servers can't set " "UseEntryGuards. Disabling."); diff --git a/src/or/dirvote.c b/src/or/dirvote.c index 073c9e3aa..0156e273b 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -996,8 +996,8 @@ networkstatus_compute_consensus(smartlist_t *votes, char dd[HEX_DIGEST_LEN+1]; base16_encode(id, sizeof(dd), rs_out.identity_digest, DIGEST_LEN); base16_encode(dd, sizeof(dd), rs_out.descriptor_digest, DIGEST_LEN); - log_warn(LD_DIR, "The voters disagreed on the exit policy summary for" - " router %s with descriptor %s. This really shouldn't" + log_warn(LD_DIR, "The voters disagreed on the exit policy summary " + " for router %s with descriptor %s. This really shouldn't" " have happened.", id, dd); smartlist_sort_strings(exitsummaries); -- cgit v1.2.3 From 873faffb5ae1284b522041f7a8b2e3bbcd53e416 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 28 May 2009 12:26:17 -0400 Subject: Two more spelling fix fixes. --- src/or/or.h | 2 +- src/or/relay.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/or/or.h b/src/or/or.h index 398275dca..6cc30c4f0 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2830,7 +2830,7 @@ void circuit_build_failed(origin_circuit_t *circ); #define CIRCLAUNCH_ONEHOP_TUNNEL (1<<0) /** Flag to set when a circuit needs to be built of high-uptime nodes */ #define CIRCLAUNCH_NEED_UPTIME (1<<1) -/** Flag to set when a circuit needs to be build of high-capacity nodes */ +/** Flag to set when a circuit needs to be built of high-capacity nodes */ #define CIRCLAUNCH_NEED_CAPACITY (1<<2) /** Flag to set when the last hop of a circuit doesn't need to be an * exit node. */ diff --git a/src/or/relay.c b/src/or/relay.c index b47d16a2e..85cd8f6c8 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -783,7 +783,7 @@ connection_ap_process_end_not_open( "Edge got end (%s) before we're connected. Marking for close.", stream_end_reason_to_string(rh->length > 0 ? reason : -1)); circuit_log_path(LOG_INFO,LD_APP,circ); - /* need to test because of detach_retryable*/ + /* need to test because of detach_retriable */ if (!conn->_base.marked_for_close) connection_mark_unattached_ap(conn, control_reason); return 0; -- cgit v1.2.3 From e70fe116d3726401e0205e115294208a948a292e Mon Sep 17 00:00:00 2001 From: Sebastian Hahn Date: Tue, 26 May 2009 12:41:45 +0200 Subject: Consider *ListenAddress when warning about low ports and hibernation Tas (thanks!) noticed that when *ListenAddress is set, Tor would still warn on startup when *Port is low and hibernation is active. The patch parses all the *ListenAddress lines, and checks the ports. Bugfix on 0.2.1.15-rc --- ChangeLog | 3 +++ src/or/config.c | 44 +++++++++++++++++++++++++++++++++++++++----- 2 files changed, 42 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index ef12f4385..709f74756 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,9 @@ Changes in version 0.2.1.16-?? - 2009-??-?? o Minor bugfixes (on 0.2.0.x): - Log correct error messages for DNS-related network errors on Windows. + - Don't warn users about low port and hibernation mix when they + provide a *ListenAddress directive to fix that. Bugfix on + 0.2.1.15-rc. o Minor bugfixes (on 0.2.1.x): - When switching back and forth between bridge mode, do not start diff --git a/src/or/config.c b/src/or/config.c index b192ca8ff..5bf3fd41b 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -693,6 +693,9 @@ static int or_state_validate(or_state_t *old_options, or_state_t *options, static int or_state_load(void); static int options_init_logs(or_options_t *options, int validate_only); +static int is_listening_on_low_port(uint16_t port_option, + const config_line_t *listen_options); + static uint64_t config_parse_memunit(const char *s, int *ok); static int config_parse_interval(const char *s, int *ok); static void init_libevent(void); @@ -2617,6 +2620,36 @@ options_init(or_options_t *options) config_init(&options_format, options); } +/* Check if the port number given in port_option in combination with + * the specified port in listen_options will result in Tor actually + * opening a low port (meaning a port lower than 1024). Return 1 if + * it is, or 0 if it isn't or the concept of a low port isn't applicable for + * the platform we're on. */ +static int +is_listening_on_low_port(uint16_t port_option, + const config_line_t *listen_options) +{ +#ifdef MS_WINDOWS + return 0; /* No port is too low for windows. */ +#else + const config_line_t *l; + uint16_t p; + if (listen_options == NULL) { + if (port_option < 1024) { + return 1; + } + return 0; + } + for (l = listen_options; l; l = l->next) { + parse_addr_port(LOG_WARN, l->value, NULL, NULL, &p); + if (p<1024) { + return 1; + } + } + return 0; +#endif +} + /** Set all vars in the configuration object options to their default * values. */ static void @@ -3018,17 +3051,18 @@ options_validate(or_options_t *old_options, or_options_t *options, REJECT("TransPort and TransListenAddress are disabled in this build."); #endif -#ifndef MS_WINDOWS - if (options->AccountingMax && - (options->DirPort < 1024 || options->ORPort < 1024)) - log(LOG_WARN, LD_CONFIG, + if (options->AccountingMax && + (is_listening_on_low_port(options->ORPort, options->ORListenAddress) || + is_listening_on_low_port(options->DirPort, options->DirListenAddress))) + { + log(LOG_WARN, LD_CONFIG, "You have set AccountingMax to use hibernation. You have also " "chosen a low DirPort or OrPort. This combination can make Tor stop " "working when it tries to re-attach the port after a period of " "hibernation. Please choose a different port or turn off " "hibernation unless you know this combination will work on your " "platform."); -#endif + } if (options->ExcludeExitNodes || options->ExcludeNodes) { options->_ExcludeExitNodesUnion = routerset_new(); -- cgit v1.2.3 From d66c3797650698778bd098bbaf9d3bbeebfa9fcf Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 29 May 2009 23:28:01 -0400 Subject: Clean up a bit of C logic, and fix an erroneous warning. (Simplify "if (cond) return 1; return 0;" to "return cond;", and don't give a warning when we start with accounting on but dirport off.) --- src/or/config.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/or/config.c b/src/or/config.c index 5bf3fd41b..81999516d 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -2634,12 +2634,11 @@ is_listening_on_low_port(uint16_t port_option, #else const config_line_t *l; uint16_t p; - if (listen_options == NULL) { - if (port_option < 1024) { - return 1; - } - return 0; - } + if (port_option == 0) + return 0; /* We're not listening */ + if (listen_options == NULL) + return (port_option < 1024); + for (l = listen_options; l; l = l->next) { parse_addr_port(LOG_WARN, l->value, NULL, NULL, &p); if (p<1024) { -- cgit v1.2.3 From fd992deeea769721dc95bacb40ea360ef42f76dd Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 29 May 2009 10:18:50 -0400 Subject: Don't attempt to log messages to a controller from a worker thread. This patch adds a function to determine whether we're in the main thread, and changes control_event_logmsg() to return immediately if we're in a subthread. This is necessary because otherwise we will call connection_write_to_buf, which modifies non-locked data structures. Bugfix on 0.2.0.x; fix for at least one of the things currently called "bug 977". --- ChangeLog | 3 +++ src/common/compat.c | 19 +++++++++++++++++++ src/common/compat.h | 3 +++ src/common/util.c | 2 ++ src/or/control.c | 5 +++++ 5 files changed, 32 insertions(+) diff --git a/ChangeLog b/ChangeLog index 709f74756..1846832c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ Changes in version 0.2.1.16-?? - 2009-??-?? - Don't warn users about low port and hibernation mix when they provide a *ListenAddress directive to fix that. Bugfix on 0.2.1.15-rc. + - Fix a race condition that could cause crashes or memory + corruption when running as a server with a controller listening + for log messages. o Minor bugfixes (on 0.2.1.x): - When switching back and forth between bridge mode, do not start diff --git a/src/common/compat.c b/src/common/compat.c index 35bb3a9ad..d62b1ce1f 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -2076,6 +2076,7 @@ tor_threads_init(void) pthread_mutexattr_init(&attr_reentrant); pthread_mutexattr_settype(&attr_reentrant, PTHREAD_MUTEX_RECURSIVE); threads_initialized = 1; + set_main_thread(); } } #elif defined(USE_WIN32_THREADS) @@ -2168,9 +2169,27 @@ tor_threads_init(void) #if 0 cond_event_tls_index = TlsAlloc(); #endif + set_main_thread(); } #endif +/** Identity of the "main" thread */ +static unsigned long main_thread_id = -1; + +/** Start considering the current thread to be the 'main thread'. This has + * no effect on anything besides in_main_thread(). */ +void +set_main_thread(void) +{ + main_thread_id = tor_get_thread_id(); +} +/** Return true iff called from the main thread. */ +int +in_main_thread(void) +{ + return main_thread_id == tor_get_thread_id(); +} + /** * On Windows, WSAEWOULDBLOCK is not always correct: when you see it, * you need to ask the socket for its actual errno. Also, you need to diff --git a/src/common/compat.h b/src/common/compat.h index edc38faf6..4d5a016cf 100644 --- a/src/common/compat.h +++ b/src/common/compat.h @@ -522,6 +522,9 @@ void tor_threads_init(void); #define tor_threads_init() STMT_NIL #endif +void set_main_thread(void); +int in_main_thread(void); + #ifdef TOR_IS_MULTITHREADED #if 0 typedef struct tor_cond_t tor_cond_t; diff --git a/src/common/util.c b/src/common/util.c index a3338b1d1..7b9e5eb56 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -2480,6 +2480,8 @@ start_daemon(void) if (fork() != 0) { exit(0); } + set_main_thread(); /* We are now the main thread. */ + return; } } diff --git a/src/or/control.c b/src/or/control.c index 8ded31574..486ccc4c7 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -3367,6 +3367,11 @@ control_event_logmsg(int severity, uint32_t domain, const char *msg) { int event; + /* Don't even think of trying to add stuff to a buffer from a cpuworker + * thread. */ + if (! in_main_thread()) + return; + if (disable_log_messages) return; -- cgit v1.2.3 From e8ac2a84774214596b031599e134cb4fa886dd1f Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 27 May 2009 14:45:44 -0400 Subject: Make the second argument to routerset_contains_extendinfo const --- src/or/or.h | 3 ++- src/or/routerlist.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/or/or.h b/src/or/or.h index 6cc30c4f0..330b2ecbe 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -4504,7 +4504,8 @@ int routerset_needs_geoip(const routerset_t *set); int routerset_contains_router(const routerset_t *set, routerinfo_t *ri); int routerset_contains_routerstatus(const routerset_t *set, routerstatus_t *rs); -int routerset_contains_extendinfo(const routerset_t *set, extend_info_t *ei); +int routerset_contains_extendinfo(const routerset_t *set, + const extend_info_t *ei); void routerset_get_all_routers(smartlist_t *out, const routerset_t *routerset, int running_only); void routersets_get_disjunction(smartlist_t *target, const smartlist_t *source, diff --git a/src/or/routerlist.c b/src/or/routerlist.c index ed7f2f7a1..d8165e63b 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -5119,7 +5119,7 @@ routerset_contains(const routerset_t *set, const tor_addr_t *addr, /** Return true iff we can tell that ei is a member of set. */ int -routerset_contains_extendinfo(const routerset_t *set, extend_info_t *ei) +routerset_contains_extendinfo(const routerset_t *set, const extend_info_t *ei) { return routerset_contains(set, &ei->addr, -- cgit v1.2.3 From c4c7dcd453b62b3d3bcc8e78df8455a77645e62a Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 27 May 2009 14:07:41 -0400 Subject: Do not report a node as a "chosen exit" when it is not in fact an exit. Provide a useful warning when launch_circuit tries to make us use a node we don't want to use. Just give an info message when this is a normal and okay situation. Fix for logging issues in bug 984. --- ChangeLog | 4 ++++ src/or/circuitbuild.c | 66 ++++++++++++++++++++++++++++++++++++++++++++------- 2 files changed, 62 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1846832c4..2ae76b730 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,10 @@ Changes in version 0.2.1.16-?? - 2009-??-?? o Minor bugfixes (on 0.2.1.x): - When switching back and forth between bridge mode, do not start gathering GeoIP data until two hours have passed. + - Do not complain that the user has requested an excluded node as + an exit when the node is not really an exit. This could happen + because the circuit was for testing, or an introduction point. + Fix for bug 984. Changes in version 0.2.1.15-rc - 2009-05-25 diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 777f16aad..d78981e09 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1436,17 +1436,67 @@ choose_good_exit_server(uint8_t purpose, routerlist_t *dir, /** Log a warning if the user specified an exit for the circuit that * has been excluded from use by ExcludeNodes or ExcludeExitNodes. */ static void -warn_if_router_excluded(const extend_info_t *exit) +warn_if_last_router_excluded(uint8_t purpose, const extend_info_t *exit) { or_options_t *options = get_options(); - routerinfo_t *ri = router_get_by_digest(exit->identity_digest); + routerset_t *rs = options->ExcludeNodes; + const char *description; + int severity; + int domain = LD_CIRC; - if (!ri || !options->_ExcludeExitNodesUnion) - return; + switch (purpose) + { + default: + case CIRCUIT_PURPOSE_OR: + case CIRCUIT_PURPOSE_INTRO_POINT: + case CIRCUIT_PURPOSE_REND_POINT_WAITING: + case CIRCUIT_PURPOSE_REND_ESTABLISHED: + log_warn(LD_BUG, "Called on non-origin circuit (purpose %d)", + (int)purpose); + return; + case CIRCUIT_PURPOSE_C_GENERAL: + description = "Requested exit node"; + rs = options->_ExcludeExitNodesUnion; + severity = LOG_WARN; + break; + case CIRCUIT_PURPOSE_C_INTRODUCING: + case CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT: + case CIRCUIT_PURPOSE_C_INTRODUCE_ACKED: + description = "Introduction point for hidden service"; + severity = LOG_INFO; + break; + case CIRCUIT_PURPOSE_C_ESTABLISH_REND: + case CIRCUIT_PURPOSE_C_REND_READY: + case CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED: + case CIRCUIT_PURPOSE_C_REND_JOINED: + description = "Chosen rendezvous point"; + severity = LOG_WARN; + domain = LD_BUG; + break; + case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO: + description = "Chosen introduction point"; + severity = LOG_INFO; + break; + case CIRCUIT_PURPOSE_S_CONNECT_REND: + case CIRCUIT_PURPOSE_S_REND_JOINED: + description = "Client-selected rendezvous point"; + severity = LOG_INFO; + break; + case CIRCUIT_PURPOSE_TESTING: + description = "Target for testing circuit"; + severity = LOG_INFO; + break; + case CIRCUIT_PURPOSE_CONTROLLER: + rs = options->_ExcludeExitNodesUnion; + description = "Controller-selected circuit target"; + severity = LOG_WARN; + break; + } - if (routerset_contains_router(options->_ExcludeExitNodesUnion, ri)) - log_warn(LD_CIRC,"Requested exit node '%s' is in ExcludeNodes, " - "or ExcludeExitNodes, using anyway.",exit->nickname); + if (routerset_contains_extendinfo(rs, exit)) + log_fn(severity, domain, "%s '%s' is in ExcludeNodes%s. Using anyway.", + description,exit->nickname, + rs==options->ExcludeNodes?"":" or ExcludeExitNodes."); return; } @@ -1471,7 +1521,7 @@ onion_pick_cpath_exit(origin_circuit_t *circ, extend_info_t *exit) } if (exit) { /* the circuit-builder pre-requested one */ - warn_if_router_excluded(exit); + warn_if_last_router_excluded(circ->_base.purpose, exit); log_info(LD_CIRC,"Using requested exit node '%s'", exit->nickname); exit = extend_info_dup(exit); } else { /* we have to decide one */ -- cgit v1.2.3 From b262e7656376a938fc149ae1bf280eeef81c6002 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 3 Jun 2009 13:52:03 -0400 Subject: Fix gprof bottlenecks on exit nodes found by Jacob. Apparently all the stuff that does a linear scan over all the DNS cache entries can get really expensive when your DNS cache is very large. It's hard to say how much this will help performance, since gprof doesn't count time spent in OpenSSL or zlib, but I'd guess 10%. Also, this patch removes calls to assert_connection_ok() from inside the read and write callbacks, which are similarly unneeded, and a little costlier than I'm happy with. This is probably worth backporting to 0.2.0. --- ChangeLog | 8 ++++++++ src/or/dns.c | 18 ++++++++++++++---- src/or/main.c | 6 +++--- 3 files changed, 25 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2ae76b730..b2ba41351 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,12 @@ Changes in version 0.2.1.16-?? - 2009-??-?? + o Major performance improvements (on 0.2.0.x): + - Disable and refactor some debugging checks that forced a linear scan + over the whole server-side DNS cache. These accounted for over 50% + of CPU time on a relatively busy exit node's gprof profile. Found by + Jacob. + - Disable some debugging checks that appeared in exit node profile + data. + o Minor bugfixes (on 0.2.0.x): - Log correct error messages for DNS-related network errors on Windows. diff --git a/src/or/dns.c b/src/or/dns.c index ad5b5de40..74852b0f7 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -736,15 +736,25 @@ void assert_connection_edge_not_dns_pending(edge_connection_t *conn) { pending_connection_t *pend; - cached_resolve_t **resolve; + cached_resolve_t search; +#if 1 + cached_resolve_t *resolve; + strlcpy(search.address, conn->_base.address, sizeof(search.address)); + resolve = HT_FIND(cache_map, &cache_root, &search); + if (!resolve) + return; + for (pend = resolve->pending_connections; pend; pend = pend->next) { + tor_assert(pend->conn != conn); + } +#else + cached_resolve_t **resolve; HT_FOREACH(resolve, cache_map, &cache_root) { - for (pend = (*resolve)->pending_connections; - pend; - pend = pend->next) { + for (pend = (*resolve)->pending_connections; pend; pend = pend->next) { tor_assert(pend->conn != conn); } } +#endif } /** Log an error and abort if any connection waiting for a DNS resolve is diff --git a/src/or/main.c b/src/or/main.c index a26fd0eff..8fc712bba 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -451,7 +451,7 @@ conn_read_callback(int fd, short event, void *_conn) log_debug(LD_NET,"socket %d wants to read.",conn->s); - assert_connection_ok(conn, time(NULL)); + /* assert_connection_ok(conn, time(NULL)); */ if (connection_handle_read(conn) < 0) { if (!conn->marked_for_close) { @@ -483,7 +483,7 @@ conn_write_callback(int fd, short events, void *_conn) LOG_FN_CONN(conn, (LOG_DEBUG, LD_NET, "socket %d wants to write.",conn->s)); - assert_connection_ok(conn, time(NULL)); + /* assert_connection_ok(conn, time(NULL)); */ if (connection_handle_write(conn, 0) < 0) { if (!conn->marked_for_close) { @@ -529,7 +529,7 @@ conn_close_if_marked(int i) return 0; /* nothing to see here, move along */ now = time(NULL); assert_connection_ok(conn, now); - assert_all_pending_dns_resolves_ok(); + /* assert_all_pending_dns_resolves_ok(); */ log_debug(LD_NET,"Cleaning up connection (fd %d).",conn->s); if ((conn->s >= 0 || conn->linked_conn) && connection_wants_to_flush(conn)) { -- cgit v1.2.3 From 0b23035e432942e7f2ca98c217059840cb9e0c11 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 3 Jun 2009 17:35:41 -0400 Subject: Update the geoip file --- src/config/geoip | 21564 ++++++++++------------------------------------------- 1 file changed, 3921 insertions(+), 17643 deletions(-) diff --git a/src/config/geoip b/src/config/geoip index e20cafec6..204368bf2 100644 --- a/src/config/geoip +++ b/src/config/geoip @@ -1,6 +1,6 @@ -# Last updated based on April 3 2009 ip-to-country db. +# Last updated based on June 3 2009 ip-to-country db. # wget http://ip-to-country.webhosting.info/downloads/ip-to-country.csv.zip -# cut -d, -f0-3 < ip-to-country.csv|sed 's/"//g' > geoip +# cut -d, -f1-3 < ip-to-country.csv|sed 's/"//g' > geoip 33996344,33996351,GB 50331648,69956103,US 69956104,69956111,BM @@ -10,7 +10,11 @@ 94585424,94585439,SE 100663296,121195295,US 121195296,121195327,IT -121195328,152305663,US +121195328,134693119,US +134693120,134693375,CA +134693376,134730239,US +134730240,134730495,CA +134730496,152305663,US 152305664,152338431,GB 152338432,167772159,US 184549376,201859071,US @@ -51,8 +55,8 @@ 204047256,204047263,PR 204047264,204047295,US 204047296,204047303,VI -204047304,204047327,US -204047328,204047335,VI +204047304,204047311,US +204047312,204047335,VI 204047336,204047431,US 204047432,204047455,VI 204047456,204047463,US @@ -69,7 +73,8 @@ 204048000,204048007,VI 204048008,204048015,US 204048016,204048031,VI -204048032,204048063,PR +204048032,204048047,PR +204048048,204048063,US 204048064,204048127,VI 204048128,204152831,US 204152832,204153855,PR @@ -93,8 +98,8 @@ 211597504,211597719,US 211597720,211597727,VI 211597728,211597743,PR -211597744,211597751,US -211597752,211597775,PR +211597744,211597759,US +211597760,211597775,PR 211597776,211597791,VI 211597792,211598399,US 211598400,211598463,VI @@ -175,8 +180,8 @@ 214698096,214698103,US 214698104,214698135,VI 214698136,214698143,PR -214698144,214698151,VI -214698152,214858655,US +214698144,214698311,VI +214698312,214858655,US 214858656,214858671,NL 214858672,216417663,US 216417664,216417727,PR @@ -219,22 +224,28 @@ 404692992,404979711,US 405012480,405143551,CA 405180416,405184511,CA -405184512,405188607,US -405192704,405295103,US +405184512,405295103,US 405299200,405331967,US 405340160,405364735,US 405405696,405422079,PR 405422080,405798911,US +405831680,405835775,US 405839872,405843967,US -405889024,405893119,US -405905408,405909503,US +405880832,405897215,US +405901312,405909503,US 405921792,405929983,CA +405929984,405938175,US +405962752,405966847,US +406003712,406011903,US 406044672,406052863,US +406061056,406077439,US 406093824,406102015,US 406142976,406147071,US 406159360,406175743,US 406183936,406188031,CA +406216704,406241279,US 406241280,406257663,PR +406274048,406282239,PR 406298624,406306815,PR 406323200,406388735,US 406388736,406454271,CA @@ -279,25 +290,24 @@ 411893760,411959295,CA 411983872,411992063,US 412024832,412069887,US -412082176,412221439,US +412073984,412221439,US 412221440,412229631,CA 412286976,412483583,US 412483584,412549119,CA 412549120,412614655,US -412614656,412647423,CL 412647424,412680191,US 412680192,412688383,CA 412696576,412704767,US 412708864,412909567,US 412909568,412917759,CA 412942336,412946431,US -413007872,413900799,US +413007872,413908991,US 413908992,413925375,PR 413925376,415760383,US 415760384,416022527,CA 416022528,416059391,US 416088064,416153599,US -416169984,416219135,US +416161792,416219135,US 416219136,416251903,CA 416251904,416546815,US 416546816,416579583,CA @@ -336,66 +346,66 @@ 418693120,418709503,CA 418709504,418725887,US 418729984,418766847,US +418766848,418770943,CA 418824192,418832383,US 418840576,419430399,US 419430400,436207615,GB 436207616,452984831,US 469762048,520093695,US -536870912,540679167,US -540679168,540679231,SE -540679232,540680895,US +536870912,540680895,GB 540680896,540680959,BE -540680960,540683775,US +540680960,540683775,GB 540683776,540683783,DE -540683784,540685567,US +540683784,540685567,GB 540685568,540685631,FR -540685632,540687231,US +540685632,540687231,GB 540687232,540687359,CA -540687360,540694527,US +540687360,540694527,GB 540694528,540694591,IT -540694592,540705023,US +540694592,540705023,GB 540705024,540705031,IE -540705032,540705535,US +540705032,540705535,GB 540705536,540705599,IE -540705600,540711935,US +540705600,540711935,GB 540711936,540712447,NL -540712448,540737535,US +540712448,540737535,GB 540737536,540737791,BZ 540737792,540737919,BR 540737920,540750175,BZ 540750176,540750191,MX 540750192,540803071,BZ -540803072,540819455,US +540803072,540819455,GB 540819456,540823551,CA -540823552,540826671,US +540823552,540826671,GB 540826672,540826687,CA -540826688,540827135,US +540826688,540827135,GB 540827136,540827263,CA -540827264,540827295,US +540827264,540827295,GB 540827296,540827311,CA -540827312,540827359,US +540827312,540827359,GB 540827360,540827375,CA -540827376,540827391,US +540827376,540827391,GB 540827392,540827423,CA -540827424,540827471,US +540827424,540827471,GB 540827472,540827487,CA -540827488,540827519,US +540827488,540827519,GB 540827520,540827551,CA -540827552,540827583,US +540827552,540827583,GB 540827584,540827647,CA -540827648,540829695,US +540827648,540829695,GB 540829696,540829951,CA -540829952,540830623,US +540829952,540830623,GB 540830624,540830735,CA -540830736,540830815,US +540830736,540830815,GB 540830816,540830831,CA -540830832,540830847,US -540830848,540830879,CA -540830880,543690751,US +540830832,540830847,GB +540830848,540830895,CA +540830896,543690751,GB 543690752,543691007,AR -543691008,543844351,US +543691008,543844351,GB 543844352,543844607,CH -543844608,603979775,US +543844608,553648127,GB +553648128,603979775,US 637534208,654311423,US 671088640,687865855,US 721420288,738197503,JP @@ -617,7 +627,7 @@ 1024131072,1024163839,IN 1024163840,1024184319,JP 1024184320,1024188415,MY -1024188416,1024196607,TH +1024188416,1024196607,AU 1024196608,1024229375,IN 1024229376,1024262143,JP 1024262144,1024327679,SG @@ -684,17 +694,25 @@ 1024352256,1024360447,AU 1024360448,1024360535,HK 1024360536,1024360543,AU -1024360544,1024360623,HK +1024360544,1024360607,HK +1024360608,1024360615,AU +1024360616,1024360623,HK 1024360624,1024360631,AU -1024360632,1024361007,HK +1024360632,1024360735,HK +1024360736,1024360751,AU +1024360752,1024361007,HK 1024361008,1024361039,AU 1024361040,1024361095,HK 1024361096,1024361103,AU -1024361104,1024361183,HK +1024361104,1024361135,HK +1024361136,1024361151,AU +1024361152,1024361183,HK 1024361184,1024361215,AU 1024361216,1024361311,HK 1024361312,1024361327,AU -1024361328,1024361471,HK +1024361328,1024361439,HK +1024361440,1024361455,AU +1024361456,1024361471,HK 1024361472,1024361487,TW 1024361488,1024361503,AU 1024361504,1024361567,PH @@ -731,7 +749,9 @@ 1024363040,1024363071,AU 1024363072,1024363103,SG 1024363104,1024363111,AU -1024363112,1024363199,SG +1024363112,1024363119,SG +1024363120,1024363135,AU +1024363136,1024363199,SG 1024363200,1024363215,MY 1024363216,1024363295,SG 1024363296,1024363319,MY @@ -759,12 +779,13 @@ 1024371456,1024371711,JP 1024371712,1024371967,AU 1024371968,1024372223,JP -1024372224,1024372479,PH -1024372480,1024372735,HK +1024372224,1024372319,HK +1024372320,1024372351,AU +1024372352,1024372735,HK 1024372736,1024373247,AU 1024373248,1024373503,PH -1024373504,1024373759,AU -1024373760,1024373887,TW +1024373504,1024373823,AU +1024373824,1024373887,TW 1024373888,1024374079,PH 1024374080,1024374111,TW 1024374112,1024374271,PH @@ -784,14 +805,15 @@ 1024375808,1024375999,TW 1024376000,1024376095,PH 1024376096,1024376111,TW -1024376112,1024376159,PH +1024376112,1024376127,PH +1024376128,1024376159,AU 1024376160,1024376191,TW 1024376192,1024376199,PH 1024376200,1024376207,AU 1024376208,1024376223,PH 1024376224,1024376255,AU 1024376256,1024376463,TW -1024376464,1024376471,PH +1024376464,1024376471,AU 1024376472,1024376479,TW 1024376480,1024376511,PH 1024376512,1024376703,TW @@ -817,7 +839,9 @@ 1025296896,1025297407,SG 1025297408,1025297919,AU 1025297920,1025298175,NZ -1025298176,1025302527,AU +1025298176,1025298943,AU +1025298944,1025299199,AE +1025299200,1025302527,AU 1025302528,1025310719,VN 1025310720,1025343487,AU 1025343488,1025376255,CN @@ -890,9 +914,7 @@ 1040449792,1040450047,DE 1040450048,1040457727,FR 1040457728,1040465919,ME -1040465920,1040466943,DE -1040466944,1040466959,CA -1040466960,1040467071,DE +1040465920,1040467071,DE 1040467072,1040467087,FR 1040467088,1040467103,DE 1040467104,1040467135,FR @@ -961,13 +983,14 @@ 1040973824,1040982015,NL 1040982016,1040982335,DK 1040982336,1040982351,ZW -1040982352,1040982399,DK +1040982352,1040982359,GB +1040982360,1040982399,DK 1040982400,1040982407,CH 1040982408,1040982487,DK 1040982488,1040982495,IQ 1040982496,1040982527,DK 1040982528,1040982551,IQ -1040982552,1040982559,DK +1040982552,1040982559,FI 1040982560,1040982615,IQ 1040982616,1040982623,DK 1040982624,1040982631,FI @@ -976,7 +999,8 @@ 1040982648,1040982655,GB 1040982656,1040982663,DE 1040982664,1040982679,NL -1040982680,1040982695,DK +1040982680,1040982687,DK +1040982688,1040982695,FI 1040982696,1040982703,IR 1040982704,1040982743,FI 1040982744,1040982751,EG @@ -1273,7 +1297,9 @@ 1041694720,1041694895,FR 1041694896,1041694911,GB 1041694912,1041694919,FR -1041694920,1041694975,GB +1041694920,1041694943,GB +1041694944,1041694959,FR +1041694960,1041694975,GB 1041694976,1041695455,FR 1041695456,1041695487,GB 1041695488,1041695551,FR @@ -1328,9 +1354,9 @@ 1041699616,1041699623,FR 1041699624,1041699631,GB 1041699632,1041699767,FR -1041699768,1041699775,GB -1041699776,1041700351,FR -1041700352,1041700607,GB +1041699768,1041699807,GB +1041699808,1041700359,FR +1041700360,1041700607,GB 1041700608,1041700863,FR 1041700864,1041700895,GB 1041700896,1041700919,FR @@ -1353,15 +1379,15 @@ 1041701640,1041701647,GB 1041701648,1041701727,FR 1041701728,1041701735,GB -1041701736,1041701831,FR +1041701736,1041701783,FR +1041701784,1041701791,GB +1041701792,1041701831,FR 1041701832,1041701847,GB 1041701848,1041701863,FR 1041701864,1041701871,GB 1041701872,1041701887,FR 1041701888,1041701919,GB -1041701920,1041701935,FR -1041701936,1041701959,GB -1041701960,1041701967,FR +1041701920,1041701967,FR 1041701968,1041701975,GB 1041701976,1041702111,FR 1041702112,1041702143,GB @@ -1374,7 +1400,9 @@ 1041702336,1041702351,FR 1041702352,1041702623,GB 1041702624,1041702639,FR -1041702640,1041703143,GB +1041702640,1041702655,GB +1041702656,1041702719,FR +1041702720,1041703143,GB 1041703144,1041703147,FR 1041703148,1041703167,GB 1041703168,1041703471,FR @@ -1385,10 +1413,10 @@ 1041703552,1041703583,GB 1041703584,1041703631,FR 1041703632,1041703639,GB -1041703640,1041703679,FR -1041703680,1041703695,GB -1041703696,1041703711,FR -1041703712,1041703807,GB +1041703640,1041703719,FR +1041703720,1041703775,GB +1041703776,1041703783,FR +1041703784,1041703807,GB 1041703808,1041703951,FR 1041703952,1041703967,GB 1041703968,1041703991,FR @@ -1428,8 +1456,8 @@ 1041704864,1041704879,FR 1041704880,1041704887,GB 1041704888,1041704911,FR -1041704912,1041704943,GB -1041704944,1041705247,FR +1041704912,1041704927,GB +1041704928,1041705247,FR 1041705248,1041705279,GB 1041705280,1041705303,FR 1041705304,1041705311,GB @@ -1440,8 +1468,8 @@ 1041705440,1041705447,FR 1041705448,1041705463,GB 1041705464,1041705471,FR -1041705472,1041705487,GB -1041705488,1041705511,FR +1041705472,1041705495,GB +1041705496,1041705511,FR 1041705512,1041705519,GB 1041705520,1041705527,FR 1041705528,1041705535,GB @@ -1461,15 +1489,13 @@ 1041706088,1041706095,GB 1041706096,1041706111,FR 1041706112,1041706143,GB -1041706144,1041706207,FR -1041706208,1041706287,GB +1041706144,1041706191,FR +1041706192,1041706287,GB 1041706288,1041706319,FR 1041706320,1041706343,GB 1041706344,1041706359,FR 1041706360,1041706367,GB -1041706368,1041706383,FR -1041706384,1041706399,GB -1041706400,1041706447,FR +1041706368,1041706447,FR 1041706448,1041706463,GB 1041706464,1041706471,FR 1041706472,1041706487,GB @@ -1583,8 +1609,8 @@ 1041710048,1041710055,GB 1041710056,1041710063,FR 1041710064,1041710079,GB -1041710080,1041710335,FR -1041710336,1041710359,GB +1041710080,1041710343,FR +1041710344,1041710359,GB 1041710360,1041710367,FR 1041710368,1041710383,GB 1041710384,1041710391,FR @@ -1603,9 +1629,7 @@ 1041710560,1041710567,GB 1041710568,1041710575,FR 1041710576,1041710583,GB -1041710584,1041710599,FR -1041710600,1041710623,GB -1041710624,1041710663,FR +1041710584,1041710663,FR 1041710664,1041710671,GB 1041710672,1041710687,FR 1041710688,1041710695,GB @@ -1616,8 +1640,8 @@ 1041710728,1041710735,FR 1041710736,1041710743,GB 1041710744,1041710775,FR -1041710776,1041710791,GB -1041710792,1041710807,FR +1041710776,1041710783,GB +1041710784,1041710807,FR 1041710808,1041710815,GB 1041710816,1041711367,FR 1041711368,1041711375,GB @@ -1631,23 +1655,19 @@ 1041711536,1041711567,GB 1041711568,1041711583,FR 1041711584,1041711599,GB -1041711600,1041711871,FR -1041711872,1041711903,GB +1041711600,1041711887,FR +1041711888,1041711903,GB 1041711904,1041711911,FR 1041711912,1041711927,GB 1041711928,1041711935,FR 1041711936,1041711951,GB 1041711952,1041711967,FR 1041711968,1041711983,GB -1041711984,1041712063,FR -1041712064,1041712095,GB -1041712096,1041712447,FR +1041711984,1041712447,FR 1041712448,1041712463,GB -1041712464,1041712511,FR -1041712512,1041712527,GB -1041712528,1041712623,FR -1041712624,1041712631,GB -1041712632,1041712927,FR +1041712464,1041712911,FR +1041712912,1041712919,GB +1041712920,1041712927,FR 1041712928,1041712943,GB 1041712944,1041712991,FR 1041712992,1041712999,GB @@ -1659,7 +1679,9 @@ 1041713056,1041713063,GB 1041713064,1041713079,FR 1041713080,1041713087,GB -1041713088,1041713143,FR +1041713088,1041713119,FR +1041713120,1041713135,GB +1041713136,1041713143,FR 1041713144,1041713151,GB 1041713152,1041713663,FR 1041713664,1041713695,GB @@ -1682,16 +1704,16 @@ 1041714080,1041714095,FR 1041714096,1041714103,GB 1041714104,1041714431,FR -1041714432,1041714455,GB -1041714456,1041714487,FR -1041714488,1041714495,GB -1041714496,1041714519,FR +1041714432,1041714439,GB +1041714440,1041714447,FR +1041714448,1041714455,GB +1041714456,1041714519,FR 1041714520,1041714527,GB 1041714528,1041714543,FR 1041714544,1041714551,GB 1041714552,1041714559,FR -1041714560,1041714591,GB -1041714592,1041714623,FR +1041714560,1041714575,GB +1041714576,1041714623,FR 1041714624,1041714687,GB 1041714688,1041714711,FR 1041714712,1041714727,GB @@ -1739,8 +1761,8 @@ 1041716040,1041716063,GB 1041716064,1041716111,FR 1041716112,1041716223,GB -1041716224,1041716239,FR -1041716240,1041716287,GB +1041716224,1041716255,FR +1041716256,1041716287,GB 1041716288,1041716303,FR 1041716304,1041716319,GB 1041716320,1041716335,FR @@ -1769,7 +1791,9 @@ 1041717520,1041717527,GB 1041717528,1041717559,FR 1041717560,1041717567,GB -1041717568,1041718023,FR +1041717568,1041717687,FR +1041717688,1041717695,GB +1041717696,1041718023,FR 1041718024,1041718031,GB 1041718032,1041718055,FR 1041718056,1041718063,GB @@ -1811,7 +1835,9 @@ 1041718880,1041718911,GB 1041718912,1041718935,FR 1041718936,1041718943,GB -1041718944,1041718999,FR +1041718944,1041718975,FR +1041718976,1041718991,GB +1041718992,1041718999,FR 1041719000,1041719007,GB 1041719008,1041719203,FR 1041719204,1041719207,GB @@ -1827,16 +1853,18 @@ 1041719376,1041719407,GB 1041719408,1041719439,FR 1041719440,1041719487,GB -1041719488,1041719551,FR -1041719552,1041719631,GB +1041719488,1041719559,FR +1041719560,1041719567,GB +1041719568,1041719583,FR +1041719584,1041719631,GB 1041719632,1041719647,FR 1041719648,1041719663,GB 1041719664,1041719679,FR 1041719680,1041719711,GB 1041719712,1041719743,FR 1041719744,1041719759,GB -1041719760,1041719775,FR -1041719776,1041719855,GB +1041719760,1041719807,FR +1041719808,1041719855,GB 1041719856,1041719879,FR 1041719880,1041719903,GB 1041719904,1041719919,FR @@ -1870,7 +1898,9 @@ 1041720848,1041720895,FR 1041720896,1041720927,GB 1041720928,1041720959,FR -1041720960,1041721087,GB +1041720960,1041721007,GB +1041721008,1041721023,FR +1041721024,1041721087,GB 1041721088,1041721343,FR 1041721344,1041721375,GB 1041721376,1041721391,FR @@ -1884,19 +1914,17 @@ 1041721856,1041722119,FR 1041722120,1041722127,GB 1041722128,1041722135,FR -1041722136,1041722175,GB -1041722176,1041722183,FR -1041722184,1041722191,GB +1041722136,1041722191,GB 1041722192,1041722223,FR 1041722224,1041722279,GB 1041722280,1041722287,FR -1041722288,1041722367,GB -1041722368,1041722375,FR -1041722376,1041722383,GB +1041722288,1041722383,GB 1041722384,1041722391,FR 1041722392,1041722399,GB 1041722400,1041722415,FR -1041722416,1041722511,GB +1041722416,1041722431,GB +1041722432,1041722463,FR +1041722464,1041722511,GB 1041722512,1041722535,FR 1041722536,1041722551,GB 1041722552,1041722567,FR @@ -1924,21 +1952,21 @@ 1041723216,1041723295,FR 1041723296,1041723391,GB 1041723392,1041723711,FR -1041723712,1041723727,GB -1041723728,1041723743,FR -1041723744,1041723903,GB -1041723904,1041724591,FR +1041723712,1041723903,GB +1041723904,1041724463,FR +1041724464,1041724479,GB +1041724480,1041724511,FR +1041724512,1041724527,GB +1041724528,1041724591,FR 1041724592,1041724607,GB -1041724608,1041724623,FR -1041724624,1041724631,GB -1041724632,1041724671,FR +1041724608,1041724671,FR 1041724672,1041724927,GB 1041724928,1041725007,FR 1041725008,1041725023,GB 1041725024,1041725031,FR 1041725032,1041725039,GB -1041725040,1041725159,FR -1041725160,1041725167,GB +1041725040,1041725135,FR +1041725136,1041725167,GB 1041725168,1041725183,FR 1041725184,1041725231,GB 1041725232,1041725255,FR @@ -1947,7 +1975,9 @@ 1041725344,1041725407,GB 1041725408,1041725703,FR 1041725704,1041725711,GB -1041725712,1041725815,FR +1041725712,1041725799,FR +1041725800,1041725807,GB +1041725808,1041725815,FR 1041725816,1041725823,GB 1041725824,1041725983,FR 1041725984,1041725999,GB @@ -1967,11 +1997,15 @@ 1041726648,1041726655,GB 1041726656,1041726671,FR 1041726672,1041726687,GB -1041726688,1041726847,FR +1041726688,1041726735,FR +1041726736,1041726751,GB +1041726752,1041726847,FR 1041726848,1041726855,GB 1041726856,1041726879,FR 1041726880,1041726903,GB -1041726904,1041727487,FR +1041726904,1041727239,FR +1041727240,1041727247,GB +1041727248,1041727487,FR 1041727488,1041727999,GB 1041728000,1041728063,FR 1041728064,1041728095,GB @@ -1992,8 +2026,8 @@ 1041729565,1041729566,FR 1041729567,1041729567,GB 1041729568,1041729615,FR -1041729616,1041729623,GB -1041729624,1041729663,FR +1041729616,1041729631,GB +1041729632,1041729663,FR 1041729664,1041729839,GB 1041729840,1041729871,FR 1041729872,1041729887,GB @@ -2007,7 +2041,9 @@ 1041730176,1041730183,GB 1041730184,1041730239,FR 1041730240,1041730247,GB -1041730248,1041731903,FR +1041730248,1041730639,FR +1041730640,1041730655,GB +1041730656,1041731903,FR 1041731904,1041731935,GB 1041731936,1041731967,FR 1041731968,1041732031,GB @@ -2048,8 +2084,8 @@ 1041735504,1041735511,FR 1041735512,1041735559,GB 1041735560,1041735567,FR -1041735568,1041735575,GB -1041735576,1041735615,FR +1041735568,1041735583,GB +1041735584,1041735615,FR 1041735616,1041735679,GB 1041735680,1041736191,FR 1041736192,1041736199,GB @@ -2187,8 +2223,8 @@ 1041741632,1041741647,GB 1041741648,1041741663,FR 1041741664,1041741679,GB -1041741680,1041741695,FR -1041741696,1041741823,GB +1041741680,1041741687,FR +1041741688,1041741823,GB 1041741824,1041742095,FR 1041742096,1041742111,GB 1041742112,1041742127,FR @@ -2227,15 +2263,21 @@ 1041743744,1041743759,GB 1041743760,1041743767,FR 1041743768,1041743775,GB -1041743776,1041743807,FR +1041743776,1041743791,FR +1041743792,1041743799,GB +1041743800,1041743807,FR 1041743808,1041743823,GB 1041743824,1041743831,FR 1041743832,1041743855,GB 1041743856,1041743863,FR 1041743864,1041743871,GB -1041743872,1041744271,FR -1041744272,1041744287,GB -1041744288,1041744311,FR +1041743872,1041744143,FR +1041744144,1041744151,GB +1041744152,1041744255,FR +1041744256,1041744263,GB +1041744264,1041744271,FR +1041744272,1041744295,GB +1041744296,1041744311,FR 1041744312,1041744327,GB 1041744328,1041744479,FR 1041744480,1041744511,GB @@ -2249,13 +2291,13 @@ 1041744944,1041744951,GB 1041744952,1041744975,FR 1041744976,1041744983,GB -1041744984,1041744991,FR -1041744992,1041745031,GB +1041744984,1041745007,FR +1041745008,1041745031,GB 1041745032,1041745055,FR 1041745056,1041745071,GB 1041745072,1041745095,FR -1041745096,1041745135,GB -1041745136,1041745151,FR +1041745096,1041745143,GB +1041745144,1041745151,FR 1041745152,1041745159,GB 1041745160,1041745167,FR 1041745168,1041745191,GB @@ -2291,10 +2333,12 @@ 1041745752,1041745767,GB 1041745768,1041745823,FR 1041745824,1041745871,GB -1041745872,1041745903,FR -1041745904,1041745959,GB +1041745872,1041745887,FR +1041745888,1041745959,GB 1041745960,1041745967,FR -1041745968,1041746015,GB +1041745968,1041745983,GB +1041745984,1041745999,FR +1041746000,1041746015,GB 1041746016,1041746023,FR 1041746024,1041746047,GB 1041746048,1041746063,FR @@ -2322,7 +2366,11 @@ 1041747520,1041749503,FR 1041749504,1041749507,GB 1041749508,1041749511,FR -1041749512,1041749691,GB +1041749512,1041749555,GB +1041749556,1041749559,FR +1041749560,1041749639,GB +1041749640,1041749643,FR +1041749644,1041749691,GB 1041749692,1041749695,FR 1041749696,1041749715,GB 1041749716,1041749719,FR @@ -2335,27 +2383,17 @@ 1041750528,1041750543,GB 1041750544,1041750559,FR 1041750560,1041750591,GB -1041750592,1041750791,FR -1041750792,1041750807,GB -1041750808,1041750839,FR -1041750840,1041750847,GB -1041750848,1041750863,FR +1041750592,1041750799,FR +1041750800,1041750807,GB +1041750808,1041750863,FR 1041750864,1041750871,GB -1041750872,1041750895,FR -1041750896,1041750919,GB -1041750920,1041750943,FR -1041750944,1041750967,GB -1041750968,1041750983,FR -1041750984,1041750991,GB -1041750992,1041751023,FR -1041751024,1041751039,GB -1041751040,1041751311,FR +1041750872,1041751311,FR 1041751312,1041751327,GB 1041751328,1041751343,FR 1041751344,1041751359,GB 1041751360,1041751439,FR -1041751440,1041751447,GB -1041751448,1041751623,FR +1041751440,1041751455,GB +1041751456,1041751623,FR 1041751624,1041751631,GB 1041751632,1041751639,FR 1041751640,1041751647,GB @@ -2371,8 +2409,8 @@ 1041754144,1041754151,GB 1041754152,1041754239,FR 1041754240,1041754247,GB -1041754248,1041754399,FR -1041754400,1041754423,GB +1041754248,1041754415,FR +1041754416,1041754423,GB 1041754424,1041754479,FR 1041754480,1041754495,GB 1041754496,1041755231,FR @@ -2385,11 +2423,11 @@ 1041755336,1041755343,GB 1041755344,1041755391,FR 1041755392,1041755399,GB -1041755400,1041755463,FR -1041755464,1041755471,GB +1041755400,1041755455,FR +1041755456,1041755471,GB 1041755472,1041755631,FR -1041755632,1041755639,GB -1041755640,1041756463,FR +1041755632,1041755647,GB +1041755648,1041756463,FR 1041756464,1041756471,GB 1041756472,1041756599,FR 1041756600,1041756607,GB @@ -2413,7 +2451,9 @@ 1041757584,1041757591,GB 1041757592,1041757663,FR 1041757664,1041757671,GB -1041757672,1041758207,FR +1041757672,1041758031,FR +1041758032,1041758039,GB +1041758040,1041758207,FR 1041758208,1041760255,GB 1041760256,1041768447,DE 1041768448,1041776639,GB @@ -2525,7 +2565,9 @@ 1042890960,1042890991,GB 1042890992,1042891775,NL 1042891776,1042891839,GB -1042891840,1042892287,NL +1042891840,1042892015,NL +1042892016,1042892031,DE +1042892032,1042892287,NL 1042892288,1042892319,SE 1042892320,1042892383,PT 1042892384,1042892447,IT @@ -2815,11 +2857,9 @@ 1043996120,1043996143,BE 1043996144,1043996151,NL 1043996152,1043996159,BE -1043996160,1043996687,NL -1043996688,1043996703,BE -1043996704,1043996775,NL -1043996776,1043996783,BE -1043996784,1043996815,NL +1043996160,1043996695,NL +1043996696,1043996703,BE +1043996704,1043996815,NL 1043996816,1043997183,BE 1043997184,1043997375,NL 1043997376,1043997463,BE @@ -2875,9 +2915,7 @@ 1044000000,1044000031,BE 1044000032,1044000063,NL 1044000064,1044000095,BE -1044000096,1044000103,NL -1044000104,1044000111,BE -1044000112,1044000119,NL +1044000096,1044000119,NL 1044000120,1044000127,BE 1044000128,1044000767,NL 1044000768,1044000831,BE @@ -2966,20 +3004,16 @@ 1044003364,1044003371,NL 1044003372,1044003379,BE 1044003380,1044003383,NL -1044003384,1044003407,BE -1044003408,1044003411,NL -1044003412,1044003423,BE +1044003384,1044003423,BE 1044003424,1044003427,NL 1044003428,1044003459,BE 1044003460,1044003463,NL 1044003464,1044003467,BE 1044003468,1044003471,NL -1044003472,1044003475,BE -1044003476,1044003479,NL -1044003480,1044003483,BE +1044003472,1044003483,BE 1044003484,1044003487,NL -1044003488,1044003507,BE -1044003508,1044003527,NL +1044003488,1044003511,BE +1044003512,1044003527,NL 1044003528,1044003539,BE 1044003540,1044003543,NL 1044003544,1044003551,BE @@ -3006,9 +3040,7 @@ 1044003688,1044003691,NL 1044003692,1044003695,BE 1044003696,1044003699,NL -1044003700,1044003707,BE -1044003708,1044003711,NL -1044003712,1044003723,BE +1044003700,1044003723,BE 1044003724,1044003751,NL 1044003752,1044003755,BE 1044003756,1044003775,NL @@ -3035,8 +3067,8 @@ 1044003992,1044004007,BE 1044004008,1044004079,NL 1044004080,1044004095,BE -1044004096,1044004319,NL -1044004320,1044004351,BE +1044004096,1044004303,NL +1044004304,1044004351,BE 1044004352,1044004879,NL 1044004880,1044004903,BE 1044004904,1044004911,NL @@ -3101,9 +3133,9 @@ 1044011772,1044011775,BE 1044011776,1044011971,NL 1044011972,1044012031,BE -1044012032,1044012047,NL -1044012048,1044012063,BE -1044012064,1044012087,NL +1044012032,1044012039,NL +1044012040,1044012047,BE +1044012048,1044012087,NL 1044012088,1044012095,BE 1044012096,1044012103,NL 1044012104,1044012111,BE @@ -3233,8 +3265,8 @@ 1044027424,1044027431,BE 1044027432,1044027447,NL 1044027448,1044027455,BE -1044027456,1044027487,NL -1044027488,1044027527,BE +1044027456,1044027479,NL +1044027480,1044027527,BE 1044027528,1044027543,NL 1044027544,1044027575,BE 1044027576,1044027583,NL @@ -3265,8 +3297,8 @@ 1044029052,1044029055,BE 1044029056,1044029059,NL 1044029060,1044029067,BE -1044029068,1044029079,NL -1044029080,1044029311,BE +1044029068,1044029075,NL +1044029076,1044029311,BE 1044029312,1044029441,NL 1044029442,1044029442,BE 1044029443,1044029445,NL @@ -3304,9 +3336,7 @@ 1044029546,1044029546,NL 1044029547,1044029548,BE 1044029549,1044029549,NL -1044029550,1044029550,BE -1044029551,1044029551,NL -1044029552,1044029552,BE +1044029550,1044029552,BE 1044029553,1044029553,NL 1044029554,1044029554,BE 1044029555,1044029556,NL @@ -3375,7 +3405,9 @@ 1044029687,1044029687,BE 1044029688,1044029693,NL 1044029694,1044029694,BE -1044029695,1044029719,NL +1044029695,1044029703,NL +1044029704,1044029711,BE +1044029712,1044029719,NL 1044029720,1044029727,BE 1044029728,1044029743,NL 1044029744,1044029767,BE @@ -3383,13 +3415,15 @@ 1044029776,1044029783,BE 1044029784,1044029831,NL 1044029832,1044029839,BE -1044029840,1044029895,NL +1044029840,1044029871,NL +1044029872,1044029879,BE +1044029880,1044029895,NL 1044029896,1044029903,BE 1044029904,1044029951,NL 1044029952,1044029959,BE 1044029960,1044029967,NL -1044029968,1044029975,BE -1044029976,1044030015,NL +1044029968,1044029983,BE +1044029984,1044030015,NL 1044030016,1044030023,BE 1044030024,1044030047,NL 1044030048,1044030055,BE @@ -3428,8 +3462,8 @@ 1044030768,1044030815,NL 1044030816,1044030823,BE 1044030824,1044030831,NL -1044030832,1044030839,BE -1044030840,1044030879,NL +1044030832,1044030847,BE +1044030848,1044030879,NL 1044030880,1044030887,BE 1044030888,1044030911,NL 1044030912,1044030919,BE @@ -3558,14 +3592,14 @@ 1044031760,1044031799,NL 1044031800,1044031807,BE 1044031808,1044031815,NL -1044031816,1044031839,BE -1044031840,1044031847,NL -1044031848,1044031863,BE -1044031864,1044031879,NL +1044031816,1044031871,BE +1044031872,1044031879,NL 1044031880,1044031887,BE 1044031888,1044031927,NL 1044031928,1044031935,BE -1044031936,1044031983,NL +1044031936,1044031967,NL +1044031968,1044031975,BE +1044031976,1044031983,NL 1044031984,1044031991,BE 1044031992,1044031999,NL 1044032000,1044032015,BE @@ -3623,9 +3657,9 @@ 1044032992,1044032999,BE 1044033000,1044033039,NL 1044033040,1044033047,BE -1044033048,1044033055,NL -1044033056,1044033063,BE -1044033064,1044033135,NL +1044033048,1044033111,NL +1044033112,1044033119,BE +1044033120,1044033135,NL 1044033136,1044033151,BE 1044033152,1044033207,NL 1044033208,1044033215,BE @@ -3661,7 +3695,9 @@ 1044033992,1044033999,BE 1044034000,1044034015,NL 1044034016,1044034023,BE -1044034024,1044034095,NL +1044034024,1044034031,NL +1044034032,1044034039,BE +1044034040,1044034095,NL 1044034096,1044034119,BE 1044034120,1044034127,NL 1044034128,1044034135,BE @@ -3699,29 +3735,39 @@ 1044035064,1044035071,BE 1044035072,1044035143,NL 1044035144,1044035151,BE -1044035152,1044035295,NL +1044035152,1044035191,NL +1044035192,1044035199,BE +1044035200,1044035295,NL 1044035296,1044035311,BE 1044035312,1044035327,NL -1044035328,1044035335,BE -1044035336,1044035343,NL -1044035344,1044035351,BE -1044035352,1044035455,NL +1044035328,1044035351,BE +1044035352,1044035415,NL +1044035416,1044035423,BE +1044035424,1044035455,NL 1044035456,1044035471,BE -1044035472,1044035511,NL -1044035512,1044035519,BE -1044035520,1044035583,NL +1044035472,1044035479,NL +1044035480,1044035487,BE +1044035488,1044035495,NL +1044035496,1044035503,BE +1044035504,1044035511,NL +1044035512,1044035527,BE +1044035528,1044035583,NL 1044035584,1044035591,BE 1044035592,1044035607,NL 1044035608,1044035615,BE 1044035616,1044035655,NL 1044035656,1044035663,BE 1044035664,1044035711,NL -1044035712,1044035719,BE -1044035720,1044035791,NL +1044035712,1044035727,BE +1044035728,1044035791,NL 1044035792,1044035807,BE -1044035808,1044035855,NL -1044035856,1044035863,BE -1044035864,1044035943,NL +1044035808,1044035847,NL +1044035848,1044035871,BE +1044035872,1044035887,NL +1044035888,1044035895,BE +1044035896,1044035911,NL +1044035912,1044035919,BE +1044035920,1044035943,NL 1044035944,1044035967,BE 1044035968,1044035999,NL 1044036000,1044036007,BE @@ -3731,7 +3777,9 @@ 1044036080,1044036087,BE 1044036088,1044036095,NL 1044036096,1044036103,BE -1044036104,1044036127,NL +1044036104,1044036111,NL +1044036112,1044036119,BE +1044036120,1044036127,NL 1044036128,1044036135,BE 1044036136,1044036143,NL 1044036144,1044036151,BE @@ -3749,9 +3797,15 @@ 1044036472,1044036479,BE 1044036480,1044036575,NL 1044036576,1044036607,BE -1044036608,1044036679,NL -1044036680,1044036687,BE -1044036688,1044036775,NL +1044036608,1044036615,NL +1044036616,1044036623,BE +1044036624,1044036647,NL +1044036648,1044036655,BE +1044036656,1044036671,NL +1044036672,1044036687,BE +1044036688,1044036759,NL +1044036760,1044036767,BE +1044036768,1044036775,NL 1044036776,1044036783,BE 1044036784,1044036807,NL 1044036808,1044036815,BE @@ -3786,8 +3840,8 @@ 1044036986,1044036990,NL 1044036991,1044036991,BE 1044036992,1044037007,NL -1044037008,1044037009,BE -1044037010,1044037014,NL +1044037008,1044037010,BE +1044037011,1044037014,NL 1044037015,1044037015,BE 1044037016,1044037021,NL 1044037022,1044037022,BE @@ -3827,7 +3881,9 @@ 1044037160,1044037167,BE 1044037168,1044037191,NL 1044037192,1044037199,BE -1044037200,1044037271,NL +1044037200,1044037207,NL +1044037208,1044037223,BE +1044037224,1044037271,NL 1044037272,1044037279,BE 1044037280,1044037287,NL 1044037288,1044037295,BE @@ -3989,26 +4045,28 @@ 1044061760,1044061775,BE 1044061776,1044061783,NL 1044061784,1044061791,BE -1044061792,1044061887,NL +1044061792,1044061831,NL +1044061832,1044061839,BE +1044061840,1044061887,NL 1044061888,1044061895,BE 1044061896,1044061919,NL -1044061920,1044061935,BE -1044061936,1044062015,NL +1044061920,1044061951,BE +1044061952,1044062015,NL 1044062016,1044062031,BE 1044062032,1044062039,NL 1044062040,1044062047,BE 1044062048,1044062079,NL 1044062080,1044062087,BE 1044062088,1044062103,NL -1044062104,1044062111,BE -1044062112,1044062175,NL +1044062104,1044062119,BE +1044062120,1044062175,NL 1044062176,1044062199,BE 1044062200,1044062223,NL 1044062224,1044062239,BE 1044062240,1044062375,NL 1044062376,1044062383,BE -1044062384,1044062407,NL -1044062408,1044062415,BE +1044062384,1044062399,NL +1044062400,1044062415,BE 1044062416,1044062463,NL 1044062464,1044062471,BE 1044062472,1044062503,NL @@ -4086,15 +4144,12 @@ 1044270080,1044271615,BE 1044272128,1044272383,BE 1044272896,1044273151,BE -1044273408,1044273663,BE -1044273920,1044274175,BE 1044283392,1044316159,FR 1044316160,1044332543,NO 1044332544,1044348927,RU 1044348928,1044365311,LV 1044365312,1044381695,SE -1044381696,1044384255,RU -1044384256,1044384511,TJ +1044381696,1044384511,RU 1044384512,1044384767,KZ 1044384768,1044389887,RU 1044389888,1044398079,FR @@ -4232,10 +4287,10 @@ 1044930808,1044930823,BE 1044930824,1044930831,GB 1044930832,1044930847,BE -1044930848,1044930943,GB -1044930944,1044930951,BE -1044930952,1044930959,GB -1044930960,1044930967,BE +1044930848,1044930879,GB +1044930880,1044930911,BE +1044930912,1044930927,DE +1044930928,1044930967,BE 1044930968,1044930979,GB 1044930980,1044931023,BE 1044931024,1044931027,GB @@ -4243,9 +4298,13 @@ 1044931104,1044931107,GB 1044931108,1044931111,BE 1044931112,1044931119,GB -1044931120,1044931199,BE -1044931200,1044931303,GB -1044931304,1044931375,BE +1044931120,1044931215,BE +1044931216,1044931231,GB +1044931232,1044931239,BE +1044931240,1044931247,GB +1044931248,1044931263,BE +1044931264,1044931295,GB +1044931296,1044931375,BE 1044931376,1044931391,GB 1044931392,1044931407,BE 1044931408,1044931423,GB @@ -4267,14 +4326,14 @@ 1044931976,1044931983,GB 1044931984,1044932063,BE 1044932064,1044932079,GB -1044932080,1044932131,BE -1044932132,1044932199,GB -1044932200,1044932207,BE -1044932208,1044932223,GB -1044932224,1044932295,BE -1044932296,1044932307,GB -1044932308,1044932311,BE -1044932312,1044932351,GB +1044932080,1044932135,BE +1044932136,1044932143,GB +1044932144,1044932159,BE +1044932160,1044932191,GB +1044932192,1044932303,BE +1044932304,1044932307,GB +1044932308,1044932343,BE +1044932344,1044932351,GB 1044932352,1044932391,BE 1044932392,1044932407,GB 1044932408,1044932503,BE @@ -4283,7 +4342,9 @@ 1044932676,1044932687,GB 1044932688,1044932703,BE 1044932704,1044932707,GB -1044932708,1044932735,BE +1044932708,1044932719,BE +1044932720,1044932727,GB +1044932728,1044932735,BE 1044932736,1044932799,GB 1044932800,1044932807,BE 1044932808,1044932815,GB @@ -4293,7 +4354,9 @@ 1044932856,1044932863,GB 1044932864,1044932919,BE 1044932920,1044932927,GB -1044932928,1044932951,BE +1044932928,1044932943,BE +1044932944,1044932947,GB +1044932948,1044932951,BE 1044932952,1044932959,GB 1044932960,1044933023,BE 1044933024,1044933039,GB @@ -4305,11 +4368,9 @@ 1044933304,1044933311,GB 1044933312,1044933359,BE 1044933360,1044933375,GB -1044933376,1044933423,BE -1044933424,1044933439,GB -1044933440,1044933567,BE -1044933568,1044933583,GB -1044933584,1044933711,BE +1044933376,1044933415,BE +1044933416,1044933439,GB +1044933440,1044933711,BE 1044933712,1044933719,GB 1044933720,1044933727,BE 1044933728,1044933735,GB @@ -4321,9 +4382,7 @@ 1044933844,1044933847,GB 1044933848,1044933863,BE 1044933864,1044933871,GB -1044933872,1044933959,BE -1044933960,1044933983,GB -1044933984,1044934191,BE +1044933872,1044934191,BE 1044934192,1044934199,GB 1044934200,1044934239,BE 1044934240,1044934247,GB @@ -4335,17 +4394,15 @@ 1044934400,1044934495,GB 1044934496,1044934575,BE 1044934576,1044934583,GB -1044934584,1044934719,BE +1044934584,1044934591,BE +1044934592,1044934599,GB +1044934600,1044934719,BE 1044934720,1044934911,GB 1044934912,1044934979,BE -1044934980,1044934991,GB -1044934992,1044935027,BE +1044934980,1044934983,GB +1044934984,1044935027,BE 1044935028,1044935039,GB -1044935040,1044935055,BE -1044935056,1044935071,GB -1044935072,1044935135,BE -1044935136,1044935151,GB -1044935152,1044935231,BE +1044935040,1044935231,BE 1044935232,1044935247,GB 1044935248,1044935279,BE 1044935280,1044935295,GB @@ -4358,9 +4415,11 @@ 1044935432,1044935479,BE 1044935480,1044935487,GB 1044935488,1044935591,BE -1044935592,1044935623,GB -1044935624,1044935647,BE -1044935648,1044935671,GB +1044935592,1044935615,GB +1044935616,1044935647,BE +1044935648,1044935655,GB +1044935656,1044935663,BE +1044935664,1044935671,GB 1044935672,1044935879,BE 1044935880,1044935887,GB 1044935888,1044935903,BE @@ -4378,20 +4437,18 @@ 1044936312,1044936335,BE 1044936336,1044936351,GB 1044936352,1044936439,BE -1044936440,1044936471,GB -1044936472,1044936479,BE -1044936480,1044936503,GB +1044936440,1044936463,GB +1044936464,1044936479,BE +1044936480,1044936487,GB +1044936488,1044936495,BE +1044936496,1044936503,GB 1044936504,1044936711,BE 1044936712,1044936719,GB 1044936720,1044936831,BE 1044936832,1044936847,GB -1044936848,1044936887,BE -1044936888,1044936895,GB -1044936896,1044936991,BE -1044936992,1044937023,GB -1044937024,1044937167,BE -1044937168,1044937175,GB -1044937176,1044937183,BE +1044936848,1044937015,BE +1044937016,1044937023,GB +1044937024,1044937183,BE 1044937184,1044937187,GB 1044937188,1044937191,BE 1044937192,1044937195,GB @@ -4527,10 +4584,10 @@ 1045716992,1045725183,RU 1045725184,1045733375,CZ 1045733376,1045741567,GB -1045741568,1045741839,SE -1045741840,1045741855,GB -1045741856,1045741887,SE -1045741888,1045742039,GB +1045741568,1045741887,SE +1045741888,1045742015,GB +1045742016,1045742023,SE +1045742024,1045742039,GB 1045742040,1045742047,SE 1045742048,1045742063,GB 1045742064,1045742127,SE @@ -4556,8 +4613,8 @@ 1045742768,1045742783,SE 1045742784,1045742831,GB 1045742832,1045742839,SE -1045742840,1045742975,GB -1045742976,1045743023,SE +1045742840,1045742847,GB +1045742848,1045743023,SE 1045743024,1045743031,GB 1045743032,1045743039,SE 1045743040,1045743063,GB @@ -4574,11 +4631,12 @@ 1045743792,1045743803,SE 1045743804,1045743807,GB 1045743808,1045743999,SE -1045744000,1045744063,GB +1045744000,1045744007,LU +1045744008,1045744063,GB 1045744064,1045744383,SE 1045744384,1045745407,GB -1045745408,1045745599,SE -1045745600,1045745623,GB +1045745408,1045745607,SE +1045745608,1045745623,GB 1045745624,1045745639,SE 1045745640,1045745647,GB 1045745648,1045745655,SE @@ -4663,8 +4721,8 @@ 1046316032,1046316543,FR 1046316544,1046317055,DK 1046317056,1046317567,ES -1046317568,1046318079,SE -1046318080,1046318335,NL +1046317568,1046317823,GB +1046317824,1046318335,NL 1046318336,1046318591,GB 1046318592,1046320127,NL 1046320128,1046323199,GB @@ -4703,7 +4761,9 @@ 1046479952,1046480475,DE 1046480476,1046480479,GB 1046480480,1046480703,DE -1046480704,1046480895,GB +1046480704,1046480735,GB +1046480736,1046480767,DE +1046480768,1046480895,GB 1046480896,1046481175,DE 1046481176,1046481183,GB 1046481184,1046481327,DE @@ -4714,13 +4774,13 @@ 1046481964,1046481967,GB 1046481968,1046482207,DE 1046482208,1046482239,GB -1046482240,1046482335,DE -1046482336,1046482943,GB +1046482240,1046482367,DE +1046482368,1046482943,GB 1046482944,1046483231,DE 1046483232,1046483471,GB 1046483472,1046483871,DE -1046483872,1046483983,GB -1046483984,1046484351,DE +1046483872,1046483967,GB +1046483968,1046484351,DE 1046484352,1046484479,GB 1046484480,1046484511,DE 1046484512,1046484607,GB @@ -5203,9 +5263,15 @@ 1046514784,1046515199,DE 1046515200,1046515711,GB 1046515712,1046515967,DE -1046515968,1046524159,GB +1046515968,1046516991,GB +1046516992,1046517031,DE +1046517032,1046517039,GB +1046517040,1046517087,DE +1046517088,1046524159,GB 1046524160,1046524191,DE -1046524192,1046524287,GB +1046524192,1046524207,GB +1046524208,1046524215,DE +1046524216,1046524287,GB 1046524288,1046524355,DE 1046524356,1046524415,GB 1046524416,1046525183,DE @@ -5226,8 +5292,8 @@ 1046527488,1046527743,GB 1046527744,1046527999,DE 1046528000,1046528255,GB -1046528256,1046528295,DE -1046528296,1046528319,GB +1046528256,1046528287,DE +1046528288,1046528319,GB 1046528320,1046528335,DE 1046528336,1046528351,GB 1046528352,1046528383,DE @@ -5241,9 +5307,7 @@ 1046528472,1046528479,DE 1046528480,1046528487,GB 1046528488,1046528495,DE -1046528496,1046528499,GB -1046528500,1046528503,DE -1046528504,1046528519,GB +1046528496,1046528519,GB 1046528520,1046528527,DE 1046528528,1046528543,GB 1046528544,1046528559,DE @@ -5258,11 +5322,7 @@ 1046528704,1046529279,GB 1046529280,1046529535,DE 1046529536,1046530047,GB -1046530048,1046530559,DE -1046530560,1046530591,GB -1046530592,1046530639,DE -1046530640,1046530655,GB -1046530656,1046530687,DE +1046530048,1046530687,DE 1046530688,1046530815,GB 1046530816,1046530879,DE 1046530880,1046530943,GB @@ -5275,16 +5335,16 @@ 1046531096,1046531103,DE 1046531104,1046531111,GB 1046531112,1046531127,DE -1046531128,1046531167,GB -1046531168,1046531183,DE -1046531184,1046531839,GB +1046531128,1046531839,GB 1046531840,1046532095,DE 1046532096,1046534015,GB 1046534016,1046534047,DE 1046534048,1046534143,GB 1046534144,1046534655,DE 1046534656,1046534911,GB -1046534912,1046535311,DE +1046534912,1046535167,DE +1046535168,1046535295,GB +1046535296,1046535311,DE 1046535312,1046535359,GB 1046535360,1046535423,DE 1046535424,1046535487,GB @@ -5313,25 +5373,21 @@ 1046536288,1046536295,DE 1046536296,1046536319,GB 1046536320,1046536351,DE -1046536352,1046536391,GB -1046536392,1046536399,DE -1046536400,1046536423,GB +1046536352,1046536423,GB 1046536424,1046536439,DE 1046536440,1046536607,GB 1046536608,1046536667,DE -1046536668,1046536671,GB -1046536672,1046537023,DE +1046536668,1046536703,GB +1046536704,1046537023,DE 1046537024,1046537055,GB 1046537056,1046537071,DE 1046537072,1046537087,GB 1046537088,1046537151,DE 1046537152,1046537215,GB -1046537216,1046538239,DE -1046538240,1046538255,GB -1046538256,1046538303,DE -1046538304,1046538431,GB -1046538432,1046538455,DE -1046538456,1046538463,GB +1046537216,1046537983,DE +1046537984,1046538431,GB +1046538432,1046538447,DE +1046538448,1046538463,GB 1046538464,1046538495,DE 1046538496,1046538751,GB 1046538752,1046539519,DE @@ -5344,12 +5400,12 @@ 1046541440,1046541503,GB 1046541504,1046541567,DE 1046541568,1046541631,GB -1046541632,1046541711,DE -1046541712,1046541727,GB +1046541632,1046541695,DE +1046541696,1046541727,GB 1046541728,1046541759,DE 1046541760,1046541767,GB -1046541768,1046541787,DE -1046541788,1046541807,GB +1046541768,1046541783,DE +1046541784,1046541807,GB 1046541808,1046542591,DE 1046542592,1046542847,GB 1046542848,1046543103,DE @@ -5478,7 +5534,7 @@ 1047306240,1047314431,PL 1047314432,1047322623,SE 1047322624,1047330815,IT -1047330816,1047339007,LU +1047330816,1047339007,RU 1047339008,1047340431,SE 1047340432,1047340439,NO 1047340440,1047340799,SE @@ -5557,7 +5613,9 @@ 1047567240,1047567243,CH 1047567244,1047567247,DE 1047567248,1047567255,CH -1047567256,1047567315,DE +1047567256,1047567279,DE +1047567280,1047567287,CH +1047567288,1047567315,DE 1047567316,1047567319,AT 1047567320,1047567359,DE 1047567360,1047567375,ES @@ -5569,7 +5627,9 @@ 1047567456,1047567459,CH 1047567460,1047567463,DE 1047567464,1047567467,CH -1047567468,1047567551,DE +1047567468,1047567495,DE +1047567496,1047567499,CH +1047567500,1047567551,DE 1047567552,1047567555,CH 1047567556,1047567647,DE 1047567648,1047567651,CH @@ -5597,7 +5657,9 @@ 1047568160,1047568163,CH 1047568164,1047568167,DE 1047568168,1047568171,ES -1047568172,1047568235,DE +1047568172,1047568215,DE +1047568216,1047568219,CH +1047568220,1047568235,DE 1047568236,1047568239,CH 1047568240,1047568247,DE 1047568248,1047568251,CH @@ -5609,10 +5671,14 @@ 1047601152,1047625727,RU 1047625728,1047633919,NO 1047633920,1047642111,FI +1047642112,1047658495,DE 1047728128,1047732223,SE 1047740672,1047740927,GB 1047782656,1047782687,GB 1047782696,1047782703,GB +1047782720,1047782751,SE +1047782752,1047782783,NO +1047782784,1047782815,FI 1047789568,1047806031,AT 1047806032,1047806047,IT 1047806048,1047822335,AT @@ -5652,19 +5718,29 @@ 1048215552,1048221695,RU 1048221696,1048223743,UA 1048223744,1048225791,DK +1048225792,1048227839,CZ +1048227840,1048233983,RU +1048233984,1048236031,UA +1048236032,1048240127,RU +1048240128,1048242175,IL +1048242176,1048244223,PL +1048244224,1048246271,RU +1048246272,1048248319,NO 1048248320,1048313855,IT 1048313856,1048510463,GB 1048510464,1048575999,SE -1048576000,1048584191,DE +1048576000,1048580671,DE +1048580672,1048580735,GB +1048580736,1048584191,DE 1048584192,1048592383,IL 1048592384,1048600575,IT 1048600576,1048603135,EE 1048603136,1048603391,LV 1048603392,1048604927,EE -1048604928,1048604945,LT -1048604946,1048604947,EE -1048604948,1048604959,LT -1048604960,1048608255,EE +1048604928,1048604959,LT +1048604960,1048604991,EE +1048604992,1048605055,LT +1048605056,1048608255,EE 1048608256,1048608287,RU 1048608288,1048608767,EE 1048608768,1048611583,GB @@ -5674,6 +5750,7 @@ 1048621056,1048625151,DE 1048625152,1048633343,GB 1048633344,1048641535,NO +1048641536,1048649727,FR 1048649728,1048657919,CZ 1048657920,1048674303,GB 1048674304,1048682495,NL @@ -5690,9 +5767,7 @@ 1048840104,1048840463,NL 1048840464,1048840471,DE 1048840472,1048840703,NL -1048840704,1048841343,DE -1048841344,1048841359,CZ -1048841360,1048843263,DE +1048840704,1048843263,DE 1048843264,1048843983,NL 1048843984,1048843991,DE 1048843992,1048844087,NL @@ -5700,11 +5775,9 @@ 1048844096,1048844255,NL 1048844256,1048844263,DE 1048844264,1048844287,NL -1048844288,1048844303,CH -1048844304,1048844319,DE +1048844288,1048844319,DE 1048844320,1048844351,NL -1048844352,1048844383,AT -1048844384,1048845567,DE +1048844352,1048845567,DE 1048845568,1048845743,NL 1048845744,1048845751,DE 1048845752,1048845759,NL @@ -6222,7 +6295,8 @@ 1048976297,1048976302,DE 1048976304,1048976319,DE 1048976384,1048976447,DE -1048976512,1048978943,DE +1048976512,1048977407,DE +1048978432,1048978943,DE 1048979136,1048979295,DE 1048979328,1048980495,DE 1048980512,1048980527,DE @@ -6247,9 +6321,9 @@ 1049002624,1049002751,DE 1049003264,1049004291,DE 1049004352,1049004415,DE -1049004544,1049006463,DE +1049004544,1049006079,DE 1049006504,1049006511,DE -1049006592,1049007111,DE +1049007104,1049007111,DE 1049007120,1049007167,DE 1049007360,1049011711,DE 1049011968,1049012479,DE @@ -6273,11 +6347,9 @@ 1049020472,1049020479,DE 1049020480,1049020543,GE 1049020544,1049026559,DE -1049026816,1049031903,DE -1049031936,1049032171,DE +1049026816,1049032171,DE 1049032176,1049032319,DE -1049032384,1049032671,DE -1049032688,1049032699,DE +1049032384,1049032699,DE 1049032704,1049034751,DE 1049067520,1049100287,DK 1049100288,1049231359,GB @@ -6305,8 +6377,8 @@ 1049366528,1049368575,DE 1049368576,1049369599,GB 1049369600,1049369935,DE -1049369936,1049369983,GB -1049369984,1049370255,DE +1049369936,1049370111,GB +1049370112,1049370255,DE 1049370256,1049370367,GB 1049370368,1049370623,DE 1049370624,1049378815,AT @@ -6336,7 +6408,9 @@ 1049460736,1049468927,NO 1049468928,1049477119,DE 1049477120,1049493503,PL -1049493504,1049518079,FI +1049493504,1049514691,FI +1049514692,1049514695,SE +1049514696,1049518079,FI 1049518080,1049518095,GB 1049518096,1049547295,FI 1049547296,1049547327,AF @@ -6349,8 +6423,7 @@ 1049707008,1049707519,NL 1049707520,1049707775,LB 1049707776,1049708031,DZ -1049708032,1049708543,IQ -1049708544,1049709055,GB +1049708032,1049709055,GB 1049709056,1049710079,DZ 1049710080,1049711103,NL 1049711104,1049711359,IR @@ -6628,8 +6701,8 @@ 1051100048,1051100055,NL 1051100056,1051100079,BE 1051100080,1051100095,NL -1051100096,1051100135,BE -1051100136,1051100159,NL +1051100096,1051100143,BE +1051100144,1051100159,NL 1051100160,1051100455,BE 1051100456,1051100463,NL 1051100464,1051100487,BE @@ -6665,27 +6738,31 @@ 1051101104,1051101127,BE 1051101128,1051101151,NL 1051101152,1051101183,BE -1051101184,1051101239,NL -1051101240,1051101247,BE +1051101184,1051101191,NL +1051101192,1051101199,BE +1051101200,1051101231,NL +1051101232,1051101247,BE 1051101248,1051101279,NL 1051101280,1051101287,BE 1051101288,1051101407,NL 1051101408,1051101415,BE 1051101416,1051101431,NL 1051101432,1051101439,BE -1051101440,1051101599,NL +1051101440,1051101463,NL +1051101464,1051101471,BE +1051101472,1051101599,NL 1051101600,1051101607,BE 1051101608,1051101615,NL 1051101616,1051101623,BE -1051101624,1051101639,NL -1051101640,1051101647,BE +1051101624,1051101631,NL +1051101632,1051101647,BE 1051101648,1051101679,NL 1051101680,1051101687,BE 1051101688,1051101719,NL 1051101720,1051101735,BE 1051101736,1051101783,NL -1051101784,1051101791,BE -1051101792,1051101999,NL +1051101784,1051101799,BE +1051101800,1051101999,NL 1051102000,1051102007,BE 1051102008,1051102143,NL 1051102144,1051102159,BE @@ -6697,11 +6774,15 @@ 1051103288,1051103295,BE 1051103296,1051103439,NL 1051103440,1051103447,BE -1051103448,1051103543,NL -1051103544,1051103551,BE -1051103552,1051103559,NL -1051103560,1051103567,BE -1051103568,1051103639,NL +1051103448,1051103511,NL +1051103512,1051103519,BE +1051103520,1051103543,NL +1051103544,1051103567,BE +1051103568,1051103583,NL +1051103584,1051103591,BE +1051103592,1051103599,NL +1051103600,1051103607,BE +1051103608,1051103639,NL 1051103640,1051103647,BE 1051103648,1051103695,NL 1051103696,1051103703,BE @@ -6711,8 +6792,8 @@ 1051103808,1051103815,BE 1051103816,1051103919,NL 1051103920,1051103927,BE -1051103928,1051103967,NL -1051103968,1051103975,BE +1051103928,1051103959,NL +1051103960,1051103975,BE 1051103976,1051104023,NL 1051104024,1051104031,BE 1051104032,1051104111,NL @@ -6725,11 +6806,15 @@ 1051104360,1051104367,BE 1051104368,1051104383,NL 1051104384,1051104391,BE -1051104392,1051104583,NL -1051104584,1051104591,BE -1051104592,1051104615,NL -1051104616,1051104631,BE -1051104632,1051104751,NL +1051104392,1051104503,NL +1051104504,1051104511,BE +1051104512,1051104583,NL +1051104584,1051104599,BE +1051104600,1051104607,NL +1051104608,1051104631,BE +1051104632,1051104719,NL +1051104720,1051104727,BE +1051104728,1051104751,NL 1051104752,1051104759,BE 1051104760,1051104823,NL 1051104824,1051104831,BE @@ -6741,8 +6826,8 @@ 1051104992,1051104999,BE 1051105000,1051105047,NL 1051105048,1051105055,BE -1051105056,1051105071,NL -1051105072,1051105079,BE +1051105056,1051105063,NL +1051105064,1051105079,BE 1051105080,1051105111,NL 1051105112,1051105119,BE 1051105120,1051105127,NL @@ -6819,7 +6904,9 @@ 1051107184,1051107199,BE 1051107200,1051107207,NL 1051107208,1051107215,BE -1051107216,1051107239,NL +1051107216,1051107223,NL +1051107224,1051107231,BE +1051107232,1051107239,NL 1051107240,1051107247,BE 1051107248,1051107295,NL 1051107296,1051107303,BE @@ -6961,7 +7048,7 @@ 1052002520,1052002523,DE 1052002528,1052002543,DE 1052003328,1052003359,DE -1052003384,1052003455,DE +1052003392,1052003455,DE 1052003480,1052003487,DE 1052003552,1052003839,DE 1052003968,1052003999,DE @@ -7011,7 +7098,7 @@ 1052014592,1052014623,DE 1052015368,1052015375,DE 1052015424,1052015519,DE -1052015552,1052015615,DE +1052015552,1052015583,DE 1052015632,1052015647,DE 1052015696,1052015727,DE 1052016000,1052016127,DE @@ -7813,7 +7900,9 @@ 1052504320,1052504351,BY 1052504384,1052507583,GB 1052507648,1052507775,GB -1052507904,1052602495,GB +1052507904,1052596447,GB +1052596448,1052596463,IT +1052596464,1052602495,GB 1052602496,1052602623,ES 1052602624,1052621951,GB 1052621952,1052622015,IE @@ -7907,14 +7996,11 @@ 1053295456,1053295471,AT 1053295616,1053296639,AT 1053296640,1053296927,IT -1053296944,1053296959,IT 1053296992,1053297023,IT 1053297040,1053297055,IT 1053297112,1053297151,IT 1053298176,1053299199,CH -1053299712,1053300103,GB -1053300112,1053300119,GB -1053300128,1053300143,GB +1053299712,1053300119,GB 1053300160,1053300735,GB 1053300736,1053300991,CH 1053300992,1053301023,FR @@ -7952,8 +8038,8 @@ 1053312928,1053312959,DK 1053313024,1053313279,GB 1053313296,1053313343,GB -1053313440,1053313567,GB -1053313664,1053313695,GB +1053313440,1053313599,GB +1053313664,1053313679,GB 1053313728,1053314047,GB 1053314064,1053314079,CZ 1053315072,1053316623,GB @@ -7976,15 +8062,17 @@ 1053326432,1053326447,GB 1053326448,1053326463,BE 1053326528,1053326543,BE +1053326560,1053326567,BE 1053326576,1053326847,BE 1053326848,1053327103,FI 1053327104,1053327359,DK 1053327872,1053328383,ZA 1053328640,1053328799,ZA 1053328896,1053329087,ZA -1053329120,1053329279,ZA +1053329120,1053329135,ZA +1053329144,1053329151,ZA +1053329184,1053329279,ZA 1053329408,1053329439,ES -1053329472,1053329487,ES 1053329512,1053329535,ES 1053329600,1053329639,ES 1053330432,1053330687,ES @@ -8006,7 +8094,7 @@ 1053337216,1053337279,ZA 1053337600,1053337631,CH 1053338112,1053338623,FI -1053338624,1053338927,NO +1053338624,1053338943,NO 1053338976,1053338983,NO 1053339136,1053339423,NO 1053339456,1053339519,NO @@ -8016,8 +8104,7 @@ 1053340160,1053340415,ZA 1053340480,1053340495,NL 1053340672,1053340711,GB -1053340720,1053340823,GB -1053340832,1053340871,GB +1053340720,1053340871,GB 1053340888,1053340895,GB 1053340904,1053340919,GB 1053340928,1053341183,GB @@ -8029,7 +8116,8 @@ 1053348640,1053348655,PT 1053349120,1053349631,NL 1053349888,1053349951,IE -1053350144,1053350383,IE +1053350144,1053350359,IE +1053350368,1053350383,IE 1053350400,1053350479,BE 1053350488,1053350495,BE 1053350656,1053350911,BE @@ -8079,6 +8167,7 @@ 1053821568,1053821695,GB 1053824016,1053824023,DE 1053824128,1053824255,NL +1053825024,1053826047,ES 1053826816,1053827327,DE 1053827328,1053827583,BE 1053829888,1053830143,DE @@ -8144,9 +8233,9 @@ 1053882880,1053883391,GB 1053883392,1053884415,DE 1053884416,1053892607,BH -1053892608,1053893631,DE -1053893632,1053893647,GB -1053893648,1053894495,DE +1053892608,1053892619,DE +1053892620,1053892623,GB +1053892624,1053894495,DE 1053894496,1053894527,GB 1053894528,1053894719,DE 1053894720,1053894735,FR @@ -8262,7 +8351,7 @@ 1055199360,1055199375,CH 1055199464,1055199487,CH 1055200416,1055200423,PT -1055201024,1055203327,US +1055201024,1055201279,US 1055203328,1055203359,CZ 1055203840,1055204095,CZ 1055204864,1055205375,CZ @@ -8293,13 +8382,10 @@ 1055218432,1055218447,PT 1055218464,1055218471,PT 1055218480,1055219711,PT -1055219968,1055219975,NL 1055220224,1055220287,NL 1055220352,1055220399,NL -1055220736,1055221247,NL 1055221504,1055221631,BE -1055221760,1055222015,NL -1055222528,1055223807,NL +1055223040,1055223807,NL 1055223904,1055223999,LU 1055224064,1055224463,LU 1055224576,1055224607,LU @@ -8311,13 +8397,11 @@ 1055226368,1055226399,ES 1055227640,1055227647,PT 1055227904,1055228159,TR -1055228416,1055229183,TR +1055228928,1055229183,TR 1055232000,1055232255,NL -1055232512,1055233535,NL -1055233792,1055234047,NL +1055232512,1055233023,NL 1055234064,1055234079,NL 1055234080,1055234127,US -1055234560,1055235071,NL 1055241984,1055242239,GR 1055252736,1055252991,ES 1055253056,1055253087,ES @@ -8325,9 +8409,7 @@ 1055260672,1055326207,SE 1055326208,1055334399,RU 1055334400,1055342591,IE -1055342592,1055347455,RO -1055347456,1055347711,HU -1055347712,1055358975,RO +1055342592,1055358975,RO 1055358976,1055367167,GB 1055367168,1055375359,RU 1055375360,1055391743,OM @@ -8513,9 +8595,7 @@ 1066627336,1066627343,CA 1066627344,1066718559,US 1066718560,1066718591,PR -1066718592,1066828095,US -1066828096,1066828127,HK -1066828128,1066828151,US +1066718592,1066828151,US 1066828152,1066828159,CN 1066828160,1066828255,US 1066828256,1066828287,HK @@ -8526,12 +8606,12 @@ 1066830240,1066830287,US 1066830288,1066830303,SG 1066830304,1066830311,US -1066830312,1066830591,SG +1066830312,1066830319,SG +1066830320,1066830335,US +1066830336,1066830591,SG 1066830592,1066830799,US 1066830800,1066830807,SG -1066830808,1066830815,US -1066830816,1066830847,SG -1066830848,1066831039,US +1066830808,1066831039,US 1066831040,1066831071,JP 1066831072,1066898783,US 1066898784,1066898815,CO @@ -8663,14 +8743,13 @@ 1072934880,1072934911,TW 1072934912,1072934943,CA 1072934944,1072934975,PH -1072934976,1072935135,US +1072934976,1072935039,CA +1072935040,1072935135,US 1072935136,1072935159,CA 1072935160,1072935167,US 1072935168,1072935679,CA 1072935680,1072935807,PH -1072935808,1072935871,CA -1072935872,1072935935,US -1072935936,1072936447,CA +1072935808,1072936447,CA 1072936448,1072936959,PH 1072936960,1072937215,US 1072937216,1072937471,IR @@ -8711,7 +8790,7 @@ 1073049600,1073053695,BS 1073053696,1073070079,US 1073074176,1073143807,US -1073147904,1073217535,US +1073147904,1073233919,US 1073283072,1073373183,US 1073373184,1073381375,CA 1073381376,1073381887,NL @@ -8766,7 +8845,11 @@ 1074691136,1074691199,AR 1074691200,1074696063,US 1074696064,1074696095,AU -1074696096,1074705791,US +1074696096,1074701583,US +1074701584,1074701591,CA +1074701592,1074701599,US +1074701600,1074701631,CA +1074701632,1074705791,US 1074705792,1074705799,IL 1074705800,1074705887,US 1074705888,1074705903,IL @@ -8814,8 +8897,7 @@ 1075558912,1075576831,US 1075576832,1075580927,GB 1075580928,1075585023,NO -1075585024,1075589119,US -1075593216,1075593967,US +1075585024,1075593967,US 1075593968,1075593983,CA 1075593984,1075594975,US 1075594976,1075594991,CA @@ -8902,7 +8984,9 @@ 1076026368,1076026879,CA 1076026880,1076028159,US 1076028160,1076028415,CA -1076028416,1076029439,US +1076028416,1076028927,US +1076028928,1076029183,BZ +1076029184,1076029439,US 1076029440,1076029951,CA 1076029952,1076030207,CN 1076030208,1076030783,US @@ -8919,15 +9003,21 @@ 1076282112,1076282143,AU 1076282144,1076282351,US 1076282352,1076282367,CA -1076282368,1076284679,US +1076282368,1076283903,US +1076283904,1076284159,NO +1076284160,1076284679,US 1076284680,1076284687,HU 1076284688,1076285439,US 1076285440,1076285455,DK -1076285456,1076292559,US +1076285456,1076291903,US +1076291904,1076291919,UA +1076291920,1076292559,US 1076292560,1076292567,NL 1076292568,1076294655,US 1076294656,1076294687,CY -1076294688,1076295071,US +1076294688,1076294703,US +1076294704,1076294719,NO +1076294720,1076295071,US 1076295072,1076295087,NL 1076295088,1076295167,US 1076295168,1076295199,CY @@ -9065,9 +9155,7 @@ 1078775808,1078777855,CO 1078777856,1078780927,EC 1078780928,1078935551,US -1078947840,1078952831,US -1078952832,1078952895,GB -1078952896,1078956799,US +1078947840,1078956799,US 1078956800,1078957055,GB 1078957056,1079320575,US 1079320576,1079328767,CA @@ -9076,14 +9164,16 @@ 1079329952,1079377919,US 1079377920,1079378943,CA 1079378944,1079379199,US -1079379200,1079380927,CA +1079379200,1079379455,CA +1079379456,1079379711,US +1079379712,1079380927,CA 1079380928,1079381183,US -1079381184,1079381503,CA -1079381504,1079381599,US +1079381184,1079381567,CA +1079381568,1079381599,US 1079381600,1079381631,WS 1079381632,1079382015,US -1079382016,1079382783,CA -1079382784,1079383039,US +1079382016,1079382527,CA +1079382528,1079383039,US 1079383040,1079383295,VG 1079383296,1079383807,US 1079383808,1079384063,MH @@ -9091,17 +9181,19 @@ 1079384576,1079385087,ZW 1079385088,1079385855,CA 1079385856,1079386111,SZ -1079386112,1079386623,US +1079386112,1079386623,CA 1079386624,1079386879,SG 1079386880,1079387135,EG -1079387136,1079387391,CA +1079387136,1079387391,US 1079387392,1079387647,NG 1079387648,1079387903,US 1079387904,1079388159,PH 1079388160,1079389439,CA 1079389440,1079389695,US 1079389696,1079389951,LC -1079389952,1079391231,CA +1079389952,1079390719,CA +1079390720,1079390975,US +1079390976,1079391231,CA 1079391232,1079391487,LC 1079391488,1079393279,CA 1079393280,1079393791,US @@ -9114,8 +9206,7 @@ 1079394176,1079394191,US 1079394192,1079394239,CA 1079394240,1079394303,US -1079394304,1079396095,CA -1079396096,1079396351,US +1079394304,1079396351,CA 1079396352,1079397375,MP 1079397376,1079397631,MH 1079397632,1079397887,CA @@ -9127,22 +9218,28 @@ 1079400448,1079400511,FR 1079400512,1079400575,CA 1079400576,1079400639,US -1079400640,1079400703,CA -1079400704,1079400831,US -1079400832,1079401983,CA -1079401984,1079402495,US -1079402496,1079403007,CA +1079400640,1079400767,CA +1079400768,1079400799,US +1079400800,1079401983,CA +1079401984,1079402239,US +1079402240,1079403007,CA 1079403008,1079403519,US 1079403520,1079403775,CA -1079403776,1079403967,US -1079403968,1079403999,CA -1079404000,1079404799,US +1079403776,1079403807,US +1079403808,1079403903,CA +1079403904,1079403935,US +1079403936,1079403999,CA +1079404000,1079404031,US +1079404032,1079404543,CA +1079404544,1079404799,US 1079404800,1079405023,CA -1079405024,1079405247,US -1079405248,1079405407,CA +1079405024,1079405119,US +1079405120,1079405407,CA 1079405408,1079405439,BD 1079405440,1079405567,US -1079405568,1079408383,CA +1079405568,1079407615,CA +1079407616,1079408127,US +1079408128,1079408383,CA 1079408384,1079408415,SA 1079408416,1079408431,CA 1079408432,1079408447,US @@ -9152,22 +9249,13 @@ 1079409920,1079410175,US 1079410176,1079411455,CA 1079411456,1079411711,PK -1079411712,1079412735,CA -1079412736,1079413247,US -1079413248,1079413311,CA +1079411712,1079413311,CA 1079413312,1079413343,US -1079413344,1079414271,CA -1079414272,1079414783,US -1079414784,1079415807,CA +1079413344,1079415807,CA 1079415808,1079416319,US 1079416320,1079422223,CA 1079422224,1079422239,IN -1079422240,1079422463,CA -1079422464,1079423487,MZ -1079423488,1079423999,CA -1079424000,1079424767,MZ -1079424768,1079425279,US -1079425280,1079425535,CA +1079422240,1079425535,CA 1079425536,1079425551,ZA 1079425552,1079433215,CA 1079433216,1079435263,CR @@ -9225,7 +9313,9 @@ 1081409792,1081410047,PR 1081410048,1081410559,US 1081410560,1081411583,PR -1081411584,1081416191,US +1081411584,1081413423,US +1081413424,1081413439,PR +1081413440,1081416191,US 1081416192,1081416447,PR 1081416448,1081419199,US 1081419200,1081419231,PR @@ -9246,7 +9336,9 @@ 1081573376,1081589759,US 1081589760,1081593855,BB 1081593856,1081597951,CA -1081597952,1081606143,US +1081597952,1081639423,US +1081639424,1081639679,DE +1081639680,1081655295,US 1081671680,1082314751,US 1082314752,1082315263,CA 1082315264,1082315471,US @@ -9280,7 +9372,7 @@ 1085603840,1085849599,US 1085849600,1085857791,CA 1085857792,1085927423,US -1085939712,1085968383,US +1085931520,1085968383,US 1085972480,1085997055,US 1085997056,1086013439,CA 1086013440,1086022079,US @@ -9302,14 +9394,15 @@ 1086029056,1086029663,US 1086029664,1086029695,CA 1086029696,1086070783,US -1086095360,1086128127,US -1086193664,1086358143,US +1086095360,1086358143,US 1086358144,1086358271,PA 1086358272,1086359231,US 1086359232,1086359295,IL 1086359296,1086421503,US 1086421504,1086422015,MP -1086422016,1086922751,US +1086422016,1086476543,US +1086476544,1086476607,BM +1086476608,1086922751,US 1086922752,1086930943,CA 1086930944,1086955519,US 1086955520,1086971903,CA @@ -9398,7 +9491,7 @@ 1089974272,1090129919,US 1090142208,1090146303,US 1090174976,1090207743,US -1090207744,1090220031,CA +1090207744,1090215935,CA 1090220032,1090355199,US 1090355200,1090363391,CA 1090363392,1090387967,US @@ -9479,9 +9572,7 @@ 1093126400,1093126431,VG 1093126432,1093126911,US 1093126912,1093127167,CA -1093127168,1093128959,US -1093128960,1093129215,CA -1093129216,1093130751,US +1093127168,1093130751,US 1093130752,1093131007,CA 1093131008,1093131231,US 1093131232,1093131247,VG @@ -9497,7 +9588,11 @@ 1093697536,1093699071,BB 1093699072,1093700607,GD 1093700608,1093701631,VC -1093701632,1093730303,BB +1093701632,1093708287,BB +1093708288,1093709311,LC +1093709312,1093719807,BB +1093719808,1093720319,LC +1093720320,1093730303,BB 1093730304,1093730559,US 1093730560,1093730815,HK 1093730816,1093844991,US @@ -9569,7 +9664,9 @@ 1098382144,1098382175,CA 1098382176,1098891583,US 1098891584,1098891607,AU -1098891608,1098891695,US +1098891608,1098891623,US +1098891624,1098891631,AU +1098891632,1098891695,US 1098891696,1098891711,AU 1098891712,1098891743,US 1098891744,1098891775,AU @@ -9683,8 +9780,7 @@ 1102449152,1102449407,SV 1102449408,1102454527,CR 1102454528,1102454783,HN -1102454784,1102479359,US -1102483456,1102512127,US +1102454784,1102512127,US 1102512128,1102516223,JM 1102516224,1103244799,US 1103244800,1103245055,EC @@ -9734,12 +9830,10 @@ 1107275776,1107279871,CA 1107279872,1107288063,US 1107288064,1107296255,CA -1107296256,1107697663,US +1107296256,1107701759,US 1107701760,1107705855,CA 1107705856,1107730431,US -1107734528,1107805695,US -1107805696,1107805951,TR -1107805952,1107820543,US +1107734528,1107820543,US 1107853312,1108025343,US 1108029440,1108033535,US 1108033536,1108041727,CA @@ -9810,8 +9904,7 @@ 1109927168,1109927423,AU 1109927424,1110126591,US 1110126592,1110130687,CA -1110130688,1110237183,US -1110241280,1110310911,US +1110130688,1110310911,US 1110310912,1110376447,CA 1110376448,1110445311,US 1110445312,1110446591,CA @@ -9897,8 +9990,7 @@ 1113923840,1113923903,BR 1113923904,1113932815,US 1113932816,1113932823,CA -1113932824,1113989119,US -1113993216,1113997311,US +1113932824,1113997311,US 1113997312,1114005503,CA 1114005504,1114054655,US 1114054656,1114062847,CA @@ -9949,7 +10041,6 @@ 1115119616,1115135999,US 1115136000,1115144191,CA 1115144192,1115693055,US -1115693056,1115697151,CO 1115697152,1115705343,US 1115705344,1115709439,CA 1115709440,1115783167,US @@ -10255,8 +10346,7 @@ 1118994432,1119109119,US 1119109120,1119113215,CA 1119113216,1119150079,US -1119158272,1119199231,US -1119207424,1119211519,US +1119158272,1119211519,US 1119211520,1119215615,CA 1119215616,1119289343,US 1119289344,1119354879,CA @@ -10265,8 +10355,7 @@ 1119432704,1119436799,CA 1119436800,1119440895,US 1119440896,1119444991,CA -1119444992,1119449087,US -1119453184,1119469567,US +1119444992,1119469567,US 1119469568,1119477759,CA 1119477760,1119502335,US 1119502336,1119510527,CA @@ -10274,8 +10363,7 @@ 1119567872,1119571967,CA 1119571968,1119580159,US 1119580160,1119584255,CA -1119584256,1119592447,US -1119596544,1120041983,US +1119584256,1120041983,US 1120041984,1120042495,AR 1120042496,1120064511,US 1120064512,1120064767,AR @@ -10317,7 +10405,7 @@ 1120310016,1120310271,PH 1120310272,1120312063,CA 1120312064,1120312447,PH -1120312448,1120312575,US +1120312448,1120312575,CA 1120312576,1120312831,PH 1120312832,1120321535,CA 1120321536,1120346111,US @@ -10473,7 +10561,9 @@ 1122535424,1122538495,KR 1122538496,1122635775,US 1122635776,1122639871,CA -1122639872,1123123199,US +1122639872,1123057663,US +1123057664,1123074047,CA +1123074048,1123123199,US 1123123200,1123127295,CA 1123127296,1123180543,US 1123180544,1123184639,CA @@ -10487,7 +10577,9 @@ 1123534848,1123536895,AW 1123536896,1123582239,US 1123582240,1123582271,CY -1123582272,1123583327,US +1123582272,1123582431,US +1123582432,1123582463,CA +1123582464,1123583327,US 1123583328,1123583359,CA 1123583360,1123583455,US 1123583456,1123583519,CY @@ -10693,6 +10785,8 @@ 1125498880,1125515263,CA 1125515264,1125531647,US 1125531648,1125543935,CA +1125543936,1125545983,US +1125556224,1125560319,US 1125564416,1125572607,US 1125572608,1125576703,CA 1125576704,1125593087,US @@ -10761,12 +10855,13 @@ 1137491968,1137508351,CA 1137508352,1137524735,US 1137524736,1137541119,CA -1137541120,1137598463,US -1137606656,1137614847,US -1137623040,1137631231,PR +1137541120,1137623039,US +1137623040,1137639423,PR 1137639424,1137704959,US 1137704960,1137713151,CA -1137713152,1137843711,US +1137713152,1137724063,US +1137724064,1137724071,KR +1137724072,1137843711,US 1137843712,1137843775,NO 1137843776,1137868799,US 1137868800,1137872895,CA @@ -10784,7 +10879,11 @@ 1137963008,1137967103,VI 1137967104,1137975295,CA 1137975296,1137983487,US -1137983488,1137991679,CA +1137983488,1137983823,CA +1137983824,1137983831,US +1137983832,1137983839,CA +1137983840,1137983863,RU +1137983864,1137991679,CA 1137991680,1138049023,US 1138049024,1138049919,CA 1138049920,1138050047,US @@ -10803,28 +10902,24 @@ 1138196480,1138204671,CA 1138204672,1138212863,US 1138212864,1138216959,CA -1138216960,1138418175,US +1138216960,1138417663,US +1138417664,1138417695,CA +1138417696,1138418175,US 1138418176,1138418431,CA 1138418432,1138421759,US 1138421760,1138421791,DO -1138421792,1138429951,US -1138434048,1138462719,US -1138466816,1138470911,US -1138475008,1138479103,US -1138483200,1138487295,US -1138491392,1138499583,US +1138421792,1138499583,US 1138499584,1138503679,CA -1138507776,1138536447,US -1138540544,1138548735,US +1138503680,1138544895,US +1138544896,1138545151,GB +1138545152,1138548735,US 1138548736,1138550015,CA 1138550016,1138552575,US 1138552576,1138556927,CA -1138556928,1138561023,US -1138565120,1138593791,US +1138556928,1138593791,US 1138597888,1138601983,US 1138606080,1138618367,US -1138622464,1138642943,US -1138647040,1138651135,US +1138622464,1138651135,US 1138655232,1138667519,US 1138671616,1138675711,US 1138679808,1138683903,US @@ -10840,53 +10935,63 @@ 1138851840,1138854927,US 1138854928,1138854943,GB 1138854944,1138917375,US -1138917376,1138933759,CA +1138917376,1138937855,CA 1138950144,1139146751,US 1139146752,1139154943,GT 1139154944,1139167231,JM 1139167232,1139179519,US -1139212288,1139216383,US -1139277824,1140285439,US +1139179520,1139187711,CA +1139195904,1139199999,US +1139212288,1139261439,US +1139261440,1139269631,CA +1139269632,1140563967,US 1140850688,1145073663,US 1145077760,1145094143,US 1145098240,1145110527,US -1145118720,1145139199,US -1145142784,1145143295,US -1145151488,1145180159,US +1145118720,1145141247,US +1145142784,1145180159,US 1145184256,1145188351,US 1145192448,1145196543,US 1145208832,1145221119,US 1145241600,1145245695,US -1145274368,1145278463,US +1145274368,1145290751,US 1145294848,1145298943,US 1145303040,1145307135,US +1145307136,1145311231,CA 1145319424,1145327615,US -1145348096,1145376767,US +1145331712,1145376767,US +1145380864,1145384959,US 1145389056,1145397247,US 1145401344,1145405439,US -1145417728,1145421823,US +1145405440,1145409535,CA +1145413632,1145421823,US 1145421824,1145430015,CA -1145446400,1145450495,US +1145438208,1145450495,US +1145466880,1145475071,US 1145483264,1145487359,US 1145503744,1145507839,CA +1145511936,1145516031,CA 1145520128,1145524223,US -1145528320,1145532415,US +1145528320,1145536511,US 1145552896,1145556991,CA +1145556992,1145561087,US 1145569280,1150287871,US 1150287872,1150812159,CA 1150812160,1151860735,US -1151877120,1151881215,US +1151868928,1151881215,US 1151889408,1151893503,CA +1151901696,1151905791,US 1151913984,1151918079,US -1151926272,1151930367,US -1151934464,1151946751,US +1151926272,1151946751,US 1151959040,1151967231,US 1151979520,1151987711,US 1151991808,1152016383,US +1152024576,1152028671,US 1152032768,1152040959,US 1152049152,1152053247,US 1152061440,1152073727,US 1152086016,1152094207,US +1152098304,1152102399,US 1152106496,1152114687,US 1152114688,1152122879,CA 1152122880,1152581631,US @@ -10896,6 +11001,7 @@ 1152778240,1152843775,CA 1152843776,1156055039,US 1156063232,1156067327,US +1156071424,1156075519,CA 1156083712,1156104191,US 1156112384,1156128767,US 1156132864,1156136959,US @@ -10904,7 +11010,7 @@ 1156194304,1156214783,US 1156218880,1156235263,US 1156251648,1156255743,US -1156268032,1156272127,US +1156268032,1156276223,US 1156284416,1156292607,US 1156308992,1157713663,US 1157713664,1157713791,CA @@ -10918,7 +11024,8 @@ 1158027264,1158027519,CA 1158027520,1158028287,US 1158028288,1158028543,CA -1158028544,1158148095,US +1158028544,1158041599,US +1158045696,1158148095,US 1158148096,1158152191,CA 1158152192,1158193151,US 1158193152,1158197247,CA @@ -11135,9 +11242,7 @@ 1163407360,1163411455,CA 1163411456,1163527023,US 1163527024,1163527039,VG -1163527040,1163527935,US -1163527936,1163528191,CA -1163528192,1163531007,US +1163527040,1163531007,US 1163531008,1163532287,CA 1163532288,1163533055,US 1163533056,1163533311,CA @@ -11171,11 +11276,9 @@ 1163547648,1163547903,CA 1163547904,1163548159,US 1163548160,1163548671,CA -1163548672,1163549695,US -1163549696,1163550207,CA -1163550208,1163550463,US -1163550464,1163550719,CA -1163550720,1163551455,US +1163548672,1163549951,US +1163549952,1163550207,CA +1163550208,1163551455,US 1163551456,1163551487,CR 1163551488,1163551743,US 1163551744,1163552255,CA @@ -11217,25 +11320,31 @@ 1167321960,1167321967,GB 1167321968,1167851519,US 1167851520,1168113663,CA +1168130048,1168138239,US 1168162816,1168171007,US -1168175104,1168179199,US +1168175104,1168187391,US 1168195584,1168211967,US +1168211968,1168220159,CA 1168228352,1168236543,US -1168261120,1168277503,US -1168293888,1168302079,US -1168310272,1168318463,US +1168244736,1168322559,US 1168343040,1168359423,US 1168375808,1168392191,US +1168408576,1168412671,US +1168416768,1168420863,US +1168424960,1168429055,US +1168437248,1168441343,US +1168457728,1168461823,US 1168470016,1168474111,US +1168474112,1168490495,CA 1168509440,1168509695,US +1168509952,1168510975,US 1168515072,1168523263,US -1168539648,1168547839,US -1168556032,1168576511,US -1168605184,1168621567,US -1168646144,1168658431,US -1168662528,1168670719,US +1168539648,1168551935,US +1168556032,1168584703,US +1168588800,1168625663,US +1168646144,1168670719,US 1168670720,1168687103,CA -1168687104,1168719871,US +1168687104,1168728063,US 1168736256,1168785407,US 1168801792,1168805887,US 1168818176,1168859135,US @@ -11246,10 +11355,12 @@ 1168900096,1168908287,US 1168916480,1168932863,CA 1168932864,1168936959,US -1168949248,1168973823,US -1168982016,1169063935,US -1169092608,1169096703,US -1169162240,1169182975,US +1168949248,1168963583,US +1168963584,1168965119,CA +1168965120,1168973823,US +1168982016,1169068031,US +1169092608,1169113087,US +1169129472,1169182975,US 1169182976,1169183487,CA 1169183488,1169184767,US 1169184768,1169185023,CA @@ -11259,12 +11370,15 @@ 1169186048,1169186303,SG 1169186304,1169203199,US 1169203200,1169211391,CA -1169211392,1170276351,US +1169211392,1170333695,US +1170341888,1170374655,US +1170407424,1170411519,US 1170472960,1170481151,CA +1170481152,1170489343,US 1170489344,1170497535,CA +1170497536,1170505727,US 1170505728,1170522111,CA -1170522112,1170530303,US -1170538496,1170718719,US +1170522112,1170718719,US 1170735104,1175977983,US 1175977984,1176502271,CA 1176502272,1176555519,US @@ -11275,19 +11389,24 @@ 1176629248,1176629759,US 1176629760,1176631039,CA 1176631040,1176633343,US -1176666112,1176698879,US +1176666112,1176702975,US 1176702976,1176707071,CA -1176715264,1176719359,US +1176707072,1176719359,US 1176727552,1176731647,US 1176731648,1176735743,PR 1176748032,1176752127,US 1176756224,1176760319,US 1176764416,1176768511,PM -1176797184,1176879103,US +1176772608,1176776703,US +1176780800,1176784895,US +1176788992,1176879103,US 1176895488,1176928255,CA 1176928256,1176969215,US -1177026560,1177028607,US -1177030656,1177550847,US +1177026560,1177030655,US +1177030656,1177033727,AG +1177033728,1177354239,US +1177354240,1177419775,PR +1177419776,1177550847,US 1177550848,1178000911,CA 1178000912,1178000919,US 1178000920,1178075135,CA @@ -11328,7 +11447,9 @@ 1208860672,1208918015,US 1208918016,1208922111,CA 1208922112,1208954879,US -1208954880,1208958975,CA +1208954880,1208958207,CA +1208958208,1208958463,US +1208958464,1208958975,CA 1208958976,1208975359,US 1208975360,1208983551,CA 1208983552,1209347839,US @@ -11359,10 +11480,7 @@ 1210366656,1210366719,GB 1210366720,1210449919,US 1210449920,1210580991,CA -1210580992,1210740735,US -1210744832,1210769407,US -1210777600,1210892287,US -1210908672,1210925055,US +1210580992,1210925055,US 1210925056,1210941439,CA 1210941440,1211236351,US 1211236352,1211269119,PR @@ -11428,8 +11546,7 @@ 1224318208,1224318463,CA 1224318464,1224321023,US 1224321024,1224321535,CA -1224321536,1224450047,US -1224474624,1224476671,US +1224321536,1224476671,US 1224476672,1224478719,AN 1224478720,1224480767,US 1224480768,1224484863,JM @@ -11439,9 +11556,13 @@ 1224501248,1224503551,JM 1224503552,1224503807,BS 1224503808,1224521727,JM -1224521728,1224529919,US +1224521728,1224527871,US +1224527872,1224529664,JM +1224529665,1224529919,US 1224529920,1224538111,JM 1224538112,1241743359,US +1241743360,1241759743,CA +1241759744,1241763839,US 1241776128,1242300415,US 1242300416,1242562559,CA 1242562560,1244659711,US @@ -11487,7 +11608,32 @@ 1247191200,1247191207,IE 1247191208,1247346687,US 1247543296,1248571391,US +1248854016,1248864255,US +1248864256,1248866303,CA +1248866304,1248885759,US +1248885760,1248886783,CA +1248886784,1248899071,US +1248899072,1248900095,CA +1248900096,1248913407,US +1248913408,1248915455,MF +1248915456,1248919551,US +1248919552,1248920575,CA +1248920576,1248921599,US +1248921600,1248923647,CA +1248923648,1248931839,US +1248933888,1248936959,US +1248936960,1248939007,CA +1248939008,1248946175,US +1248946176,1248947199,VG +1248947200,1248958463,US +1248958464,1248959487,CA +1248959488,1248964607,US +1248964608,1248966655,CA +1248966656,1249003519,US +1249003520,1249005567,CA +1249005568,1249010687,US 1249640448,1249648639,US +1249673216,1249677311,US 1249681408,1249796095,US 1249796096,1249804287,CA 1249804288,1249886207,US @@ -11506,9 +11652,9 @@ 1255062464,1255062527,PA 1255062528,1255063551,US 1255063552,1255071743,PR -1255071744,1255193599,US -1255193600,1255194623,GB +1255071744,1255194623,US 1255211008,1255247871,US +1255251968,1255256063,US 1255260160,1255276543,US 1255276544,1255342079,CA 1255342080,1255374303,US @@ -11529,14 +11675,14 @@ 1256001536,1256005631,CA 1256005632,1256079359,US 1256079360,1256087551,KY -1256087552,1263263743,US +1256087552,1263267327,US +1263267328,1263267839,CA 1263271936,1264721919,US 1264779264,1264980223,US 1264980224,1264980479,HK -1264980480,1264992255,US -1265008640,1265012735,US +1264980480,1265025023,US 1265041408,1265057791,US -1265074176,1265098751,US +1265074176,1265102847,US 1265106944,1266147327,US 1266147328,1266155519,CA 1266155520,1266489663,US @@ -11617,13 +11763,12 @@ 1275714560,1275715583,CA 1275715584,1275756543,US 1275756544,1275772927,CA -1275772928,1275781119,US +1275772928,1275785215,US 1275789312,1275822079,CA 1275822080,1279262719,US 1279262720,1279787007,CA 1279787008,1279819775,US -1279852544,1279868927,US -1279885312,1279950847,US +1279852544,1279950847,US 1279950848,1279951103,FI 1279951104,1279951359,US 1279951360,1279952895,CA @@ -11693,7 +11838,9 @@ 1294860288,1294893055,PL 1294893056,1294895135,CS 1294895136,1294895151,RS -1294895152,1294895495,CS +1294895152,1294895279,CS +1294895280,1294895287,RS +1294895288,1294895495,CS 1294895496,1294895615,RS 1294895616,1294902015,CS 1294902016,1294902271,RS @@ -11732,8 +11879,7 @@ 1296237312,1296237567,US 1296237568,1296237823,NL 1296237824,1296238079,ES -1296238080,1296238591,GB -1296238592,1296239103,NL +1296238080,1296239103,NL 1296239104,1296239231,FR 1296239232,1296239359,NL 1296239360,1296239615,ES @@ -11754,7 +11900,8 @@ 1296245248,1296245503,FR 1296245504,1296245759,NL 1296245760,1296246783,ES -1296246784,1296247807,NL +1296246784,1296247295,NL +1296247296,1296247807,FR 1296247808,1296247871,US 1296247872,1296247935,FR 1296247936,1296247999,BE @@ -11776,8 +11923,9 @@ 1296250144,1296250175,GB 1296250176,1296250207,BE 1296250208,1296250239,ES -1296250240,1296251231,NL -1296251232,1296251295,DE +1296250240,1296250271,BE +1296250272,1296251199,NL +1296251200,1296251295,DE 1296251296,1296251327,BE 1296251328,1296251359,IE 1296251360,1296251391,DE @@ -11793,7 +11941,9 @@ 1296252352,1296252367,NL 1296252368,1296252383,DE 1296252384,1296252415,IE -1296252416,1296252855,NL +1296252416,1296252839,NL +1296252840,1296252847,DE +1296252848,1296252855,NL 1296252856,1296252871,IE 1296252872,1296252879,BE 1296252880,1296252887,DE @@ -11803,8 +11953,8 @@ 1296252920,1296252927,PL 1296252928,1296254719,DE 1296254720,1296254975,NL -1296254976,1296255231,DE -1296255232,1296258047,NL +1296254976,1296255487,DE +1296255488,1296258047,NL 1296258048,1296258303,TW 1296258304,1296259071,NL 1296259072,1296259839,US @@ -11821,10 +11971,12 @@ 1296264224,1296264239,IE 1296264240,1296264255,NL 1296264256,1296264303,US -1296264304,1296264447,NL +1296264304,1296264319,CA +1296264320,1296264335,US +1296264336,1296264447,NL 1296264448,1296264543,US -1296264544,1296264575,CA -1296264576,1296264703,NL +1296264544,1296264607,CA +1296264608,1296264703,NL 1296264704,1296264959,US 1296264960,1296265087,NL 1296265088,1296265151,CA @@ -11856,8 +12008,8 @@ 1296469248,1296469503,NO 1296469504,1296469759,ZM 1296469760,1296470015,NO -1296470016,1296470423,TZ -1296470424,1296470463,NO +1296470016,1296470439,TZ +1296470440,1296470463,NO 1296470464,1296470527,TZ 1296470528,1296472319,NO 1296472320,1296472327,CD @@ -12114,9 +12266,7 @@ 1297661952,1297678335,UA 1297678336,1297694719,IT 1297694720,1297711103,PL -1297711104,1297717895,GB -1297717896,1297717903,BG -1297717904,1297727487,GB +1297711104,1297727487,GB 1297727488,1297743871,MD 1297743872,1297760255,DE 1297760256,1297776639,LT @@ -12305,7 +12455,8 @@ 1306509312,1306525695,PL 1306525696,1307049983,ES 1307049984,1307066367,RU -1307069696,1307069855,DE +1307069696,1307069823,DE +1307069856,1307069887,DE 1307074560,1307082751,SA 1307082752,1307090943,RU 1307090944,1307099135,GB @@ -12479,7 +12630,11 @@ 1307914240,1307918335,NL 1307918336,1307919439,GB 1307919440,1307919447,ES -1307919448,1307922431,GB +1307919448,1307919503,GB +1307919504,1307919511,ES +1307919512,1307920575,GB +1307920576,1307920583,AU +1307920584,1307922431,GB 1307922432,1307926527,NL 1307926528,1307930623,KZ 1307930624,1307934719,RU @@ -12505,7 +12660,13 @@ 1308016640,1308020735,FI 1308020736,1308024831,BG 1308024832,1308033023,RU -1308033024,1308035327,DE +1308033024,1308033279,NL +1308033280,1308033535,FR +1308033536,1308033791,DE +1308033792,1308034047,IT +1308034048,1308034559,DE +1308034560,1308034815,CZ +1308034816,1308035327,DE 1308035328,1308035583,GB 1308035584,1308037119,DE 1308037120,1308041215,UA @@ -12760,6 +12921,7 @@ 1311248384,1311250431,GB 1311250432,1311252479,RU 1311252480,1311254527,GB +1311254528,1311256575,SE 1311256576,1311258623,FR 1311258624,1311262719,GB 1311262720,1311262975,FR @@ -12855,7 +13017,9 @@ 1314127872,1314193407,LV 1314193408,1314258943,RU 1314258944,1314324479,GB -1314324480,1314390015,GR +1314324480,1314357247,GR +1314357248,1314372352,CY +1314372353,1314390015,GR 1314390016,1314455551,PL 1314455552,1314521087,KW 1314521088,1314586623,BG @@ -12939,7 +13103,9 @@ 1315772504,1315772511,NA 1315772512,1315772583,UA 1315772584,1315772599,NA -1315772600,1315772791,UA +1315772600,1315772703,UA +1315772704,1315772711,NA +1315772712,1315772791,UA 1315772792,1315772799,NA 1315772800,1315772887,UA 1315772888,1315772895,NA @@ -12957,7 +13123,9 @@ 1315773552,1315773567,NA 1315773568,1315773575,UA 1315773576,1315773583,NA -1315773584,1315773703,UA +1315773584,1315773679,UA +1315773680,1315773687,NA +1315773688,1315773703,UA 1315773704,1315773711,NA 1315773712,1315773719,UA 1315773720,1315773751,NA @@ -12967,9 +13135,7 @@ 1315773956,1315773959,NA 1315773960,1315773983,UA 1315773984,1315773991,BY -1315773992,1315773999,UA -1315774000,1315774007,NA -1315774008,1315774015,UA +1315773992,1315774015,UA 1315774016,1315774031,NA 1315774032,1315774039,UA 1315774040,1315774071,NA @@ -13009,7 +13175,9 @@ 1315860480,1315864575,IR 1315864576,1315868671,CH 1315868672,1315872767,RU -1315872768,1315875183,GB +1315872768,1315873055,GB +1315873056,1315873063,RU +1315873064,1315875183,GB 1315875184,1315875199,ES 1315875200,1315876607,GB 1315876608,1315876863,RU @@ -13023,22 +13191,19 @@ 1315897920,1315897951,IR 1315897952,1315897991,AE 1315897992,1315897999,IR -1315898000,1315898431,AE +1315898000,1315898111,AE +1315898112,1315898367,IR +1315898368,1315898431,AE 1315898432,1315898447,IR 1315898448,1315898623,AE -1315898624,1315900927,IR -1315900928,1315901183,AE -1315901184,1315901439,IR +1315898624,1315901439,IR 1315901440,1315905535,UA 1315905536,1315907583,BA -1315907584,1315908095,SI -1315908096,1315908607,BA -1315908608,1315909631,SI +1315907584,1315909631,SI 1315909632,1315913727,AZ 1315913728,1315917823,DE 1315917824,1315921919,RU 1315921920,1315926015,TR -1315926016,1315930111,NO 1315930112,1315934207,DE 1315934208,1315938303,RU 1315938304,1315942399,DK @@ -13124,416 +13289,436 @@ 1317650432,1317666815,RU 1317666816,1317666823,NG 1317666824,1317666831,CD -1317666832,1317666855,GB -1317666856,1317666871,NG -1317666872,1317666879,GB +1317666832,1317666839,NG +1317666840,1317666871,GH +1317666872,1317666879,NG 1317666880,1317666887,LR -1317666888,1317666903,NG -1317666904,1317666911,GB -1317666912,1317666919,NG +1317666888,1317666919,NG 1317666920,1317666935,GB 1317666936,1317666943,NG 1317666944,1317666951,GB -1317666952,1317666959,AO -1317666960,1317666967,NG -1317666968,1317667007,GB +1317666952,1317666967,NG +1317666968,1317666983,GB +1317666984,1317666991,CM +1317666992,1317666999,GB +1317667000,1317667007,AO 1317667008,1317667015,GH -1317667016,1317667023,GB +1317667016,1317667023,NG 1317667024,1317667031,LR 1317667032,1317667039,NG -1317667040,1317667047,GB +1317667040,1317667047,GH 1317667048,1317667055,NG 1317667056,1317667063,LR -1317667064,1317667071,GB -1317667072,1317667079,AO -1317667080,1317667095,GB +1317667064,1317667087,AO +1317667088,1317667095,NG 1317667096,1317667103,GH -1317667104,1317667111,GB +1317667104,1317667111,NG 1317667112,1317667119,GH 1317667120,1317667127,GB 1317667128,1317667135,NG -1317667136,1317667143,GB -1317667144,1317667151,NG -1317667152,1317667167,GB +1317667136,1317667143,AO +1317667144,1317667159,NG +1317667160,1317667167,AO 1317667168,1317667175,NG 1317667176,1317667191,GH -1317667192,1317667223,NG -1317667224,1317667231,GB +1317667192,1317667231,NG 1317667232,1317667239,GH -1317667240,1317667247,NG -1317667248,1317667279,GB -1317667280,1317667295,NG +1317667240,1317667263,NG +1317667264,1317667271,GB +1317667272,1317667295,NG 1317667296,1317667303,GB 1317667304,1317667311,NG -1317667312,1317667335,GB -1317667336,1317667351,NG +1317667312,1317667327,GB +1317667328,1317667351,NG 1317667352,1317667367,AO -1317667368,1317667391,GB +1317667368,1317667375,NG +1317667376,1317667391,AO 1317667392,1317667399,NG -1317667400,1317667407,GB -1317667408,1317667423,NG +1317667400,1317667423,GB 1317667424,1317667431,TD -1317667432,1317667447,GB -1317667448,1317667455,NG -1317667456,1317667471,GB -1317667472,1317667479,NG -1317667480,1317667495,GB +1317667432,1317667439,GH +1317667440,1317667455,GB +1317667456,1317667487,NG +1317667488,1317667495,GH 1317667496,1317667503,NG -1317667504,1317667543,GB +1317667504,1317667527,GB +1317667528,1317667535,AO +1317667536,1317667543,GB 1317667544,1317667551,AO 1317667552,1317667567,NG 1317667568,1317667583,GB -1317667584,1317667719,NG -1317667720,1317667727,GB -1317667728,1317667775,NG +1317667584,1317667759,NG +1317667760,1317667767,FR +1317667768,1317667775,ZA 1317667776,1317667783,CD -1317667784,1317667799,GB -1317667800,1317667823,NG -1317667824,1317668095,GB +1317667784,1317667807,NG +1317667808,1317667815,GB +1317667816,1317667823,NG +1317667824,1317667831,GB +1317667832,1317667839,GN +1317667840,1317668095,GB 1317668096,1317668103,GH -1317668104,1317668111,GB +1317668104,1317668111,ZM 1317668112,1317668119,NG -1317668120,1317668135,GB +1317668120,1317668127,AO +1317668128,1317668135,GB 1317668136,1317668143,NG -1317668144,1317668159,GB -1317668160,1317668183,NG +1317668144,1317668151,AO +1317668152,1317668183,NG 1317668184,1317668191,CI -1317668192,1317668199,GB +1317668192,1317668199,NG 1317668200,1317668207,BW 1317668208,1317668215,LR 1317668216,1317668223,GB -1317668224,1317668231,NG -1317668232,1317668239,GB +1317668224,1317668239,NG 1317668240,1317668247,LR 1317668248,1317668263,NG -1317668264,1317668271,GB +1317668264,1317668271,AO 1317668272,1317668279,SL -1317668280,1317668327,GB -1317668328,1317668343,NG +1317668280,1317668311,NG +1317668312,1317668319,IQ +1317668320,1317668343,NG 1317668344,1317668351,AO -1317668352,1317668367,GB -1317668368,1317668375,NG -1317668376,1317668383,GB -1317668384,1317668391,NG -1317668392,1317668463,GB -1317668464,1317668479,GH -1317668480,1317668503,GB +1317668352,1317668367,SL +1317668368,1317668399,NG +1317668400,1317668407,GB +1317668408,1317668415,GH +1317668416,1317668447,NG +1317668448,1317668455,GB +1317668456,1317668463,NG +1317668464,1317668471,AO +1317668472,1317668479,GH +1317668480,1317668487,NG +1317668488,1317668495,GB +1317668496,1317668503,GH 1317668504,1317668511,CD -1317668512,1317668527,GB +1317668512,1317668519,IQ +1317668520,1317668527,MZ 1317668528,1317668535,AO -1317668536,1317668559,GB +1317668536,1317668543,BJ +1317668544,1317668551,UG +1317668552,1317668559,AO 1317668560,1317668583,NG 1317668584,1317668591,LR -1317668592,1317668599,GB -1317668600,1317668607,NG +1317668592,1317668607,NG 1317668608,1317668615,GH 1317668616,1317668623,NG -1317668624,1317668639,GB -1317668640,1317668679,NG -1317668680,1317668687,GB -1317668688,1317668695,NG -1317668696,1317668711,GB -1317668712,1317668719,NG -1317668720,1317668727,GB -1317668728,1317668743,NG -1317668744,1317668855,GB -1317668856,1317668863,CI -1317668864,1317668879,NG -1317668880,1317668895,GB -1317668896,1317668911,NG -1317668912,1317668919,GB -1317668920,1317668927,NG -1317668928,1317668951,GB -1317668952,1317668959,NG -1317668960,1317668991,GB +1317668624,1317668631,SL +1317668632,1317668639,GB +1317668640,1317668735,NG +1317668736,1317668751,AO +1317668752,1317668759,GB +1317668760,1317668767,IQ +1317668768,1317668775,LR +1317668776,1317668791,NG +1317668792,1317668807,AO +1317668808,1317668823,NG +1317668824,1317668831,AO +1317668832,1317668855,NG +1317668856,1317668863,GH +1317668864,1317668871,LR +1317668872,1317668879,NG +1317668880,1317668887,GB +1317668888,1317668895,SL +1317668896,1317668983,NG +1317668984,1317668991,GB 1317668992,1317668999,NG -1317669000,1317669007,GB -1317669008,1317669015,NG -1317669016,1317669023,GB -1317669024,1317669031,NG -1317669032,1317669039,GB -1317669040,1317669063,NG -1317669064,1317669071,GB -1317669072,1317669087,NG -1317669088,1317669095,CI -1317669096,1317669119,NG +1317669000,1317669007,CD +1317669008,1317669031,NG +1317669032,1317669039,TD +1317669040,1317669047,CD +1317669048,1317669055,GB +1317669056,1317669119,NG 1317669120,1317669375,GE 1317669376,1317669631,CG 1317669632,1317669887,GB -1317669888,1317669911,NG +1317669888,1317669895,AO +1317669896,1317669911,NG 1317669912,1317669919,GH -1317669920,1317669959,NG -1317669960,1317669967,SD -1317669968,1317669975,GB -1317669976,1317669983,NG -1317669984,1317669999,GB -1317670000,1317670007,CD -1317670008,1317670055,GB -1317670056,1317670063,NG -1317670064,1317670071,GB -1317670072,1317670079,NG -1317670080,1317670103,GB +1317669920,1317669983,NG +1317669984,1317669991,LR +1317669992,1317670015,NG +1317670016,1317670031,GB +1317670032,1317670103,NG 1317670104,1317670111,CD -1317670112,1317670119,NG -1317670120,1317670175,GB -1317670176,1317670399,NG -1317670400,1317670447,GB -1317670448,1317670455,NG -1317670456,1317670471,GB +1317670112,1317670143,NG +1317670144,1317670175,SL +1317670176,1317670223,NG +1317670224,1317670231,AO +1317670232,1317670239,GB +1317670240,1317670263,NG +1317670264,1317670271,GB +1317670272,1317670399,NG +1317670400,1317670415,CD +1317670416,1317670447,NG +1317670448,1317670455,IQ +1317670456,1317670471,NG 1317670472,1317670479,CO 1317670480,1317670487,GB -1317670488,1317670495,NG -1317670496,1317670503,GB -1317670504,1317670511,NG +1317670488,1317670511,NG 1317670512,1317670519,CI -1317670520,1317670527,NG -1317670528,1317670567,GB +1317670520,1317670543,NG +1317670544,1317670551,IQ +1317670552,1317670567,NG 1317670568,1317670575,BI 1317670576,1317670583,NG -1317670584,1317670591,TD -1317670592,1317670599,GB -1317670600,1317670615,NG -1317670616,1317670655,GB -1317670656,1317670663,NG -1317670664,1317670679,GB -1317670680,1317670687,NG -1317670688,1317670695,GB -1317670696,1317670703,NG -1317670704,1317670719,GB +1317670584,1317670599,GH +1317670600,1317670607,AO +1317670608,1317670639,NG +1317670640,1317670647,GB +1317670648,1317670671,NG +1317670672,1317670679,CM +1317670680,1317670711,NG +1317670712,1317670719,GH 1317670720,1317670727,NG -1317670728,1317670735,GB -1317670736,1317670751,NG -1317670752,1317670767,GB +1317670728,1317670735,GH +1317670736,1317670743,AO +1317670744,1317670767,NG 1317670768,1317670775,GH -1317670776,1317670799,GB -1317670800,1317670807,NG -1317670808,1317670823,GB +1317670776,1317670783,GB +1317670784,1317670791,GH +1317670792,1317670807,NG +1317670808,1317670815,AO +1317670816,1317670823,NG 1317670824,1317670831,CD -1317670832,1317670839,GB -1317670840,1317670847,NG -1317670848,1317670887,GB +1317670832,1317670855,NG +1317670856,1317670863,CD +1317670864,1317670871,GB +1317670872,1317670887,NG 1317670888,1317670895,AO -1317670896,1317671207,GB -1317671208,1317671215,NG -1317671216,1317671223,GB -1317671224,1317671231,NG -1317671232,1317671247,GB +1317670896,1317670896,GB +1317670897,1317670911,NG +1317670912,1317671167,GB +1317671168,1317671175,AO +1317671176,1317671191,NG +1317671192,1317671199,SL +1317671200,1317671207,CI +1317671208,1317671239,NG +1317671240,1317671247,CI 1317671248,1317671255,NG -1317671256,1317671335,GB +1317671256,1317671263,CI +1317671264,1317671335,NG 1317671336,1317671343,BW -1317671344,1317671351,AO -1317671352,1317671415,GB -1317671416,1317671439,NG -1317671440,1317671455,GB -1317671456,1317671463,NG -1317671464,1317671471,GB -1317671472,1317671479,NG -1317671480,1317671487,GB +1317671344,1317671351,CD +1317671352,1317671383,NG +1317671384,1317671391,CI +1317671392,1317671399,NG +1317671400,1317671407,IQ +1317671408,1317671487,NG 1317671488,1317671511,AO -1317671512,1317671519,GB +1317671512,1317671519,NG 1317671520,1317671527,AO 1317671528,1317671543,NG -1317671544,1317671551,GB +1317671544,1317671551,GH 1317671552,1317671559,LR -1317671560,1317671591,NG -1317671592,1317671631,GB +1317671560,1317671575,GB +1317671576,1317671576,NG +1317671577,1317671583,GB +1317671584,1317671607,NG +1317671608,1317671615,GH +1317671616,1317671623,NG +1317671624,1317671631,SL 1317671632,1317671639,NG -1317671640,1317671647,GB -1317671648,1317671655,NE -1317671656,1317671671,GB +1317671640,1317671647,SL +1317671648,1317671663,NG +1317671664,1317671671,SL 1317671672,1317671679,NG 1317671680,1317671687,LR -1317671688,1317671711,GB -1317671712,1317671719,NG -1317671720,1317671743,GB -1317671744,1317671751,NG -1317671752,1317671759,GB +1317671688,1317671743,NG +1317671744,1317671759,GB 1317671760,1317671767,NG -1317671768,1317671823,GB +1317671768,1317671775,GB +1317671776,1317671807,NG +1317671808,1317671823,CI 1317671824,1317671831,NG -1317671832,1317671839,GB +1317671832,1317671839,GH 1317671840,1317671847,AO -1317671848,1317671855,NG -1317671856,1317671863,GB -1317671864,1317671895,NG -1317671896,1317671903,GB +1317671848,1317671895,NG +1317671896,1317671903,GH 1317671904,1317671911,NG -1317671912,1317671935,GB +1317671912,1317671919,AO +1317671920,1317671927,NG +1317671928,1317671935,GH 1317671936,1317672447,GA -1317672448,1317672455,GB -1317672456,1317672463,NG -1317672464,1317672471,GB -1317672472,1317672479,NG -1317672480,1317672487,GB -1317672488,1317672495,NG -1317672496,1317672503,GB -1317672504,1317672511,NG -1317672512,1317672519,GB -1317672520,1317672527,NG -1317672528,1317672559,GB -1317672560,1317672567,NG -1317672568,1317672591,GB -1317672592,1317672599,LR -1317672600,1317672607,NG -1317672608,1317672623,GB -1317672624,1317672631,NG -1317672632,1317672647,GB -1317672648,1317672655,NG +1317672448,1317672479,NG +1317672480,1317672487,ZM +1317672488,1317672583,NG +1317672584,1317672591,CD +1317672592,1317672607,NG +1317672608,1317672615,CM +1317672616,1317672631,NG +1317672632,1317672639,GB +1317672640,1317672655,NG 1317672656,1317672663,CD -1317672664,1317672671,GB -1317672672,1317672687,NG -1317672688,1317672711,GB -1317672712,1317672719,NG -1317672720,1317672735,GB -1317672736,1317672743,RW -1317672744,1317672759,GB -1317672760,1317672775,NG -1317672776,1317672783,GB +1317672664,1317672719,NG +1317672720,1317672727,LR +1317672728,1317672735,NG +1317672736,1317672743,LR +1317672744,1317672751,GB +1317672752,1317672767,NG +1317672768,1317672775,GB +1317672776,1317672783,NG 1317672784,1317672791,AO -1317672792,1317672799,NG +1317672792,1317672799,GB 1317672800,1317672807,RW -1317672808,1317672815,GB +1317672808,1317672815,TD 1317672816,1317672823,BW -1317672824,1317672863,GB -1317672864,1317672871,NG -1317672872,1317672887,GB -1317672888,1317672895,NG -1317672896,1317672919,GB +1317672824,1317672831,NG +1317672832,1317672839,GB +1317672840,1317672903,NG +1317672904,1317672919,CI 1317672920,1317672927,GH -1317672928,1317672943,GB -1317672944,1317672959,AO -1317672960,1317673215,GB -1317673216,1317673223,NG -1317673224,1317673231,GB -1317673232,1317673263,NG -1317673264,1317673287,GB +1317672928,1317672935,NG +1317672936,1317672943,LR +1317672944,1317672951,NG +1317672952,1317672959,AO +1317672960,1317673239,NG +1317673240,1317673247,ZW +1317673248,1317673287,NG 1317673288,1317673295,LR -1317673296,1317673303,NG -1317673304,1317673319,GB +1317673296,1317673319,NG 1317673320,1317673327,LR -1317673328,1317673351,GB -1317673352,1317673359,NG -1317673360,1317673399,GB -1317673400,1317673415,NG -1317673416,1317673463,GB -1317673464,1317673471,NG -1317673472,1317673479,GB -1317673480,1317673503,NG -1317673504,1317673511,GB -1317673512,1317673535,NG -1317673536,1317673591,GB +1317673328,1317673335,NG +1317673336,1317673351,GB +1317673352,1317673407,NG +1317673408,1317673415,GB +1317673416,1317673423,CI +1317673424,1317673431,NG +1317673432,1317673463,AO +1317673464,1317673487,NG +1317673488,1317673495,HK +1317673496,1317673527,NG +1317673528,1317673535,GB +1317673536,1317673575,NG +1317673576,1317673583,CD +1317673584,1317673591,GB 1317673592,1317673599,NG -1317673600,1317673615,GB -1317673616,1317673631,NG -1317673632,1317673655,GB -1317673656,1317673663,NG -1317673664,1317673711,GB +1317673600,1317673607,GB +1317673608,1317673631,NG +1317673632,1317673639,CD +1317673640,1317673647,AO +1317673648,1317673671,NG +1317673672,1317673679,GB +1317673680,1317673687,CD +1317673688,1317673711,NG 1317673712,1317673719,CO -1317673720,1317673743,GB +1317673720,1317673727,NG +1317673728,1317673743,AO 1317673744,1317673751,CD -1317673752,1317673775,GB +1317673752,1317673767,NG +1317673768,1317673775,AO 1317673776,1317673783,NG -1317673784,1317673815,GB +1317673784,1317673791,AO +1317673792,1317673815,NG 1317673816,1317673823,TD -1317673824,1317673903,GB -1317673904,1317673911,NG -1317673912,1317673943,GB -1317673944,1317673951,NG -1317673952,1317673967,GB -1317673968,1317674239,NG -1317674240,1317674247,GB -1317674248,1317674255,NG -1317674256,1317674271,GB +1317673824,1317673831,NG +1317673832,1317673839,AO +1317673840,1317673887,NG +1317673888,1317673895,GB +1317673896,1317673911,NG +1317673912,1317673919,AO +1317673920,1317673927,CI +1317673928,1317673943,NG +1317673944,1317673951,AO +1317673952,1317674255,NG +1317674256,1317674263,GB +1317674264,1317674271,AO 1317674272,1317674279,NG -1317674280,1317674287,RW +1317674280,1317674287,CD 1317674288,1317674295,GH -1317674296,1317674311,GB -1317674312,1317674335,NG -1317674336,1317674359,GB +1317674296,1317674303,AO +1317674304,1317674359,NG 1317674360,1317674367,AO -1317674368,1317674375,GB -1317674376,1317674383,NG -1317674384,1317674391,GB -1317674392,1317674407,NG -1317674408,1317674455,GB -1317674456,1317674463,NG -1317674464,1317674503,GB +1317674368,1317674415,NG +1317674416,1317674423,AO +1317674424,1317674431,NG +1317674432,1317674440,AO +1317674441,1317674447,GB +1317674448,1317674455,AO +1317674456,1317674471,NG +1317674472,1317674479,GB +1317674480,1317674487,AO +1317674488,1317674495,NG +1317674496,1317674503,GB 1317674504,1317674511,AO -1317674512,1317674519,NG -1317674520,1317674535,GB -1317674536,1317674543,CM +1317674512,1317674535,NG +1317674536,1317674543,GB 1317674544,1317674551,NG -1317674552,1317674567,GB -1317674568,1317674575,NG +1317674552,1317674559,GB +1317674560,1317674575,NG 1317674576,1317674583,GB -1317674584,1317674599,NG -1317674600,1317674783,GB -1317674784,1317674791,NG +1317674584,1317674615,NG +1317674616,1317674623,GB +1317674624,1317674671,NG +1317674672,1317674679,GB +1317674680,1317674687,AO +1317674688,1317674735,NG +1317674736,1317674743,AO +1317674744,1317674791,NG 1317674792,1317674799,GH 1317674800,1317674807,NG 1317674808,1317674831,GB -1317674832,1317674839,NG -1317674840,1317674863,GB -1317674864,1317674871,NG -1317674872,1317674911,GB -1317674912,1317674919,NG -1317674920,1317674943,GB +1317674832,1317674887,NG +1317674888,1317674911,AO +1317674912,1317674927,NG +1317674928,1317674935,AO +1317674936,1317674943,NG 1317674944,1317674951,GA -1317674952,1317674959,GB -1317674960,1317674967,NG -1317674968,1317674975,GB -1317674976,1317674991,NG +1317674952,1317674959,NG +1317674960,1317674983,GB +1317674984,1317674991,NG 1317674992,1317674999,GB 1317675000,1317675007,NG -1317675008,1317675039,GB -1317675040,1317675055,NG -1317675056,1317675071,GB -1317675072,1317675079,NG -1317675080,1317675095,GB -1317675096,1317675111,NG -1317675112,1317675135,GB -1317675136,1317675143,NG -1317675144,1317675151,GB -1317675152,1317675159,NG -1317675160,1317675223,GB -1317675224,1317675231,NG +1317675008,1317675023,GB +1317675024,1317675063,NG +1317675064,1317675071,AO +1317675072,1317675079,GB +1317675080,1317675127,NG +1317675128,1317675167,GB +1317675168,1317675175,NG +1317675176,1317675199,GB +1317675200,1317675231,NG 1317675232,1317675239,LR 1317675240,1317675255,AO -1317675256,1317675263,GB -1317675264,1317675279,NG -1317675280,1317675303,GB -1317675304,1317675311,NG -1317675312,1317675343,GB +1317675256,1317675295,GB +1317675296,1317675319,NG +1317675320,1317675343,GB 1317675344,1317675351,AO -1317675352,1317675367,GB -1317675368,1317675375,NG -1317675376,1317675391,GB -1317675392,1317675399,NG -1317675400,1317675407,GB +1317675352,1317675359,GB +1317675360,1317675375,NG +1317675376,1317675383,GB +1317675384,1317675391,NG +1317675392,1317675407,GB 1317675408,1317675415,NG -1317675416,1317675455,GB +1317675416,1317675423,GB +1317675424,1317675439,NG +1317675440,1317675455,GB 1317675456,1317675463,CD 1317675464,1317675471,CI 1317675472,1317675479,NG 1317675480,1317675487,GB -1317675488,1317675511,NG -1317675512,1317675535,GB -1317675536,1317675543,NG -1317675544,1317675551,GB +1317675488,1317675519,NG +1317675520,1317675551,GB 1317675552,1317675559,NG 1317675560,1317675567,NA -1317675568,1317675575,GB -1317675576,1317675583,GH -1317675584,1317675615,GB -1317675616,1317675623,NG -1317675624,1317675639,GB +1317675568,1317675575,AO +1317675576,1317675583,GB +1317675584,1317675591,LR +1317675592,1317675615,NG +1317675616,1317675631,GB +1317675632,1317675639,NG 1317675640,1317675647,FR -1317675648,1317675671,GB -1317675672,1317675687,NG -1317675688,1317675727,GB -1317675728,1317675735,NG +1317675648,1317675655,LR +1317675656,1317675687,NG +1317675688,1317675695,CM +1317675696,1317675711,NG +1317675712,1317675719,CM +1317675720,1317675735,NG 1317675736,1317675743,CD -1317675744,1317683199,GB +1317675744,1317675751,GH +1317675752,1317675759,GB +1317675760,1317675775,GH +1317675776,1317683199,GB 1317683200,1317683839,DE 1317683840,1317683855,CH 1317683856,1317683859,US @@ -13568,7 +13753,9 @@ 1317912576,1317920767,GB 1317920768,1317928959,ES 1317928960,1317945343,BG -1317945344,1317978111,AT +1317945344,1317965047,AT +1317965048,1317965055,DE +1317965056,1317978111,AT 1317978112,1317994495,RU 1317994496,1318000383,DE 1318000384,1318000447,NL @@ -13586,7 +13773,6 @@ 1318592512,1318600703,FI 1318600704,1318608895,AT 1318608896,1318617087,IT -1318617088,1318625279,LT 1318625280,1318633471,UA 1318633472,1318649855,IE 1318649856,1318658047,RU @@ -13598,18 +13784,19 @@ 1318699008,1318707199,IE 1318707200,1318707743,FR 1318707744,1318707967,SE -1318707968,1318708479,FR -1318708480,1318708991,SE +1318707968,1318708495,FR +1318708496,1318708991,SE 1318708992,1318711495,FR 1318711496,1318711503,SE 1318711504,1318711647,FR 1318711648,1318711663,IT -1318711664,1318711775,FR -1318711776,1318713343,SE +1318711664,1318711887,FR +1318711888,1318712319,SE +1318712320,1318712575,FR +1318712576,1318713343,SE 1318713344,1318713855,FR 1318713856,1318714111,CH -1318714112,1318714367,SE -1318714368,1318715390,FR +1318714112,1318715390,FR 1318715392,1318723583,BG 1318723584,1318731775,IR 1318731776,1318739967,PL @@ -13640,8 +13827,9 @@ 1318944768,1318952959,LV 1318952960,1318956543,CZ 1318956544,1318957055,PL -1318957056,1318959103,CZ -1318959104,1318961151,PL +1318957056,1318958847,CZ +1318958848,1318960895,PL +1318960896,1318961151,CZ 1318961152,1318969343,NL 1318969344,1318977535,RU 1318977536,1318985727,LT @@ -13774,19 +13962,20 @@ 1331948568,1331948575,DE 1331948576,1331948583,CZ 1331948584,1331948607,GB -1331948608,1331949567,CH +1331948608,1331948615,US +1331948616,1331949567,CH 1331949568,1331951615,RU 1331951616,1331953663,GE 1331953664,1332019199,BG -1332019200,1332025087,CS -1332025088,1332025343,RS -1332025344,1332027135,CS +1332019200,1332027135,CS 1332027136,1332027391,RS 1332027392,1332027903,CS 1332027904,1332028159,RS 1332028160,1332028671,CS 1332028672,1332028735,RS -1332028736,1332028923,CS +1332028736,1332028895,CS +1332028896,1332028903,RS +1332028904,1332028923,CS 1332028924,1332028927,RS 1332028928,1332029015,CS 1332029016,1332029023,RS @@ -13871,15 +14060,9 @@ 1334247424,1334255615,NO 1334255616,1334263807,IT 1334263808,1334271999,RU -1334272000,1334279615,GB -1334279616,1334279647,GN -1334279648,1334280191,GB +1334272000,1334280191,GB 1334280192,1334288383,LV -1334288384,1334289407,TR -1334289408,1334289663,UA -1334289664,1334290431,TR -1334290432,1334290687,LB -1334290688,1334296575,TR +1334288384,1334296575,TR 1334296576,1334304767,UA 1334304768,1334312959,RU 1334312960,1334316031,SE @@ -13890,7 +14073,9 @@ 1334345728,1334378495,RU 1334378496,1334411263,IT 1334411264,1334444031,RU -1334444032,1334501375,SE +1334444032,1334484991,SE +1334484992,1334489087,DK +1334489088,1334501375,SE 1334501376,1334509567,DK 1334509568,1334542335,PL 1334542336,1334575103,RU @@ -13914,9 +14099,9 @@ 1334585000,1334585007,US 1334585008,1334585055,DE 1334585056,1334585087,US -1334585088,1334586879,DE -1334586880,1334586911,LI -1334586912,1334591487,DE +1334585088,1334585111,DE +1334585112,1334585119,US +1334585120,1334591487,DE 1334591488,1334595583,RU 1334595584,1334596351,IT 1334596352,1334596607,GR @@ -13966,7 +14151,12 @@ 1334682880,1334683135,DK 1334683136,1334683391,CZ 1334683392,1334683647,CH -1334683648,1334685695,DE +1334683648,1334684159,DE +1334684160,1334684415,SE +1334684416,1334684671,DE +1334684672,1334684927,FI +1334684928,1334685183,NL +1334685184,1334685695,DE 1334685696,1334689791,IT 1334689792,1334693887,FR 1334693888,1334702079,RU @@ -13977,18 +14167,22 @@ 1334718464,1334722559,KZ 1334722560,1334726655,IT 1334726656,1334730239,RU -1334730240,1334730359,KZ -1334730360,1334730367,RU +1334730240,1334730363,KZ +1334730364,1334730367,RU 1334730368,1334730399,KZ 1334730400,1334730495,RU 1334730496,1334730499,KZ 1334730500,1334730503,RU 1334730504,1334730539,KZ 1334730540,1334730543,RU -1334730544,1334730547,KZ -1334730548,1334730559,RU +1334730544,1334730551,KZ +1334730552,1334730559,RU 1334730560,1334730571,KZ -1334730572,1334734847,RU +1334730572,1334730575,RU +1334730576,1334730591,KZ +1334730592,1334730603,RU +1334730604,1334730615,KZ +1334730616,1334734847,RU 1334734848,1334738943,LT 1334738944,1334743039,CH 1334743040,1334747135,UA @@ -14122,8 +14316,8 @@ 1342628664,1342628671,IE 1342628672,1342701567,GB 1342701568,1342981887,FR -1342981888,1342981903,GB -1342981904,1342982143,FR +1342981888,1342981935,GB +1342981936,1342982143,FR 1342982144,1342982399,MG 1342982400,1342988287,FR 1342988288,1342989055,US @@ -14204,7 +14398,9 @@ 1346453504,1346461695,BA 1346461696,1346469887,NL 1346469888,1346473983,BE -1346473984,1346478079,IT +1346473984,1346477823,IT +1346477824,1346477855,HU +1346477856,1346478079,IT 1346478080,1346482175,BA 1346482176,1346486271,CZ 1346486272,1346490367,SE @@ -14286,12 +14482,14 @@ 1346711552,1346715647,AZ 1346715648,1346723839,NL 1346723840,1346732031,DE +1346732032,1346736127,GB 1346736128,1346740223,RU 1346740224,1346744319,NL 1346744320,1346748415,RU 1346748416,1346752511,DE 1346752512,1346756607,FR 1346756608,1346760703,SE +1346760704,1346764799,IR 1346764800,1346768895,RU 1346768896,1346772991,LV 1346772992,1346775071,FR @@ -14431,8 +14629,12 @@ 1347229312,1347229343,AT 1347229344,1347229727,DE 1347229728,1347229743,AT -1347229744,1347231743,DE +1347229744,1347231071,DE +1347231072,1347231087,AT +1347231088,1347231095,GR +1347231096,1347231743,DE 1347231744,1347235839,UA +1347235840,1347239935,GE 1347239936,1347244031,DK 1347244032,1347247359,GB 1347247360,1347247871,RU @@ -14452,6 +14654,7 @@ 1347252224,1347256319,HU 1347256320,1347260415,FO 1347260416,1347264511,MK +1347264512,1347268607,RU 1347268608,1347271935,LB 1347271936,1347272447,IQ 1347272448,1347272703,LB @@ -14648,7 +14851,8 @@ 1347391488,1347395583,LB 1347395584,1347399679,SE 1347399680,1347403775,RU -1347403776,1347411967,NL +1347403776,1347407871,NL +1347407872,1347411967,GB 1347411968,1347416063,DE 1347416064,1347420159,RU 1347420160,1347420671,DK @@ -14847,7 +15051,8 @@ 1347859408,1347859439,DE 1347859456,1347860863,DE 1347860880,1347860895,DE -1347860912,1347861383,DE +1347860912,1347861391,DE +1347861408,1347861471,DE 1347861504,1347861759,DE 1347861800,1347861823,DE 1347861944,1347861951,DE @@ -14862,6 +15067,9 @@ 1347874816,1347878911,RU 1347878912,1347883007,GB 1347883008,1347887103,IT +1347887104,1347891199,PL +1347891200,1347895295,SE +1347903488,1347907583,RU 1347907584,1347911679,DE 1347911680,1347915775,GB 1347915776,1347919871,RU @@ -14878,8 +15086,15 @@ 1347964928,1347969023,IT 1347969024,1347977215,SE 1347977216,1347977471,DK -1347977472,1347977519,NG -1347977520,1347977791,DK +1347977472,1347977487,NG +1347977488,1347977503,DK +1347977504,1347977511,NG +1347977512,1347977519,DK +1347977520,1347977599,MZ +1347977600,1347977607,DK +1347977608,1347977623,NG +1347977624,1347977631,KE +1347977632,1347977791,DK 1347977792,1347977919,NG 1347977920,1347977951,DK 1347977952,1347977967,NG @@ -14911,7 +15126,11 @@ 1347978440,1347978463,NG 1347978464,1347978487,DK 1347978488,1347978495,YE -1347978496,1347978679,NG +1347978496,1347978559,NG +1347978560,1347978575,DK +1347978576,1347978663,NG +1347978664,1347978671,DK +1347978672,1347978679,NG 1347978680,1347978687,AO 1347978688,1347978695,NG 1347978696,1347978711,AO @@ -14923,7 +15142,8 @@ 1347978752,1347978759,DK 1347978760,1347978807,NG 1347978808,1347978815,UG -1347978816,1347978831,NG +1347978816,1347978823,DK +1347978824,1347978831,NG 1347978832,1347978847,DK 1347978848,1347978855,NG 1347978856,1347978863,IQ @@ -14957,8 +15177,10 @@ 1347979376,1347979399,NG 1347979400,1347979407,KM 1347979408,1347979423,IQ -1347979424,1347979455,NG -1347979456,1347979535,DK +1347979424,1347979471,NG +1347979472,1347979479,DK +1347979480,1347979487,NG +1347979488,1347979535,DK 1347979536,1347979543,UG 1347979544,1347979551,NG 1347979552,1347979559,IQ @@ -14973,8 +15195,8 @@ 1347979672,1347979679,DK 1347979680,1347979751,NG 1347979752,1347979759,AE -1347979760,1347979775,NG -1347979776,1347979791,DK +1347979760,1347979767,NG +1347979768,1347979791,DK 1347979792,1347979807,NG 1347979808,1347979823,DK 1347979824,1347979831,NG @@ -15028,7 +15250,7 @@ 1347981888,1347981903,UG 1347981904,1347981919,AO 1347981920,1347981935,NG -1347981936,1347981943,DK +1347981936,1347981943,CG 1347981944,1347981959,IQ 1347981960,1347981983,DK 1347981984,1347981999,AO @@ -15056,8 +15278,8 @@ 1347983056,1347983063,SE 1347983064,1347983071,NG 1347983072,1347983087,BJ -1347983088,1347983095,DK -1347983096,1347983119,NG +1347983088,1347983103,DK +1347983104,1347983119,NG 1347983120,1347983231,IQ 1347983232,1347983263,DK 1347983264,1347983271,LS @@ -15177,6 +15399,7 @@ 1348124672,1348128767,GB 1348128768,1348132863,SI 1348132864,1348136959,UA +1348136960,1348141055,RU 1348141056,1348145151,DK 1348145152,1348149247,RU 1348149248,1348153343,NO @@ -15245,6 +15468,7 @@ 1348284416,1348288511,RU 1348288512,1348292607,IT 1348292608,1348296703,FR +1348296704,1348300799,RU 1348300800,1348304895,UA 1348304896,1348308991,IT 1348308992,1348313087,MT @@ -15257,6 +15481,7 @@ 1348341760,1348345855,PL 1348345856,1348349951,GB 1348349952,1348354047,SK +1348354048,1348358143,NL 1348358144,1348362239,DE 1348362240,1348366335,MC 1348366336,1348370431,IT @@ -15442,9 +15667,7 @@ 1350296544,1350303743,AT 1350303744,1350434815,FR 1350434816,1350565887,NL -1350565888,1351789119,DE -1351789120,1351789151,BE -1351789152,1351793791,DE +1350565888,1351793791,DE 1351793792,1351793855,GB 1351793856,1351797231,DE 1351797232,1351797239,PL @@ -15452,9 +15675,7 @@ 1351800352,1351800359,CN 1351800360,1351801327,DE 1351801328,1351801335,HU -1351801336,1351807391,DE -1351807392,1351807423,GR -1351807424,1351879631,DE +1351801336,1351879631,DE 1351879632,1351879639,IT 1351879640,1351879999,DE 1351880000,1351880031,IT @@ -15483,20 +15704,17 @@ 1352147440,1352147447,SZ 1352147448,1352148151,DE 1352148152,1352148159,IT -1352148160,1352271087,DE +1352148160,1352148751,DE +1352148752,1352148759,US +1352148760,1352271087,DE 1352271088,1352271095,AT -1352271096,1352271871,DE -1352271872,1352271903,GB -1352271904,1352277535,DE +1352271096,1352277535,DE 1352277536,1352277567,IT 1352277568,1352402791,DE 1352402792,1352402799,BE 1352402800,1352404599,DE 1352404600,1352404607,NL -1352404608,1352404991,DE -1352404992,1352405055,NL -1352405056,1352405119,BE -1352405120,1352663039,DE +1352404608,1352663039,DE 1352663040,1353187327,DK 1353187328,1353255071,GB 1353255072,1353255087,CA @@ -15510,105 +15728,171 @@ 1353258368,1353258415,SE 1353258416,1353258423,GB 1353258424,1353258503,SE -1353258504,1353258783,GB +1353258504,1353258527,GB +1353258528,1353258543,SE +1353258544,1353258631,GB +1353258632,1353258647,SE +1353258648,1353258783,GB 1353258784,1353258807,SE 1353258808,1353266959,GB 1353266960,1353266975,IE 1353266976,1353267455,GB 1353267456,1353267743,IE 1353267744,1353267751,GB -1353267752,1353267759,IE -1353267760,1353268495,GB -1353268496,1353268511,BE -1353268512,1353268639,GB -1353268640,1353268647,BE -1353268648,1353268663,GB -1353268664,1353268671,BE -1353268672,1353268695,GB -1353268696,1353268711,BE -1353268712,1353269015,GB +1353267752,1353267767,IE +1353267768,1353267775,GB +1353267776,1353267839,IE +1353267840,1353267967,GB +1353267968,1353268223,IE +1353268224,1353268487,GB +1353268488,1353268511,BE +1353268512,1353268559,GB +1353268560,1353268567,BE +1353268568,1353268575,GB +1353268576,1353268583,BE +1353268584,1353268599,GB +1353268600,1353268647,BE +1353268648,1353268655,GB +1353268656,1353268679,BE +1353268680,1353268687,GB +1353268688,1353268735,BE +1353268736,1353268883,GB +1353268884,1353268887,BE +1353268888,1353269015,GB 1353269016,1353269039,BE 1353269040,1353269055,GB -1353269056,1353269079,BE -1353269080,1353271823,GB -1353271824,1353271831,ES -1353271832,1353272071,GB -1353272072,1353272079,ES -1353272080,1353272095,GB -1353272096,1353272111,ES -1353272112,1353272255,GB -1353272256,1353272271,ES -1353272272,1353272655,GB +1353269056,1353269087,BE +1353269088,1353271807,GB +1353271808,1353271831,ES +1353271832,1353271895,GB +1353271896,1353271919,ES +1353271920,1353271927,GB +1353271928,1353272031,ES +1353272032,1353272039,FR +1353272040,1353272055,ES +1353272056,1353272063,GB +1353272064,1353272191,ES +1353272192,1353272207,GB +1353272208,1353272247,ES +1353272248,1353272255,GB +1353272256,1353272303,ES +1353272304,1353272583,GB +1353272584,1353272591,ES +1353272592,1353272599,GB +1353272600,1353272631,ES +1353272632,1353272639,GB +1353272640,1353272647,ES +1353272648,1353272655,GB 1353272656,1353272663,ES -1353272664,1353272767,GB +1353272664,1353272687,GB +1353272688,1353272691,ES +1353272692,1353272703,GB +1353272704,1353272711,ES +1353272712,1353272719,GB +1353272720,1353272727,ES +1353272728,1353272767,GB 1353272768,1353272775,ES -1353272776,1353273343,GB -1353273344,1353273599,BE -1353273600,1353273663,GB -1353273664,1353273695,BE -1353273696,1353274631,GB -1353274632,1353274639,ES -1353274640,1353274647,GB -1353274648,1353274655,ES -1353274656,1353274719,GB +1353272776,1353272815,GB +1353272816,1353272823,ES +1353272824,1353272831,GB +1353272832,1353272839,ES +1353272840,1353272967,GB +1353272968,1353272975,ES +1353272976,1353272991,GB +1353272992,1353272999,ES +1353273000,1353273039,GB +1353273040,1353273047,ES +1353273048,1353273343,GB +1353273344,1353273607,BE +1353273608,1353273623,GB +1353273624,1353273647,BE +1353273648,1353273663,GB +1353273664,1353273711,BE +1353273712,1353273719,GB +1353273720,1353273727,BE +1353273728,1353274623,GB +1353274624,1353274655,ES +1353274656,1353274663,GB +1353274664,1353274671,ES +1353274672,1353274719,GB 1353274720,1353274751,ES 1353274752,1353274783,GB -1353274784,1353274791,ES -1353274792,1353274855,GB +1353274784,1353274799,ES +1353274800,1353274831,GB +1353274832,1353274839,ES +1353274840,1353274855,GB 1353274856,1353274863,ES -1353274864,1353274935,GB -1353274936,1353274943,ES +1353274864,1353274879,GB +1353274880,1353274887,ES +1353274888,1353274911,GB +1353274912,1353274919,ES +1353274920,1353274927,GB +1353274928,1353274943,ES 1353274944,1353275039,GB -1353275040,1353275055,ES -1353275056,1353275279,GB +1353275040,1353275063,ES +1353275064,1353275103,GB +1353275104,1353275111,ES +1353275112,1353275119,GB +1353275120,1353275159,ES +1353275160,1353275167,GB +1353275168,1353275231,ES +1353275232,1353275279,GB 1353275280,1353275287,ES 1353275288,1353275295,GB -1353275296,1353275327,ES -1353275328,1353275343,GB -1353275344,1353275359,ES -1353275360,1353277439,GB +1353275296,1353275335,ES +1353275336,1353275343,GB +1353275344,1353275391,ES +1353275392,1353277439,GB 1353277440,1353279487,CH -1353279488,1353279679,GB -1353279680,1353279719,IT -1353279720,1353279791,GB -1353279792,1353279799,IT -1353279800,1353279839,GB -1353279840,1353279847,IT -1353279848,1353279871,GB -1353279872,1353279935,IT -1353279936,1353280047,GB -1353280048,1353280079,IT -1353280080,1353280087,GB -1353280088,1353280103,IT +1353279488,1353279495,GB +1353279496,1353279735,IT +1353279736,1353279751,GB +1353279752,1353279759,IT +1353279760,1353279791,GB +1353279792,1353279999,IT +1353280000,1353280007,GB +1353280008,1353280031,IT +1353280032,1353280039,GB +1353280040,1353280103,IT 1353280104,1353280111,GB -1353280112,1353280159,IT -1353280160,1353280215,GB -1353280216,1353280231,IT -1353280232,1353280255,GB -1353280256,1353280271,IT -1353280272,1353280279,GB -1353280280,1353280287,IT -1353280288,1353280375,GB -1353280376,1353280383,IT -1353280384,1353280431,GB -1353280432,1353280439,IT -1353280440,1353280479,GB +1353280112,1353280303,IT +1353280304,1353280335,GB +1353280336,1353280383,IT +1353280384,1353280391,GB +1353280392,1353280471,IT +1353280472,1353280479,GB 1353280480,1353280487,IT -1353280488,1353280519,GB -1353280520,1353280527,IT -1353280528,1353280543,GB -1353280544,1353280575,IT -1353280576,1353280663,GB -1353280664,1353280679,IT -1353280680,1353281343,GB -1353281344,1353281359,BE -1353281360,1353282143,GB -1353282144,1353282159,IT -1353282160,1353287327,GB +1353280488,1353280495,GB +1353280496,1353280623,IT +1353280624,1353280631,GB +1353280632,1353280639,IT +1353280640,1353280647,GB +1353280648,1353280655,IT +1353280656,1353280663,GB +1353280664,1353280687,IT +1353280688,1353280703,GB +1353280704,1353281023,IT +1353281024,1353281279,GB +1353281280,1353281535,BE +1353281536,1353282047,GB +1353282048,1353282111,IT +1353282112,1353282119,GB +1353282120,1353282239,IT +1353282240,1353282247,GB +1353282248,1353282255,IT +1353282256,1353282263,GB +1353282264,1353282287,IT +1353282288,1353282295,GB +1353282296,1353282303,IT +1353282304,1353287327,GB 1353287328,1353287359,IE -1353287360,1353287967,GB -1353287968,1353287999,IE -1353288000,1353288079,GB +1353287360,1353287935,GB +1353287936,1353287951,IE +1353287952,1353287959,GB +1353287960,1353288031,IE +1353288032,1353288063,GB +1353288064,1353288071,IE +1353288072,1353288079,GB 1353288080,1353288151,IE 1353288152,1353288191,GB 1353288192,1353288231,IE @@ -15618,23 +15902,33 @@ 1353288408,1353288431,IE 1353288432,1353288447,GB 1353288448,1353288511,IE -1353288512,1353288543,GB -1353288544,1353288655,IE +1353288512,1353288527,GB +1353288528,1353288655,IE 1353288656,1353288663,GB 1353288664,1353288687,IE -1353288688,1353288959,GB +1353288688,1353288703,GB +1353288704,1353288831,IE +1353288832,1353288959,GB 1353288960,1353289343,IE 1353289344,1353289351,GB 1353289352,1353289359,IE 1353289360,1353289367,GB 1353289368,1353289375,IE -1353289376,1353289615,GB -1353289616,1353289623,IE +1353289376,1353289383,GB +1353289384,1353289391,IE +1353289392,1353289415,GB +1353289416,1353289423,IE +1353289424,1353289431,GB +1353289432,1353289471,IE +1353289472,1353289599,GB +1353289600,1353289623,IE 1353289624,1353289631,GB 1353289632,1353289647,IE 1353289648,1353290751,GB 1353290752,1353290815,DE -1353290816,1353297151,GB +1353290816,1353290927,GB +1353290928,1353290935,IE +1353290936,1353297151,GB 1353297152,1353297183,IE 1353297184,1353298687,GB 1353298688,1353298695,SE @@ -15650,9 +15944,13 @@ 1353299616,1353299631,SE 1353299632,1353299647,GB 1353299648,1353299711,SE -1353299712,1353299871,GB -1353299872,1353299879,SE -1353299880,1353299967,GB +1353299712,1353299839,GB +1353299840,1353299847,SE +1353299848,1353299863,GB +1353299864,1353299879,SE +1353299880,1353299887,GB +1353299888,1353299911,SE +1353299912,1353299967,GB 1353299968,1353300031,SE 1353300032,1353300039,GB 1353300040,1353300047,SE @@ -15666,12 +15964,32 @@ 1353300368,1353300383,SE 1353300384,1353301095,GB 1353301096,1353301103,US -1353301104,1353306111,GB +1353301104,1353304879,GB +1353304880,1353304895,ES +1353304896,1353305599,GB +1353305600,1353305607,IE +1353305608,1353306111,GB 1353306112,1353306623,ES 1353306624,1353306880,BE 1353306881,1353308159,GB 1353308160,1353309183,FR -1353309184,1353317375,GB +1353309184,1353310471,GB +1353310472,1353310479,ES +1353310480,1353310495,GB +1353310496,1353310527,ES +1353310528,1353310543,GB +1353310544,1353310559,ES +1353310560,1353310583,GB +1353310584,1353310591,ES +1353310592,1353310975,GB +1353310976,1353311023,IT +1353311024,1353311087,GB +1353311088,1353311095,IT +1353311096,1353311103,GB +1353311104,1353311119,IT +1353311120,1353312255,GB +1353312256,1353312767,CH +1353312768,1353317375,GB 1353317376,1353317631,FR 1353317632,1353318399,GB 1353318400,1353383935,FR @@ -15750,9 +16068,7 @@ 1354681248,1354681279,DK 1354681280,1354681471,DE 1354681472,1354681487,AE -1354681488,1354681503,DE -1354681504,1354681511,US -1354681512,1354682111,DE +1354681488,1354682111,DE 1354682112,1354682143,DK 1354682144,1354682175,CH 1354682176,1354682287,DE @@ -15773,9 +16089,7 @@ 1354684672,1354684927,AE 1354684928,1354687023,DE 1354687024,1354687031,LU -1354687032,1354687231,DE -1354687232,1354687247,CH -1354687248,1354687359,DE +1354687032,1354687359,DE 1354687360,1354687375,NZ 1354687376,1354687383,DE 1354687384,1354687391,NZ @@ -15827,11 +16141,11 @@ 1357318144,1357320191,QA 1357320192,1357320703,FR 1357320704,1357320959,RO +1357320960,1357320991,ES 1357320992,1357320999,GB 1357321000,1357321007,FR 1357321008,1357321015,GB 1357321016,1357321023,DK -1357321024,1357321087,GB 1357321088,1357321215,LB 1357321216,1357321471,GB 1357321472,1357321503,ES @@ -15852,8 +16166,6 @@ 1357332480,1357333247,DE 1357333248,1357333503,GB 1357333504,1357333759,IR -1357333760,1357333823,GB -1357333824,1357333855,GE 1357333856,1357334527,ES 1357334528,1357335039,FR 1357335040,1357335295,LB @@ -15899,7 +16211,7 @@ 1357365888,1357365951,DE 1357365952,1357366015,GB 1357366016,1357366271,KM -1357366272,1357366527,KE +1357366272,1357366527,FR 1357366528,1357366591,BE 1357366592,1357366655,FR 1357366656,1357366719,PT @@ -15952,7 +16264,7 @@ 1357873152,1357875199,DE 1357875200,1357875215,AT 1357875216,1357875223,DE -1357875232,1357875263,DE +1357875232,1357875247,DE 1357875264,1357875279,AT 1357875280,1357875423,DE 1357875424,1357875439,GB @@ -15961,7 +16273,6 @@ 1357875968,1357876143,DE 1357876152,1357876191,DE 1357876208,1357876215,DE -1357876272,1357876279,PL 1357876288,1357876303,PL 1357876336,1357876339,PL 1357876392,1357876399,PL @@ -15969,8 +16280,8 @@ 1357876480,1357876495,SE 1357876608,1357876863,DE 1357876864,1357876927,SE -1357876992,1357877759,DE -1357878272,1357879551,DE +1357876928,1357877759,DE +1357878272,1357879807,DE 1357879808,1357879871,RU 1357879872,1357879935,DE 1357880448,1357880511,CH @@ -15983,7 +16294,7 @@ 1357883392,1357883407,ES 1357883424,1357883519,FR 1357883536,1357883551,FR -1357883648,1357883719,FR +1357883584,1357883719,FR 1357883760,1357883807,FR 1357883840,1357883951,FR 1357884000,1357884031,FR @@ -16010,21 +16321,18 @@ 1357892096,1357893119,NL 1357893408,1357893439,SE 1357893504,1357893631,DE -1357897856,1357897887,DE -1357897920,1357898495,DE +1357897856,1357898495,DE 1357898752,1357898879,DE 1357899008,1357899015,DE 1357899024,1357899263,DE -1357899296,1357899311,US 1357899552,1357899567,AT 1357899776,1357900287,DE 1357900416,1357900543,SE 1357900544,1357900799,NL 1357900800,1357901311,DE 1357901568,1357901823,DE +1357901824,1357902335,ES 1357903616,1357903871,SE -1357903872,1357904895,GB -1357904896,1357905919,DE 1357905920,1357910015,LT 1357910016,1357914111,GR 1357914112,1357922303,RU @@ -16055,9 +16363,10 @@ 1358024704,1358028799,EE 1358028800,1358032895,IT 1358032896,1358036991,GE +1358036992,1358041087,IR +1358041088,1358045183,FI 1358045184,1358049279,SK 1358049280,1358061567,RU -1358061568,1358065663,NL 1358065664,1358069759,BA 1358069760,1358074719,DE 1358074720,1358074751,CH @@ -16065,7 +16374,6 @@ 1358082816,1358083071,CH 1358083072,1358086143,DE 1358086144,1358090239,CH -1358090240,1358094335,BE 1358094336,1358102527,NL 1358102528,1358106623,RU 1358106624,1358110719,LT @@ -16074,6 +16382,7 @@ 1358116912,1358118911,DE 1358118912,1358123007,RU 1358123008,1358127103,PT +1358127104,1358131199,CZ 1358131200,1358135295,DK 1358135296,1358139391,DE 1358139392,1358143487,UA @@ -16106,15 +16415,17 @@ 1358223912,1358223927,NL 1358223928,1358223967,DE 1358223968,1358224039,NL -1358224040,1358224611,DE +1358224040,1358224511,DE +1358224512,1358224519,BE +1358224520,1358224611,DE 1358224612,1358224651,BE 1358224652,1358224655,DE 1358224656,1358224719,BE 1358224720,1358224927,DE 1358224928,1358224979,IT 1358224980,1358224983,DE -1358224984,1358225047,IT -1358225048,1358225407,DE +1358224984,1358225055,IT +1358225056,1358225407,DE 1358225408,1358229503,RU 1358229504,1358229631,DE 1358229632,1358229639,LU @@ -16123,11 +16434,7 @@ 1358230116,1358230383,DE 1358230384,1358230391,US 1358230392,1358230399,CH -1358230400,1358231593,DE -1358231594,1358231594,US -1358231595,1358232703,DE -1358232704,1358232831,AT -1358232832,1358232863,DE +1358230400,1358232863,DE 1358232864,1358232879,IT 1358232880,1358233599,DE 1358233600,1358237695,ES @@ -16155,9 +16462,10 @@ 1358278656,1358282751,PL 1358282752,1358286847,AT 1358286848,1358290943,MT +1358290944,1358295039,SE 1358295040,1358299135,RU 1358303232,1358307327,RU -1358307328,1358311423,DE +1358307328,1358315519,DE 1358315520,1358323711,RU 1358323712,1358327807,LU 1358327808,1358328671,DE @@ -16165,7 +16473,7 @@ 1358328728,1358331903,DE 1358331904,1358335999,IL 1358336000,1358344191,FI -1358348288,1358352383,NL +1358344192,1358352383,NL 1358352384,1358356479,RU 1358356480,1358360575,SI 1358360576,1358364671,RU @@ -16325,39 +16633,33 @@ 1358647296,1358651391,DE 1358651392,1358655487,FR 1358655488,1358667775,RU -1358667776,1358668063,PT +1358667776,1358668039,PT +1358668040,1358668047,GB +1358668048,1358668063,PT 1358668064,1358668095,GB -1358668096,1358668103,PT -1358668104,1358668127,GB -1358668128,1358668211,PT +1358668096,1358668211,PT 1358668212,1358668223,GB 1358668224,1358668231,PT 1358668232,1358668239,GB 1358668240,1358668263,PT 1358668264,1358668279,GB 1358668280,1358668359,PT -1358668360,1358668383,GB -1358668384,1358668399,PT -1358668400,1358668415,GB -1358668416,1358668463,PT +1358668360,1358668367,GB +1358668368,1358668463,PT 1358668464,1358668479,ES 1358668480,1358668551,PT 1358668552,1358668567,GB 1358668568,1358668575,PT 1358668576,1358668591,GB -1358668592,1358668607,PT -1358668608,1358668639,GB -1358668640,1358668799,PT -1358668800,1358668831,GB -1358668832,1358668895,PT -1358668896,1358669055,GB -1358669056,1358669351,PT +1358668592,1358668735,PT +1358668736,1358668807,GB +1358668808,1358668815,PT +1358668816,1358668831,GB +1358668832,1358669351,PT 1358669352,1358669359,GB -1358669360,1358669375,PT -1358669376,1358669383,GB -1358669384,1358669399,PT -1358669400,1358669423,GB -1358669424,1358669503,PT +1358669360,1358669399,PT +1358669400,1358669407,GB +1358669408,1358669503,PT 1358669504,1358669519,GB 1358669520,1358669543,PT 1358669544,1358669551,GB @@ -16467,9 +16769,7 @@ 1358787336,1358787359,IE 1358787360,1358789167,GB 1358789168,1358789183,IE -1358789184,1358790655,GB -1358790656,1358798847,IR -1358798848,1358799359,GB +1358789184,1358799359,GB 1358799360,1358802943,HR 1358802944,1358807039,HU 1358807040,1358811135,RU @@ -16500,6 +16800,7 @@ 1358876672,1358880767,LV 1358880768,1358884863,GB 1358884864,1358888959,SE +1358888960,1358893055,DE 1358893056,1358897151,RU 1358897152,1358897183,US 1358897184,1358897199,DE @@ -16658,7 +16959,11 @@ 1358946304,1358950399,LV 1358950400,1358954495,NL 1358954496,1358970879,ES -1358970880,1358987263,HU +1358970880,1358984191,HU +1358984192,1358984703,SK +1358984704,1358986239,HU +1358986240,1358986495,SK +1358986496,1358987263,HU 1358987264,1359003647,NO 1359003648,1359020031,CZ 1359020032,1359036415,FR @@ -16692,7 +16997,7 @@ 1359349360,1359364095,CH 1359364096,1359380479,TR 1359380480,1359396863,PL -1359396864,1359429631,GB +1359396864,1359413247,GB 1359429632,1359446015,LT 1359446016,1359462399,DK 1359462400,1359467063,DE @@ -16831,6 +17136,7 @@ 1360240640,1360244735,ES 1360244736,1360257023,GB 1360257024,1360265215,DK +1360265216,1360269311,GB 1360269312,1360273407,KG 1360273408,1360281599,GB 1360281600,1360285695,NL @@ -16910,7 +17216,10 @@ 1360613376,1360617471,SE 1360617472,1360621567,IT 1360621568,1360625663,ES -1360625664,1360629759,DE +1360625664,1360628735,DE +1360628736,1360628991,IQ +1360628992,1360629503,DE +1360629504,1360629759,IQ 1360629760,1360633855,SE 1360633856,1360637951,RU 1360637952,1360642047,FO @@ -17048,11 +17357,10 @@ 1360991744,1360991999,GB 1360992000,1360992255,SK 1360992256,1360992767,CZ -1360992768,1360993023,GB -1360993024,1360994047,SK -1360994048,1360994303,GB +1360992768,1360994303,GB 1360994304,1360998399,CZ 1360998400,1361002495,FI +1361002496,1361006591,GB 1361006592,1361010687,DK 1361010688,1361018879,GB 1361018880,1361022975,AT @@ -17410,8 +17718,8 @@ 1362411520,1362413273,MQ 1362413274,1362413567,FR 1362413568,1362413587,CM -1362413588,1362413823,FR -1362413824,1362414847,US +1362413588,1362414079,FR +1362414080,1362414847,US 1362414848,1362415103,GB 1362415104,1362415359,FR 1362415360,1362415615,DE @@ -17427,8 +17735,8 @@ 1362426624,1362426879,FR 1362426880,1362427903,MQ 1362427904,1362755583,FR -1362755584,1362817047,NL -1362817048,1362817063,BE +1362755584,1362817055,NL +1362817056,1362817063,BE 1362817064,1362817071,NL 1362817072,1362817087,BE 1362817088,1362817127,NL @@ -17498,9 +17806,17 @@ 1364526592,1364528639,GB 1364528640,1364528895,UA 1364528896,1364530175,GB -1364530176,1364540671,NL +1364530176,1364539903,NL +1364539904,1364540159,US +1364540160,1364540671,NL 1364540672,1364540927,US -1364540928,1364590591,NL +1364540928,1364582415,NL +1364582416,1364582431,LB +1364582432,1364585983,NL +1364585984,1364586240,LB +1364586241,1364586495,NL +1364586496,1364586752,LB +1364586753,1364590591,NL 1364590592,1364721663,GB 1364721664,1364725759,SE 1364725760,1364733951,DE @@ -17599,8 +17915,7 @@ 1365004088,1365004095,SE 1365004096,1365004207,GB 1365004208,1365004223,SE -1365004224,1365004271,GB -1365004272,1365004287,SE +1365004224,1365004287,GB 1365004288,1365008383,FR 1365008384,1365012479,CH 1365012480,1365016575,FR @@ -17656,8 +17971,8 @@ 1365096768,1365097215,FR 1365097216,1365097471,ES 1365097472,1365097727,FR -1365097728,1365097935,CH -1365097936,1365098495,FR +1365097728,1365097983,CH +1365097984,1365098495,FR 1365098496,1365102591,HU 1365102592,1365102911,ES 1365102912,1365102919,GB @@ -17673,7 +17988,9 @@ 1365103776,1365103791,GB 1365103792,1365103871,ES 1365103872,1365104135,GB -1365104136,1365104735,ES +1365104136,1365104199,ES +1365104200,1365104207,GB +1365104208,1365104735,ES 1365104736,1365104743,GB 1365104744,1365105151,ES 1365105152,1365105215,GB @@ -17785,9 +18102,7 @@ 1371602944,1371668479,PT 1371668480,1371734015,FR 1371734016,1371799551,RU -1371799552,1371834367,RO -1371834368,1371836415,HU -1371836416,1371865087,RO +1371799552,1371865087,RO 1371865088,1371930623,FI 1371930624,1371996159,LV 1371996160,1371997183,IL @@ -17941,8 +18256,7 @@ 1372687360,1372687711,DE 1372687720,1372687727,DE 1372687736,1372688199,DE -1372688224,1372688319,DE -1372688352,1372689791,DE +1372688224,1372689823,DE 1372689920,1372691455,DE 1372691456,1372691711,US 1372691968,1372694015,DE @@ -17998,15 +18312,9 @@ 1379926016,1380188159,FR 1380188160,1380450303,GB 1380450304,1380712447,NL -1380712448,1380802559,RO -1380802560,1380804607,HU -1380804608,1380903935,RO +1380712448,1380903935,RO 1380903936,1380904447,SK -1380904448,1380935679,RO -1380935680,1380937727,HU -1380937728,1380950527,RO -1380950528,1380951039,HU -1380951040,1380974591,RO +1380904448,1380974591,RO 1380974592,1381105663,IL 1381105664,1381236735,DE 1381236736,1381367807,IT @@ -18233,22 +18541,25 @@ 1383449376,1383449391,RS 1383449392,1383449395,CS 1383449396,1383449471,RS -1383449472,1383449503,CS +1383449472,1383449487,CS +1383449488,1383449495,RS +1383449496,1383449503,CS 1383449504,1383449551,RS 1383449552,1383449599,CS 1383449600,1383450751,RS 1383450752,1383450767,CS 1383450768,1383450783,RS 1383450784,1383450799,CS -1383450800,1383452159,RS -1383452160,1383452191,CS +1383450800,1383452175,RS +1383452176,1383452191,CS 1383452192,1383452255,RS 1383452256,1383452295,CS 1383452296,1383452351,RS 1383452352,1383452375,CS -1383452376,1383452399,RS -1383452400,1383452415,CS +1383452376,1383452407,RS +1383452408,1383452415,CS 1383452416,1383456767,RS +1383456768,1383464959,UA 1383464960,1383473151,US 1383473152,1383481343,DE 1383481344,1383481599,GB @@ -18332,16 +18643,17 @@ 1384195744,1384195751,CH 1384195752,1384195775,DE 1384195776,1384195839,SE -1384195840,1384218623,DE +1384195840,1384196095,DE +1384196096,1384197119,CZ +1384197120,1384218623,DE 1384251392,1384267775,FI 1384267776,1384284159,CH 1384284160,1384316927,ES 1384316928,1384349695,EE 1384349696,1384382463,HU +1384382464,1384415231,HR 1384415232,1384415743,DE -1384415744,1384418047,GB -1384418048,1384418303,DE -1384418304,1384419071,GB +1384415744,1384419071,GB 1384419072,1384419583,DE 1384419584,1384419839,GB 1384419840,1384420351,DE @@ -18363,11 +18675,7 @@ 1384660992,1384677375,CH 1384677376,1384693759,SE 1384693760,1384710143,NL -1384710144,1384711423,RO -1384711424,1384712191,HU -1384712192,1384714239,RO -1384714240,1384715263,HU -1384715264,1384726527,RO +1384710144,1384726527,RO 1384726528,1384742911,BG 1384742912,1384759295,RU 1384759296,1384775679,SY @@ -18390,7 +18698,9 @@ 1384795280,1384795327,BE 1384795328,1384801023,FR 1384801024,1384801087,SM -1384801088,1384808447,FR +1384801088,1384802495,FR +1384802496,1384802559,IT +1384802560,1384808447,FR 1384808960,1384808967,DE 1384808968,1384808975,SE 1384808976,1384808991,DE @@ -18431,6 +18741,7 @@ 1385177088,1385185279,DE 1385185280,1385193471,RU 1385193472,1385201663,ES +1385201664,1385209855,CZ 1385209856,1385218047,HU 1385218048,1385226239,UA 1385226240,1385234431,GB @@ -18489,7 +18800,7 @@ 1385559296,1385560831,DE 1385560832,1385561087,SK 1385561088,1385562111,DE -1385562112,1385563135,ES +1385562624,1385563135,ES 1385563136,1385563391,IE 1385563648,1385563935,IE 1385564032,1385564095,IE @@ -18497,13 +18808,12 @@ 1385564160,1385564223,HU 1385564384,1385564671,HU 1385565184,1385565439,ES -1385566208,1385566415,FR -1385566432,1385566719,FR -1385566784,1385566847,FR +1385566208,1385566399,FR +1385566432,1385566847,FR 1385566880,1385566911,FR 1385566928,1385566935,FR 1385566944,1385566991,FR -1385566996,1385566999,FR +1385566996,1385567007,FR 1385567088,1385567103,FR 1385567120,1385567151,FR 1385567160,1385567215,FR @@ -18532,7 +18842,6 @@ 1385652224,1385660415,RU 1385660416,1385668607,TR 1385668608,1385676799,NL -1385676800,1385684991,ES 1385684992,1385824255,GB 1385824256,1385955327,PT 1385955328,1386086399,NL @@ -18649,7 +18958,9 @@ 1388683264,1388691455,CH 1388691456,1388699647,NL 1388699648,1388707839,SE -1388707840,1388712959,RU +1388707840,1388708863,RU +1388708864,1388709119,LB +1388709120,1388712959,RU 1388712960,1388713215,LB 1388713216,1388713727,TJ 1388713728,1388713983,LB @@ -18693,17 +19004,11 @@ 1388789760,1388797951,NL 1388797952,1388806143,RU 1388806144,1388814335,NL -1388814336,1388814591,AX -1388814592,1388814751,FI -1388814752,1388814783,AX -1388814784,1388814847,FI -1388814848,1388815103,AX -1388815104,1388815871,FI -1388815872,1388818687,AX +1388814336,1388815103,AX +1388815104,1388815231,FI +1388815232,1388818687,AX 1388818688,1388818815,FI -1388818816,1388819199,AX -1388819200,1388819231,FI -1388819232,1388821119,AX +1388818816,1388821119,AX 1388821120,1388821150,SE 1388821151,1388821247,AX 1388821248,1388822527,SE @@ -19008,7 +19313,8 @@ 1389273600,1389273855,MG 1389273856,1389274111,NG 1389274112,1389274367,GB -1389274368,1389274399,US +1389274368,1389274383,US +1389274384,1389274399,SA 1389274400,1389274431,GH 1389274432,1389274494,US 1389274495,1389274495,GB @@ -19026,8 +19332,8 @@ 1389275840,1389275902,SA 1389275903,1389275903,GB 1389275904,1389276415,US -1389276416,1389276543,MX -1389276544,1389277055,GB +1389276416,1389276671,MX +1389276672,1389277055,GB 1389277056,1389277183,MX 1389277184,1389277439,GB 1389277440,1389277567,NP @@ -19091,12 +19397,11 @@ 1389363200,1389379583,CZ 1389379584,1389395967,RU 1389395968,1389412351,RO -1389412352,1389413375,CS +1389412352,1389412607,RS +1389412608,1389413375,CS 1389413376,1389413407,RS 1389413408,1389413631,CS -1389413632,1389415167,RS -1389415168,1389415423,CS -1389415424,1389415427,RS +1389413632,1389415427,RS 1389415428,1389415431,CS 1389415432,1389415439,RS 1389415440,1389415679,CS @@ -19104,10 +19409,14 @@ 1389416704,1389419775,CS 1389419776,1389420543,RS 1389420544,1389421055,CS -1389421056,1389421311,RS -1389421312,1389423871,CS +1389421056,1389422591,RS +1389422592,1389423359,CS +1389423360,1389423615,RS +1389423616,1389423871,CS 1389423872,1389424383,RS -1389424384,1389428735,CS +1389424384,1389426175,CS +1389426176,1389426687,RS +1389426688,1389428735,CS 1389428736,1389445119,CZ 1389445120,1389461503,GB 1389461504,1389477887,SE @@ -19170,7 +19479,9 @@ 1389953024,1390018559,NL 1390018560,1390084095,AT 1390084096,1390149631,GB -1390149632,1390215167,CH +1390149632,1390153999,CH +1390154000,1390154015,US +1390154016,1390215167,CH 1390215168,1390280703,IS 1390280704,1390346239,TR 1390346240,1390394367,ES @@ -19249,7 +19560,11 @@ 1398973952,1398974207,IE 1398974208,1398979583,NL 1398979584,1398979839,GB -1398979840,1398983423,NL +1398979840,1398980873,NL +1398980874,1398980881,US +1398980882,1398982143,NL +1398982144,1398982399,US +1398982400,1398983423,NL 1398983424,1398983487,GB 1398983488,1398983519,JE 1398983520,1398983551,GB @@ -19273,7 +19588,7 @@ 1400111104,1400373247,NL 1400373248,1400716287,DE 1400717312,1400718335,DE -1400718848,1400723455,DE +1400718848,1400721407,DE 1400725504,1400730639,DE 1400731136,1400733695,DE 1400897536,1400963071,NL @@ -19307,6 +19622,7 @@ 1401427968,1401430015,RU 1401430016,1401432063,AT 1401432064,1401434111,IE +1401434112,1401436159,RU 1401436160,1401438207,BH 1401438208,1401440255,GB 1401440256,1401443487,DE @@ -19327,6 +19643,8 @@ 1401468928,1401470975,ES 1401470976,1401473023,NL 1401473024,1401475071,CZ +1401475072,1401477119,FR +1401477120,1401479167,BE 1401479168,1401481215,PL 1401481216,1401485311,RU 1401485312,1401486095,IT @@ -19345,6 +19663,7 @@ 1401509888,1401511935,UA 1401511936,1401513983,DE 1401513984,1401516031,IT +1401516032,1401518079,AT 1401518080,1401520127,IT 1401520128,1401522175,GB 1401522176,1401526271,NL @@ -19374,6 +19693,7 @@ 1401602048,1401618431,ES 1401618432,1401634815,AM 1401634816,1401651199,HR +1401651200,1401667583,RU 1401667584,1401683967,IT 1401683968,1401684479,SE 1401684480,1401684511,DK @@ -19421,9 +19741,13 @@ 1401745920,1401745935,DE 1401745936,1401746175,SE 1401746176,1401746191,DK -1401746192,1401746431,SE +1401746192,1401746215,SE +1401746216,1401746223,GB +1401746224,1401746431,SE 1401746432,1401746447,NL -1401746448,1401746687,SE +1401746448,1401746471,SE +1401746472,1401746479,GB +1401746480,1401746687,SE 1401746688,1401746703,NO 1401746704,1401746943,SE 1401746944,1401746959,FR @@ -19472,7 +19796,6 @@ 1401882624,1401884671,NG 1401884672,1401886719,FR 1401886720,1401888767,BW -1401888768,1401890815,RO 1401890816,1401892863,PL 1401892864,1401894911,RU 1401894912,1401896959,FI @@ -19481,7 +19804,7 @@ 1401901056,1401903103,NO 1401903104,1401905151,FI 1401905152,1401907199,PL -1401907200,1401909247,FR +1401907200,1401909247,GR 1401909248,1401911295,NO 1401911296,1401913343,DK 1401913344,1401917439,PL @@ -19534,156 +19857,26 @@ 1402408960,1402413055,DE 1402413056,1402417151,PL 1402417152,1402421247,DE -1402421248,1402421248,GB -1402421249,1402421249,FR -1402421250,1402421253,GB -1402421254,1402421255,FR -1402421256,1402421256,GB -1402421257,1402421268,FR -1402421269,1402421275,GB -1402421276,1402421279,FR -1402421280,1402421287,GB -1402421288,1402421311,FR -1402421312,1402421315,BE -1402421316,1402421327,GB -1402421328,1402421359,FR -1402421360,1402421375,GB -1402421376,1402421407,FR -1402421408,1402421415,GB -1402421416,1402421455,FR -1402421456,1402421459,HR -1402421460,1402421463,FR -1402421464,1402421471,AT -1402421472,1402421487,FR -1402421488,1402421505,GB -1402421506,1402421506,FR -1402421507,1402421507,GB -1402421508,1402421509,FR -1402421510,1402421511,GB -1402421512,1402421512,CH -1402421513,1402421513,FR -1402421514,1402421514,GB -1402421515,1402421519,FR -1402421520,1402421551,GB -1402421552,1402421735,FR -1402421736,1402421743,NL -1402421744,1402421927,FR -1402421928,1402421935,ES -1402421936,1402421950,FR -1402421951,1402421951,GB -1402421952,1402421967,FR -1402421968,1402421971,GB -1402421972,1402421991,FR -1402421992,1402421995,GB -1402421996,1402422087,FR -1402422088,1402422095,BE -1402422096,1402422103,FR -1402422104,1402422111,GB -1402422112,1402422115,FR -1402422116,1402422119,CH -1402422120,1402422127,PT -1402422128,1402422159,FR -1402422160,1402422167,AT -1402422168,1402422271,FR -1402422272,1402422743,GB -1402422744,1402422747,FR -1402422748,1402422783,GB -1402422784,1402422787,LU -1402422788,1402422791,FR -1402422792,1402423295,GB -1402423296,1402423379,BE -1402423380,1402423383,LU -1402423384,1402425347,GB -1402425348,1402425351,FR -1402425352,1402425855,GB -1402425856,1402425871,BE -1402425872,1402425935,FR -1402425936,1402426879,GB -1402426880,1402426883,CH -1402426884,1402427175,GB -1402427176,1402427179,FR -1402427180,1402427183,GB -1402427184,1402427191,FR -1402427192,1402427195,CH -1402427196,1402427231,GB -1402427232,1402427239,CH -1402427240,1402427263,GB -1402427264,1402427267,FR -1402427268,1402427271,GB -1402427272,1402427335,FR -1402427336,1402427343,GB -1402427344,1402427359,FR -1402427360,1402427393,GB -1402427394,1402427394,CH -1402427395,1402427655,GB -1402427656,1402427663,FR -1402427664,1402427671,GB -1402427672,1402427679,NL -1402427680,1402427719,GB -1402427720,1402427727,US -1402427728,1402427903,GB -1402427904,1402427935,FR -1402427936,1402427951,GB -1402427952,1402427959,FR -1402427960,1402427967,GB -1402427968,1402427975,FR -1402427976,1402427983,GB -1402427984,1402427999,FR -1402428000,1402428019,GB -1402428020,1402428023,FR -1402428024,1402428031,AT -1402428032,1402428063,GB -1402428064,1402428095,FR -1402428096,1402428103,BE -1402428104,1402428111,CH -1402428112,1402428119,BE -1402428120,1402428247,GB -1402428248,1402428251,NL -1402428252,1402428255,GB -1402428256,1402428271,AT -1402428272,1402428279,FR -1402428280,1402428471,GB -1402428472,1402428475,FR -1402428476,1402429439,GB -1402429440,1402429455,US -1402429456,1402429471,GB -1402429472,1402429487,US -1402429488,1402429503,FR -1402429504,1402429791,US -1402429792,1402429823,GB -1402429824,1402429827,FR -1402429828,1402429831,GB -1402429832,1402429833,FR -1402429834,1402429951,GB -1402429952,1402429987,US -1402429988,1402429999,GB -1402430000,1402430015,US -1402430016,1402430543,GB -1402430544,1402430544,US -1402430545,1402431999,GB -1402432000,1402432001,US -1402432002,1402433536,GB -1402433537,1402433537,FR -1402433538,1402433539,GB -1402433540,1402433540,FR -1402433541,1402433542,AT -1402433543,1402433559,FR -1402433560,1402433567,GB -1402433568,1402433578,FR -1402433579,1402433580,CH -1402433581,1402433583,GB -1402433584,1402433623,FR -1402433624,1402433627,CH -1402433628,1402433695,FR -1402433696,1402433711,GB -1402433712,1402433727,FR -1402433728,1402433743,GB -1402433744,1402433747,FR -1402433748,1402433759,GB -1402433760,1402433839,FR -1402433840,1402434059,GB -1402434060,1402434063,FR -1402434064,1402437631,GB +1402421248,1402422783,FR +1402422784,1402423039,LU +1402423040,1402423295,FR +1402423296,1402423807,BE +1402423808,1402424319,FR +1402424320,1402424575,BE +1402424576,1402424831,FR +1402424832,1402425343,GB +1402425344,1402425599,DE +1402425600,1402425855,LU +1402425856,1402426367,FR +1402426368,1402426623,DE +1402426624,1402427135,CH +1402427136,1402429439,GB +1402429440,1402431487,US +1402431488,1402433535,GB +1402433536,1402434047,FR +1402434048,1402434559,GB +1402434560,1402434815,US +1402434816,1402437631,GB 1402437632,1402454015,DK 1402454016,1402470399,GB 1402470400,1402994687,FR @@ -19720,6 +19913,7 @@ 1403535360,1403551743,PL 1403551744,1403568127,SK 1403568128,1403584511,SE +1403584512,1403600895,DE 1403600896,1403617279,FR 1403617280,1403633663,DE 1403633664,1403650047,RU @@ -19849,7 +20043,9 @@ 1404436480,1404502015,BE 1404502016,1404698623,SE 1404698624,1404764159,BE -1404764160,1404805119,SE +1404764160,1404802047,SE +1404802048,1404802559,EE +1404802560,1404805119,SE 1404805120,1404813311,AT 1404813312,1404829695,SE 1404829696,1404870655,RU @@ -19858,8 +20054,7 @@ 1404876800,1404895231,SE 1404895232,1404927999,DE 1404928000,1404940287,CH -1404940288,1404944383,SE -1404944384,1404952575,IT +1404940288,1404952575,SE 1404952576,1404960767,NL 1404960768,1405050879,SE 1405050880,1405059071,AT @@ -19937,7 +20132,8 @@ 1407025152,1407025663,DK 1407025664,1407025919,US 1407025920,1407033343,DK -1407033344,1407033855,UZ +1407033344,1407033599,RU +1407033600,1407033855,UZ 1407033856,1407034111,RU 1407034112,1407034367,UZ 1407034368,1407035391,RU @@ -19946,10 +20142,11 @@ 1407049728,1407057919,DE 1407057920,1407066111,RU 1407066112,1407074303,LU -1407082496,1407090687,RU +1407074304,1407090687,RU 1407090688,1407098879,CH 1407098880,1407107071,BG 1407107072,1407115263,RU +1407115264,1407123455,GB 1407123456,1407131647,SE 1407131648,1407139839,NL 1407139840,1407148031,DE @@ -19962,18 +20159,24 @@ 1407320064,1407451135,SE 1407451136,1407483903,BG 1407483904,1407516671,CH -1407516672,1407516727,GB -1407516728,1407516735,NG -1407516736,1407516743,GB +1407516672,1407516679,GB +1407516680,1407516687,NG +1407516688,1407516711,GB +1407516712,1407516735,NG +1407516736,1407516743,UG 1407516744,1407516751,LR 1407516752,1407516759,GH -1407516760,1407516783,GB +1407516760,1407516767,GB +1407516768,1407516775,AO +1407516776,1407516783,GB 1407516784,1407516791,NG 1407516792,1407516799,GB 1407516800,1407516807,GH 1407516808,1407516831,GB -1407516832,1407516839,NG -1407516840,1407516879,GB +1407516832,1407516855,NG +1407516856,1407516863,GB +1407516864,1407516871,NG +1407516872,1407516879,GB 1407516880,1407516903,NG 1407516904,1407516911,GB 1407516912,1407516927,NG @@ -19981,93 +20184,107 @@ 1407517184,1407517383,GB 1407517384,1407517391,CD 1407517392,1407517415,GB -1407517416,1407517423,NG -1407517424,1407517431,GB -1407517432,1407517439,NG +1407517416,1407517439,NG 1407517440,1407517823,GB 1407517824,1407517887,NG 1407517888,1407517951,GB 1407517952,1407518015,SL -1407518016,1407518031,NG +1407518016,1407518031,ZA 1407518032,1407518039,GB 1407518040,1407518047,CD 1407518048,1407518055,NG 1407518056,1407518079,GB -1407518080,1407518135,NG -1407518136,1407518143,TD -1407518144,1407518167,NG +1407518080,1407518111,FR +1407518112,1407518135,NG +1407518136,1407518143,GH +1407518144,1407518159,ZA +1407518160,1407518167,GB 1407518168,1407518175,CD 1407518176,1407518183,GH -1407518184,1407518191,NG -1407518192,1407518199,CD -1407518200,1407518207,GB -1407518208,1407518215,NG -1407518216,1407518239,GB -1407518240,1407518255,NG +1407518184,1407518199,NG +1407518200,1407518207,AE +1407518208,1407518215,GB +1407518216,1407518223,ZA +1407518224,1407518231,GB +1407518232,1407518247,NG +1407518248,1407518255,GB 1407518256,1407518269,GH 1407518270,1407518335,GB 1407518336,1407518343,CG -1407518344,1407518351,GN +1407518344,1407518351,GB 1407518352,1407518359,GH -1407518360,1407518399,NG -1407518400,1407518847,GB -1407518848,1407518911,NG -1407518912,1407518975,GB +1407518360,1407518391,NG +1407518392,1407518719,GB +1407518720,1407518783,AO +1407518784,1407518847,GB +1407518848,1407518943,NG +1407518944,1407518975,GB 1407518976,1407519000,NG 1407519001,1407519007,GB -1407519008,1407519015,GH +1407519008,1407519015,NG 1407519016,1407519023,AO -1407519024,1407519031,GB -1407519032,1407519047,AO -1407519048,1407519087,NG -1407519088,1407519095,GB +1407519024,1407519031,NG +1407519032,1407519039,AO +1407519040,1407519063,NG +1407519064,1407519071,BJ +1407519072,1407519079,CD +1407519080,1407519095,NG 1407519096,1407519103,CM 1407519104,1407519111,NG 1407519112,1407519135,SL -1407519136,1407519143,CM -1407519144,1407519167,GB +1407519136,1407519143,NG +1407519144,1407519151,AO +1407519152,1407519159,GB +1407519160,1407519167,AO 1407519168,1407519175,NG -1407519176,1407519191,GB +1407519176,1407519183,SL +1407519184,1407519191,GB 1407519192,1407519199,CD -1407519200,1407519207,CM +1407519200,1407519207,AO 1407519208,1407519215,TG 1407519216,1407519223,NG 1407519224,1407519231,GB -1407519232,1407519487,NG -1407519488,1407520287,GB +1407519232,1407519615,NG +1407519616,1407520263,GB +1407520264,1407520271,NG +1407520272,1407520287,GB 1407520288,1407520295,GH -1407520296,1407520303,GB -1407520304,1407520327,BJ -1407520328,1407520351,GB -1407520352,1407520359,NG +1407520296,1407520319,NG +1407520320,1407520327,GB +1407520328,1407520335,SL +1407520336,1407520343,GB +1407520344,1407520359,NG 1407520360,1407520367,CD -1407520368,1407520383,GB -1407520384,1407520397,NG -1407520398,1407520431,GB -1407520432,1407520439,NG +1407520368,1407520375,GB +1407520376,1407520397,NG +1407520398,1407520439,GB 1407520440,1407520447,CD 1407520448,1407520463,CG -1407520464,1407520471,GB -1407520472,1407520479,NG -1407520480,1407520527,GB -1407520528,1407520535,NG -1407520536,1407520543,GB -1407520544,1407520559,NG +1407520464,1407520511,GB +1407520512,1407520519,ZW +1407520520,1407520527,GB +1407520528,1407520543,NG +1407520544,1407520551,GB +1407520552,1407520559,NG 1407520560,1407520567,SL -1407520568,1407520591,NG -1407520592,1407520599,GB +1407520568,1407520575,NG +1407520576,1407520599,GB 1407520600,1407520607,FR 1407520608,1407520615,AO -1407520616,1407520631,GB +1407520616,1407520623,GB +1407520624,1407520631,NG 1407520632,1407520639,ZM 1407520640,1407520655,NG 1407520656,1407520663,GA -1407520664,1407520695,NG -1407520696,1407520703,GB +1407520664,1407520671,NG +1407520672,1407520679,CM +1407520680,1407520695,NG +1407520696,1407520703,GN 1407520704,1407520727,NG 1407520728,1407520735,AO 1407520736,1407520751,NG -1407520752,1407520767,CD +1407520752,1407520759,CM +1407520760,1407520767,CD 1407520768,1407521279,NG 1407521280,1407522047,GB 1407522048,1407522303,TZ @@ -20078,56 +20295,60 @@ 1407523344,1407523351,NG 1407523352,1407523359,TZ 1407523360,1407523367,ZW -1407523368,1407523391,GB +1407523368,1407523375,NG +1407523376,1407523391,GB 1407523392,1407523455,ZW 1407523456,1407523519,MW 1407523520,1407523535,GB -1407523536,1407523543,GH -1407523544,1407523559,NG +1407523536,1407523551,NG +1407523552,1407523559,CM 1407523560,1407523575,KE 1407523576,1407523583,MW 1407523584,1407523839,SO 1407523840,1407524351,MW -1407524352,1407524607,GB -1407524608,1407524863,CG +1407524352,1407524863,GB 1407524864,1407527935,MZ 1407527936,1407529023,GB 1407529024,1407529087,NG 1407529088,1407529095,TZ -1407529096,1407529103,GB +1407529096,1407529103,ZW 1407529104,1407529111,NG 1407529112,1407529119,MW -1407529120,1407529135,GB +1407529120,1407529127,GB +1407529128,1407529135,ZW 1407529136,1407529143,MW -1407529144,1407529151,GB -1407529152,1407529183,NG -1407529184,1407531007,GB +1407529144,1407529151,ZW +1407529152,1407529183,GB +1407529184,1407529191,NG +1407529192,1407529199,MZ +1407529200,1407529207,GB +1407529208,1407529215,NG +1407529216,1407531007,GB 1407531008,1407531775,NG 1407531776,1407532031,GB 1407532032,1407532543,KE -1407532544,1407532551,GB -1407532552,1407532559,NG +1407532544,1407532551,UG +1407532552,1407532559,AO 1407532560,1407532583,GB -1407532584,1407532591,CD +1407532584,1407532591,ZW 1407532592,1407532607,GB 1407532608,1407532615,ZW 1407532616,1407532623,KG 1407532624,1407532631,GB -1407532632,1407532639,NG -1407532640,1407532663,GB -1407532664,1407532671,NG +1407532632,1407532639,MW +1407532640,1407532647,TZ +1407532648,1407532663,GB +1407532664,1407532671,TZ 1407532672,1407532799,ZW 1407532800,1407532927,SO 1407532928,1407533055,GB 1407533056,1407533311,NG -1407533312,1407533327,GE +1407533312,1407533327,AO 1407533328,1407533343,GB -1407533344,1407533359,NG -1407533360,1407533375,GB +1407533344,1407533375,NG 1407533376,1407533407,CD 1407533408,1407533423,GB -1407533424,1407533439,GH -1407533440,1407533567,CM +1407533424,1407533567,GH 1407533568,1407533599,NG 1407533600,1407533607,GB 1407533608,1407533631,NG @@ -20139,33 +20360,28 @@ 1407533720,1407533727,SL 1407533728,1407533735,NG 1407533736,1407533743,GN -1407533744,1407533775,NG -1407533776,1407533783,GB -1407533784,1407533791,NG -1407533792,1407533807,GB -1407533808,1407533815,CM +1407533744,1407533783,NG +1407533784,1407533815,GB 1407533816,1407533823,NG 1407533824,1407534079,GB 1407534080,1407534335,AE 1407534336,1407534343,NG -1407534344,1407534351,GB -1407534352,1407534359,NG +1407534344,1407534359,GB 1407534360,1407534367,LR -1407534368,1407534383,GB +1407534368,1407534383,NG 1407534384,1407534391,CD 1407534392,1407534399,AO 1407534400,1407534407,NG 1407534408,1407534415,CI 1407534416,1407534423,GB 1407534424,1407534431,CD -1407534432,1407534439,CM +1407534432,1407534439,GB 1407534440,1407534447,CD -1407534448,1407534527,NG -1407534528,1407534535,GH -1407534536,1407534543,GB +1407534448,1407534463,NG +1407534464,1407534543,GB 1407534544,1407534559,GH 1407534560,1407534567,NG -1407534568,1407534575,TZ +1407534568,1407534575,GB 1407534576,1407534583,CD 1407534584,1407534591,GB 1407534592,1407534727,NG @@ -20173,10 +20389,7 @@ 1407534736,1407534775,NG 1407534776,1407534783,ML 1407534784,1407534791,CD -1407534792,1407534799,NG -1407534800,1407534823,GB -1407534824,1407534831,GH -1407534832,1407534839,GB +1407534792,1407534839,GB 1407534840,1407534847,NG 1407534848,1407535103,CM 1407535104,1407535615,GA @@ -20185,51 +20398,50 @@ 1407536640,1407536895,CD 1407536896,1407536903,GB 1407536904,1407536919,ZW -1407536920,1407536935,AO +1407536920,1407536935,GB 1407536936,1407536943,NG 1407536944,1407536951,AO 1407536952,1407536967,GB -1407536968,1407536983,NG +1407536968,1407536975,NG +1407536976,1407536983,GB 1407536984,1407536991,IQ 1407536992,1407536999,GB 1407537000,1407537007,GH -1407537008,1407537015,GB -1407537016,1407537023,GH -1407537024,1407537031,GB +1407537008,1407537031,GB 1407537032,1407537039,NG 1407537040,1407537047,GB 1407537048,1407537055,NG 1407537056,1407537071,GH 1407537072,1407537087,NG 1407537088,1407537095,GH -1407537096,1407537111,NG -1407537112,1407537135,GB +1407537096,1407537103,GB +1407537104,1407537111,NG +1407537112,1407537119,LR +1407537120,1407537135,GB 1407537136,1407537151,NG 1407537152,1407538175,GB 1407538176,1407538431,AT 1407538432,1407538439,GB 1407538440,1407538447,NG -1407538448,1407538455,GB -1407538456,1407538463,NG +1407538448,1407538463,GB 1407538464,1407538471,ZM 1407538472,1407538479,NG -1407538480,1407538487,GB -1407538488,1407538503,NG +1407538480,1407538495,GB +1407538496,1407538503,NG 1407538504,1407538527,GB 1407538528,1407538543,CD -1407538544,1407538551,GH -1407538552,1407538559,GB -1407538560,1407538623,NG -1407538624,1407538655,GB -1407538656,1407538751,NG -1407538752,1407538815,GB -1407538816,1407538847,CD +1407538544,1407538559,GB +1407538560,1407538623,CD +1407538624,1407538663,GB +1407538664,1407538815,NG +1407538816,1407538847,GB 1407538848,1407538863,NG 1407538864,1407538879,GE 1407538880,1407538887,GB 1407538888,1407538895,NG 1407538896,1407538911,GB -1407538912,1407538927,GH +1407538912,1407538919,GH +1407538920,1407538927,GB 1407538928,1407538935,NG 1407538936,1407538943,GH 1407538944,1407538959,GB @@ -20239,53 +20451,48 @@ 1407538984,1407538991,SL 1407538992,1407538999,GB 1407539000,1407539007,NG -1407539008,1407539015,BF -1407539016,1407539023,NG -1407539024,1407539031,GB -1407539032,1407539039,GH -1407539040,1407539055,GB +1407539008,1407539015,GH +1407539016,1407539055,GB 1407539056,1407539063,NG 1407539064,1407539071,GB 1407539072,1407539079,NG 1407539080,1407539087,GB 1407539088,1407539095,AO -1407539096,1407539103,CI +1407539096,1407539103,GB 1407539104,1407539111,NG 1407539112,1407539119,GB 1407539120,1407539127,LR -1407539128,1407539135,GB -1407539136,1407539143,CI +1407539128,1407539143,GB 1407539144,1407539151,NG -1407539152,1407539159,TZ -1407539160,1407539167,GB +1407539152,1407539167,GB 1407539168,1407539175,TD 1407539176,1407539183,GH 1407539184,1407539199,NG 1407539200,1407539455,GE 1407539456,1407541247,NG -1407541248,1407541487,GB -1407541488,1407541495,NG -1407541496,1407541503,GB -1407541504,1407541535,BJ +1407541248,1407541471,GB +1407541472,1407541495,NG +1407541496,1407541535,GB 1407541536,1407541543,CM 1407541544,1407541551,GB 1407541552,1407541559,NG 1407541560,1407541567,GH -1407541568,1407541631,GB -1407541632,1407541719,NG +1407541568,1407541703,GB +1407541704,1407541719,NG 1407541720,1407541727,GB 1407541728,1407541735,NG 1407541736,1407541751,GB 1407541752,1407541759,NG -1407541760,1407542527,GB +1407541760,1407541887,GB +1407541888,1407542143,NG +1407542144,1407542527,GB 1407542528,1407542535,NG 1407542536,1407542543,GB 1407542544,1407542551,LR -1407542552,1407542559,CM -1407542560,1407542567,GB -1407542568,1407542575,CI +1407542552,1407542575,GB 1407542576,1407542583,CD -1407542584,1407542599,NG +1407542584,1407542591,GB +1407542592,1407542599,NG 1407542600,1407542607,TG 1407542608,1407542623,GB 1407542624,1407542631,BJ @@ -20299,78 +20506,75 @@ 1407542696,1407542703,NG 1407542704,1407542711,CI 1407542712,1407542719,GB -1407542720,1407542743,NG -1407542744,1407542759,GB -1407542760,1407542767,CM -1407542768,1407542799,NG -1407542800,1407542847,GB -1407542848,1407542871,NG -1407542872,1407542879,GB +1407542720,1407542735,NG +1407542736,1407542767,GB +1407542768,1407542775,GA +1407542776,1407542783,NG +1407542784,1407542791,GB +1407542792,1407542799,NG +1407542800,1407542831,GB +1407542832,1407542863,NG +1407542864,1407542879,GB 1407542880,1407542887,NG 1407542888,1407542903,GB 1407542904,1407542911,CD 1407542912,1407543039,AT -1407543040,1407543167,NG +1407543040,1407543167,GB 1407543168,1407543183,GH -1407543184,1407543191,GB -1407543192,1407543239,NG -1407543240,1407543247,GB -1407543248,1407543255,NE +1407543184,1407543239,NG +1407543240,1407543255,GB 1407543256,1407543263,NG -1407543264,1407543279,GB -1407543280,1407543295,NG -1407543296,1407545343,GB +1407543264,1407543271,CD +1407543272,1407543279,GB +1407543280,1407543287,NG +1407543288,1407545343,GB 1407545344,1407546367,SL 1407546368,1407546495,AE 1407546496,1407546879,GB -1407546880,1407547143,NG +1407546880,1407547135,NG +1407547136,1407547143,GB 1407547144,1407547151,GH -1407547152,1407547159,GB -1407547160,1407547175,NG +1407547152,1407547167,GB +1407547168,1407547175,NG 1407547176,1407547183,GH -1407547184,1407547191,AO -1407547192,1407547199,GB -1407547200,1407547207,NG -1407547208,1407547215,AO -1407547216,1407547239,SL -1407547240,1407547247,NG -1407547248,1407547279,GB -1407547280,1407547303,NG -1407547304,1407547311,GB -1407547312,1407547319,NG -1407547320,1407547327,SL +1407547184,1407547199,NG +1407547200,1407547207,AO +1407547208,1407547215,TD +1407547216,1407547223,SL +1407547224,1407547231,GB +1407547232,1407547255,SL +1407547256,1407547263,GB +1407547264,1407547271,SL +1407547272,1407547295,NG +1407547296,1407547303,GB +1407547304,1407547311,SL +1407547312,1407547327,NG 1407547328,1407547335,GB 1407547336,1407547343,CI -1407547344,1407547351,GB -1407547352,1407547367,NG -1407547368,1407547383,GB -1407547384,1407547911,NG +1407547344,1407547911,NG 1407547912,1407547919,GB 1407547920,1407547927,CG -1407547928,1407547935,GB -1407547936,1407547943,CI +1407547928,1407547943,GB 1407547944,1407547951,BJ 1407547952,1407547959,LR 1407547960,1407547967,NG 1407547968,1407547983,GB 1407547984,1407547999,BJ 1407548000,1407548007,NG -1407548008,1407548015,GB -1407548016,1407548023,NG +1407548008,1407548023,GB 1407548024,1407548031,CD 1407548032,1407548047,GB -1407548048,1407548063,NG +1407548048,1407548055,GA +1407548056,1407548063,NG 1407548064,1407548111,GB 1407548112,1407548119,CI -1407548120,1407548127,NG +1407548120,1407548127,GB 1407548128,1407548143,CM 1407548144,1407548151,GB 1407548152,1407548159,NG -1407548160,1407548415,NE +1407548160,1407548415,GB 1407548416,1407548543,GE -1407548544,1407548671,NG -1407548672,1407548927,GB -1407548928,1407549183,NG +1407548544,1407549183,GB 1407549184,1407549439,GE 1407549440,1407582207,RU 1407582208,1407614975,PL @@ -20394,10 +20598,10 @@ 1407703408,1407703415,GB 1407703416,1407703455,FR 1407703456,1407703535,GB -1407703536,1407703543,FR -1407703544,1407703551,GB -1407703552,1407703583,FR -1407703584,1407704063,GB +1407703536,1407703695,FR +1407703696,1407703711,GB +1407703712,1407703839,FR +1407703840,1407704063,GB 1407704064,1407704127,FR 1407704128,1407704191,GB 1407704192,1407704319,FR @@ -20407,7 +20611,9 @@ 1407705248,1407705295,ES 1407705296,1407705599,GB 1407705600,1407705727,FR -1407705728,1407709183,GB +1407705728,1407706367,GB +1407706368,1407706383,FR +1407706384,1407709183,GB 1407709184,1407709439,DE 1407709440,1407713279,GB 1407713280,1407778815,NL @@ -20454,7 +20660,9 @@ 1408499712,1408532479,PS 1408532480,1408567919,GB 1408567920,1408567927,IE -1408567928,1408575231,GB +1408567928,1408574847,GB +1408574848,1408574911,IE +1408574912,1408575231,GB 1408575232,1408575239,IE 1408575240,1408583167,GB 1408583168,1408583679,IE @@ -20464,11 +20672,7 @@ 1408585408,1408585471,IE 1408585472,1408590847,GB 1408590848,1408591103,BE -1408591104,1408591871,GB -1408591872,1408592127,IE -1408592128,1408592639,GB -1408592640,1408592895,IE -1408592896,1408598015,GB +1408591104,1408598015,GB 1408598016,1408630783,FI 1408630784,1408634879,RO 1408634880,1408663551,DE @@ -20486,11 +20690,13 @@ 1409548288,1409810431,FR 1409810432,1409941503,GB 1409941504,1410007039,PL -1410007040,1410008575,DE +1410007040,1410007551,DE +1410007552,1410007807,IR +1410007808,1410008575,DE 1410008576,1410008607,AE 1410008608,1410008831,DE -1410008832,1410008879,US -1410008880,1410009343,DE +1410008832,1410008911,US +1410008912,1410009343,DE 1410009344,1410009479,US 1410009480,1410009487,DE 1410009488,1410009535,GI @@ -20647,9 +20853,7 @@ 1410027264,1410027519,AF 1410027520,1410027711,DE 1410027712,1410027775,IR -1410027776,1410028799,DE -1410028800,1410028879,IQ -1410028880,1410032127,DE +1410027776,1410032127,DE 1410032128,1410033151,IQ 1410033152,1410035199,DE 1410035200,1410035231,KW @@ -20670,23 +20874,14 @@ 1410036736,1410036751,PA 1410036752,1410039807,DE 1410039808,1410041855,AE -1410041856,1410042111,LB -1410042112,1410042127,DE -1410042128,1410042135,LB -1410042136,1410042183,DE -1410042184,1410042239,LB -1410042240,1410042287,DE -1410042288,1410043151,LB -1410043152,1410043167,DE -1410043168,1410043183,LB -1410043184,1410043199,DE -1410043200,1410043253,LB -1410043254,1410043263,DE -1410043264,1410043903,LB -1410043904,1410072319,DE +1410041856,1410043903,LB +1410043904,1410044415,JO +1410044416,1410072319,DE 1410072320,1410072575,AE 1410072576,1410203647,GB -1410203648,1410214495,FR +1410203648,1410212863,FR +1410212864,1410213119,GB +1410213120,1410214495,FR 1410214496,1410214503,PT 1410214504,1410262799,FR 1410262800,1410262815,DE @@ -20730,7 +20925,9 @@ 1410465792,1410473983,ES 1410473984,1410490367,JO 1410490368,1410498559,RU -1410498560,1410506751,IT +1410498560,1410502803,IT +1410502804,1410502807,US +1410502808,1410506751,IT 1410506752,1410514943,IE 1410514944,1410523135,GB 1410523136,1410531327,PT @@ -20741,11 +20938,19 @@ 1410547712,1410555903,CZ 1410555904,1410564095,GB 1410564096,1410572287,SE -1410572288,1410572863,DE +1410572288,1410572543,DE +1410572544,1410572799,RU +1410572800,1410572863,DE 1410572864,1410572895,RU 1410572896,1410573407,DE 1410573408,1410573439,RU -1410573440,1410575111,DE +1410573440,1410573695,DE +1410573696,1410573711,RU +1410573712,1410573759,DE +1410573760,1410573775,RU +1410573776,1410574719,DE +1410574720,1410574727,RU +1410574728,1410575111,DE 1410575112,1410575119,IT 1410575120,1410575295,DE 1410575296,1410575327,IT @@ -20754,7 +20959,8 @@ 1410575552,1410575615,IT 1410575616,1410575775,DE 1410575776,1410575791,RU -1410575792,1410575823,DE +1410575792,1410575807,DE +1410575808,1410575823,RU 1410575824,1410575839,BG 1410575840,1410575855,IT 1410575856,1410575871,DE @@ -20800,7 +21006,7 @@ 1410756864,1410757119,AQ 1410757120,1410758655,NL 1410758656,1410760191,AQ -1410760192,1410760447,DE +1410760192,1410760447,BE 1410760448,1410760683,AQ 1410760684,1410760687,US 1410760688,1410760691,AQ @@ -20868,8 +21074,7 @@ 1411916032,1411916095,GB 1411916296,1411916303,GB 1411916800,1411916863,GB -1411917568,1411917583,GB -1411917600,1411917631,GB +1411917568,1411917639,GB 1411919872,1411923967,DE 1411940352,1411973119,PL 1411973120,1411999759,SI @@ -20898,7 +21103,11 @@ 1412136960,1412169727,BG 1412169728,1412202495,TR 1412202496,1412235263,DE -1412235264,1412300799,GB +1412235264,1412257535,GB +1412257536,1412257615,NL +1412257616,1412264023,GB +1412264024,1412264031,NL +1412264032,1412300799,GB 1412300800,1412333567,DE 1412333568,1412366335,LT 1412366336,1412399103,SK @@ -20926,7 +21135,9 @@ 1412710400,1412726783,RU 1412726784,1412743167,SI 1412743168,1412775935,NO -1412775936,1412792319,NL +1412775936,1412780239,NL +1412780240,1412780247,GB +1412780248,1412792319,NL 1412792320,1412798463,US 1412800512,1412804607,US 1412808704,1412825087,RU @@ -20959,7 +21170,9 @@ 1421869056,1422393343,BE 1422393344,1422399743,DE 1422399744,1422399999,IT -1422400000,1422491647,DE +1422400000,1422462207,DE +1422462208,1422462463,TR +1422462464,1422491647,DE 1422491648,1422508031,GB 1422508032,1422512127,BG 1422512128,1422516223,PL @@ -21003,9 +21216,8 @@ 1424588848,1424589311,DE 1424589312,1424589567,FR 1424589568,1424590719,GB -1424590720,1424590727,SE -1424590728,1424590735,GB -1424590736,1424590783,SE +1424590720,1424590767,SE +1424590768,1424590783,GB 1424590784,1424590847,CH 1424590848,1424591423,SE 1424591424,1424591439,GB @@ -21027,7 +21239,13 @@ 1424594056,1424594063,IT 1424594064,1424594175,FR 1424594176,1424595455,GB -1424595456,1424596479,IT +1424595456,1424595575,IT +1424595576,1424595583,ES +1424595584,1424595663,IT +1424595664,1424595671,GB +1424595672,1424595839,IT +1424595840,1424595871,GB +1424595872,1424596479,IT 1424596480,1424596991,FR 1424596992,1424597503,CZ 1424597504,1424597759,FR @@ -21062,8 +21280,7 @@ 1424603008,1424603023,GB 1424603024,1424603055,US 1424603056,1424603063,NL -1424603064,1424603071,GB -1424603072,1424603087,US +1424603064,1424603087,US 1424603088,1424603135,GB 1424603136,1424603391,SK 1424603392,1424603647,DE @@ -21081,7 +21298,10 @@ 1424605584,1424605631,GB 1424605632,1424605695,BG 1424605696,1424605951,NL -1424605952,1424606199,GB +1424605952,1424605959,CH +1424605960,1424605967,GB +1424605968,1424606015,AT +1424606016,1424606199,GB 1424606200,1424606207,AT 1424606208,1424606455,GB 1424606456,1424606463,AT @@ -21102,7 +21322,9 @@ 1424607872,1424608031,GB 1424608032,1424608127,FR 1424608128,1424608279,GB -1424608280,1424608511,FR +1424608280,1424608383,FR +1424608384,1424608399,ES +1424608400,1424608511,FR 1424608512,1424608703,ES 1424608704,1424608719,GB 1424608720,1424609023,ES @@ -21116,45 +21338,50 @@ 1424610816,1424611071,FR 1424611072,1424611143,BE 1424611144,1424611151,GB -1424611152,1424611327,BE +1424611152,1424611167,BE +1424611168,1424611175,GB +1424611176,1424611327,BE 1424611328,1424611583,PL 1424611584,1424612095,GB 1424612096,1424612231,CZ -1424612232,1424612239,GB -1424612240,1424612271,CZ -1424612272,1424612607,GB +1424612232,1424612239,CH +1424612240,1424612319,CZ +1424612320,1424612607,GB 1424612608,1424612671,AE 1424612672,1424612863,GB 1424612864,1424613119,FR 1424613120,1424613375,GB 1424613376,1424613631,ES -1424613632,1424614143,IT -1424614144,1424614399,GB +1424613632,1424614103,IT +1424614104,1424614111,GB +1424614112,1424614135,IT +1424614136,1424614399,GB 1424614400,1424614415,FR -1424614416,1424614655,IT +1424614416,1424614439,IT +1424614440,1424614447,GB +1424614448,1424614655,IT 1424614656,1424614911,FR 1424614912,1424615167,RO -1424615168,1424615679,GB -1424615680,1424615935,IT +1424615168,1424615935,GB 1424615936,1424616191,FR 1424616192,1424616447,IT 1424616448,1424616483,ES 1424616484,1424616487,GB -1424616488,1424616503,ES -1424616504,1424616511,GB -1424616512,1424616607,ES +1424616488,1424616607,ES 1424616608,1424616615,PT -1424616616,1424616631,ES -1424616632,1424616655,GB +1424616616,1424616647,ES +1424616648,1424616655,GB 1424616656,1424616695,ES 1424616696,1424616703,GB 1424616704,1424616959,US 1424616960,1424617215,FR -1424617216,1424617395,IT +1424617216,1424617375,IT +1424617376,1424617391,GB +1424617392,1424617395,IT 1424617396,1424617399,GB 1424617400,1424617407,IT 1424617408,1424617423,ES -1424617424,1424617431,IT +1424617424,1424617431,GB 1424617432,1424617439,ES 1424617440,1424617471,IT 1424617472,1424617727,US @@ -21167,7 +21394,9 @@ 1424619008,1424619775,IT 1424619776,1424619811,BE 1424619812,1424619815,GB -1424619816,1424620031,BE +1424619816,1424619823,BE +1424619824,1424619839,GB +1424619840,1424620031,BE 1424620032,1424621055,GB 1424621056,1424621567,IT 1424621568,1424625663,PL @@ -21230,6 +21459,7 @@ 1424752128,1424752383,DE 1424752384,1424752639,NL 1424752640,1424785407,HU +1424785408,1424818175,ES 1424818176,1424850943,RU 1424850944,1424883711,LV 1424883712,1424916479,DK @@ -21251,8 +21481,7 @@ 1425227776,1425244159,RO 1425244160,1425260543,NO 1425260544,1425276927,NL -1425276928,1425287167,SE -1425287168,1425293311,DE +1425276928,1425293311,DE 1425293312,1425309695,CZ 1425309696,1425326079,NL 1425326080,1425342463,SE @@ -21274,6 +21503,7 @@ 1425426432,1425428479,KW 1425428480,1425430527,GB 1425430528,1425432575,SE +1425432576,1425434623,IT 1425434624,1425436671,FR 1425436672,1425438719,GB 1425438720,1425439271,DE @@ -21296,7 +21526,7 @@ 1425458272,1425458303,US 1425458304,1425461247,GB 1425461248,1425463295,ES -1425465344,1425467135,FR +1425463296,1425467135,FR 1425467136,1425467391,ES 1425467392,1425469439,CH 1425469440,1425471487,DK @@ -21567,7 +21797,17 @@ 1427062784,1427095551,RU 1427095552,1427111935,LV 1427111936,1427177471,DE -1427177472,1427243007,NL +1427177472,1427227135,NL +1427227136,1427227647,US +1427227648,1427227967,NL +1427227968,1427227975,GB +1427227976,1427227983,DE +1427227984,1427227991,IT +1427227992,1427227999,ES +1427228000,1427228007,PL +1427228008,1427228015,RU +1427228016,1427228023,FR +1427228024,1427243007,NL 1427243008,1427308543,IT 1427308544,1427374079,NO 1427374080,1427439615,IT @@ -21584,14 +21824,16 @@ 1427744256,1427744287,US 1427744288,1427744863,DE 1427744864,1427744895,TR -1427744896,1427750911,DE +1427744896,1427746303,DE +1427746304,1427746335,SE +1427746336,1427748447,DE +1427748448,1427748479,TR +1427748480,1427750911,DE 1427750912,1427759103,NL 1427759104,1427759903,DE 1427759904,1427759935,CH 1427759936,1427759967,RO -1427759968,1427760159,DE -1427760160,1427760191,SE -1427760192,1427760383,DE +1427759968,1427760383,DE 1427760384,1427760415,SE 1427760416,1427760799,DE 1427760800,1427760831,NL @@ -21600,9 +21842,7 @@ 1427760960,1427760991,CZ 1427760992,1427761023,DE 1427761024,1427761055,CR -1427761056,1427761183,DE -1427761184,1427761215,RU -1427761216,1427767295,DE +1427761056,1427767295,DE 1427767296,1427800063,BE 1427800064,1427823615,RU 1427823616,1427824639,KG @@ -21626,6 +21866,7 @@ 1428096032,1428096039,CH 1428096040,1428103167,AT 1428103168,1428119551,GB +1428119552,1428121599,LV 1428121600,1428123647,FR 1428123648,1428126975,RU 1428126976,1428127231,TR @@ -21640,10 +21881,8 @@ 1428142080,1428144127,DE 1428144128,1428146847,FR 1428146848,1428146855,SE -1428146856,1428146867,FR -1428146868,1428146871,SE -1428146872,1428146879,FR -1428146880,1428146911,SE +1428146856,1428146883,FR +1428146884,1428146911,SE 1428146912,1428147071,FR 1428147072,1428147119,SE 1428147120,1428147127,FR @@ -21653,14 +21892,15 @@ 1428147376,1428147391,ES 1428147392,1428147775,FR 1428147776,1428147783,CH -1428147784,1428147791,SE -1428147792,1428147839,FR +1428147784,1428147839,FR 1428147840,1428147847,SE 1428147848,1428147855,DK 1428147856,1428147871,US 1428147872,1428147903,GB -1428147904,1428148095,FR -1428148096,1428148127,SE +1428147904,1428148031,FR +1428148032,1428148063,SE +1428148064,1428148111,FR +1428148112,1428148127,SE 1428148128,1428148135,IL 1428148136,1428148143,BE 1428148144,1428148151,DE @@ -21672,9 +21912,7 @@ 1428150496,1428150511,SE 1428150512,1428150735,FR 1428150736,1428150751,SE -1428150752,1428150927,FR -1428150928,1428150959,SE -1428150960,1428151007,FR +1428150752,1428151007,FR 1428151008,1428151039,SE 1428151040,1428151295,FR 1428151296,1428151551,SE @@ -21700,16 +21938,12 @@ 1431839040,1431846911,BE 1431846912,1431855103,NO 1431855104,1431863295,NL -1431863296,1431863607,GB -1431863608,1431863767,PT +1431863296,1431863559,GB +1431863560,1431863767,PT 1431863768,1431863775,GB -1431863776,1431863855,PT -1431863856,1431863871,GB -1431863872,1431863927,PT -1431863928,1431863935,GB -1431863936,1431864135,PT -1431864136,1431864143,GB -1431864144,1431864151,PT +1431863776,1431863863,PT +1431863864,1431863871,GB +1431863872,1431864151,PT 1431864152,1431864159,GB 1431864160,1431864191,PT 1431864192,1431864207,GB @@ -21717,38 +21951,33 @@ 1431864288,1431864295,GB 1431864296,1431864359,PT 1431864360,1431864367,GB -1431864368,1431864375,PT -1431864376,1431864383,GB -1431864384,1431864407,PT +1431864368,1431864407,PT 1431864408,1431864415,GB 1431864416,1431864455,PT 1431864456,1431864463,GB -1431864464,1431864519,PT -1431864520,1431864527,GB -1431864528,1431864543,PT -1431864544,1431864575,GB -1431864576,1431864623,PT +1431864464,1431864471,PT +1431864472,1431864479,GB +1431864480,1431864623,PT 1431864624,1431864631,GB 1431864632,1431864671,PT 1431864672,1431864679,GB -1431864680,1431864735,PT -1431864736,1431864751,GB +1431864680,1431864743,PT +1431864744,1431864751,GB 1431864752,1431864775,PT -1431864776,1431864799,GB -1431864800,1431864807,PT +1431864776,1431864791,GB +1431864792,1431864807,PT 1431864808,1431864815,GB 1431864816,1431864887,PT 1431864888,1431864895,GB 1431864896,1431864919,PT 1431864920,1431864927,GB -1431864928,1431865087,PT -1431865088,1431865095,GB -1431865096,1431865111,PT +1431864928,1431865111,PT 1431865112,1431865119,GB 1431865120,1431865263,PT 1431865264,1431865295,GB 1431865296,1431865303,PT -1431865304,1431865335,GB +1431865304,1431865327,GB +1431865328,1431865335,PT 1431865336,1431865343,ES 1431865344,1431865599,PT 1431865600,1431865631,GB @@ -21756,20 +21985,21 @@ 1431865648,1431865655,GB 1431865656,1431865663,PT 1431865664,1431865679,ES -1431865680,1431865711,GB +1431865680,1431865695,GB +1431865696,1431865711,PT 1431865712,1431865719,ES -1431865720,1431865791,GB -1431865792,1431865799,PT -1431865800,1431865831,GB -1431865832,1431865839,PT -1431865840,1431865871,GB -1431865872,1431865879,PT -1431865880,1431865887,GB -1431865888,1431865919,PT -1431865920,1431866023,GB -1431866024,1431866031,PT -1431866032,1431866047,GB -1431866048,1431866063,PT +1431865720,1431865735,GB +1431865736,1431865743,PT +1431865744,1431865759,GB +1431865760,1431865799,PT +1431865800,1431865807,GB +1431865808,1431865823,PT +1431865824,1431865831,GB +1431865832,1431865855,PT +1431865856,1431865871,GB +1431865872,1431866007,PT +1431866008,1431866015,GB +1431866016,1431866063,PT 1431866064,1431867391,GB 1431867392,1431867647,PT 1431867648,1431871487,GB @@ -21950,7 +22180,7 @@ 1433867648,1433867775,NL 1433867776,1433867839,GB 1433867840,1433868031,NL -1433868032,1433868287,GB +1433868032,1433870335,GB 1433870336,1433872383,TR 1433872384,1433874431,IT 1433874432,1433876479,NL @@ -22035,6 +22265,7 @@ 1436459008,1436461055,NL 1436461056,1436463103,ES 1436463104,1436465151,DE +1436465152,1436467199,RU 1436467200,1436469247,DE 1436469248,1436471295,NL 1436471296,1436471551,BE @@ -22065,6 +22296,7 @@ 1436512256,1436514303,NL 1436514304,1436516351,GI 1436516352,1436520447,GB +1436520448,1436522495,IT 1436522496,1436524543,GB 1436524544,1436526591,IL 1436526592,1436528639,GB @@ -22103,8 +22335,8 @@ 1438519040,1438523391,DE 1438523392,1438524947,NL 1438524948,1438524951,DE -1438524952,1438525327,NL -1438525328,1438525343,DE +1438524952,1438525335,NL +1438525336,1438525343,DE 1438525344,1438525471,NL 1438525472,1438525695,DE 1438525696,1438526463,NL @@ -22135,7 +22367,8 @@ 1438875258,1438875647,DE 1438875648,1438875903,RU 1438875904,1438876159,SE -1438876160,1438876927,RU +1438876160,1438876415,LB +1438876416,1438876927,RU 1438876928,1438877183,SE 1438877184,1438877439,LT 1438877440,1438877695,RU @@ -22340,7 +22573,9 @@ 1441564672,1441566719,PK 1441566720,1441570815,IR 1441570816,1441579007,RU -1441579008,1441587199,DE +1441579008,1441582975,DE +1441582976,1441583103,US +1441583104,1441587199,DE 1441587200,1441594879,AT 1441594880,1441595135,DE 1441595136,1441596159,AT @@ -22430,7 +22665,10 @@ 1446576128,1446608895,LV 1446608896,1446641663,BY 1446641664,1446674431,SI -1446674432,1446707199,DK +1446674432,1446707175,DK +1446707176,1446707179,NO +1446707180,1446707183,FI +1446707184,1446707199,DK 1446707200,1446739967,AT 1446739968,1446764543,RU 1446764544,1446765055,CZ @@ -22512,11 +22750,7 @@ 1450180608,1450311679,GB 1450311680,1450442751,FI 1450442752,1450704895,CH -1450704896,1450731519,RO -1450731520,1450732031,HU -1450732032,1450860543,RO -1450860544,1450864639,HU -1450864640,1451173887,RO +1450704896,1451173887,RO 1451173888,1451175935,HU 1451175936,1451229183,RO 1451229184,1455423487,GB @@ -22528,7 +22762,6 @@ 1464074240,1464336383,IL 1464336384,1464467455,DK 1464467456,1464598527,GB -1464598528,1464664063,NO 1464664064,1464801791,DE 1464801792,1464801855,GB 1464801856,1464860671,DE @@ -22581,7 +22814,8 @@ 1466616576,1466617343,ES 1466617344,1466617471,FR 1466617472,1466617599,GB -1466617600,1466630143,DE +1466617600,1466617855,ES +1466617856,1466630143,DE 1466630144,1466695679,IR 1466695680,1466761215,FI 1466761216,1466826751,SA @@ -22619,11 +22853,14 @@ 1467369760,1467369791,HR 1467369792,1467369855,SE 1467369856,1467369887,GB -1467369888,1467369919,DE +1467369888,1467369903,RU +1467369904,1467369919,DE 1467369920,1467369951,RU 1467369952,1467370495,DE 1467370496,1467371007,IE -1467371008,1467383807,DE +1467371008,1467371775,DE +1467371776,1467372031,RU +1467372032,1467383807,DE 1467383808,1467400191,BG 1467400192,1467416575,RU 1467416576,1467432959,PL @@ -22634,7 +22871,7 @@ 1467465760,1467465791,AT 1467465792,1467465799,NL 1467465800,1467465807,AT -1467465808,1467465823,DE +1467465808,1467465823,NL 1467465824,1467465855,AT 1467465856,1467466015,NL 1467466016,1467466023,DE @@ -22741,6 +22978,7 @@ 1475158016,1475160063,IS 1475160064,1475162111,RU 1475162112,1475170303,GB +1475170304,1475172351,ES 1475172352,1475174399,DE 1475174400,1475175047,NL 1475175048,1475175055,US @@ -22795,7 +23033,11 @@ 1475211264,1475213311,DE 1475213312,1475215359,FR 1475215360,1475223551,IT -1475223552,1475233791,NO +1475223552,1475229695,NO +1475229696,1475229759,SE +1475229760,1475229951,NO +1475229952,1475229967,SE +1475229968,1475233791,NO 1475233792,1475234303,GB 1475234304,1475234559,IE 1475234560,1475235839,GB @@ -22854,7 +23096,6 @@ 1475282944,1475284991,NL 1475284992,1475287039,GB 1475287040,1475289087,RU -1475289088,1475291135,UA 1475291136,1475293183,PL 1475293184,1475295231,GB 1475295232,1475297279,PL @@ -22884,7 +23125,9 @@ 1475362816,1475379199,FR 1475379200,1475395583,GB 1475395584,1475411967,LU -1475411968,1475421239,IT +1475411968,1475412471,IT +1475412472,1475412479,ES +1475412480,1475421239,IT 1475421240,1475421247,FR 1475421248,1475428351,IT 1475428352,1475444735,SE @@ -22950,8 +23193,7 @@ 1475958016,1475959039,GB 1475959040,1475959047,US 1475959048,1475960831,GB -1475960832,1475961087,DE -1475961088,1475969023,NL +1475960832,1475969023,NL 1475969024,1475977215,CZ 1475977216,1475985407,SE 1475985408,1475993599,PL @@ -23070,7 +23312,9 @@ 1481988032,1481988095,NL 1481988096,1481988159,GI 1481988160,1481988167,RU -1481988168,1481988351,NL +1481988168,1481988319,NL +1481988320,1481988335,BZ +1481988336,1481988351,NL 1481988352,1481988607,GB 1481988608,1481990143,NL 1481990144,1481998335,MK @@ -23130,10 +23374,19 @@ 1486094336,1486127103,ES 1486127104,1486159871,FI 1486159872,1486192639,IS -1486192640,1486225407,IT +1486192640,1486211687,IT +1486211688,1486211695,GB +1486211696,1486225407,IT 1486225408,1486258175,DE 1486258176,1486290943,CS -1486290944,1486292991,IE +1486290944,1486290959,IE +1486290960,1486291071,GB +1486291072,1486291103,IE +1486291104,1486291199,GB +1486291200,1486291215,IE +1486291216,1486291455,GB +1486291456,1486291487,IE +1486291488,1486292991,GB 1486292992,1486295039,RU 1486295040,1486297087,ES 1486297088,1486299135,IE @@ -23172,10 +23425,11 @@ 1486342144,1486344191,RU 1486344192,1486346239,NO 1486346240,1486348287,GB +1486348288,1486350335,US 1486350336,1486352383,TR -1486352384,1486353663,BE -1486353664,1486353919,NL -1486353920,1486354431,BE +1486352384,1486353535,BE +1486353536,1486353663,NL +1486353664,1486354431,BE 1486354432,1486356479,RU 1486356480,1486487551,DE 1486487552,1486618623,UA @@ -23211,18 +23465,17 @@ 1489642752,1489644543,IT 1489644544,1489645055,GB 1489645056,1489645567,IT -1489645568,1489646079,GB -1489646080,1489646334,BA -1489646335,1489646591,IT +1489645568,1489646335,GB +1489646336,1489646591,IT 1489646592,1489646847,GB 1489646848,1489647103,IT -1489647104,1489647359,DE +1489647104,1489647359,GB 1489647360,1489648639,IT 1489648640,1489648895,GB 1489648896,1489649407,IT 1489649408,1489650687,FR 1489650688,1489661951,IT -1489661952,1489662719,FR +1489661952,1489662719,GB 1489662720,1489662975,ZA 1489662976,1489663487,FR 1489663488,1489663999,ES @@ -23263,10 +23516,7 @@ 1490196480,1490196735,AL 1490196736,1490196991,CZ 1490196992,1490197247,IE -1490197248,1490205439,GB -1490205440,1490205471,IE -1490205472,1490205567,IT -1490205568,1490206719,GB +1490197248,1490206719,GB 1490206720,1490223103,GE 1490223104,1490255871,GB 1490255872,1490272255,NL @@ -23312,7 +23562,6 @@ 1490935040,1490935295,ES 1490944000,1491075071,LT 1491075072,1493172223,TR -1493172224,1493303295,IL 1493303296,1493434367,FR 1493434368,1493565439,SA 1493565440,1493696511,ES @@ -23329,7 +23578,7 @@ 1494286336,1494294527,HR 1494294528,1494302719,RU 1494302720,1494310911,FI -1494310912,1494319103,LB +1494310912,1494319103,GB 1494319104,1494327295,MT 1494327296,1494335487,IT 1494335488,1494343679,ES @@ -23406,7 +23655,9 @@ 1495140352,1495150847,FR 1495150848,1495151103,GB 1495151104,1495151359,NL -1495151360,1495163903,FR +1495151360,1495154687,FR +1495162368,1495162879,US +1495162880,1495163903,FR 1495164416,1495164671,FR 1495164928,1495165055,FR 1495165184,1495165199,FR @@ -23419,9 +23670,7 @@ 1495170304,1495170335,FR 1495170560,1495170815,FR 1495170816,1495171071,GB -1495171072,1495175167,NL -1495175168,1495176191,US -1495176192,1495203839,NL +1495171072,1495203839,NL 1495203840,1495205887,DE 1495205888,1495207935,CZ 1495207936,1495209983,RU @@ -23433,6 +23682,7 @@ 1495220224,1495222271,PL 1495222272,1495224319,IT 1495224320,1495228415,RU +1495228416,1495230463,NL 1495230464,1495234559,RU 1495234560,1495236607,CH 1495236608,1495237711,AT @@ -23447,6 +23697,7 @@ 1495244800,1495246847,CZ 1495246848,1495248895,IE 1495248896,1495250943,GR +1495250944,1495252991,RU 1495252992,1495255039,BH 1495255040,1495257087,IT 1495257088,1495259135,GB @@ -23472,7 +23723,9 @@ 1495801856,1495802879,GB 1495802880,1495875583,RO 1495875584,1495891967,MD -1495891968,1496078335,RO +1495891968,1495937023,RO +1495937024,1495937535,ES +1495937536,1496078335,RO 1496078336,1496079359,MD 1496079360,1496121343,RO 1496121344,1496122367,MD @@ -23500,13 +23753,18 @@ 1500094464,1500102655,AT 1500102656,1500103935,NL 1500103936,1500103967,VG -1500103968,1500110847,NL +1500103968,1500104063,NL +1500104064,1500104071,DE +1500104072,1500110847,NL 1500110848,1500119039,UA 1500119040,1500127231,TR 1500127232,1500135423,RU 1500135424,1500135555,DE 1500135556,1500135559,CH -1500135560,1500143615,DE +1500135560,1500140560,DE +1500140561,1500140564,AT +1500140565,1500140568,CH +1500140569,1500143615,DE 1500143616,1500151807,BG 1500151808,1500153855,GB 1500153856,1500155903,IE @@ -23527,7 +23785,7 @@ 1500184576,1500186623,GB 1500186624,1500188671,KW 1500188672,1500190719,GB -1500190720,1500192767,RU +1500190720,1500194815,RU 1500194816,1500196863,GB 1500196864,1500198911,ES 1500198912,1500200959,GB @@ -23543,7 +23801,6 @@ 1500217600,1500218111,DE 1500218112,1500218367,CZ 1500218368,1500219391,DE -1500219392,1500221439,RU 1500221440,1500223487,SK 1500223488,1500225535,PL 1500225536,1500227583,DE @@ -23576,15 +23833,15 @@ 1500434448,1500434463,CS 1500434464,1500434567,RS 1500434568,1500434623,CS -1500434624,1500434687,RS -1500434688,1500434943,CS -1500434944,1500435199,RS +1500434624,1500435199,RS 1500435200,1500435455,CS 1500435456,1500435967,RS 1500435968,1500436479,CS 1500436480,1500437055,RS -1500437056,1500437503,CS -1500437504,1500438527,RS +1500437056,1500437087,CS +1500437088,1500437183,RS +1500437184,1500437247,CS +1500437248,1500438527,RS 1500438528,1500446719,CS 1500446720,1500463103,LV 1500463104,1500479487,CZ @@ -23635,8 +23892,8 @@ 1502953472,1502969855,MD 1502969856,1502975231,US 1502975232,1502975247,DE -1502975248,1502975295,IE -1502975296,1502975311,DE +1502975248,1502975263,IE +1502975264,1502975311,DE 1502975312,1502975319,IE 1502975320,1502975327,DE 1502975328,1502975375,IE @@ -23653,14 +23910,14 @@ 1502979104,1502979111,ES 1502979112,1502979119,DE 1502979120,1502979215,ES -1502979216,1502979327,DE -1502979328,1502980095,ES +1502979216,1502980095,DE 1502980096,1502980159,US 1502980160,1502980351,DE 1502980352,1502980871,US 1502980872,1502981119,DE 1502981120,1502981887,US -1502981888,1502986255,DE +1502981888,1502982143,NL +1502982144,1502986255,DE 1502986256,1502986495,TR 1502986496,1502986511,DE 1502986512,1502986751,PL @@ -23713,25 +23970,23 @@ 1504051200,1504083967,FI 1504083968,1504116735,DE 1504116736,1504149503,PL -1504149504,1504151647,GB -1504151648,1504151679,IE -1504151680,1504152127,GB +1504149504,1504152127,GB 1504152128,1504152191,IE 1504152192,1504152447,GB 1504152448,1504152575,IE 1504152576,1504153855,GB 1504153856,1504154111,IE -1504154112,1504154367,GB -1504154368,1504154623,IE -1504154624,1504156927,GB +1504154112,1504154623,GB +1504154624,1504155647,IE +1504155648,1504156927,GB 1504156928,1504157183,IE 1504157184,1504160255,GB 1504160256,1504161023,IE 1504161024,1504161279,GB 1504161280,1504161535,IE 1504161536,1504164607,GB -1504164608,1504165887,IE -1504165888,1504169983,GB +1504164608,1504164863,IE +1504164864,1504169983,GB 1504169984,1504170239,IE 1504170240,1504171007,GB 1504171008,1504171263,PT @@ -23761,6 +24016,7 @@ 1505099776,1505230847,DE 1505230848,1505239039,RU 1505239040,1505247231,IE +1505247232,1505255423,UA 1505255424,1505263615,IT 1505263616,1505271807,DK 1505271808,1505273087,NL @@ -23882,7 +24138,8 @@ 1506440720,1506440735,US 1506440736,1506440767,GB 1506440768,1506440799,US -1506440800,1506440959,DE +1506440800,1506440831,DE +1506440832,1506440959,US 1506440960,1506440991,FR 1506440992,1506440999,US 1506441000,1506441007,GB @@ -23906,8 +24163,8 @@ 1506442240,1506442383,US 1506442384,1506442399,GB 1506442400,1506442415,FR -1506442416,1506442423,US -1506442424,1506442431,DE +1506442416,1506442427,US +1506442428,1506442431,DE 1506442432,1506442463,HK 1506442464,1506442623,DE 1506442624,1506442655,GB @@ -23929,7 +24186,8 @@ 1506442992,1506442999,GB 1506443000,1506443003,IE 1506443004,1506443151,DE -1506443152,1506443167,US +1506443152,1506443159,US +1506443160,1506443167,DE 1506443168,1506443183,NL 1506443184,1506443199,DE 1506443200,1506443263,US @@ -23939,7 +24197,8 @@ 1506445520,1506445527,GB 1506445528,1506445703,FR 1506445704,1506445711,NL -1506445712,1506445791,FR +1506445712,1506445719,GB +1506445720,1506445791,FR 1506445792,1506445807,GB 1506445808,1506446335,FR 1506446336,1506447359,NL @@ -23954,22 +24213,22 @@ 1506448736,1506448895,GB 1506448896,1506449167,BE 1506449168,1506449171,GB -1506449172,1506449375,BE -1506449376,1506449407,GB +1506449172,1506449391,BE +1506449392,1506449407,GB 1506449408,1506449663,NL 1506449664,1506449919,SK 1506449920,1506449927,CH -1506449928,1506449935,GB -1506449936,1506450431,CH +1506449928,1506449951,GB +1506449952,1506450431,CH 1506450432,1506450767,CZ 1506450768,1506450775,GB 1506450776,1506450783,CZ -1506450784,1506450815,GB -1506450816,1506450943,CZ +1506450784,1506450847,GB +1506450848,1506450943,CZ 1506450944,1506451007,DK 1506451008,1506451199,GB -1506451200,1506451899,ES -1506451900,1506451903,GB +1506451200,1506451895,ES +1506451896,1506451903,GB 1506451904,1506451967,ES 1506451968,1506452031,GB 1506452032,1506452223,ES @@ -23996,9 +24255,7 @@ 1506456576,1506456831,GB 1506456832,1506457087,IT 1506457088,1506458239,GB -1506458240,1506458359,CH -1506458360,1506458367,GB -1506458368,1506458623,CH +1506458240,1506458623,CH 1506458624,1506459135,GB 1506459136,1506459647,BE 1506459648,1506460339,FR @@ -24012,9 +24269,7 @@ 1506461360,1506461695,IT 1506461696,1506462207,FR 1506462208,1506462463,ES -1506462464,1506462607,FR -1506462608,1506462623,GB -1506462624,1506462719,FR +1506462464,1506462719,FR 1506462720,1506463231,IT 1506463232,1506463487,SE 1506463488,1506463999,DE @@ -24034,16 +24289,22 @@ 1506467584,1506468351,IT 1506468352,1506468607,GB 1506468608,1506468863,TZ -1506468864,1506469375,IT -1506469376,1506469887,GB -1506469888,1506470143,IT +1506468864,1506469383,IT +1506469384,1506469391,GB +1506469392,1506469399,IT +1506469400,1506469407,GB +1506469408,1506469439,IT +1506469440,1506469503,GB +1506469504,1506470143,IT 1506470144,1506470399,GB 1506470400,1506470655,DE 1506470656,1506471679,IT -1506471680,1506472191,GB +1506471680,1506471935,GB +1506471936,1506471975,NL +1506471976,1506472191,GB 1506472192,1506472447,IT -1506472448,1506472703,GB -1506472704,1506473215,IT +1506472448,1506472959,GB +1506472960,1506473215,IT 1506473216,1506473471,GB 1506473472,1506474271,IT 1506474272,1506474303,SE @@ -24069,7 +24330,7 @@ 1506743216,1506743232,GB 1506743233,1506744319,SE 1506744320,1506746367,NL -1506748416,1506750463,RU +1506746368,1506750463,RU 1506750464,1506752511,GB 1506752512,1506754559,IE 1506754560,1506758655,RU @@ -24082,7 +24343,9 @@ 1506770944,1506772991,NL 1506772992,1506775039,GB 1506775040,1506777087,AT -1506777088,1506783231,GB +1506777088,1506781695,GB +1506781696,1506781951,IE +1506781952,1506783231,GB 1506783232,1506785279,RU 1506785280,1506787327,UA 1506787328,1506789375,KW @@ -24107,7 +24370,11 @@ 1507336192,1507336511,CS 1507336512,1507336959,RS 1507336960,1507337727,SR -1507337728,1507343071,RS +1507337728,1507341727,RS +1507341728,1507341743,CS +1507341744,1507342959,RS +1507342960,1507342967,CS +1507342968,1507343071,RS 1507343072,1507343103,CS 1507343104,1507360767,RS 1507360768,1507377151,CS @@ -24122,14 +24389,14 @@ 1507664128,1507664383,GR 1507664384,1507664767,DE 1507664768,1507664895,US -1507664896,1507665663,GR +1507664896,1507665407,GR +1507665408,1507665663,IT 1507665664,1507666431,US 1507666432,1507666559,GR 1507666560,1507666591,FR 1507666592,1507666623,GR -1507666624,1507666655,IT -1507666656,1507666671,IL -1507666672,1507666943,GB +1507666624,1507666687,IT +1507666688,1507666943,GB 1507666944,1507667455,IT 1507667456,1507667711,DE 1507667712,1507667967,US @@ -24162,11 +24429,7 @@ 1508486464,1508486527,DE 1508486528,1508491263,CZ 1508491264,1508507647,SE -1508507648,1508515887,GB -1508515888,1508515895,IE -1508515896,1508519967,GB -1508519968,1508519983,IE -1508519984,1508521535,GB +1508507648,1508521535,GB 1508521536,1508521551,IE 1508521552,1508524031,GB 1508524032,1508540415,IE @@ -24181,20 +24444,20 @@ 1508638720,1508639231,SE 1508639232,1508640767,DK 1508640768,1508641279,SE -1508641280,1508641791,DK -1508641792,1508642175,SE +1508641280,1508641535,DK +1508641536,1508642175,SE 1508642176,1508642303,DK 1508642304,1508642559,SE 1508642560,1508642815,DK 1508642816,1508646911,SE 1508646912,1508646927,DK -1508646928,1508647679,SE -1508647680,1508647935,DK -1508647936,1508648447,SE +1508646928,1508648447,SE 1508648448,1508648703,DK -1508648704,1508650751,SE -1508650752,1508651135,DK -1508651136,1508655103,SE +1508648704,1508651007,SE +1508651008,1508651135,DK +1508651136,1508652543,SE +1508652544,1508654079,DK +1508654080,1508655103,SE 1508655104,1508671487,FI 1508671488,1508687871,CH 1508687872,1508704255,UZ @@ -24225,7 +24488,7 @@ 1509425152,1509429247,NO 1509429248,1509433343,GB 1509433344,1509437439,CH -1509441536,1509445631,GB +1509437440,1509445631,GB 1509445632,1509449727,LV 1509449728,1509453823,ES 1509453824,1509457919,RU @@ -24513,10 +24776,11 @@ 1520205824,1520230399,RU 1520230400,1520230911,NL 1520230912,1520231423,RU -1520231424,1520231935,NL -1520231936,1520271359,RU -1520271360,1520302079,SI -1520302080,1520304127,HR +1520231424,1520232191,NL +1520232192,1520232447,RU +1520232448,1520233471,NL +1520233472,1520271359,RU +1520271360,1520304127,SI 1520304128,1520435199,TR 1520435200,1521483775,ES 1521483776,1522008063,CZ @@ -24599,7 +24863,7 @@ 1533462528,1533464575,RU 1533464576,1533466623,NL 1533466624,1533468671,RU -1533468672,1533470719,RS +1533468672,1533470719,CS 1533470720,1533472767,KW 1533472768,1533474815,ES 1533474816,1533476863,FR @@ -24648,7 +24912,9 @@ 1534328832,1534459903,ES 1534459904,1534590975,AT 1534590976,1534656511,HU -1534656512,1534713903,FR +1534656512,1534711807,FR +1534711808,1534712831,BE +1534712832,1534713903,FR 1534713904,1534713919,BE 1534713920,1534714015,FR 1534714016,1534714031,DE @@ -24678,7 +24944,7 @@ 1534714528,1534714559,FR 1534714560,1534714575,BE 1534714576,1534714703,FR -1534714704,1534714719,PL +1534714704,1534714719,CH 1534714720,1534714751,BE 1534714752,1534714767,DE 1534714768,1534714783,FR @@ -24697,8 +24963,8 @@ 1534715184,1534715263,FR 1534715264,1534715279,ES 1534715280,1534715295,FR -1534715296,1534715343,ES -1534715344,1534715375,FR +1534715296,1534715327,ES +1534715328,1534715375,FR 1534715376,1534715391,ES 1534715392,1534715407,PL 1534715408,1534715423,ES @@ -24706,12 +24972,11 @@ 1534715488,1534715503,ES 1534715504,1534715519,CH 1534715520,1534715551,FR -1534715552,1534715583,ES -1534715584,1534715599,FR +1534715552,1534715599,ES 1534715600,1534715615,BE 1534715616,1534715631,FR 1534715632,1534715647,ES -1534715648,1534715663,FR +1534715648,1534715663,PL 1534715664,1534715679,ES 1534715680,1534715743,FR 1534715744,1534715759,PL @@ -24720,7 +24985,9 @@ 1534715808,1534715839,PL 1534715840,1534715871,FR 1534715872,1534715887,DE -1534715888,1534716047,FR +1534715888,1534715919,FR +1534715920,1534715935,ES +1534715936,1534716047,FR 1534716048,1534716063,GB 1534716064,1534716175,FR 1534716176,1534716191,GB @@ -24729,15 +24996,14 @@ 1534716256,1534716511,FR 1534716512,1534716527,DE 1534716528,1534716543,FR -1534716544,1534716559,ES +1534716544,1534716559,GB 1534716560,1534716591,FR 1534716592,1534716607,PL 1534716608,1534716671,FR 1534716672,1534716687,PL 1534716688,1534716703,FR 1534716704,1534716735,ES -1534716736,1534716831,FR -1534716832,1534716847,BE +1534716736,1534716847,FR 1534716848,1534716863,PL 1534716864,1534716879,FR 1534716880,1534716895,BE @@ -24750,9 +25016,7 @@ 1534717056,1534717071,ES 1534717072,1534717119,FR 1534717120,1534717135,IT -1534717136,1534717151,FR -1534717152,1534717167,PL -1534717168,1534717199,FR +1534717136,1534717199,FR 1534717200,1534717215,DE 1534717216,1534717231,PL 1534717232,1534717263,FR @@ -24771,8 +25035,8 @@ 1534717584,1534717663,FR 1534717664,1534717679,GB 1534717680,1534717695,FR -1534717696,1534717823,PL -1534717824,1534717839,FR +1534717696,1534717759,PL +1534717760,1534717839,ES 1534717840,1534717855,GB 1534717856,1534717871,DE 1534717872,1534717919,FR @@ -24820,7 +25084,7 @@ 1534719456,1534719471,FR 1534719472,1534719487,GB 1534719488,1534719647,FR -1534719648,1534719663,CH +1534719648,1534719663,GB 1534719664,1534719679,PL 1534719680,1534719695,GB 1534719696,1534719759,FR @@ -24838,10 +25102,11 @@ 1534720064,1534720079,IT 1534720080,1534720095,GB 1534720096,1534720111,FR -1534720112,1534720127,GB +1534720112,1534720127,ES 1534720128,1534720175,FR 1534720176,1534720191,BE -1534720192,1534720223,FR +1534720192,1534720207,FR +1534720208,1534720223,GB 1534720224,1534720255,BE 1534720256,1534720287,PL 1534720288,1534720367,FR @@ -24851,9 +25116,11 @@ 1534720464,1534720479,FR 1534720480,1534720495,GB 1534720496,1534720511,PL -1534720512,1534720591,FR +1534720512,1534720575,FR +1534720576,1534720591,ES 1534720592,1534720607,CH -1534720608,1534720655,FR +1534720608,1534720639,FR +1534720640,1534720655,GB 1534720656,1534720671,PL 1534720672,1534720703,FR 1534720704,1534720735,PL @@ -24866,10 +25133,10 @@ 1534720832,1534720863,PL 1534720864,1534720959,FR 1534720960,1534720975,ES -1534720976,1534721103,FR -1534721104,1534721119,ES +1534720976,1534721119,FR 1534721120,1534721135,IT -1534721136,1534721231,FR +1534721136,1534721151,CH +1534721152,1534721231,FR 1534721232,1534721247,DE 1534721248,1534721263,FR 1534721264,1534721279,ES @@ -24879,7 +25146,7 @@ 1534721344,1534721359,ES 1534721360,1534721375,FR 1534721376,1534721391,ES -1534721392,1534721407,FR +1534721392,1534721407,GB 1534721408,1534721439,DE 1534721440,1534721455,BE 1534721456,1534721503,FR @@ -24894,15 +25161,15 @@ 1534721680,1534721759,FR 1534721760,1534721775,GB 1534721776,1534721791,ES -1534721792,1534721807,IT +1534721792,1534721807,BE 1534721808,1534721855,FR -1534721856,1534721871,GB -1534721872,1534721903,FR +1534721856,1534721887,ES +1534721888,1534721903,FR 1534721904,1534721919,DE 1534721920,1534721935,FR 1534721936,1534721951,PL 1534721952,1534721983,FR -1534721984,1534721999,ES +1534721984,1534721999,PL 1534722000,1534722015,FR 1534722016,1534722031,ES 1534722032,1534722047,BE @@ -24971,8 +25238,8 @@ 1536036864,1536040959,AT 1536040960,1536045055,GB 1536045056,1536045567,DE -1536045568,1536045823,IQ -1536045824,1536046591,DE +1536045568,1536046079,IQ +1536046080,1536046591,DE 1536046592,1536046847,IQ 1536046848,1536046975,DE 1536046976,1536047039,SA @@ -25061,9 +25328,7 @@ 1536622592,1536626687,GB 1536626688,1536630783,IT 1536630784,1536634879,RU -1536634880,1536635647,FR -1536635648,1536635903,CH -1536635904,1536643071,FR +1536634880,1536643071,FR 1536643072,1536647167,TR 1536647168,1536647434,ES 1536647435,1536647435,PT @@ -25072,18 +25337,18 @@ 1536655360,1536659455,GE 1536659456,1536659743,DE 1536659744,1536659751,IQ -1536659752,1536659759,DE +1536659752,1536659759,NG 1536659760,1536659775,BI 1536659776,1536659807,IQ 1536659808,1536659823,SD -1536659824,1536659903,IQ -1536659904,1536659935,DE +1536659824,1536659839,IQ +1536659840,1536659935,DE 1536659936,1536659967,MR 1536659968,1536659975,EG 1536659976,1536659991,DE 1536659992,1536660003,EG 1536660004,1536660007,SO -1536660008,1536660015,EG +1536660008,1536660015,DE 1536660016,1536660019,KW 1536660020,1536660023,DE 1536660024,1536660031,IR @@ -25098,7 +25363,7 @@ 1536662304,1536662311,IR 1536662312,1536662335,LB 1536662336,1536662351,AE -1536662352,1536662359,DE +1536662352,1536662359,TD 1536662360,1536662367,IR 1536662368,1536662399,IQ 1536662400,1536662431,DE @@ -25121,9 +25386,7 @@ 1537212416,1538260991,FR 1538260992,1538785279,BE 1538785280,1538793471,NL -1538793472,1538794839,DE -1538794840,1538794847,US -1538794848,1538797567,DE +1538793472,1538797567,DE 1538797568,1538799551,NL 1538799552,1538799615,DE 1538799616,1538801663,NL @@ -25145,7 +25408,9 @@ 1538879488,1538883583,RS 1538883584,1538891775,BE 1538891776,1538899967,DE -1538899968,1538902063,SI +1538899968,1538901167,SI +1538901168,1538901175,IT +1538901176,1538902063,SI 1538902064,1538902079,NZ 1538902080,1538908159,SI 1538908160,1538916351,RU @@ -25370,8 +25635,7 @@ 1539426304,1539427327,BG 1539427328,1539428351,UA 1539428352,1539429375,PL -1539429376,1539430399,RU -1539431424,1539434495,RU +1539429376,1539434495,RU 1539434496,1539435519,UA 1539435520,1539437567,RU 1539437568,1539439615,GB @@ -25489,7 +25753,6 @@ 1539504640,1539505151,UA 1539505152,1539506175,RU 1539506176,1539506687,NL -1539506688,1539507199,IT 1539507200,1539508223,RO 1539508224,1539508735,NO 1539508736,1539509759,UA @@ -25645,7 +25908,7 @@ 1539618816,1539619839,GB 1539619840,1539620863,RU 1539620864,1539623935,UA -1539623936,1539625983,RU +1539624960,1539625983,RU 1539625984,1539627007,PL 1539627008,1539628031,RU 1539628032,1539629055,UA @@ -26216,6 +26479,7 @@ 1539866624,1539867647,IT 1539867648,1539869695,UA 1539869696,1539870719,ES +1539870720,1539871743,IL 1539871744,1539872767,ES 1539872768,1539873791,SE 1539873792,1539876863,UA @@ -26246,7 +26510,6 @@ 1539911680,1539913727,RU 1539913728,1539914751,CH 1539914752,1539915775,SE -1539915776,1539916799,PL 1539916800,1539917823,UA 1539917824,1539918847,RU 1539918848,1539920895,RO @@ -26323,7 +26586,6 @@ 1540008960,1540011007,PL 1540011008,1540014079,RU 1540014080,1540015103,PL -1540015104,1540016127,RU 1540016128,1540017151,KR 1540017152,1540018175,RU 1540018176,1540020223,UA @@ -26846,7 +27108,6 @@ 1540394752,1540395007,DK 1540395008,1540395263,GE 1540395264,1540395519,UA -1540395520,1540395775,GB 1540395776,1540396031,IL 1540396032,1540396287,NO 1540396288,1540396543,AM @@ -27244,8 +27505,7 @@ 1540584448,1540586495,UA 1540586496,1540588543,RU 1540588544,1540589567,UA -1540589568,1540591615,RU -1540592640,1540593663,RU +1540589568,1540593663,RU 1540593664,1540594687,GB 1540594688,1540595711,IT 1540595712,1540596735,KZ @@ -27354,7 +27614,6 @@ 1540642560,1540642815,DE 1540642816,1540643071,IE 1540643072,1540643327,UZ -1540643328,1540643583,GB 1540643584,1540643839,CH 1540643840,1540644095,NO 1540644096,1540644607,GB @@ -27376,12 +27635,135 @@ 1540648448,1540648959,RO 1540648960,1540649215,FR 1540649216,1540649471,DE +1540649472,1540649727,IL +1540649728,1540649983,GB +1540649984,1540650239,FR +1540650240,1540650495,CH +1540650496,1540650751,RU +1540650752,1540651007,FR +1540651008,1540651263,RO +1540651264,1540651519,CH +1540651520,1540651775,MK +1540651776,1540652031,RU +1540652032,1540652543,UA +1540652544,1540652799,TR +1540652800,1540653055,LV +1540653056,1540653311,FR +1540653312,1540653567,DK +1540653568,1540653823,DE +1540653824,1540654079,GB +1540654080,1540654335,RS +1540654336,1540654591,RU +1540654592,1540654847,DE +1540654848,1540655103,RU +1540655104,1540655359,AT +1540655360,1540655615,RU +1540655616,1540655871,GB +1540655872,1540656383,NL +1540656384,1540656895,RU +1540656896,1540657151,RO +1540657152,1540657407,DE +1540657408,1540657663,CY +1540657664,1540657919,RU +1540657920,1540658175,FR +1540658176,1540658431,RO +1540658432,1540659199,RU +1540659200,1540659455,FR +1540659456,1540659967,UA +1540659968,1540660223,PL +1540660224,1540660479,UA +1540660480,1540660735,FR +1540660736,1540660991,UA +1540660992,1540661247,RO +1540661248,1540661503,GB +1540661504,1540662015,RO +1540662016,1540662271,BG +1540662272,1540662527,RO +1540662528,1540662783,PL +1540662784,1540663039,GB +1540663040,1540663295,IT +1540663296,1540663551,RU +1540663552,1540664063,PL +1540664064,1540664319,RU +1540664320,1540664575,PL +1540664576,1540665087,UA +1540665088,1540665343,ES +1540665344,1540665599,NL +1540665600,1540665855,UA +1540665856,1540666111,TR +1540666112,1540666367,RU +1540666368,1540666623,UZ +1540666624,1540666879,DE +1540666880,1540667135,GB +1540667136,1540667647,NL +1540667648,1540668159,BE +1540668160,1540668415,AT +1540668416,1540668671,SE +1540668672,1540668927,IL +1540668928,1540669695,RO +1540669696,1540669951,KZ +1540669952,1540670207,UA +1540670208,1540670463,RU +1540670464,1540670719,CH +1540670720,1540671231,RU +1540671232,1540671487,SI +1540671488,1540671743,CH +1540671744,1540671999,BG +1540672000,1540672255,FR +1540672256,1540672511,UA +1540672512,1540672767,DE +1540672768,1540673023,FR +1540673024,1540673279,DE +1540673280,1540673535,SE +1540673536,1540673791,SI +1540673792,1540674047,SE +1540674048,1540674303,GB +1540674304,1540674559,FR +1540674560,1540674815,GB +1540674816,1540675071,GE +1540675072,1540675327,UA +1540675328,1540675583,NL +1540675584,1540675839,GB +1540675840,1540676351,RU +1540676352,1540676607,IT +1540676608,1540677119,RU +1540677120,1540677375,GB +1540677376,1540677631,PL +1540677632,1540677887,DK +1540677888,1540678143,DE +1540678144,1540678399,RU +1540678400,1540678655,RO +1540678656,1540678911,SE +1540678912,1540679167,RO +1540751360,1540752383,PL +1540752384,1540753407,GB +1540753408,1540754431,DE +1540754432,1540755455,RO +1540755456,1540756479,UA +1540756480,1540757503,DK +1540757504,1540758527,PL +1540758528,1540760575,UA +1540760576,1540761599,PL +1540761600,1540762623,RU +1540762624,1540763647,BZ +1540763648,1540764671,UA +1540764672,1540765695,PL +1540765696,1540766719,RU +1540766720,1540767743,IT +1540767744,1540768767,GB +1540769792,1540770815,IT +1540770816,1540771839,RU +1540771840,1540773887,UA +1540773888,1540774911,SE +1540774912,1540775935,GB +1540775936,1540776959,RU +1540776960,1540777983,IL +1540777984,1540779007,HR 1543503872,1545601023,GB 1545601024,1545863167,SE 1545863168,1545895935,RU 1545895936,1545928703,BA -1545928704,1545955327,SI -1545955328,1545961471,HR +1545928704,1545961471,SI 1545961472,1545994239,RU 1545994240,1546027007,CZ 1546027008,1546059775,RU @@ -27415,7 +27797,7 @@ 1546091008,1546091135,NA 1546091136,1546091263,KM 1546091264,1546091391,GN -1546091392,1546091519,DE +1546091392,1546091519,HT 1546091520,1546091647,AF 1546091648,1546091775,TD 1546091776,1546091903,BF @@ -27454,9 +27836,6 @@ 1546301440,1546303487,LU 1546303488,1546305535,CH 1546305536,1546307583,DE -1546307584,1546307839,NL -1546307840,1546307855,DE -1546307856,1546309631,NL 1546309632,1546311679,RU 1546311680,1546313727,FR 1546313728,1546315775,DE @@ -27638,7 +28017,9 @@ 1547621144,1547621151,NG 1547621152,1547621167,JE 1547621168,1547621175,NG -1547621176,1547624447,JE +1547621176,1547621247,JE +1547621248,1547621263,NG +1547621264,1547624447,JE 1547624448,1547628543,CZ 1547628544,1547632639,BG 1547632640,1547636735,TR @@ -27649,7 +28030,9 @@ 1547657216,1547660287,RU 1547660288,1547661311,BE 1547661312,1547665407,LV -1547665408,1547669503,GB +1547665408,1547667807,GB +1547667808,1547667815,LT +1547667816,1547669503,GB 1547669504,1547672575,AT 1547672576,1547672831,HR 1547672832,1547673599,AT @@ -27683,6 +28066,7 @@ 1551544320,1551547391,DE 1551548416,1551551487,DE 1551555584,1551558655,FR +1551564800,1551572991,FR 1551572992,1551576063,NL 1551577088,1551580159,NL 1551630336,1551892479,RU @@ -27753,7 +28137,9 @@ 1559838720,1559855103,UA 1559855104,1559887871,HU 1559887872,1559920639,PT -1559920640,1559937023,LU +1559920640,1559932927,LU +1559932928,1559934975,DE +1559934976,1559937023,LU 1559937024,1559943167,DE 1559943168,1559950335,LU 1559950336,1559953407,DE @@ -27778,7 +28164,17 @@ 1565984256,1565984511,CS 1565984512,1565985279,RS 1565985280,1565985791,CS -1565985792,1566048255,RS +1565985792,1565986159,RS +1565986160,1565986175,CS +1565986176,1565986239,RS +1565986240,1565986271,CS +1565986272,1565986295,RS +1565986296,1565986303,CS +1565986304,1565987119,RS +1565987120,1565987135,CS +1565987136,1565987531,RS +1565987532,1565987535,CS +1565987536,1566048255,RS 1566048256,1566056447,RU 1566056448,1566060543,IT 1566060544,1566064639,UA @@ -27880,7 +28276,7 @@ 1566384128,1566386175,RU 1566386176,1566388223,FR 1566388224,1566388735,HU -1566388736,1566389247,US +1566388736,1566389247,PT 1566389248,1566389759,HU 1566389760,1566390271,US 1566390272,1566392319,LT @@ -27889,12 +28285,24 @@ 1566396416,1566398463,GB 1566398464,1566400511,RU 1566400512,1566400575,NO -1566400576,1566400639,NL -1566400640,1566401023,NO +1566400576,1566400607,NL +1566400608,1566400639,GB +1566400640,1566400671,NO +1566400672,1566400703,DE +1566400704,1566400735,NL +1566400736,1566401023,NO 1566401024,1566401055,US -1566401056,1566401471,NO +1566401056,1566401087,NO +1566401088,1566401215,US +1566401216,1566401471,NO 1566401472,1566401535,US -1566401536,1566402559,NO +1566401536,1566401599,IN +1566401600,1566401663,CN +1566401664,1566401727,SG +1566401728,1566401791,AU +1566401792,1566401983,NO +1566401984,1566402047,AU +1566402048,1566402559,NO 1566402560,1566404607,IT 1566404608,1566406655,ES 1566406656,1566408703,NL @@ -27918,6 +28326,7 @@ 1566453760,1566455807,IQ 1566455808,1566457855,PT 1566457856,1566459903,CH +1566459904,1566461951,GB 1566461952,1566463999,DE 1566464000,1566466047,IT 1566466048,1566468095,ES @@ -27963,6 +28372,7 @@ 1566552064,1566554111,TR 1566554112,1566556159,UA 1566556160,1566558207,RU +1566558208,1566560255,JO 1566560256,1566564351,IT 1566564352,1566566399,IS 1566566400,1566568447,FR @@ -28004,7 +28414,9 @@ 1568243712,1568276479,FR 1568276480,1568293135,DE 1568293136,1568293151,SA -1568293152,1568309247,DE +1568293152,1568294223,DE +1568294224,1568294239,IT +1568294240,1568309247,DE 1568309248,1568342015,RO 1568342016,1568374783,BG 1568374784,1568440319,RU @@ -28046,7 +28458,7 @@ 1570592768,1570596863,PL 1570596864,1570598911,UA 1570598912,1570600959,PL -1570600960,1570603007,RU +1570600960,1570605055,RU 1570605056,1570607103,NL 1570607104,1570609151,RU 1570609152,1570611199,PL @@ -28079,7 +28491,8 @@ 1570667264,1570667267,ES 1570667268,1570667519,SE 1570667520,1570667523,NL -1570667524,1570667775,SE +1570667524,1570667527,IT +1570667528,1570667775,SE 1570667776,1570667779,NL 1570667780,1570668031,SE 1570668032,1570668035,NL @@ -28102,9 +28515,10 @@ 1571430400,1571434495,UA 1571434496,1571438591,RU 1571438592,1571442687,UA -1571442688,1571446783,RU -1571446784,1571552255,CZ -1571552256,1571553279,RU +1571442688,1571450879,RU +1571450880,1571454975,CZ +1571454976,1571459071,RU +1571459072,1571553279,CZ 1571553280,1571684351,IL 1571684352,1571686399,ES 1571686400,1571688447,GB @@ -28215,6 +28629,7 @@ 1572425728,1572429823,LB 1572429824,1572433919,CZ 1572433920,1572438015,IT +1572438016,1572442111,AT 1572442112,1572446207,RU 1572446208,1572450303,NO 1572450304,1572458495,RU @@ -28431,18 +28846,15 @@ 1578590480,1578590495,IT 1578590496,1578590511,PL 1578590512,1578590543,FR -1578590544,1578590559,ES -1578590560,1578590575,GB +1578590544,1578590575,ES 1578590576,1578590591,CH 1578590592,1578590623,FR -1578590624,1578590639,GB -1578590640,1578590655,FR -1578590656,1578590687,GB +1578590624,1578590687,GB 1578590688,1578590703,FR 1578590704,1578590719,PL 1578590720,1578590799,FR -1578590800,1578590831,GB -1578590832,1578590879,FR +1578590800,1578590847,GB +1578590848,1578590879,FR 1578590880,1578590895,PL 1578590896,1578590911,GB 1578590912,1578590927,ES @@ -28451,11 +28863,12 @@ 1578590960,1578590975,FR 1578590976,1578590991,GB 1578590992,1578591007,ES -1578591008,1578591039,FR +1578591008,1578591023,FR +1578591024,1578591039,PL 1578591040,1578591055,NL 1578591056,1578591087,FR 1578591088,1578591103,ES -1578591104,1578591119,PL +1578591104,1578591119,DE 1578591120,1578591135,CH 1578591136,1578591151,FR 1578591152,1578591167,ES @@ -28464,12 +28877,12 @@ 1578591200,1578591247,FR 1578591248,1578591263,PL 1578591264,1578591295,FR -1578591296,1578591327,PL -1578591328,1578591343,FR +1578591296,1578591343,PL 1578591344,1578591359,ES 1578591360,1578591375,PL -1578591376,1578591407,FR -1578591408,1578591423,CH +1578591376,1578591391,FR +1578591392,1578591407,CH +1578591408,1578591423,GB 1578591424,1578591471,FR 1578591472,1578591487,PL 1578591488,1578591503,FR @@ -28500,11 +28913,73 @@ 1578592160,1578592175,ES 1578592176,1578592223,FR 1578592224,1578592255,ES -1578592256,1578594319,FR +1578592256,1578592271,FR +1578592272,1578592287,PL +1578592288,1578592351,ES +1578592352,1578592367,FR +1578592368,1578592383,GB +1578592384,1578592415,PL +1578592416,1578592479,FR +1578592480,1578592495,PL +1578592496,1578592511,FR +1578592512,1578592575,GB +1578592576,1578592591,FR +1578592592,1578592607,PL +1578592608,1578592687,FR +1578592688,1578592719,ES +1578592720,1578592735,CH +1578592736,1578592751,DE +1578592752,1578592767,GB +1578592768,1578592783,FR +1578592784,1578592799,DE +1578592800,1578592831,FR +1578592832,1578592847,PL +1578592848,1578592895,FR +1578592896,1578592959,IT +1578592960,1578593007,FR +1578593008,1578593023,GB +1578593024,1578593279,DE +1578593280,1578593295,PL +1578593296,1578593311,FR +1578593312,1578593327,PL +1578593328,1578593359,FR +1578593360,1578593375,GB +1578593376,1578593391,FR +1578593392,1578593407,BE +1578593408,1578593439,FR +1578593440,1578593455,PL +1578593456,1578593503,FR +1578593504,1578593535,PL +1578593536,1578593615,FR +1578593616,1578593631,BE +1578593632,1578593663,FR +1578593664,1578593679,DE +1578593680,1578593727,FR +1578593728,1578593743,GB +1578593744,1578593759,IT +1578593760,1578593775,ES +1578593776,1578593823,FR +1578593824,1578593839,GB +1578593840,1578593935,FR +1578593936,1578593967,PL +1578593968,1578594015,FR +1578594016,1578594031,BE +1578594032,1578594047,PL +1578594048,1578594063,FR +1578594064,1578594079,PL +1578594080,1578594095,IT +1578594096,1578594111,GB +1578594112,1578594127,PL +1578594128,1578594143,GB +1578594144,1578594191,FR +1578594192,1578594207,IT +1578594208,1578594223,PL +1578594224,1578594239,CH +1578594240,1578594319,FR 1578594320,1578594335,PL 1578594336,1578594399,FR 1578594400,1578594431,PL -1578594432,1578594447,GB +1578594432,1578594447,FR 1578594448,1578594463,PL 1578594464,1578594479,FR 1578594480,1578594495,ES @@ -28519,8 +28994,8 @@ 1578594720,1578594751,FR 1578594752,1578594767,ES 1578594768,1578594799,FR -1578594800,1578594943,DE -1578594944,1578595039,FR +1578594800,1578594815,DE +1578594816,1578595039,FR 1578595040,1578595055,GB 1578595056,1578595071,FR 1578595072,1578595103,CH @@ -28536,16 +29011,33 @@ 1578595360,1578595455,FR 1578595456,1578595487,CH 1578595488,1578595503,DE -1578595504,1578595599,FR +1578595504,1578595519,PL +1578595520,1578595599,FR 1578595600,1578595647,PL 1578595648,1578595663,FR 1578595664,1578595679,ES 1578595680,1578595695,BE -1578595696,1578596351,FR +1578595696,1578595711,PL +1578595712,1578595983,FR +1578595984,1578596111,DE +1578596112,1578596127,ES +1578596128,1578596143,PL +1578596144,1578596159,GB +1578596160,1578596191,PL +1578596192,1578596207,ES +1578596208,1578596255,FR +1578596256,1578596287,GB +1578596288,1578596319,PL +1578596320,1578596335,FR +1578596336,1578596351,ES 1578596352,1578596863,GB -1578596864,1578602495,FR +1578596864,1578600191,FR +1578600192,1578600255,BE +1578600256,1578602495,FR 1578602496,1578604543,NL -1578604544,1578631167,FR +1578604544,1578606591,GB +1578606592,1578608639,DE +1578608640,1578631167,FR 1578631168,1578663935,RO 1578663936,1578762239,RU 1578762240,1578795007,BG @@ -28556,13 +29048,7 @@ 1578991616,1579024383,KW 1579024384,1579057151,GB 1579057152,1579089919,LV -1579089920,1579089927,NL -1579089928,1579089943,GB -1579089944,1579089951,NL -1579089952,1579090175,GB -1579090176,1579090399,NL -1579090400,1579090431,GB -1579090432,1579090463,NL +1579089920,1579090463,NL 1579090464,1579090495,GB 1579090496,1579090559,NL 1579090560,1579104511,GB @@ -28587,8 +29073,11 @@ 1579941888,1580007423,HU 1580007424,1580015615,RU 1580015616,1580048383,UA -1580048384,1580056575,RU -1580072960,1580138495,PT +1580048384,1580064767,RU +1580064768,1580072959,DE +1580072960,1580134399,PT +1580134400,1580136447,ES +1580136448,1580138495,PT 1580138496,1580204031,IT 1580204032,1580335103,RO 1580335104,1580466175,RU @@ -28655,21 +29144,22 @@ 1583697920,1583702015,TR 1583702016,1583706111,RU 1583706112,1583710207,GI -1583710208,1583714303,IR +1583710208,1583712255,IR +1583712256,1583714303,AE 1583714304,1583722495,GB 1583722496,1583726591,IR 1583726592,1583730687,BG -1583730688,1583734783,DK +1583730688,1583732383,DK +1583732384,1583732399,DE +1583732400,1583734783,DK 1583734784,1583738879,LV -1583738880,1583739135,GB -1583739136,1583742975,IR +1583738880,1583742975,IR 1583742976,1583747071,TR 1583747072,1583751167,RU 1583751168,1583755263,NO 1583755264,1583757311,NL 1583757312,1583757567,PA -1583757568,1583757823,US -1583757824,1583758847,NL +1583757568,1583758847,NL 1583758848,1583759103,KY 1583759104,1583759359,NL 1583759360,1583763455,TR @@ -28684,7 +29174,9 @@ 1583800320,1583804415,ME 1583804416,1583808511,GB 1583808512,1583812607,MD -1583812608,1583816703,NL +1583812608,1583813679,NL +1583813680,1583813683,GB +1583813684,1583816703,NL 1583816704,1583820799,TR 1583820800,1583824895,LV 1583824896,1583828991,SI @@ -28804,12 +29296,10 @@ 1585393664,1585395711,DK 1585395712,1585397759,NO 1585397760,1585399807,RU -1585399808,1585399935,NL -1585399936,1585400063,US -1585400064,1585400191,IL -1585400192,1585400319,US -1585400320,1585400447,GB -1585400448,1585401855,US +1585399808,1585400063,NL +1585400064,1585400319,IL +1585400320,1585400575,GB +1585400576,1585401855,US 1585401856,1585403903,IT 1585403904,1585405951,RU 1585405952,1585407999,GB @@ -28837,7 +29327,9 @@ 1585988096,1585988103,IT 1585988104,1585988351,SE 1585988352,1585988359,DE -1585988360,1585995775,SE +1585988360,1585990399,SE +1585990400,1585990655,NL +1585990656,1585995775,SE 1585995776,1586003967,AT 1586003968,1586012159,SK 1586012160,1586020351,DE @@ -28847,12 +29339,6 @@ 1586061312,1586069503,HR 1586069504,1586077695,DE 1586077696,1586085887,GE -1586085888,1586086143,MQ -1586086144,1586086399,FR -1586086400,1586086655,MQ -1586086656,1586089983,FR -1586089984,1586091519,MQ -1586091520,1586094079,FR 1586094080,1586110463,RU 1586110464,1586118655,IT 1586118656,1586126847,DK @@ -28896,7 +29382,10 @@ 1586405376,1586407423,AT 1586407424,1586409471,GB 1586409472,1586411519,IT -1586411520,1586413567,GB +1586411520,1586411775,GB +1586411776,1586412287,US +1586412288,1586412543,HK +1586412544,1586413567,GB 1586413568,1586415615,IT 1586415616,1586417663,ES 1586417664,1586419711,NL @@ -28950,7 +29439,7 @@ 1587445760,1587449855,PL 1587449856,1587453951,UA 1587453952,1587470335,RU -1587470336,1587478527,PL +1587470336,1587474431,PL 1587478528,1587511295,RU 1587511296,1587544063,IL 1587544064,1588068351,IT @@ -29056,13 +29545,17 @@ 1592041472,1592045567,RU 1592045568,1592049663,FR 1592049664,1592053759,RU -1592053760,1592054527,NL +1592053760,1592054015,NL +1592054016,1592054271,AE +1592054272,1592054527,NL 1592054528,1592054783,US 1592054784,1592057855,NL 1592057856,1592061951,RS 1592061952,1592066047,RU 1592066048,1592066815,US -1592066816,1592070143,CY +1592066816,1592069887,CY +1592069888,1592069951,RU +1592069952,1592070143,CY 1592070144,1592074239,RU 1592074240,1592078335,SK 1592078336,1592082431,NL @@ -29070,7 +29563,9 @@ 1592082848,1592082879,RU 1592082880,1592083327,GB 1592083328,1592083455,RU -1592083456,1592086527,GB +1592083456,1592085023,GB +1592085024,1592085039,ES +1592085040,1592086527,GB 1592086528,1592087295,CZ 1592087296,1592088063,PL 1592088064,1592090623,CZ @@ -29103,6 +29598,8 @@ 1592213504,1592217599,UA 1592217600,1592221695,CH 1592221696,1592225791,DK +1592225792,1592242175,RU +1592242176,1592246271,UA 1592262656,1592270847,RU 1592270848,1592272895,PL 1592272896,1592281087,RU @@ -29228,6 +29725,7 @@ 1597505536,1597767679,KZ 1597767680,1598029823,ES 1598029824,1598062591,RO +1598062592,1598095359,RU 1598095360,1598128127,MD 1598128128,1598160895,TR 1598160896,1598193663,KW @@ -29259,7 +29757,7 @@ 1599356928,1599373311,BH 1599373312,1599389695,RU 1599406080,1599438847,RU -1599438848,1599455231,CS +1599438848,1599455231,RS 1599455232,1599471615,CZ 1599471616,1599487999,MK 1599488000,1599504383,IL @@ -29277,11 +29775,15 @@ 1600684032,1600716799,RU 1600716800,1600749567,UA 1600749568,1600782335,SK -1600782336,1600815103,RU -1600847872,1600880639,RU +1600782336,1600880639,RU 1600880640,1600913407,AL 1600913408,1600946175,PL -1600946176,1600978943,RU +1600946176,1600963167,RU +1600963168,1600963175,UA +1600963176,1600963183,RU +1600963184,1600963191,BY +1600963192,1600963199,KZ +1600963200,1600978943,RU 1600978944,1601011711,SE 1601011712,1601044479,UA 1601044480,1601077247,RU @@ -29296,7 +29798,9 @@ 1602232320,1602234367,CH 1602234368,1602234495,GB 1602234496,1602234527,FR -1602234528,1602238463,GB +1602234528,1602234639,GB +1602234640,1602234655,FR +1602234656,1602238463,GB 1602238464,1602240511,TR 1602240512,1602242559,BY 1602242560,1602244607,FR @@ -29329,7 +29833,9 @@ 1602291712,1602293759,SA 1602293760,1602295807,RU 1602295808,1602297855,NL -1602297856,1602299903,IL +1602297856,1602298367,IL +1602298368,1602298879,MT +1602298880,1602299903,IL 1602299904,1602301951,DK 1602301952,1602303999,DE 1602304000,1602306047,RU @@ -29338,8 +29844,7 @@ 1602310144,1602312191,NL 1602312192,1602314239,RU 1602314240,1602316287,CZ -1602316288,1602316543,IE -1602316544,1602318335,GB +1602316288,1602318335,GB 1602318336,1602320383,ES 1602320384,1602324479,NL 1602324480,1602326527,RU @@ -29367,7 +29872,7 @@ 1602375680,1602377727,BY 1602377728,1602379775,PS 1602379776,1602383871,GB -1602383872,1602385919,DE +1602383872,1602384383,DE 1602385920,1602387967,AT 1602387968,1602390015,RU 1602390016,1602392063,IT @@ -29397,7 +29902,10 @@ 1602441216,1602443263,GB 1602443264,1602445311,RU 1602445312,1602447359,DE -1602447360,1602449407,GB +1602447360,1602447871,GB +1602447872,1602448383,DE +1602448384,1602448895,NL +1602448896,1602449407,GB 1602449408,1602451455,LV 1602451456,1602453503,DE 1602453504,1602455551,SK @@ -29406,6 +29914,14 @@ 1602459648,1602461695,GB 1602461696,1602465791,ES 1602465792,1602467839,RU +1602467840,1602469887,GI +1602469888,1602471935,AT +1602471936,1602473983,SE +1602473984,1602476031,RU +1602476032,1602478079,GB +1602478080,1602482175,RU +1602482176,1602484223,FR +1602484224,1602486271,GB 1602486272,1602748415,UA 1602748416,1602781183,PT 1602781184,1602813951,FR @@ -29425,6 +29941,11 @@ 1603047424,1603051519,RU 1603051520,1603055615,JO 1603059712,1603063807,AM +1603063808,1603067903,BG +1603067904,1603071999,GB +1603076096,1603080191,RU +1603080192,1603084287,DE +1603084288,1603088383,IT 1603272704,1603796991,GB 1603796992,1603813375,RU 1603813376,1603829759,CH @@ -29435,11 +29956,16 @@ 1603895296,1603911679,RU 1603928064,1603944447,DK 1603944448,1603977215,RU -1603977216,1603978751,GB -1603978752,1603978879,US -1603978880,1603979007,GB -1603979008,1603979263,US -1603979264,1603993599,GB +1603977216,1603980463,GB +1603980464,1603980479,CH +1603980480,1603981823,GB +1603981824,1603982079,IE +1603982080,1603982655,GB +1603982656,1603982687,DK +1603982688,1603982719,AN +1603982720,1603982783,GB +1603982784,1603982847,AN +1603982848,1603993599,GB 1603993600,1604009983,ME 1604009984,1604026367,PL 1604026368,1604042751,NL @@ -29450,6 +29976,14 @@ 1604108288,1604141055,DE 1604141056,1604157439,RO 1604157440,1604190207,FR +1604190208,1604206591,UA +1604206592,1604222975,PL +1604222976,1604239359,BG +1604239360,1604255743,RU +1604255744,1604272127,SY +1604272128,1604288511,IQ +1604288512,1604304895,RU +1604304896,1604321279,SI 1604321280,1604386815,PL 1604386816,1604452351,RU 1604452352,1604517887,RO @@ -29470,16 +30004,23 @@ 1604888064,1604889599,TR 1604889600,1604889855,DE 1604889856,1604890111,BY -1604890112,1604890239,DE -1604890240,1604890367,MX -1604890368,1604894719,DE +1604890112,1604890239,RU +1604890240,1604890367,US +1604890368,1604890879,TR +1604890880,1604891391,BY +1604891392,1604891647,DE +1604891648,1604891903,BY +1604891904,1604892031,DE +1604892032,1604892159,RU +1604892160,1604894719,DE 1604894720,1604902911,CZ 1604902912,1604911103,BG 1604911104,1604919295,UA 1604919296,1604927487,NO 1604927488,1604935679,IT 1604935680,1604952063,RU -1604952064,1604960255,DE +1604952064,1604959743,DE +1604959744,1604960255,RU 1604960256,1604968447,BG 1604968448,1604976639,ES 1604976640,1604993023,FR @@ -29492,6 +30033,7 @@ 1605058560,1605066751,HU 1605074944,1605083135,FR 1605083136,1605091327,BE +1605091328,1605099519,PL 1605099520,1605107711,RU 1605107712,1605115903,GB 1605115904,1605124095,RU @@ -29521,6 +30063,11 @@ 1605304320,1605312511,PL 1605312512,1605320703,IL 1605320704,1605328895,KW +1605328896,1605337087,FI +1605337088,1605345279,GB +1605345280,1605353471,FR +1605353472,1605361663,GB +1605361664,1605369855,RU 1605369856,1605402623,FR 1605402624,1605435391,SI 1605435392,1605468159,GB @@ -29543,7 +30090,9 @@ 1607588864,1607598079,DK 1607598080,1607663615,IT 1607663616,1607729151,NL -1607729152,1607794687,EG +1607729152,1607761919,EG +1607761920,1607766015,SY +1607766016,1607794687,EG 1607860224,1607925759,ES 1607925760,1607926783,RU 1607926784,1607927807,PL @@ -29587,6 +30136,15 @@ 1607979008,1607980031,RU 1607980032,1607981055,DE 1607981056,1607982079,UA +1607982080,1607983103,RU +1607983104,1607984127,GB +1607984128,1607985151,RU +1607985152,1607986175,AT +1607986176,1607987199,UA +1607987200,1607988223,ES +1607988224,1607989247,KG +1607989248,1607990271,DE +1607990272,1607991295,RU 1607991296,1608122367,UA 1608122368,1608253439,RO 1608253440,1608384511,RU @@ -29606,11 +30164,10 @@ 1613758464,1614282751,CA 1614282752,1614675967,US 1614807040,1617362943,US -1619001344,1631584255,US +1619001344,1631633407,US 1631649792,1632305151,US 1632305152,1632321535,CA -1632370688,1634394111,US -1634402304,1634414591,US +1632370688,1634414591,US 1634414592,1634418687,CA 1634418688,1634447359,US 1634447360,1634451455,CA @@ -29618,16 +30175,24 @@ 1634455552,1634459647,CA 1634459648,1634467839,US 1634467840,1634729983,CA -1634729984,1650802687,US -1650982912,1652293631,US +1634729984,1652293631,US 1652293632,1652310015,CA -1652310016,1652318207,US -1652326400,1652555775,US -1652621312,1653243903,US -1653342208,1653473279,US +1652310016,1652322303,US +1652326400,1653534719,US +1653534720,1653538815,CA +1653538816,1653555199,US +1653555200,1653567487,CA +1653567488,1653571583,US +1653571584,1653575679,CA +1653575680,1653592063,US +1653592064,1653596159,CA +1653596160,1653600255,US +1653600256,1653604351,CA 1653604352,1654521855,US -1654652928,1664614399,US +1654652928,1667235839,US 1669332992,1673527295,US +1673527296,1673560063,CA +1673560064,1673576447,US 1673592832,1673986047,US 1673986048,1674051583,CA 1674051584,1674575871,US @@ -29703,11 +30268,116 @@ 1850343424,1850376191,JP 1850376192,1850392575,MY 1850392576,1850400767,KH -1850400768,1850408959,CN +1850400768,1850408959,JP 1850408960,1850441727,AU 1850441728,1850490879,CN 1850490880,1850507263,KR -1850507264,1879048191,AU +1850507264,1850511359,AU +1850511360,1850513407,ID +1850513408,1850514431,TH +1850514432,1850515455,AU +1850515456,1850519551,IN +1850519552,1850523647,AU +1850523648,1850572799,CN +1850572800,1850671103,TH +1850671104,1850736639,HK +1850736640,1851523071,CN +1851523072,1851527167,JP +1851527168,1851528191,NZ +1851528192,1851529215,AU +1851529216,1851531263,PH +1851531264,1851539455,JP +1851539456,1851542527,ID +1851542528,1851543551,HK +1851543552,1851547647,JP +1851547648,1851555839,SG +1851555840,1851588607,KR +1851588608,1851590655,JP +1851590656,1851594751,AU +1851594752,1851596799,KR +1851596800,1851604991,IN +1851604992,1851613183,PH +1851613184,1851617279,JP +1851617280,1851637759,KR +1851637760,1851654143,PK +1851654144,1853882367,CN +1853882368,1854406655,JP +1854406656,1854668799,ID +1854668800,1855455231,AU +1855455232,1855848447,CN +1855848448,1855913983,JP +1855913984,1855979519,MY +1855979520,1856241663,JP +1856241664,1856307199,TH +1856307200,1856315391,KR +1856315392,1856323583,HK +1856323584,1856339967,KR +1856339968,1856372735,JP +1856372736,1856503807,CN +1856503808,1856765951,TH +1856765952,1856770047,JP +1856770048,1856774143,IN +1856774144,1856779263,JP +1856779264,1856780287,IN +1856780288,1856782335,JP +1856782336,1856798719,KR +1856798720,1856815103,IN +1856815104,1856843775,CN +1856843776,1856847871,HK +1856847872,1856864255,CN +1856864256,1856872447,AU +1856872448,1856876543,NZ +1856876544,1856880639,AU +1856880640,1856888831,CN +1856888832,1856892927,AU +1856892928,1856897023,JP +1856897024,1857028095,AU +1857028096,1860173823,CN +1860173824,1860435967,IN +1860435968,1860698111,CN +1860698112,1860706303,JP +1860706304,1860714495,CN +1860714496,1860722687,ID +1860722688,1860726783,KR +1860726784,1860728831,AU +1860728832,1860733951,JP +1860733952,1860734975,AU +1860734976,1860735999,NZ +1860736000,1860737023,AU +1860737024,1860739071,JP +1860739072,1860743167,PH +1860743168,1860747263,AU +1860747264,1860759551,JP +1860759552,1860763647,AU +1860763648,1860829183,JP +1860829184,1860960255,IN +1860960256,1861091327,CN +1861091328,1861222399,AU +1861222400,1866465279,CN +1866465280,1866530815,JP +1866530816,1866563583,SG +1866563584,1866579967,KR +1866579968,1866588159,JP +1866588160,1866592255,NZ +1866592256,1866596351,AU +1866596352,1866661887,CN +1866661888,1866670079,AU +1866670080,1866674175,MY +1866674176,1866678271,AU +1866678272,1866686463,ID +1866686464,1866989567,AU +1866989568,1867513855,CN +1867513856,1870659583,AU +1870659584,1873281023,CN +1873281024,1873412095,JP +1873412096,1873477631,CN +1873477632,1873510399,KR +1873510400,1873543167,JP +1873543168,1874329599,CN +1874329600,1874460671,TW +1874460672,1874591743,CN +1874591744,1874853887,JP +1874853888,1879048191,AU 1879048192,1883218547,CN 1883218548,1883218551,ES 1883218552,1883218555,FR @@ -29835,7 +30505,7 @@ 1897242624,1897250815,TW 1897250816,1897259007,HK 1897259008,1897260031,NZ -1897260032,1897261055,AU +1897260032,1897261055,BD 1897261056,1897263103,JP 1897263104,1897265151,TH 1897265152,1897267199,JP @@ -30154,9 +30824,7 @@ 1937536000,1937536511,GB 1937536512,1937539071,IN 1937539072,1937637375,JP -1937637376,1937637887,HK -1937637888,1937638143,VN -1937638144,1937639167,HK +1937637376,1937639167,HK 1937639168,1937639423,TH 1937639424,1937670143,HK 1937670144,1937672191,NZ @@ -30222,19 +30890,17 @@ 1941655552,1941657599,KR 1941657600,1941658623,MN 1941658624,1941659647,JP -1941659648,1941663743,NZ -1941663744,1941700607,AU +1941659648,1941667839,NZ +1941667840,1941700607,AU 1941700608,1941831679,NZ 1941831680,1941962751,AU 1941962752,1945108479,CN 1945108480,1946157055,IN 1946157056,1946159103,ID -1946159104,1946163199,AU -1946163200,1946165247,HK +1946159104,1946165247,AU 1946165248,1946173439,PK 1946173440,1946173503,PG -1946173504,1946173535,SG -1946173536,1946173567,AU +1946173504,1946173567,AU 1946173568,1946173631,HK 1946173632,1946173663,AU 1946173664,1946173679,PH @@ -30264,7 +30930,8 @@ 1947205632,1948254207,CN 1948254208,1949302783,KR 1949302784,1949433855,HK -1949433856,1949435903,IN +1949433856,1949434879,IN +1949434880,1949435903,AU 1949435904,1949437951,HK 1949437952,1949439999,AU 1949440000,1949442047,ID @@ -30337,8 +31004,7 @@ 1952074752,1952075775,NZ 1952075776,1952079871,CN 1952079872,1952088063,PK -1952088064,1952090111,NZ -1952090112,1952092159,AU +1952088064,1952092159,NZ 1952092160,1952096255,JP 1952096256,1952102399,ID 1952102400,1952104447,CN @@ -30412,7 +31078,8 @@ 1960091648,1960095743,CN 1960095744,1960097791,IN 1960097792,1960099839,BD -1960099840,1960132607,AU +1960099840,1960128511,AU +1960128512,1960132607,ID 1960132608,1960181759,CN 1960181760,1960185855,TW 1960185856,1960187903,JP @@ -30704,7 +31371,9 @@ 1997709312,1997715455,JP 1997715456,1997717503,VN 1997717504,1997723647,CN -1997723648,1997725695,JP +1997723648,1997724495,JP +1997724496,1997724511,NL +1997724512,1997725695,JP 1997725696,1998061567,CN 1998061568,1998258175,JP 1998258176,1998272735,SG @@ -30726,7 +31395,13 @@ 1998503936,1998520319,JP 1998520320,1998553087,TH 1998553088,1998561279,JP -1998561280,1998565375,IN +1998561280,1998561535,IN +1998561536,1998561791,SG +1998561792,1998562047,IN +1998562048,1998562303,TH +1998562304,1998562559,IN +1998562560,1998562815,CN +1998562816,1998565375,IN 1998565376,1998569471,TW 1998569472,1998577663,CN 1998577664,1998581759,AU @@ -30761,7 +31436,9 @@ 2000224256,2000355327,CN 2000355328,2000371711,KR 2000371712,2000373759,JP -2000373760,2000375807,HK +2000373760,2000374399,HK +2000374400,2000374527,US +2000374528,2000375807,HK 2000375808,2000377855,AF 2000377856,2000379903,JP 2000379904,2000388095,AU @@ -30797,7 +31474,7 @@ 2001895424,2001899519,VN 2001899520,2001903615,AU 2001903616,2001915903,JP -2001915904,2001919999,BD +2001915904,2001919999,AU 2001920000,2001926143,ID 2001926144,2001928191,KH 2001928192,2001993727,JP @@ -30882,7 +31559,8 @@ 2015203328,2015205375,JP 2015205376,2015207423,ID 2015207424,2015215615,JP -2015215616,2015216383,HK +2015215616,2015216127,HK +2015216128,2015216383,CA 2015216384,2015216639,SG 2015216640,2015217663,CA 2015217664,2015219456,GU @@ -30891,21 +31569,27 @@ 2015219816,2015219823,PH 2015219824,2015219839,HK 2015219840,2015219903,SG -2015219904,2015219967,CA +2015219904,2015219935,HK +2015219936,2015219967,CA 2015219968,2015220223,PH 2015220224,2015220351,HK 2015220352,2015220479,ID 2015220480,2015220735,HK -2015220736,2015221759,CA +2015220736,2015221247,IN +2015221248,2015221759,CA 2015221760,2015222015,HK 2015222016,2015222271,JP -2015222272,2015223295,CA +2015222272,2015222527,IN +2015222528,2015222783,CA +2015222784,2015223039,IN +2015223040,2015223295,CA 2015223296,2015223551,TH 2015223552,2015223679,IN 2015223680,2015223687,HK 2015223688,2015223695,SG 2015223696,2015223711,ID -2015223712,2015223743,CA +2015223712,2015223727,PH +2015223728,2015223743,CA 2015223744,2015223751,PG 2015223752,2015223759,CA 2015223760,2015223767,JP @@ -30964,9 +31648,13 @@ 2022187008,2022187071,US 2022187072,2022187783,HK 2022187784,2022187791,US -2022187792,2022187903,HK -2022187904,2022187959,US -2022187960,2022188031,HK +2022187792,2022187807,HK +2022187808,2022187831,US +2022187832,2022187839,HK +2022187840,2022187959,US +2022187960,2022187991,HK +2022187992,2022188015,US +2022188016,2022188031,HK 2022188032,2022188111,US 2022188112,2022188119,HK 2022188120,2022188191,US @@ -31032,7 +31720,7 @@ 2033362944,2033364991,AU 2033364992,2033369087,TW 2033369088,2033377279,AU -2033377280,2033385471,PH +2033377280,2033385471,KR 2033385472,2033451007,CN 2033451008,2033487871,ID 2033487872,2033491967,PK @@ -31231,8 +31919,8 @@ 2056814592,2056815103,JP 2056815104,2056815195,HK 2056815196,2056815215,JP -2056815216,2056815335,HK -2056815336,2056815343,JP +2056815216,2056815327,HK +2056815328,2056815343,JP 2056815344,2056815615,HK 2056815616,2056816031,JP 2056816032,2056816047,NZ @@ -31245,7 +31933,8 @@ 2056816512,2056816639,JP 2056816640,2056816815,SG 2056816816,2056816831,JP -2056816832,2056816959,SG +2056816832,2056816943,SG +2056816944,2056816959,JP 2056816960,2056816991,MY 2056816992,2056817007,JP 2056817008,2056817151,SG @@ -31275,9 +31964,7 @@ 2056820352,2056820479,HK 2056820480,2056820511,JP 2056820512,2056820607,HK -2056820608,2056826623,JP -2056826624,2056826879,HK -2056826880,2056827935,JP +2056820608,2056827935,JP 2056827936,2056827965,HK 2056827966,2056830271,JP 2056830272,2056830275,HK @@ -31308,11 +31995,20 @@ 2059976704,2059995135,JP 2059995136,2059997183,VN 2059997184,2060001279,MN -2060001280,2060002239,HK +2060001280,2060001791,AE +2060001792,2060002239,HK 2060002240,2060002247,PK -2060002248,2060002455,HK +2060002248,2060002391,HK +2060002392,2060002415,AF +2060002416,2060002455,HK 2060002456,2060002463,PK -2060002464,2060005375,HK +2060002464,2060002847,HK +2060002848,2060002863,AF +2060002864,2060003039,HK +2060003040,2060003071,AF +2060003072,2060003199,HK +2060003200,2060003215,AF +2060003216,2060005375,HK 2060005376,2060025855,AU 2060025856,2060058623,TW 2060058624,2060062719,AU @@ -31329,9 +32025,7 @@ 2063085568,2063089663,CN 2063089664,2063097855,JP 2063097856,2063106047,AU -2063106048,2063107423,SG -2063107424,2063107455,AU -2063107456,2063107575,SG +2063106048,2063107575,SG 2063107576,2063107583,AU 2063107584,2063107623,SG 2063107624,2063107631,AU @@ -31348,7 +32042,11 @@ 2063109376,2063109607,HK 2063109608,2063109631,AU 2063109632,2063109759,HK -2063109760,2063110143,AU +2063109760,2063109823,AU +2063109824,2063109839,HK +2063109840,2063109855,AU +2063109856,2063109887,HK +2063109888,2063110143,AU 2063110144,2063110399,JP 2063110400,2063110527,AU 2063110528,2063110591,JP @@ -31357,18 +32055,18 @@ 2063110664,2063110687,AU 2063110688,2063110703,JP 2063110704,2063114239,AU -2063114240,2063114431,IN -2063114432,2063115263,AU +2063114240,2063114439,IN +2063114440,2063115263,AU 2063115264,2063115519,JP 2063115520,2063116287,AU 2063116288,2063116319,SG 2063116320,2063116799,AU -2063116800,2063116803,KR -2063116804,2063117311,AU +2063116800,2063116807,KR +2063116808,2063117311,AU 2063117312,2063117327,NZ 2063117328,2063117823,AU -2063117824,2063117840,PH -2063117841,2063138815,AU +2063117824,2063117855,PH +2063117856,2063138815,AU 2063138816,2063335423,JP 2063335424,2063351807,AU 2063351808,2063368191,KR @@ -31721,7 +32419,9 @@ 2097037312,2097053695,AU 2097053696,2097086463,KR 2097086464,2097479679,JP -2097479680,2097545215,PH +2097479680,2097504791,PH +2097504792,2097504799,US +2097504800,2097545215,PH 2097545216,2097610751,JP 2097610752,2097643519,AU 2097643520,2097676287,KR @@ -31811,7 +32511,8 @@ 2113684176,2113684223,PH 2113684224,2113684239,AU 2113684240,2113684255,PH -2113684256,2113684279,TW +2113684256,2113684271,TW +2113684272,2113684279,AU 2113684280,2113684431,PH 2113684432,2113684439,TW 2113684440,2113684479,PH @@ -31844,7 +32545,9 @@ 2113692416,2113693183,AU 2113693184,2113693343,HK 2113693344,2113693359,AU -2113693360,2113693663,HK +2113693360,2113693375,HK +2113693376,2113693439,AU +2113693440,2113693663,HK 2113693664,2113694207,AU 2113694208,2113694463,JP 2113694464,2113694719,HK @@ -32377,13 +33080,16 @@ 2258593024,2258593151,SG 2258593152,2258594303,AU 2258594304,2258594559,BD -2258594560,2258594607,AU +2258594560,2258594591,HK +2258594592,2258594607,AU 2258594608,2258594615,HK 2258594616,2258594623,AU 2258594624,2258594639,HK 2258594640,2258594655,AU 2258594656,2258594687,HK -2258594688,2258594831,AU +2258594688,2258594751,AU +2258594752,2258594815,HK +2258594816,2258594831,AU 2258594832,2258594839,JP 2258594840,2258594847,AU 2258594848,2258594879,JP @@ -32430,7 +33136,9 @@ 2258596864,2258596903,HK 2258596904,2258597071,AU 2258597072,2258597087,TW -2258597088,2258597895,AU +2258597088,2258597372,AU +2258597373,2258597375,HK +2258597376,2258597895,AU 2258597896,2258597903,NZ 2258597904,2258597927,AU 2258597928,2258597935,JP @@ -32473,14 +33181,13 @@ 2258603680,2258603711,IN 2258603712,2258603743,AU 2258603744,2258603751,TW -2258603752,2258603871,AU -2258603872,2258603903,HK +2258603752,2258603839,AU +2258603840,2258603903,HK 2258603904,2258604543,AU 2258604544,2258604575,IN 2258604576,2258604591,SG 2258604592,2258604607,IN -2258604608,2258604639,SG -2258604640,2258604671,AU +2258604608,2258604671,AU 2258604672,2258604735,SG 2258604736,2258605567,AU 2258605568,2258605631,SG @@ -33007,7 +33714,9 @@ 2365456384,2365521919,US 2365652992,2367487999,DE 2367488000,2367553535,BA -2367553536,2371158015,DE +2367553536,2370895871,DE +2370895872,2370961407,SE +2370961408,2371158015,DE 2371158016,2371223551,RO 2371223552,2371289087,US 2371289088,2371616767,DE @@ -33824,7 +34533,8 @@ 2545221632,2545287167,US 2545287168,2545352703,GB 2545352704,2545418239,CH -2545418240,2545614847,US +2545418240,2545483775,NL +2545483776,2545614847,US 2545614848,2545680383,NO 2545680384,2545745919,US 2545745920,2545811455,DE @@ -34275,7 +34985,9 @@ 2665086976,2665152511,GB 2665152512,2665218047,US 2665218048,2665283583,CH -2665283584,2665414655,US +2665283584,2665349119,US +2665359872,2665361407,US +2665374720,2665375231,US 2665414656,2665480191,GB 2665480192,2665545727,US 2665545728,2665611263,DE @@ -34606,7 +35318,6 @@ 2708865024,2708930559,JP 2708930560,2709127167,US 2709127168,2709192703,KR -2709192704,2709258239,BG 2709258240,2709389311,US 2709389312,2709454847,SG 2709454848,2709716991,US @@ -34660,7 +35371,8 @@ 2718629888,2718695423,GB 2718695424,2718760959,US 2718760960,2718826495,GB -2718826496,2719285247,US +2718826496,2719023103,US +2719088640,2719285247,US 2719285248,2719350783,CH 2719350784,2719416319,US 2719416320,2719481855,CH @@ -34821,9 +35533,7 @@ 2759000064,2759065599,TH 2759065600,2759589887,US 2759589888,2759720959,KR -2759852032,2759870947,CH -2759870948,2759870951,AT -2759870952,2759871035,CH +2759852032,2759871035,CH 2759871036,2759871039,GB 2759871040,2759883039,CH 2759883040,2759883043,LI @@ -34974,7 +35684,9 @@ 2780945312,2780945375,BM 2780945376,2780945663,US 2780945664,2780945695,BM -2780945696,2780947903,US +2780945696,2780946127,US +2780946128,2780946135,CA +2780946136,2780947903,US 2780947904,2780947967,MY 2780947968,2780952967,US 2780952968,2780952975,GB @@ -35012,9 +35724,13 @@ 2788229936,2788229943,GB 2788229944,2788230663,US 2788230664,2788230671,GB -2788230672,2788238847,US +2788230672,2788234767,US +2788234768,2788234775,GB +2788234776,2788238847,US 2788238848,2788238855,GB -2788238856,2788261887,US +2788238856,2788245007,US +2788245008,2788245023,CA +2788245024,2788261887,US 2788261888,2788294655,GB 2788294656,2789081087,US 2789179392,2789203967,US @@ -35103,20 +35819,20 @@ 2815098880,2815164415,GB 2815164416,2815229951,US 2815229952,2815295487,ID -2815295488,2815983615,US -2815983616,2815986687,IL +2815295488,2815986687,US 2815986688,2815986815,GB -2815986816,2815986831,IL +2815986816,2815986831,US 2815986832,2815987215,GB -2815987216,2815987327,IL +2815987216,2815987231,US +2815987232,2815987263,GB +2815987264,2815987327,US 2815987328,2815987391,GB -2815987392,2816001151,IL +2815987392,2816001151,US 2816001152,2816001183,DE -2816001184,2816016383,IL -2816016384,2816671743,US +2816001184,2816671743,US 2816671744,2816737279,CA 2816737280,2818113535,US -2818179072,2818310143,US +2818244608,2818310143,US 2818310144,2818375679,AR 2818375680,2818572287,US 2818637824,2818703359,CH @@ -35176,7 +35892,7 @@ 2831548416,2831613951,AU 2831613952,2831810559,US 2831810560,2831876095,IT -2831876096,2832072703,US +2831876096,2832007167,US 2832138240,2832269311,US 2832347648,2832347903,ZA 2832465920,2832793599,US @@ -35195,7 +35911,7 @@ 2834825216,2834956287,KR 2834956288,2835087359,US 2835087360,2835152895,AU -2835152896,2835283967,US +2835218432,2835283967,US 2835283968,2835349503,MX 2835480576,2837446655,US 2837446656,2839543807,CH @@ -35291,15 +36007,14 @@ 2873098240,2873884671,US 2877292544,2882469887,US 2894069760,2899902463,US -2902458368,2904555519,US +2902523904,2904555519,US 2904555520,2904817663,CA 2904817664,2905350143,US -2905407488,2905432063,US -2905440256,2905442303,US -2905442304,2905443071,CA -2905443072,2905443327,US -2905443328,2905443583,CA -2905443584,2905452543,US +2905407488,2905449471,US +2905449472,2905449727,CA +2905449728,2905450495,US +2905450496,2905451519,CA +2905451520,2905452543,US 2905456640,2905473023,US 2905473024,2905481215,CA 2905481216,2905493503,US @@ -35307,6 +36022,9 @@ 2905513984,2905526271,US 2905530368,2907897855,US 2907963392,2912288767,US +2912944128,2913861631,US +2913992704,2914254847,CA +2914516992,2915041279,US 2919235584,2919759871,CA 2919759872,2920808447,US 2921332736,2921476095,US @@ -35319,10 +36037,14 @@ 2925002752,2925527039,CA 2925527040,2926215167,US 2926575616,2927099903,CA -2927099904,2927362047,US -2927624192,2928164863,US +2927099904,2927427583,US +2927493120,2927575039,US +2927591424,2927599615,US +2927689728,2928164863,US 2928181248,2928189439,US -2928197632,2928226303,US +2928197632,2928221695,US +2928221696,2928221951,CA +2928221952,2928226303,US 2928226304,2928230399,CA 2928230400,2928261375,US 2928261376,2928261887,CA @@ -35336,12 +36058,14 @@ 2928459776,2928525311,US 2928541696,2928607231,CA 2928607232,2936012799,US +3019898880,3036676095,AU +3070230528,3087007743,AU 3120562176,3120578559,CO 3120627712,3120644095,NI 3120693248,3120709631,BO 3120758784,3120775167,EC 3121086464,3121102847,UY -3121152000,3121217535,CL +3121152000,3121250303,CL 3121348608,3121479679,AR 3121479680,3121512447,VE 3121545216,3121610751,CR @@ -35354,15 +36078,20 @@ 3122921472,3122987007,CL 3124232192,3124494335,AR 3124756480,3124772863,AR -3124887552,3124920319,EC +3124887552,3124953087,EC +3125018624,3125149695,EC 3125280768,3125346303,CO 3125346304,3125411839,PA -3125805056,3126067199,CO -3126853632,3126870015,AR +3125805056,3126329343,CO +3126853632,3126853887,US +3126853888,3126870015,AR 3126919168,3126935551,CO -3128948736,3129016319,UY +3127115776,3127181311,AR +3127377920,3127508991,CL +3127902208,3128164351,CO +3129475072,3129606143,AR 3131047936,3131310079,PE -3137339392,3141533695,BR +3137339392,3143630847,BR 3145728000,3147825151,MX 3154182144,3154247679,DE 3154247680,3154313215,RS @@ -35380,22 +36109,171 @@ 3156279296,3156344831,PL 3156344832,3156410367,IR 3156410368,3156475903,RU -3156475904,3156541439,HU +3156475904,3156539391,HU +3156539392,3156539647,RO +3156539648,3156541439,HU +3156606976,3156672511,TR +3156672512,3156738047,GB +3156738048,3156803583,DE +3156803584,3156869119,TR +3156869120,3156934655,LU +3156934656,3157065727,RU +3157065728,3157131263,AT +3157131264,3157196799,DE +3157196800,3157262335,PL 3157262336,3157786623,SA 3157786624,3158048767,TR 3158048768,3158310911,CH 3159359488,3159621631,PT +3159621632,3159883775,ES +3159883776,3160145919,NL 3160145920,3160147967,RU +3160147968,3160150015,CZ +3160150016,3160152063,LV +3160152064,3160154111,IT +3160154112,3160156159,DE +3160156160,3160158207,AM +3160158208,3160160255,BY +3160160256,3160162303,NL +3160162304,3160164351,FR +3160164352,3160166399,LV +3160166400,3160168447,NO +3160168448,3160170495,GB +3160170496,3160172543,IT +3160172544,3160174591,RU +3160174592,3160176639,DE +3160176640,3160178687,IT +3160178688,3160180735,DE +3160180736,3160182783,GB +3160182784,3160184831,CH +3160184832,3160186879,NL +3160186880,3160188927,EE +3160188928,3160190975,SE +3160190976,3160193023,RU +3160193024,3160195071,IT +3160195072,3160197119,RU +3160197120,3160199167,DE +3160199168,3160201215,GE +3160201216,3160203263,RU +3160203264,3160203775,CH +3160203776,3160203783,DE +3160203784,3160203791,CH +3160203792,3160203815,FR +3160203816,3160205311,CH +3160205312,3160207359,GB +3160207360,3160209407,RU +3160209408,3160211455,SE +3160211456,3160213503,IE +3160213504,3160215551,DE +3160215552,3160219647,RU +3160219648,3160221695,ES +3160221696,3160223743,FR +3160223744,3160227839,RU +3160227840,3160229887,IR +3160229888,3160231935,ES +3160231936,3160233983,BE +3160233984,3160236031,GE +3160236032,3160238079,BE +3160238080,3160240127,RU +3160240128,3160242175,BE +3160242176,3160244223,RS +3160244224,3160246271,RU +3160246272,3160248319,IT +3160248320,3160250367,NL +3160250368,3160252415,BE +3160252416,3160254463,PL +3160254464,3160256511,LU +3160256512,3160258559,GB +3160258560,3160260607,NO +3160260608,3160262655,PT +3160262656,3160264703,HU +3160264704,3160266751,RU +3160266752,3160268799,DE +3160268800,3160272895,PT +3160272896,3160274943,RU +3160274944,3160276991,AT +3160276992,3160279039,RU +3160279040,3160281087,ES +3160281088,3160283135,GB +3160283136,3160285183,DE +3160285184,3160287231,RU +3160287232,3160289279,GB +3160289280,3160291327,RU +3160291328,3160293375,ES 3160408064,3161456639,DE +3161456640,3161473023,PL +3161473024,3161489407,SK +3161489408,3161505791,LV +3161505792,3161538559,RU +3161538560,3161554943,NO +3161554944,3161571327,RU +3161571328,3161587711,UZ +3161587712,3161620479,RU +3161620480,3161636863,DK +3161636864,3161653247,RU +3161653248,3161669631,LU +3161669632,3161686015,FR +3161686016,3161702399,UA +3161702400,3161718783,AM +3161718784,3161735167,PL +3161980928,3161989119,SK +3161989120,3161997311,RU +3161997312,3162005503,DK +3162005504,3162013695,CS +3162013696,3162021887,IL +3162021888,3162030079,SE +3162030080,3162038271,CZ +3162038272,3162046463,LU +3162046464,3162054655,PL +3162054656,3162062847,NL +3162062848,3162071039,SE +3162071040,3162087423,IR +3162087424,3162095615,SK +3162095616,3162103807,GE +3162103808,3162111999,FR +3162112000,3162120191,PL +3162128384,3162128895,GB +3162128896,3162129407,NL +3162129408,3162129919,DE +3162129920,3162136575,NL 3162505216,3162537983,RU 3162537984,3162570751,PL 3162570752,3162603519,HR 3162603520,3162636287,GE 3162636288,3162669055,FR 3162669056,3162701823,RU +3162701824,3162734591,MD +3162734592,3162767359,RU +3162767360,3162800127,SA +3162800128,3162832895,TR +3162832896,3162865663,GR +3162865664,3162931199,RU +3162931200,3162963967,CZ +3162963968,3162996735,OM +3162996736,3163029503,IT +3163029504,3163062271,DE +3163062272,3163095039,IR +3163095040,3163127807,PL +3163160576,3163193343,DE +3163226112,3163258879,SA +3163258880,3163291647,SY +3163291648,3163324415,PT +3163324416,3163357183,OM 3163553792,3163684863,DE 3163684864,3163815935,PL 3163815936,3163947007,NO +3164078080,3164209151,IT +3164209152,3164340223,CH +3164340224,3164471295,HU +3164602368,3164667903,SY +3164667904,3164733439,PS +3164733440,3164798975,RU +3164798976,3164864511,UA +3165650944,3166175231,DK +3167748096,3168206847,RO +3168206848,3168272383,MD +3168272384,3168534527,IT +3168534528,3168796671,GB 3170893824,3179282431,BR 3179282432,3187671039,MX 3187671040,3187687423,CO @@ -35943,7 +36821,9 @@ 3188343808,3188344063,CO 3188344064,3188344575,CR 3188344576,3188344831,CO -3188344832,3188357631,CR +3188344832,3188346367,CR +3188346368,3188346623,CO +3188346624,3188357631,CR 3188357632,3188357887,CO 3188357888,3188359167,CR 3188359168,3188400127,EC @@ -35960,9 +36840,8 @@ 3188506624,3188506879,AR 3188506880,3188513535,US 3188513536,3188513791,AR -3188513792,3188521727,US -3188521728,3188521983,AR -3188521984,3188523007,US +3188513792,3188520959,US +3188520960,3188523007,AR 3188523008,3188539391,CO 3188539392,3188542207,CL 3188542208,3188542463,US @@ -35973,36 +36852,7 @@ 3188572160,3188576255,CO 3188580352,3188584447,AR 3188588544,3188596735,AR -3188604928,3188605439,AR -3188605440,3188606463,US -3188606464,3188606975,AR -3188606976,3188607231,US -3188607232,3188607743,AR -3188607744,3188607999,US -3188608000,3188608511,AR -3188608512,3188608767,US -3188608768,3188609535,AR -3188609536,3188609791,US -3188609792,3188611583,AR -3188611584,3188611839,US -3188611840,3188612095,AR -3188612096,3188612351,US -3188612352,3188612863,AR -3188612864,3188613375,US -3188613376,3188613503,AR -3188613504,3188613631,US -3188613632,3188614143,AR -3188614144,3188614399,US -3188614400,3188614911,AR -3188614912,3188615423,US -3188615424,3188615935,AR -3188615936,3188616703,US -3188616704,3188616831,AR -3188616832,3188616959,US -3188616960,3188620287,AR -3188620288,3188620543,US -3188620544,3188621055,AR -3188621056,3188621311,US +3188604928,3188621311,AR 3188621312,3188625407,GT 3188629504,3188637695,AR 3188637696,3188645887,PA @@ -36010,7 +36860,7 @@ 3188670464,3188674559,HN 3188678656,3188682751,AR 3188686848,3188690943,EC -3188695040,3188699135,VE +3188695040,3188703231,VE 3188703232,3188711423,AR 3188719616,3188981759,AR 3188981760,3189178367,CL @@ -36087,7 +36937,7 @@ 3193896960,3193929727,CL 3193929728,3193962495,EC 3193962496,3193987071,CL -3193995264,3194015743,CO +3193995264,3194019839,CO 3194028032,3194036223,AR 3194044416,3194052607,CO 3194052608,3194056461,TT @@ -36116,7 +36966,7 @@ 3194454016,3194458111,AR 3194462208,3194466303,AR 3194470400,3194474495,AR -3194478592,3194482687,AR +3194478592,3194486783,AR 3194486784,3194494975,BO 3194519552,3194535935,PY 3194552320,3194568703,AR @@ -36125,24 +36975,33 @@ 3194642432,3194646527,AR 3194650624,3194654719,AR 3194654720,3194658303,US -3194658304,3194658815,AR +3194658304,3194659327,AR +3194659328,3194659583,US +3194659584,3194662399,AR +3194662400,3194662655,US +3194662656,3194665471,AR +3194665472,3194665983,US +3194665984,3194666495,AR +3194666496,3194667007,US 3194683392,3194687487,CU 3194691584,3194695679,BO 3194699776,3194703871,EC -3194707968,3194712063,AR +3194707968,3194716159,AR 3194716160,3194720255,HN 3194724352,3194728447,PA 3194732544,3194736639,AR 3194748928,3194757119,UY 3194781696,3194798079,CL 3194814464,3194822655,AR -3194847232,3194855423,CO +3194847232,3194863615,CO 3194863616,3194871807,HN 3194880000,3194888191,DO 3194912768,3194920959,CL 3194945536,3194953727,GT 3194978304,3194986495,PA 3194994688,3195002879,AR +3195011072,3195019263,AR +3195043840,3195052031,CO 3195535360,3195539455,SV 3195543552,3195547647,PE 3195551744,3195555839,EC @@ -36156,6 +37015,10 @@ 3195641856,3195645951,PY 3195650048,3195654143,GT 3195658240,3195662335,VE +3195666432,3195670527,AR +3195674624,3195678719,AR +3195682816,3195686911,AR +3195691008,3195695103,DO 3196059648,3196092415,CO 3196092416,3196125183,PY 3196125184,3196157951,BO @@ -36185,45 +37048,39 @@ 3198550016,3198681087,DO 3198681088,3198877695,VE 3198943232,3199467519,AR -3199467520,3199468735,US -3199468736,3199468799,AR -3199468800,3199480831,US -3199480832,3199481087,AR -3199481088,3199481343,US -3199481344,3199484927,AR -3199484928,3199488255,US -3199488256,3199489023,AR +3199467520,3199488255,US +3199488256,3199488511,AR +3199488512,3199488767,US +3199488768,3199489023,AR 3199489024,3199489279,US 3199489280,3199489535,AR 3199489536,3199490303,US 3199490304,3199491071,AR -3199491072,3199492095,US -3199492096,3199492351,AR -3199492352,3199493375,US +3199491072,3199493375,US 3199493376,3199493631,AR -3199493632,3199494143,US -3199494144,3199494399,AR -3199494400,3199499775,US -3199499776,3199500031,AR -3199500032,3199504383,US +3199493632,3199504383,US 3199504384,3199505663,AR 3199505664,3199508223,US 3199508224,3199508479,AR 3199508480,3199511039,US 3199511040,3199511551,AR 3199511552,3199520767,US -3199520768,3199533055,AR +3199520768,3199522815,AR +3199522816,3199523327,US +3199523328,3199530495,AR +3199530496,3199532031,US +3199532032,3199533055,AR 3199533056,3199549439,BO 3199598592,3199631359,CO 3199664128,3199713279,AR 3199729664,3199762431,NI 3199795200,3199815679,AN -3199860736,3199893503,BO +3199860736,3199909887,BO 3199926272,3199959039,PE 3199991808,3200385023,AR 3200516096,3200548863,CL 3200581632,3200598015,BZ -3200614400,3200630783,AR +3200614400,3200647167,AR 3200647168,3201302527,VE 3201302528,3201433599,CL 3201433600,3201435135,AR @@ -36233,7 +37090,7 @@ 3201435568,3201441791,AR 3201441792,3201442047,US 3201442048,3201466367,AR -3201564672,3201581055,NI +3201564672,3201630207,NI 3201630208,3201695743,TT 3201695744,3201728511,EC 3201826816,3201867775,AR @@ -36252,7 +37109,9 @@ 3202495496,3202495503,AW 3202495504,3202620463,AR 3202620464,3202620471,AW -3202620472,3202875391,AR +3202620472,3202647039,AR +3202647040,3202647295,AW +3202647296,3202875391,AR 3202875392,3203137535,PE 3203399680,3203432447,CO 3203465216,3203476479,CR @@ -36260,12 +37119,16 @@ 3203476736,3203476991,CR 3203476992,3203477503,CO 3203477504,3203481599,CR -3203497984,3203530751,CR +3203497984,3203509247,CR +3203509248,3203511295,CO +3203511296,3203530751,CR 3203530752,3203531775,CO 3203531776,3203532031,CR 3203532032,3203532287,CO 3203532288,3203533055,PA -3203533056,3203547135,CO +3203533056,3203533567,CO +3203533568,3203533823,PA +3203533824,3203547135,CO 3203547136,3203547647,PA 3203547648,3203596287,CO 3203661824,3203923967,AR @@ -36473,7 +37336,6 @@ 3223244288,3223245311,US 3223249408,3223249663,CA 3223254784,3223255295,US -3223255808,3223256063,US 3223257088,3223258623,US 3223258624,3223258879,CA 3223258880,3223260671,US @@ -36501,13 +37363,13 @@ 3223297536,3223298815,US 3223299072,3223299327,US 3223299584,3223301119,NL -3223301120,3223303167,US +3223301120,3223302399,US 3223303168,3223303423,CA 3223303424,3223303679,US 3223305984,3223307519,US 3223307520,3223310079,JP 3223310080,3223310335,US -3223310592,3223311103,US +3223310848,3223311103,US 3223311104,3223311359,FR 3223311360,3223311871,US 3223312128,3223314431,US @@ -36549,7 +37411,9 @@ 3223433216,3223435007,FR 3223435008,3223437055,US 3223437312,3223447551,CH -3223447552,3223452671,US +3223447552,3223447807,US +3223447808,3223449599,NL +3223449600,3223452671,US 3223452928,3223453183,US 3223453184,3223453439,DE 3223458560,3223458815,GB @@ -36587,7 +37451,9 @@ 3223546112,3223546879,US 3223546880,3223547135,GB 3223547136,3223551743,US -3223552000,3223554559,US +3223552000,3223552511,US +3223552512,3223553535,NL +3223553536,3223554559,US 3223554560,3223554815,GB 3223555328,3223556095,US 3223556096,3223556351,CA @@ -36619,9 +37485,9 @@ 3223584768,3223650303,SE 3223650304,3223715839,CH 3223715840,3223781375,DK -3223781376,3223823871,GB +3223781376,3223823871,US 3223823872,3223824127,AT -3223824128,3223846911,GB +3223824128,3223846911,US 3223848704,3223852799,US 3223853312,3223853567,US 3223854336,3223854591,US @@ -36786,7 +37652,8 @@ 3224407808,3224408319,US 3224408320,3224408575,DE 3224408576,3224424959,US -3224425216,3224428287,US +3224425216,3224427007,US +3224427776,3224428287,US 3224428544,3224428799,DE 3224428800,3224430079,US 3224430336,3224430591,DE @@ -36886,7 +37753,8 @@ 3224828672,3224828927,AU 3224829184,3224829439,US 3224829440,3224829695,DE -3224830208,3224851455,US +3224830208,3224850943,US +3224851200,3224851455,US 3224851456,3224851711,DE 3224851968,3224852735,US 3224852736,3224852991,DE @@ -36967,7 +37835,9 @@ 3225081088,3225081343,CA 3225081600,3225082367,US 3225082368,3225082623,IT -3225082880,3225089279,US +3225082880,3225084671,US +3225084672,3225085439,NL +3225085440,3225089279,US 3225089280,3225089535,CA 3225089536,3225091071,US 3225091584,3225091839,US @@ -37767,14 +38637,16 @@ 3227865088,3227865343,US 3227865344,3227867903,NL 3227867904,3227868159,TH -3227868160,3227874815,US +3227868160,3227873023,US +3227873024,3227874047,NL +3227874048,3227874815,US 3227874816,3227875071,PT 3227875072,3227878911,US 3227878912,3227879167,AU 3227879168,3227879679,US 3227879680,3227879935,GB 3227880192,3227880959,US -3227881216,3227885567,US +3227881472,3227885567,US 3227885824,3227887871,ES 3227887872,3227888127,PR 3227888128,3227888383,BE @@ -38266,7 +39138,7 @@ 3229889792,3229890047,PT 3229890048,3229890303,US 3229890304,3229890559,PT -3229890560,3229891327,US +3229890560,3229891071,US 3229891584,3229891839,CA 3229892608,3229900031,US 3229900032,3229900287,AU @@ -38300,7 +39172,8 @@ 3229947392,3229948415,US 3229948672,3229948927,US 3229948928,3229949183,IT -3229949184,3229949695,US +3229949184,3229949439,GB +3229949440,3229949695,US 3229949696,3229949951,NZ 3229949952,3229950207,NO 3229950208,3229950975,US @@ -38490,7 +39363,8 @@ 3230333184,3230333695,US 3230333696,3230333951,NZ 3230333952,3230334719,US -3230335232,3230336255,CA +3230335232,3230335743,CA +3230336000,3230336255,CA 3230336512,3230339583,CA 3230339840,3230340095,CA 3230340352,3230350847,CA @@ -38502,7 +39376,8 @@ 3230370304,3230370559,CA 3230370816,3230372607,CA 3230372864,3230383359,CA -3230383616,3230387455,CA +3230383616,3230384127,CA +3230384384,3230387455,CA 3230387712,3230400255,CA 3230400768,3230591231,FR 3230591232,3230591487,FI @@ -38795,7 +39670,8 @@ 3231154432,3231154687,IN 3231187200,3231188479,US 3231188480,3231188735,NO -3231188736,3231190527,US +3231188736,3231189503,US +3231189760,3231190527,US 3231190528,3231190783,GB 3231190784,3231191295,US 3231191296,3231191551,GB @@ -38972,7 +39848,7 @@ 3231503616,3231503871,IT 3231503872,3231504383,US 3231504640,3231504895,GB -3231504896,3231505407,US +3231505152,3231505407,US 3231505664,3231506687,US 3231506688,3231506943,NZ 3231506944,3231507199,US @@ -39084,7 +39960,9 @@ 3231729664,3231735551,US 3231735552,3231736063,CH 3231736064,3231737087,US -3231737600,3231739135,US +3231737600,3231738367,US +3231738368,3231738623,NL +3231738624,3231739135,US 3231739136,3231739391,GB 3231739392,3231739647,PL 3231739648,3231739903,BR @@ -39591,7 +40469,7 @@ 3234795008,3234795263,GB 3234795264,3234795519,US 3234795776,3234796031,US -3234796288,3234799359,US +3234796544,3234799359,US 3234799360,3234799615,NL 3234799616,3234799871,US 3234799872,3234800127,AU @@ -39613,7 +40491,8 @@ 3234816000,3234816767,AU 3234816768,3234820351,US 3234820352,3234820607,AU -3234820608,3234821887,US +3234820608,3234820863,US +3234821120,3234821887,US 3234821888,3234822655,AU 3234822656,3234826751,US 3234826752,3234827007,CA @@ -39738,7 +40617,8 @@ 3236416256,3236416511,AU 3236416512,3236418303,US 3236418304,3236418815,AU -3236418816,3236419583,US +3236418816,3236419071,US +3236419328,3236419583,US 3236419584,3236419839,AU 3236419840,3236420095,US 3236420096,3236420351,AU @@ -39913,7 +40793,6 @@ 3238007040,3238010879,NL 3238010880,3238017023,CH 3238017024,3238018303,DK -3238018560,3238019071,CH 3238019072,3238035455,PL 3238035456,3238060031,FR 3238060032,3238060287,CH @@ -40208,7 +41087,6 @@ 3239277056,3239277567,DE 3239277568,3239278079,RU 3239278080,3239278591,UA -3239278592,3239279103,AT 3239279104,3239280127,PL 3239280128,3239280639,RU 3239280640,3239281663,IR @@ -40436,7 +41314,7 @@ 3239691264,3239691519,IT 3239691520,3239692031,FR 3239692032,3239692287,AT -3239694336,3239697407,DE +3239692288,3239697407,DE 3239697408,3239697663,NL 3239697664,3239697919,RU 3239697920,3239698431,PL @@ -40459,6 +41337,7 @@ 3239709952,3239710207,UA 3239710208,3239710463,BG 3239710464,3239710719,DE +3239710720,3239710975,RU 3239710976,3239711231,SE 3239711232,3239711487,BY 3239711488,3239711743,FR @@ -40487,6 +41366,7 @@ 3239741184,3239741439,RU 3239741440,3239759871,DE 3239759872,3239760127,RU +3239760128,3239760383,UA 3239760384,3239760895,PL 3239760896,3239761151,RU 3239761152,3239761407,GB @@ -40815,7 +41695,6 @@ 3240201728,3240202239,CH 3240202240,3240202751,RU 3240202752,3240203263,UA -3240203264,3240203775,RO 3240203776,3240204799,AT 3240204800,3240205311,RO 3240205312,3240205823,GB @@ -40930,6 +41809,8 @@ 3240281216,3240281343,FR 3240281344,3240281471,PL 3240281472,3240281599,IR +3240281600,3240281727,CY +3240281728,3240281855,PL 3240288256,3240296447,GB 3240296448,3240296703,RO 3240296704,3240302847,GB @@ -40952,8 +41833,7 @@ 3240373248,3240373503,RO 3240373504,3240373759,FR 3240373760,3240374015,DE -3240374016,3240374271,IE -3240374272,3240407039,GB +3240374016,3240407039,GB 3240407040,3240407295,IL 3240407296,3240407551,NL 3240407552,3240407807,NO @@ -41044,7 +41924,7 @@ 3240691712,3240692735,DE 3240692736,3240693247,DK 3240693248,3240693759,ES -3240693760,3240695807,IE +3240693760,3240695807,BE 3240695808,3240697855,ES 3240697856,3240698111,SE 3240698112,3240698367,LV @@ -41422,7 +42302,8 @@ 3241541376,3241541631,PL 3241541632,3241673215,FR 3241673472,3241674751,FR -3241675008,3241681407,FR +3241675008,3241676543,FR +3241676800,3241681407,FR 3241681664,3241683199,FR 3241683456,3241702399,FR 3241702912,3241704447,FR @@ -41671,11 +42552,10 @@ 3244149760,3244150783,PL 3244150784,3244151807,CH 3244151808,3244152831,KZ -3244152832,3244153855,RU 3244153856,3244154879,NO 3244154880,3244155903,GB 3244155904,3244156927,UA -3244156928,3244157951,RU +3244156928,3244158975,RU 3244158976,3244159999,DE 3244160000,3244161023,RU 3244161024,3244163071,NO @@ -41718,7 +42598,7 @@ 3245088512,3245088767,FR 3245088768,3245089279,BG 3245089280,3245089791,PL -3245089792,3245090815,UA +3245090304,3245090815,UA 3245090816,3245091327,AT 3245091328,3245091839,SE 3245091840,3245093887,UA @@ -41734,6 +42614,7 @@ 3245107712,3245108735,CZ 3245108736,3245109247,FR 3245109248,3245113855,UA +3245113856,3245114367,RU 3245114368,3245114879,SK 3245114880,3245115391,JO 3245115392,3245115903,CH @@ -41819,7 +42700,7 @@ 3245161984,3245162495,BE 3245162496,3245163007,DE 3245163008,3245163519,KE -3245164032,3245164543,RU +3245163520,3245164031,RU 3245164544,3245165055,BE 3245165056,3245165567,AT 3245165568,3245166079,RU @@ -41919,7 +42800,7 @@ 3245218816,3245219839,AT 3245219840,3245221887,FI 3245221888,3245223935,DE -3245223936,3245225983,NL +3245223936,3245225983,GB 3245225984,3245228031,HU 3245228032,3245229055,FI 3245229056,3245230079,DE @@ -42147,7 +43028,9 @@ 3245910832,3245910847,GB 3245910848,3245921279,IE 3245921280,3245921535,BE -3245921536,3245931263,IE +3245921536,3245924647,IE +3245924648,3245924655,GB +3245924656,3245931263,IE 3245931264,3245931519,GB 3245931520,3245932543,IE 3245932544,3245998079,BE @@ -42393,7 +43276,9 @@ 3247266400,3247266407,DE 3247266408,3247266559,NL 3247266560,3247271679,DE -3247271680,3247272775,NL +3247271680,3247272351,NL +3247272352,3247272359,DE +3247272360,3247272775,NL 3247272776,3247272783,DE 3247272784,3247273751,NL 3247273752,3247273759,DE @@ -42551,7 +43436,9 @@ 3247347968,3247348223,HU 3247348224,3247348991,FI 3247348992,3247349247,DE -3247349248,3247362047,FI +3247349248,3247349759,FI +3247349760,3247353855,SE +3247353856,3247362047,FI 3247362048,3247362303,RO 3247362304,3247362559,HU 3247362560,3247362815,PL @@ -42569,7 +43456,6 @@ 3247365888,3247366143,DE 3247366144,3247371007,FI 3247371008,3247371263,PL -3247371264,3247371519,LT 3247371520,3247371775,GB 3247371776,3247374335,FI 3247374336,3247374591,RU @@ -42690,9 +43576,7 @@ 3248372264,3248372271,NL 3248372272,3248372319,DE 3248372320,3248372327,BE -3248372328,3248417311,DE -3248417312,3248417343,ES -3248417344,3248488447,DE +3248372328,3248488447,DE 3248488448,3248525311,NO 3248525312,3248525567,DE 3248525568,3248525823,DK @@ -42755,7 +43639,6 @@ 3248813568,3248814079,DE 3248814080,3248815103,DK 3248815104,3248815615,GB -3248815616,3248816127,PL 3248816128,3248881663,CZ 3248881664,3249012735,FI 3249012736,3249012991,DE @@ -42765,6 +43648,25 @@ 3249025792,3249026559,LU 3249026816,3249045503,LU 3249045504,3249078271,DE +3249078272,3249078783,RU +3249078784,3249079295,CH +3249079296,3249079807,RU +3249079808,3249080831,RO +3249080832,3249081343,DE +3249081344,3249081855,UA +3249081856,3249082367,GB +3249082368,3249082879,HU +3249082880,3249083391,PL +3249083392,3249083903,RO +3249083904,3249085951,RU +3249085952,3249086463,GI +3249086464,3249088511,RU +3249088512,3249089023,NL +3249089024,3249089535,NO +3249089536,3249090047,RU +3249090048,3249090559,FR +3249090560,3249091071,SI +3249091072,3249091583,RO 3249143808,3249274879,AT 3249274880,3249277759,NL 3249277760,3249277775,BG @@ -43121,6 +44023,7 @@ 3251116544,3251116799,DK 3251116800,3251117055,GB 3251117056,3251117311,BG +3251117312,3251117567,FR 3251117568,3251117823,IL 3251117824,3251118079,SE 3251118080,3251118591,UA @@ -43355,7 +44258,6 @@ 3251212800,3251212927,FR 3251213056,3251213119,SE 3251213120,3251213151,NL -3251213152,3251213183,DE 3251213184,3251213215,UA 3251213216,3251213247,CH 3251213248,3251213311,GB @@ -43675,7 +44577,9 @@ 3252407600,3252407615,BJ 3252407616,3252407679,NO 3252407680,3252407743,NG -3252407744,3252407807,NO +3252407744,3252407751,NO +3252407752,3252407759,AO +3252407760,3252407807,NO 3252407808,3252407999,GN 3252408000,3252408159,NO 3252408160,3252408191,GQ @@ -43719,9 +44623,11 @@ 3252409104,3252409111,SD 3252409112,3252409119,LT 3252409120,3252409127,NG -3252409128,3252409215,LT -3252409216,3252409223,SO -3252409224,3252409247,LT +3252409128,3252409135,LT +3252409136,3252409143,AO +3252409144,3252409183,LT +3252409184,3252409191,UG +3252409192,3252409247,LT 3252409248,3252409263,IQ 3252409264,3252409343,SO 3252409344,3252409375,TD @@ -43737,9 +44643,7 @@ 3252409600,3252409663,NG 3252409664,3252409855,LT 3252409856,3252410383,BW -3252410384,3252410623,LT -3252410624,3252410655,SO -3252410656,3252410879,LT +3252410384,3252410879,LT 3252410880,3252411007,IQ 3252411008,3252411135,LT 3252411136,3252411167,IQ @@ -43757,8 +44661,7 @@ 3252411840,3252411855,NG 3252411856,3252411879,LT 3252411880,3252411895,CD -3252411896,3252411903,LT -3252411904,3252412415,NG +3252411896,3252412415,LT 3252412416,3252412479,IQ 3252412480,3252412927,LT 3252412928,3252413439,NG @@ -43775,10 +44678,11 @@ 3252414496,3252414511,LT 3252414512,3252414527,MR 3252414528,3252414607,GH -3252414608,3252414639,TZ +3252414608,3252414623,LT +3252414624,3252414639,TZ 3252414640,3252414655,GH 3252414656,3252414719,ER -3252414720,3252414975,IQ +3252414720,3252414975,LT 3252414976,3252415231,NG 3252415232,3252415487,LT 3252415488,3252415503,SD @@ -43815,7 +44719,7 @@ 3252419088,3252419103,LT 3252419104,3252419119,SL 3252419120,3252419127,GH -3252419128,3252419135,TZ +3252419128,3252419135,LT 3252419136,3252419167,SL 3252419168,3252419199,CD 3252419200,3252419215,GH @@ -43828,13 +44732,9 @@ 3252419344,3252419359,LT 3252419360,3252419423,GH 3252419424,3252419583,LT -3252419584,3252419791,IQ -3252419792,3252419839,LT -3252419840,3252419879,IQ -3252419880,3252419887,LT -3252419888,3252419895,IQ -3252419896,3252419919,LT -3252419920,3252420111,IQ +3252419584,3252419775,IQ +3252419776,3252419839,LT +3252419840,3252420111,IQ 3252420112,3252420119,GB 3252420120,3252420231,IQ 3252420232,3252420239,LT @@ -43842,7 +44742,9 @@ 3252420256,3252420263,LT 3252420264,3252420279,IQ 3252420280,3252420287,LT -3252420288,3252420447,IQ +3252420288,3252420415,IQ +3252420416,3252420431,GB +3252420432,3252420447,IQ 3252420448,3252420455,LT 3252420456,3252420463,IQ 3252420464,3252420479,LT @@ -43861,8 +44763,8 @@ 3252425024,3252425215,SO 3252425216,3252425343,TD 3252425344,3252425471,LT -3252425472,3252425543,AO -3252425544,3252425599,LT +3252425472,3252425551,AO +3252425552,3252425599,LT 3252425600,3252425631,AF 3252425632,3252425727,LT 3252425728,3252425855,ZM @@ -43877,23 +44779,17 @@ 3252428416,3252428447,KE 3252428448,3252428543,LT 3252428544,3252428671,CG -3252428672,3252428799,LT -3252428800,3252428831,IQ -3252428832,3252428863,LT -3252428864,3252428887,IQ -3252428888,3252429103,LT -3252429104,3252429119,IQ -3252429120,3252429247,LT +3252428672,3252428863,LT +3252428864,3252428879,IQ +3252428880,3252429247,LT 3252429248,3252429263,IQ -3252429264,3252429727,LT -3252429728,3252429743,IQ -3252429744,3252429823,LT +3252429264,3252429823,LT 3252429824,3252429951,NE 3252429952,3252430079,LT 3252430080,3252430335,BJ 3252430336,3252430463,NE -3252430464,3252430527,LT -3252430528,3252430535,BF +3252430464,3252430519,LT +3252430520,3252430535,BF 3252430536,3252430543,LT 3252430544,3252430559,BJ 3252430560,3252430591,BF @@ -43921,9 +44817,9 @@ 3252435200,3252435263,TZ 3252435264,3252435295,LT 3252435296,3252435311,TZ -3252435312,3252435319,EG +3252435312,3252435319,MG 3252435320,3252435327,MZ -3252435328,3252435343,LT +3252435328,3252435343,CD 3252435344,3252435359,BF 3252435360,3252435375,CD 3252435376,3252435391,GN @@ -43957,12 +44853,12 @@ 3252438528,3252438783,CM 3252438784,3252439039,LT 3252439040,3252439055,BJ -3252439056,3252439287,LT +3252439056,3252439071,LT +3252439072,3252439079,BJ +3252439080,3252439287,LT 3252439288,3252439295,SN 3252439296,3252439391,SO -3252439392,3252439551,LT -3252439552,3252439583,AL -3252439584,3252439807,LT +3252439392,3252439807,LT 3252439808,3252439871,SO 3252439872,3252440063,LT 3252440064,3252440319,MW @@ -44034,7 +44930,9 @@ 3252452496,3252452503,ZM 3252452504,3252452607,LT 3252452608,3252452735,TD -3252452736,3252453119,LT +3252452736,3252452863,LT +3252452864,3252452879,TZ +3252452880,3252453119,LT 3252453120,3252453151,NG 3252453152,3252453375,LT 3252453376,3252454527,NO @@ -44107,7 +45005,11 @@ 3252483584,3252484095,LT 3252484096,3252486143,KW 3252486144,3252490239,BE -3252490240,3252507135,SE +3252490240,3252495871,SE +3252495872,3252496127,HU +3252496128,3252505343,SE +3252505344,3252505855,US +3252505856,3252507135,SE 3252507648,3252509951,GB 3252509952,3252510719,CH 3252510720,3252514815,FR @@ -44235,7 +45137,6 @@ 3252933632,3252934655,IT 3252934656,3252936703,PL 3252936704,3252937215,CH -3252937216,3252937727,RO 3252937728,3252938239,FR 3252938240,3252938751,UA 3252938752,3252939263,RU @@ -44716,6 +45617,7 @@ 3254781440,3254781951,BE 3254781952,3254782207,LV 3254796288,3254797311,SE +3254797312,3254798335,RU 3254798336,3254799359,AT 3254799360,3254800383,IE 3254800384,3254801407,FI @@ -45004,9 +45906,7 @@ 3255246592,3255246623,LU 3255246624,3255247455,BE 3255247456,3255247487,LU -3255247488,3255247615,BE -3255247616,3255247631,LU -3255247632,3255247647,BE +3255247488,3255247647,BE 3255247648,3255247663,LU 3255247664,3255248127,BE 3255248128,3255248383,LU @@ -45026,9 +45926,7 @@ 3255252560,3255252575,LU 3255252576,3255254847,BE 3255254848,3255254879,LU -3255254880,3255254927,BE -3255254928,3255254943,LU -3255254944,3255255559,BE +3255254880,3255255559,BE 3255255560,3255255567,LU 3255255568,3255255599,BE 3255255600,3255255607,LU @@ -45064,7 +45962,9 @@ 3255273856,3255273887,LU 3255273888,3255274207,BE 3255274208,3255274239,LU -3255274240,3255276223,BE +3255274240,3255274335,BE +3255274336,3255274367,LU +3255274368,3255276223,BE 3255276224,3255276255,FR 3255276256,3255278855,BE 3255278856,3255278863,DE @@ -45155,6 +46055,10 @@ 3255327744,3255328255,SE 3255328256,3255328767,SI 3255328768,3255336959,DE +3255336960,3255341055,RU +3255341056,3255343103,UA +3255343104,3255344127,RU +3255344128,3255345151,UA 3255345152,3255353343,RU 3255353344,3255361535,DE 3255361536,3255369727,GB @@ -45440,9 +46344,11 @@ 3256694784,3256695807,CH 3256695808,3256696831,UA 3256696832,3256697599,BE +3256697600,3256697855,GB 3256697856,3256698367,IT 3256698368,3256698623,NL 3256698624,3256698879,GB +3256698880,3256699135,DE 3256701184,3256701439,BE 3256701440,3256701695,GB 3256705280,3256705791,BE @@ -46552,7 +47458,6 @@ 3259965440,3259966463,RU 3259966464,3259967487,DE 3259967488,3259968511,CS -3259968512,3259969535,RO 3259969536,3259970559,FR 3259970560,3259971583,CZ 3259971584,3259972607,IT @@ -46710,13 +47615,9 @@ 3261173992,3261174007,DE 3261174008,3261174015,AT 3261174016,3261202431,DE -3261202432,3261236527,FR -3261236528,3261236543,GB -3261236544,3261236863,FR +3261202432,3261236863,FR 3261236864,3261236991,GB -3261236992,3261241503,FR -3261241504,3261241535,GB -3261241536,3261267967,FR +3261236992,3261267967,FR 3261267968,3261297663,DE 3261297664,3261297919,RU 3261297920,3261298175,PL @@ -46726,7 +47627,9 @@ 3261472768,3261503487,RO 3261503488,3261503935,MD 3261503936,3261530111,RO -3261530112,3261595647,SE +3261530112,3261570303,SE +3261570304,3261570559,IT +3261570560,3261595647,SE 3261595648,3261599743,NL 3261600768,3261661183,NL 3261661184,3261669375,RO @@ -46889,12 +47792,14 @@ 3262034528,3262034559,AX 3262034560,3262034687,FI 3262034688,3262034719,AX -3262034720,3262035199,FI -3262035200,3262035455,AX -3262035456,3262036287,FI +3262034720,3262034943,FI +3262034944,3262035455,AX +3262035456,3262035487,FI +3262035488,3262035519,AX +3262035520,3262036287,FI 3262036288,3262036303,AX -3262036304,3262036319,FI -3262036320,3262036335,AX +3262036304,3262036311,FI +3262036312,3262036335,AX 3262036336,3262036367,FI 3262036368,3262036383,AX 3262036384,3262036415,FI @@ -46903,8 +47808,8 @@ 3262036464,3262036479,AX 3262036480,3262036607,FI 3262036608,3262036615,AX -3262036616,3262036735,FI -3262036736,3262038015,AX +3262036616,3262036719,FI +3262036720,3262038015,AX 3262038016,3262038271,FR 3262038272,3262038527,RU 3262038528,3262038783,GB @@ -46963,11 +47868,15 @@ 3262115072,3262115327,RU 3262115328,3262119935,FI 3262119936,3262120447,AX -3262120448,3262120959,FI -3262120960,3262121215,AX -3262121216,3262122143,FI -3262122144,3262122147,AX -3262122148,3262122431,FI +3262120448,3262120703,FI +3262120704,3262121599,AX +3262121600,3262121663,FI +3262121664,3262122007,AX +3262122008,3262122143,FI +3262122144,3262122159,AX +3262122160,3262122239,FI +3262122240,3262122367,AX +3262122368,3262122431,FI 3262122432,3262122455,AX 3262122456,3262122559,FI 3262122560,3262122591,AX @@ -46996,6 +47905,7 @@ 3262148928,3262149119,DE 3262149120,3262149151,FR 3262149152,3262149159,DE +3262149160,3262149167,GB 3262149168,3262149247,FR 3262149632,3262149887,DE 3262150912,3262151047,DE @@ -50708,7 +51618,9 @@ 3262889112,3262889119,DE 3262889120,3262889351,NL 3262889352,3262889359,DE -3262889360,3262889519,NL +3262889360,3262889415,NL +3262889416,3262889423,DE +3262889424,3262889519,NL 3262889520,3262889527,DE 3262889528,3262890047,NL 3262890048,3262890055,DE @@ -50825,8 +51737,7 @@ 3263037440,3263045631,LB 3263045632,3263047935,KW 3263047936,3263048191,LB -3263048192,3263048447,BH -3263048448,3263053823,KW +3263048192,3263053823,KW 3263053824,3263062015,GB 3263062016,3263070207,EE 3263070208,3263070719,FR @@ -50835,8 +51746,6 @@ 3263071488,3263072255,NL 3263072256,3263074303,LB 3263074304,3263074815,CH -3263074816,3263075327,PL -3263075328,3263075839,GB 3263075840,3263076351,SE 3263076352,3263076863,RO 3263076864,3263077375,IT @@ -50921,14 +51830,13 @@ 3263437312,3263477759,SE 3263477760,3263478015,JP 3263478016,3263496191,SE -3263497216,3263497983,US 3263497984,3263498239,GB -3263498496,3263498751,ES 3263498752,3263498879,US 3263498880,3263498943,GB 3263498960,3263499007,GB 3263499776,3263500031,FR -3263500032,3263501341,GB +3263500032,3263500287,GB +3263500800,3263501341,GB 3263501344,3263501439,GB 3263501440,3263501503,US 3263501504,3263501519,GB @@ -50937,24 +51845,16 @@ 3263501536,3263501551,DE 3263501552,3263501823,GB 3263501824,3263502079,EG -3263502080,3263502335,FR -3263502336,3263502847,GB 3263503104,3263503167,DE 3263503200,3263503267,DE 3263503272,3263503279,DE 3263503296,3263503359,DE -3263503360,3263503871,FR 3263503872,3263504127,GB 3263504128,3263504255,EG -3263506432,3263506687,BE 3263506688,3263506815,DE 3263506816,3263506943,US -3263506944,3263507199,BE 3263507200,3263507455,US -3263507456,3263507967,GB -3263507968,3263508223,IE -3263508224,3263508735,GB -3263508992,3263509503,US +3263508224,3263508479,GB 3263509504,3263509759,SE 3263509760,3263509791,GB 3263509792,3263509807,IE @@ -50967,19 +51867,10 @@ 3263510032,3263510063,GB 3263510064,3263510079,US 3263510080,3263510271,GB -3263510784,3263511039,US 3263511296,3263511551,GB -3263511552,3263512063,BE 3263512064,3263512311,GB -3263512320,3263512831,ES -3263512832,3263513087,TR -3263513088,3263513343,FR 3263513344,3263513599,US 3263513856,3263514111,RU -3263515392,3263515903,ES -3263515904,3263516159,GB -3263516160,3263516415,FR -3263516416,3263516671,LK 3263516672,3263516927,US 3263516928,3263517183,GB 3263517696,3263517951,US @@ -50988,33 +51879,24 @@ 3263518720,3263518751,IR 3263518976,3263519231,GB 3263519744,3263519759,GB -3263520000,3263520255,GB 3263520256,3263520511,FR -3263520512,3263521279,US -3263521536,3263521791,DE +3263520512,3263520767,US 3263521792,3263522047,GB -3263522304,3263522559,FR -3263523072,3263523839,DE +3263523072,3263523583,DE 3263525760,3263525887,DE -3263526400,3263526655,IT 3263527424,3263527679,ZW 3263527680,3263527935,DE 3263528192,3263528447,FR 3263528704,3263528959,GB 3263530496,3263530751,GB -3263531008,3263531263,FR 3263531520,3263531535,DE 3263531552,3263531775,DE 3263532544,3263532799,GB -3263536896,3263537151,ZW -3263537152,3263538431,TR +3263537664,3263538431,TR 3263540224,3263540479,TR 3263540480,3263540735,GB -3263540992,3263541247,TR -3263541248,3263541535,GB -3263545344,3263546879,US -3263547136,3263557631,US -3263557632,3263558399,TR +3263541504,3263541535,GB +3263557632,3263557887,TR 3263558656,3263558911,TR 3263558912,3263559679,GB 3263559680,3263560191,TR @@ -51149,7 +52031,7 @@ 3264320256,3264321023,GB 3264321024,3264321535,DE 3264321536,3264321791,SE -3264321792,3264322047,CS +3264321792,3264322047,RS 3264322048,3264322303,FR 3264322304,3264322559,RO 3264322560,3264322815,HU @@ -51187,7 +52069,6 @@ 3264341504,3264341759,DE 3264341760,3264342015,IT 3264342016,3264342783,DE -3264342784,3264343039,RU 3264343040,3264343295,DE 3264343296,3264343551,GB 3264343552,3264343807,RO @@ -51424,9 +52305,9 @@ 3264845952,3264846079,GB 3264846080,3264846207,UG 3264846208,3264846335,PL -3264846336,3264846463,RU 3264846464,3264846591,NO 3264846592,3264846719,US +3264846720,3264846847,RU 3264846848,3264846911,DK 3264846912,3264846975,RU 3264846976,3264847039,DE @@ -51494,10 +52375,10 @@ 3264907152,3264907155,GR 3264907156,3264907639,CY 3264907640,3264907647,GR -3264907648,3264907655,CY -3264907656,3264907671,GR -3264907672,3264907675,CY -3264907676,3264907683,GR +3264907648,3264907663,CY +3264907664,3264907671,GR +3264907672,3264907679,CY +3264907680,3264907683,GR 3264907684,3264907687,CY 3264907688,3264907691,GR 3264907692,3264907695,CY @@ -51857,9 +52738,13 @@ 3266384896,3266385919,RU 3266385920,3266386943,UA 3266386944,3266387967,PL -3266387968,3266389247,FR +3266387968,3266388375,FR +3266388376,3266388378,NL +3266388379,3266389247,FR 3266389248,3266389327,LU -3266389328,3266396159,FR +3266389328,3266395647,FR +3266395648,3266395903,NL +3266395904,3266396159,FR 3266396160,3266412543,IT 3266412544,3266420735,AT 3266420736,3266428927,GB @@ -51918,8 +52803,8 @@ 3266813952,3266822143,UA 3266822144,3266830335,FR 3266830336,3266836479,BE -3266836480,3266837023,LU -3266837024,3266838527,BE +3266836480,3266837503,LU +3266837504,3266838527,BE 3266838528,3266969599,IT 3266969600,3267008767,RU 3267008768,3267009023,UA @@ -52085,8 +52970,7 @@ 3267626496,3267626751,ES 3267626752,3267627007,RU 3267627008,3267627343,DE -3267627360,3267627439,DE -3267627456,3267627463,DE +3267627360,3267627487,DE 3267627776,3267627807,DE 3267627840,3267628031,DE 3267628032,3267628287,IT @@ -52095,14 +52979,13 @@ 3267629056,3267629311,CZ 3267629312,3267629567,DK 3267629568,3267629759,BE -3267629792,3267629823,BE +3267629808,3267629823,BE 3267629824,3267630079,GR 3267630080,3267630591,GB 3267630592,3267630847,SK 3267630848,3267630863,IT 3267630864,3267630943,FR -3267630944,3267631007,IT -3267631024,3267631055,IT +3267630944,3267631055,IT 3267631056,3267631071,GB 3267631088,3267631103,IT 3267631104,3267631615,GB @@ -52152,7 +53035,7 @@ 3267644672,3267644927,SI 3267644936,3267644959,BE 3267644960,3267644975,FR -3267644976,3267644991,GB +3267644976,3267644983,GB 3267644992,3267645055,BE 3267645056,3267645183,GB 3267645440,3267645695,GB @@ -52194,17 +53077,15 @@ 3267658752,3267659263,CH 3267659520,3267659775,IT 3267660288,3267660543,CH -3267660544,3267660575,ES -3267660592,3267660671,ES +3267660544,3267660671,ES 3267661312,3267661567,SK 3267661568,3267661631,GB 3267661664,3267661679,GB 3267661696,3267661823,GB 3267661824,3267661831,ES -3267661840,3267661951,ES +3267661840,3267661887,ES 3267662024,3267662031,ES 3267662040,3267662079,ES -3267662880,3267662887,IE 3267662888,3267662895,GB 3267662896,3267662951,IE 3267662952,3267662959,GB @@ -52224,22 +53105,20 @@ 3267666256,3267666431,GR 3267666432,3267666447,GB 3267666464,3267666543,GB -3267666576,3267666687,GB -3267666720,3267667199,GB +3267666576,3267667199,GB 3267667200,3267667455,NL -3267667456,3267667583,GB -3267667712,3267667967,GB +3267667456,3267667967,GB 3267670016,3267671551,ZA 3267671552,3267671807,DE 3267671808,3267672063,NO 3267672064,3267672319,DE 3267672576,3267672831,AT -3267672832,3267672951,FR -3267672960,3267672999,FR +3267672832,3267672927,FR +3267672936,3267672999,FR 3267673008,3267673015,FR 3267673024,3267673087,FR 3267673088,3267673439,DE -3267673472,3267673495,DE +3267673472,3267673503,DE 3267673600,3267673791,DE 3267673808,3267673855,DE 3267674112,3267674127,NL @@ -52609,6 +53488,8 @@ 3269277760,3269278719,NL 3269279232,3269279487,NL 3269279672,3269279679,CH +3269279744,3269279999,GB +3269280000,3269280767,NL 3269280768,3269281023,GB 3269281024,3269281279,DE 3269281536,3269281663,DE @@ -52635,7 +53516,7 @@ 3269293120,3269293151,DE 3269293208,3269293215,DE 3269293248,3269293279,DE -3269293376,3269293383,DE +3269293376,3269293391,DE 3269293856,3269293887,DE 3269293920,3269293951,DE 3269296232,3269296235,DE @@ -52676,14 +53557,14 @@ 3269327864,3269328383,DE 3269328896,3269459967,GB 3269459968,3269525503,ES -3269525504,3269591039,IR +3269525504,3269556223,IR +3269556224,3269556479,AE +3269556480,3269591039,IR 3269591040,3269621759,RU 3269621760,3269623551,BY 3269623552,3269656575,RU 3269656576,3269722111,GB -3269722112,3269731839,CZ -3269731840,3269732095,CR -3269732096,3269750799,CZ +3269722112,3269750799,CZ 3269750800,3269750815,CR 3269750816,3269787647,CZ 3269787648,3269853183,NL @@ -52721,23 +53602,19 @@ 3270170112,3270170623,NO 3270174720,3270174975,NO 3270175744,3270175999,NO -3270181120,3270181887,CH -3270182144,3270183679,CH -3270188288,3270188799,CH -3270189056,3270190079,BE +3270181120,3270181375,CH +3270181632,3270181887,CH +3270182144,3270182399,CH +3270182656,3270183679,CH +3270189056,3270189311,BE 3270190080,3270190591,IT -3270190592,3270191359,CH -3270191616,3270192047,CH -3270193152,3270193919,CH -3270194176,3270194431,CH -3270194688,3270194943,CH -3270195456,3270195967,CH -3270196480,3270197247,CH -3270198528,3270199039,NL -3270199808,3270201087,NL +3270190592,3270191103,CH +3270191872,3270192047,CH +3270196992,3270197247,CH +3270200064,3270200319,NL 3270201344,3270201599,NL -3270202624,3270203135,NL -3270204416,3270205695,NL +3270202880,3270203135,NL +3270205440,3270205695,NL 3270205984,3270205999,ES 3270206064,3270206079,ES 3270206976,3270207231,ES @@ -52747,8 +53624,6 @@ 3270208256,3270208511,LU 3270208768,3270209023,RO 3270209024,3270209279,NL -3270210560,3270211071,NL -3270211328,3270211583,NL 3270212352,3270212863,NL 3270213120,3270213631,NL 3270213888,3270214279,PT @@ -52761,24 +53636,21 @@ 3270216736,3270216751,IT 3270216800,3270216815,IT 3270216832,3270216879,IT -3270217472,3270219775,CH -3270222336,3270223871,IT +3270217472,3270217727,CH +3270218496,3270218751,CH 3270224640,3270224895,CH -3270225408,3270225663,CH -3270230016,3270230783,LU +3270230272,3270230783,LU 3270231296,3270231647,LU -3270231808,3270232831,LU +3270232576,3270232831,LU 3270234112,3270234367,LU -3270234368,3270238719,NL -3270238976,3270239999,CH -3270240000,3270240255,NL -3270240768,3270241023,NL -3270241280,3270241535,NL -3270241536,3270242559,RO -3270242816,3270243071,AT +3270234368,3270234623,NL +3270235136,3270236159,NL +3270238208,3270238719,NL +3270238976,3270239487,CH +3270241792,3270242559,RO 3270243328,3270243839,RO -3270243840,3270244351,NL -3270244352,3270245887,CH +3270244096,3270244351,NL +3270244352,3270244863,CH 3270245888,3270246143,RO 3270246144,3270246399,CH 3270246400,3270247951,SE @@ -52851,7 +53723,6 @@ 3270929408,3270929919,GB 3270929920,3270930431,BG 3270930432,3270930943,RU -3270930944,3270931455,NL 3270931456,3270931967,UA 3270931968,3270932479,CH 3270932480,3270932991,UA @@ -52879,7 +53750,9 @@ 3271020272,3271020279,RS 3271020280,3271020511,CS 3271020512,3271020543,CS -3271020544,3271020695,CS +3271020544,3271020671,CS +3271020672,3271020687,RS +3271020688,3271020695,CS 3271020696,3271020703,CS 3271020704,3271020751,CS 3271020752,3271020767,RS @@ -53194,7 +54067,9 @@ 3272065504,3272065535,GB 3272065536,3272065551,NL 3272065552,3272065559,GB -3272065560,3272065599,NL +3272065560,3272065575,NL +3272065576,3272065583,GB +3272065584,3272065599,NL 3272065600,3272065615,GB 3272065616,3272065663,NL 3272065664,3272065791,GB @@ -53216,8 +54091,8 @@ 3272067776,3272067807,GB 3272067808,3272067839,NL 3272067840,3272067871,GB -3272067872,3272067895,NL -3272067896,3272067927,GB +3272067872,3272067887,NL +3272067888,3272067927,GB 3272067928,3272067967,NL 3272067968,3272068095,GB 3272068096,3272068351,NL @@ -53292,7 +54167,7 @@ 3272089480,3272089535,PT 3272089536,3272089551,ST 3272089552,3272089599,PT -3272089600,3272091647,RU +3272090112,3272091647,RU 3272091648,3272092671,UA 3272092672,3272093183,RU 3272093184,3272094207,RO @@ -53543,7 +54418,7 @@ 3272402032,3272402039,GB 3272402040,3272402047,US 3272402176,3272402191,GB -3272402208,3272402303,GB +3272402240,3272402303,GB 3272402560,3272402623,GB 3272402816,3272402943,GB 3272403072,3272403199,FR @@ -53789,8 +54664,7 @@ 3273052080,3273052087,CU 3273052088,3273052095,GR 3273052096,3273052111,FR -3273052112,3273052127,GB -3273052128,3273052415,IT +3273052112,3273052415,IT 3273052416,3273052671,GB 3273052672,3273052927,FR 3273052928,3273053183,DE @@ -53892,6 +54766,7 @@ 3273332544,3273332575,DE 3273332608,3273332671,DE 3273333056,3273333119,DE +3273334272,3273334783,DE 3273335040,3273335295,DE 3273335296,3273335807,GB 3273335936,3273335999,DE @@ -53906,9 +54781,7 @@ 3273339920,3273339943,DE 3273339944,3273339955,GB 3273339956,3273339959,DE -3273339960,3273340023,GB -3273340024,3273340031,DE -3273340032,3273340095,GB +3273339960,3273340095,GB 3273340096,3273340111,GI 3273340112,3273340415,GB 3273340928,3273341695,FR @@ -54199,7 +55072,7 @@ 3274338816,3274339327,DE 3274339328,3274339839,RO 3274339840,3274340351,RU -3274340352,3274340863,ES +3274340352,3274340863,IE 3274340864,3274341375,RU 3274341376,3274341887,FR 3274341888,3274342399,UA @@ -54646,7 +55519,8 @@ 3275423744,3275423751,GB 3275423776,3275423807,GB 3275424000,3275424255,GB -3275425792,3275426303,GB +3275425792,3275426367,GB +3275426432,3275426559,GB 3275427840,3275428367,GB 3275429888,3275430143,GB 3275430272,3275430399,GB @@ -54661,16 +55535,17 @@ 3275446848,3275446911,GB 3275448320,3275449519,GB 3275449520,3275449527,FR -3275449536,3275449887,GB +3275449528,3275449927,GB 3275450368,3275450879,GB 3275451232,3275451263,GB 3275452416,3275452943,GB 3275452960,3275453023,GB -3275454464,3275454975,GB +3275453056,3275453119,GB +3275454464,3275455231,GB 3275456512,3275457023,GB 3275457024,3275457791,FK 3275457792,3275458559,GB -3275458560,3275459327,IE +3275458560,3275459583,IE 3275460608,3275460863,HK 3275460864,3275462655,GB 3275464704,3275468655,GB @@ -54758,7 +55633,6 @@ 3275551744,3275552767,RU 3275552768,3275553791,LV 3275553792,3275554815,FI -3275554816,3275555071,ES 3275555392,3275555455,ES 3275555592,3275555647,ES 3275555744,3275555759,ES @@ -54778,13 +55652,15 @@ 3275567616,3275568127,CH 3275568384,3275569407,CH 3275569920,3275570687,CH -3275571200,3275572223,PT +3275571200,3275571455,PT +3275571968,3275572095,PT 3275572768,3275572863,PT 3275572992,3275573055,PT 3275573120,3275574015,PT 3275574032,3275574047,PT 3275574144,3275574147,PT -3275574152,3275574191,PT +3275574152,3275574159,PT +3275574176,3275574191,PT 3275574784,3275575231,PT 3275575424,3275575727,PT 3275575808,3275575935,PT @@ -54797,28 +55673,28 @@ 3275578880,3275579007,PT 3275579136,3275579391,PT 3275579392,3275579519,FR -3275579520,3275579615,NL +3275579520,3275579583,NL +3275579600,3275579615,NL 3275579648,3275579703,NL -3275579904,3275581311,NL +3275579904,3275580159,NL +3275580928,3275581311,NL 3275581536,3275581671,NL -3275581680,3275582207,NL +3275581680,3275581695,NL 3275582224,3275582247,NL 3275582256,3275582287,NL -3275582464,3275582591,NL 3275582656,3275582719,NL 3275582976,3275583231,NL -3275583744,3275584127,NL 3275584256,3275584287,NL 3275584512,3275584527,NL 3275585024,3275585279,NL -3275585536,3275586047,NL 3275587072,3275587136,NL 3275587584,3275587855,BE 3275588096,3275588287,BE 3275588288,3275588319,NL -3275588352,3275588711,BE +3275588352,3275588607,BE +3275588640,3275588655,BE 3275588712,3275588719,CH -3275588720,3275588799,BE +3275588736,3275588799,BE 3275588848,3275588855,BE 3275588864,3275589119,IT 3275589272,3275589279,BE @@ -54832,12 +55708,13 @@ 3275593984,3275595007,RO 3275595008,3275595039,BE 3275595264,3275595519,US -3275595776,3275603967,AT +3275596168,3275596175,AT +3275599104,3275599231,AT +3275599872,3275600127,AT 3275603968,3275604735,IT 3275604736,3275604767,IL 3275604992,3275606271,IT 3275606528,3275606783,IT -3275607296,3275608319,IT 3275608832,3275610063,IT 3275610112,3275610623,IT 3275612160,3275612287,LU @@ -54855,7 +55732,6 @@ 3275626496,3275627007,UA 3275627008,3275627519,AT 3275627520,3275628031,GB -3275628032,3275628543,PL 3275628544,3275629567,RU 3275629568,3275630079,UA 3275630592,3275631103,PL @@ -54916,7 +55792,7 @@ 3275796480,3275796991,DE 3275796992,3275797503,RO 3275797504,3275798015,DE -3275798016,3275799039,RO +3275798016,3275798527,RO 3275799040,3275799551,ES 3275799552,3275800063,IT 3275800064,3275800575,UA @@ -55058,7 +55934,9 @@ 3275948032,3275965267,SE 3275965268,3275965271,FI 3275965272,3276013567,SE -3276013568,3276014151,FR +3276013568,3276014087,FR +3276014088,3276014095,GB +3276014096,3276014151,FR 3276014152,3276014159,GB 3276014160,3276014191,FR 3276014192,3276014207,GB @@ -55209,9 +56087,7 @@ 3276021248,3276021535,FR 3276021536,3276021543,GB 3276021544,3276021575,FR -3276021576,3276021591,GB -3276021592,3276021599,FR -3276021600,3276021615,GB +3276021576,3276021615,GB 3276021616,3276021655,FR 3276021656,3276021663,GB 3276021664,3276021727,FR @@ -55230,15 +56106,15 @@ 3276022128,3276022143,GB 3276022144,3276022247,FR 3276022248,3276022271,GB -3276022272,3276022415,FR -3276022416,3276022431,GB -3276022432,3276022479,FR +3276022272,3276022479,FR 3276022480,3276022495,GB 3276022496,3276022519,FR 3276022520,3276022527,GB 3276022528,3276022567,FR 3276022568,3276022639,GB -3276022640,3276022751,FR +3276022640,3276022655,FR +3276022656,3276022687,GB +3276022688,3276022751,FR 3276022752,3276022783,GB 3276022784,3276022983,FR 3276022984,3276022991,GB @@ -55260,17 +56136,17 @@ 3276023488,3276023519,GB 3276023520,3276023679,FR 3276023680,3276023711,GB -3276023712,3276023855,FR +3276023712,3276023759,FR +3276023760,3276023767,GB +3276023768,3276023855,FR 3276023856,3276023887,GB 3276023888,3276023895,FR 3276023896,3276023919,GB 3276023920,3276023943,FR 3276023944,3276023951,GB 3276023952,3276023959,FR -3276023960,3276024063,GB -3276024064,3276024239,FR -3276024240,3276024271,GB -3276024272,3276025103,FR +3276023960,3276023967,GB +3276023968,3276025103,FR 3276025104,3276025135,GB 3276025136,3276025151,FR 3276025152,3276025159,GB @@ -55286,7 +56162,9 @@ 3276026112,3276026127,GB 3276026128,3276026167,FR 3276026168,3276026175,GB -3276026176,3276026335,FR +3276026176,3276026215,FR +3276026216,3276026223,GB +3276026224,3276026335,FR 3276026336,3276026351,GB 3276026352,3276026399,FR 3276026400,3276026415,GB @@ -55297,9 +56175,7 @@ 3276026448,3276026527,FR 3276026528,3276026535,GB 3276026536,3276026543,FR -3276026544,3276026551,GB -3276026552,3276026559,FR -3276026560,3276026575,GB +3276026544,3276026575,GB 3276026576,3276026703,FR 3276026704,3276026719,GB 3276026720,3276026727,FR @@ -55339,9 +56215,7 @@ 3276028256,3276028263,FR 3276028264,3276028287,GB 3276028288,3276028415,FR -3276028416,3276028479,GB -3276028480,3276028511,FR -3276028512,3276028671,GB +3276028416,3276028671,GB 3276028672,3276028743,FR 3276028744,3276028751,GB 3276028752,3276028759,FR @@ -55352,7 +56226,9 @@ 3276028808,3276028815,GB 3276028816,3276028863,FR 3276028864,3276028871,GB -3276028872,3276028895,FR +3276028872,3276028879,FR +3276028880,3276028887,GB +3276028888,3276028895,FR 3276028896,3276028927,GB 3276028928,3276029183,FR 3276029184,3276029199,GB @@ -55366,8 +56242,8 @@ 3276029424,3276029439,GB 3276029440,3276029567,FR 3276029568,3276029599,GB -3276029600,3276029759,FR -3276029760,3276029791,GB +3276029600,3276029727,FR +3276029728,3276029791,GB 3276029792,3276029871,FR 3276029872,3276029887,GB 3276029888,3276029935,FR @@ -55377,9 +56253,7 @@ 3276030096,3276030191,FR 3276030192,3276030207,GB 3276030208,3276030215,FR -3276030216,3276030223,GB -3276030224,3276030239,FR -3276030240,3276030247,GB +3276030216,3276030247,GB 3276030248,3276030255,FR 3276030256,3276030263,GB 3276030264,3276030271,FR @@ -55437,7 +56311,9 @@ 3276033696,3276033727,FR 3276033728,3276033759,GB 3276033760,3276033791,FR -3276033792,3276033895,GB +3276033792,3276033855,GB +3276033856,3276033863,FR +3276033864,3276033895,GB 3276033896,3276033911,FR 3276033912,3276033919,GB 3276033920,3276033927,FR @@ -55447,8 +56323,8 @@ 3276034016,3276035839,FR 3276035840,3276036079,GB 3276036080,3276036095,FR -3276036096,3276036151,GB -3276036152,3276036191,FR +3276036096,3276036143,GB +3276036144,3276036191,FR 3276036192,3276036207,GB 3276036208,3276036223,FR 3276036224,3276036255,GB @@ -55497,7 +56373,9 @@ 3276039248,3276039279,FR 3276039280,3276039311,GB 3276039312,3276039327,FR -3276039328,3276039423,GB +3276039328,3276039359,GB +3276039360,3276039391,FR +3276039392,3276039423,GB 3276039424,3276039551,FR 3276039552,3276039583,GB 3276039584,3276039647,FR @@ -55507,8 +56385,8 @@ 3276039952,3276039967,FR 3276039968,3276040031,GB 3276040032,3276040063,FR -3276040064,3276040111,GB -3276040112,3276040159,FR +3276040064,3276040095,GB +3276040096,3276040159,FR 3276040160,3276040175,GB 3276040176,3276040207,FR 3276040208,3276040215,GB @@ -55516,16 +56394,16 @@ 3276040232,3276040319,GB 3276040320,3276040351,FR 3276040352,3276040367,GB -3276040368,3276040447,FR -3276040448,3276040463,GB +3276040368,3276040439,FR +3276040440,3276040463,GB 3276040464,3276040479,FR 3276040480,3276040495,GB 3276040496,3276040591,FR 3276040592,3276040607,GB 3276040608,3276040639,FR 3276040640,3276040687,GB -3276040688,3276040703,FR -3276040704,3276040735,GB +3276040688,3276040719,FR +3276040720,3276040735,GB 3276040736,3276040927,FR 3276040928,3276040959,GB 3276040960,3276040991,FR @@ -55556,7 +56434,9 @@ 3276041968,3276041983,GB 3276041984,3276041999,FR 3276042000,3276042007,GB -3276042008,3276042111,FR +3276042008,3276042015,FR +3276042016,3276042031,GB +3276042032,3276042111,FR 3276042112,3276042143,GB 3276042144,3276042175,FR 3276042176,3276042239,GB @@ -55570,12 +56450,16 @@ 3276044304,3276044359,GB 3276044360,3276044447,FR 3276044448,3276044463,GB -3276044464,3276044511,FR +3276044464,3276044479,FR +3276044480,3276044495,GB +3276044496,3276044511,FR 3276044512,3276044543,GB 3276044544,3276044607,FR 3276044608,3276044639,GB 3276044640,3276044671,FR -3276044672,3276044735,GB +3276044672,3276044703,GB +3276044704,3276044719,FR +3276044720,3276044735,GB 3276044736,3276044815,FR 3276044816,3276044839,GB 3276044840,3276044863,FR @@ -55775,7 +56659,9 @@ 3276346912,3276346919,DE 3276346920,3276347111,NL 3276347112,3276347119,DE -3276347120,3276347991,NL +3276347120,3276347959,NL +3276347960,3276347967,DE +3276347968,3276347991,NL 3276347992,3276347999,DE 3276348000,3276348343,NL 3276348344,3276348351,DE @@ -55909,9 +56795,7 @@ 3276373120,3276373127,DE 3276373128,3276373447,NL 3276373448,3276373455,DE -3276373456,3276373607,NL -3276373608,3276373615,DE -3276373616,3276373911,NL +3276373456,3276373911,NL 3276373912,3276373919,DE 3276373920,3276374143,NL 3276374144,3276374151,DE @@ -56288,7 +57172,7 @@ 3276428032,3276428287,GB 3276428288,3276428543,RU 3276428544,3276428799,BG -3276428800,3276429311,DE +3276428800,3276429055,DE 3276429312,3276430079,RU 3276430080,3276430591,PL 3276430592,3276430847,GB @@ -56312,7 +57196,7 @@ 3276475040,3276475063,IT 3276475072,3276475135,IT 3276475904,3276475951,IT -3276475968,3276476055,IT +3276475984,3276476055,IT 3276476064,3276476071,IT 3276476080,3276476095,IT 3276476112,3276476119,GB @@ -56324,8 +57208,7 @@ 3276478304,3276478311,CH 3276478320,3276478335,CH 3276478464,3276478855,FR -3276478864,3276478943,FR -3276478960,3276479127,FR +3276478864,3276479127,FR 3276479136,3276479167,FR 3276479200,3276479215,FR 3276479224,3276479343,FR @@ -56357,10 +57240,10 @@ 3276491264,3276491327,CZ 3276491392,3276491775,CZ 3276491776,3276491847,GB -3276491856,3276491903,GB -3276491968,3276492055,GB +3276491856,3276492055,GB 3276492064,3276492127,GB -3276492288,3276492479,GB +3276492288,3276492431,GB +3276492440,3276492479,GB 3276492488,3276493183,GB 3276493248,3276494383,GB 3276494416,3276494559,GB @@ -56368,16 +57251,14 @@ 3276495776,3276495823,GB 3276495832,3276496639,GB 3276496896,3276497151,DE -3276497216,3276497271,DE -3276497280,3276497295,DE +3276497216,3276497295,DE 3276497304,3276497311,DE 3276497344,3276497375,DE -3276497408,3276497567,DE -3276497584,3276497599,DE +3276497408,3276497599,DE 3276497616,3276497919,DE 3276497920,3276498047,GB 3276498304,3276498319,GB -3276498328,3276498415,GB +3276498328,3276498431,GB 3276498432,3276499199,DE 3276499456,3276499503,DE 3276499520,3276499615,DE @@ -56408,8 +57289,7 @@ 3276508160,3276508327,GB 3276508352,3276508415,FR 3276508416,3276508671,GB -3276508680,3276508879,GB -3276508896,3276509183,GB +3276508680,3276509183,GB 3276509184,3276510207,IT 3276510720,3276510735,IT 3276510784,3276510815,IT @@ -56419,7 +57299,7 @@ 3276511872,3276511919,ZA 3276511928,3276511951,ZA 3276511968,3276512191,ZA -3276512200,3276512215,ZA +3276512200,3276512207,ZA 3276512256,3276513023,ZA 3276513536,3276513567,CH 3276514336,3276514367,CH @@ -56433,7 +57313,7 @@ 3276517904,3276517951,NL 3276518016,3276518023,NL 3276518056,3276518063,NL -3276518088,3276518111,NL +3276518096,3276518111,NL 3276518128,3276518175,NL 3276518184,3276518271,NL 3276518304,3276518335,NL @@ -56479,7 +57359,6 @@ 3276528128,3276528223,BE 3276528224,3276528239,GB 3276528240,3276528247,BE -3276528248,3276528255,GB 3276528256,3276528351,BE 3276528368,3276528399,BE 3276528448,3276528503,BE @@ -56491,7 +57370,8 @@ 3276528816,3276528831,FR 3276528832,3276528895,BE 3276528896,3276528903,IE -3276528912,3276528943,IE +3276528912,3276528927,IE +3276528936,3276528943,IE 3276528960,3276529151,IE 3276529152,3276529167,TR 3276529184,3276529279,TR @@ -56522,11 +57402,10 @@ 3276534784,3276534879,NL 3276534888,3276534895,NL 3276534928,3276534975,NL -3276535016,3276535039,GB 3276535040,3276535063,RU 3276535064,3276535071,LV 3276535072,3276535103,RU -3276535296,3276535327,FI +3276535296,3276535319,FI 3276535336,3276535359,FI 3276535376,3276535423,FI 3276535552,3276535807,PK @@ -56950,9 +57829,13 @@ 3276869888,3276870143,NL 3276870144,3276871679,IT 3276871680,3276871935,DE -3276871936,3276873727,GB +3276871936,3276872447,GB +3276872448,3276872463,DE +3276872464,3276873727,GB 3276873728,3276873735,ES -3276873736,3276875263,GB +3276873736,3276873791,GB +3276873792,3276873983,ES +3276873984,3276875263,GB 3276875264,3276875775,NL 3276875776,3276876799,GB 3276876800,3276876823,AT @@ -56970,46 +57853,57 @@ 3276878336,3276879871,GB 3276879872,3276880639,DK 3276880640,3276883967,GB -3276883968,3276884223,PL -3276884224,3276886015,GB +3276883968,3276884231,PL +3276884232,3276886015,GB 3276886016,3276886271,RO -3276886272,3276890111,GB +3276886272,3276888575,GB +3276888576,3276888831,AT +3276888832,3276889087,GB +3276889088,3276890111,AT 3276890112,3276890135,US 3276890136,3276890143,GB 3276890144,3276890175,US 3276890176,3276890367,GB 3276890368,3276890623,US -3276890624,3276895999,GB +3276890624,3276891903,GB +3276891904,3276892159,US +3276892160,3276895999,GB 3276896000,3276896255,CZ 3276896256,3276896831,BE 3276896832,3276896847,SE 3276896848,3276897023,GB 3276897024,3276897279,BE 3276897280,3276898303,GB -3276898304,3276898559,CH -3276898560,3276898815,GB -3276898816,3276899839,CH -3276899840,3276902399,GB +3276898304,3276898671,CH +3276898672,3276898815,GB +3276898816,3276899847,CH +3276899848,3276902399,GB 3276902400,3276902559,SE 3276902560,3276902655,GB -3276902656,3276903167,SE -3276903168,3276906495,GB +3276902656,3276903295,SE +3276903296,3276906495,GB 3276906496,3276906511,NL 3276906512,3276906519,GB -3276906520,3276906839,NL -3276906840,3276907007,GB +3276906520,3276906847,NL +3276906848,3276907007,GB 3276907008,3276907263,NL 3276907264,3276910591,GB -3276910592,3276913351,IT -3276913352,3276913359,GB -3276913360,3276913919,IT +3276910592,3276910847,IT +3276910848,3276910879,GB +3276910880,3276911103,IT +3276911104,3276911359,GB +3276911360,3276913919,IT 3276913920,3276913983,US 3276913984,3276914687,IT -3276914688,3276916047,ES -3276916048,3276916055,GB -3276916056,3276916175,ES +3276914688,3276914943,ES +3276914944,3276915199,GB +3276915200,3276915455,ES +3276915456,3276915487,GB +3276915488,3276916175,ES 3276916176,3276916183,GB -3276916184,3276917183,ES +3276916184,3276916479,ES +3276916480,3276916735,GB +3276916736,3276917183,ES 3276917184,3276917215,SE 3276917216,3276917231,ES 3276917232,3276917247,GB @@ -57019,7 +57913,9 @@ 3276917344,3276917503,GB 3276917504,3276917759,ES 3276917760,3276918783,GB -3276918784,3276919551,DE +3276918784,3276919471,DE +3276919472,3276919479,GB +3276919480,3276919551,DE 3276919552,3276919807,GB 3276919808,3276920543,DE 3276920544,3276920575,GB @@ -57183,7 +58079,7 @@ 3277361152,3277361663,UA 3277361664,3277362175,RU 3277362176,3277362687,ES -3277362688,3277363199,GB +3277362688,3277363199,AR 3277363200,3277363711,ES 3277363712,3277364223,RU 3277364224,3277364735,GB @@ -57194,7 +58090,40 @@ 3277366784,3277367295,AT 3277367296,3277367807,PL 3277367808,3277368319,RU -3277368320,3277368831,RO +3277368320,3277369343,RO +3277369344,3277369855,CY +3277369856,3277370367,RU +3277370368,3277370879,SE +3277370880,3277371391,RO +3277371392,3277371903,RU +3277371904,3277372415,PL +3277372416,3277373951,RU +3277373952,3277374463,FR +3277374464,3277375999,RU +3277376000,3277376511,NL +3277376512,3277377023,RO +3277377024,3277378559,RU +3277378560,3277379071,HR +3277379072,3277379583,UZ +3277379584,3277380095,RS +3277380096,3277380607,RO +3277380608,3277381119,RU +3277381120,3277381631,KW +3277381632,3277382143,RU +3277382144,3277382655,UA +3277382656,3277383167,GB +3277383168,3277383679,UA +3277383680,3277384191,PL +3277384192,3277384703,IL +3277384704,3277385215,GB +3277385216,3277385727,AT +3277385728,3277386239,RU +3277386240,3277386751,UA +3277386752,3277387263,SA +3277387264,3277388287,RU +3277388288,3277388799,GB +3277388800,3277389311,RU +3277389312,3277389823,AM 3277389824,3277395951,GB 3277395952,3277395967,IE 3277395968,3277452647,GB @@ -57344,7 +58273,6 @@ 3277823488,3277823743,SI 3277823744,3277823999,UA 3277824000,3277824255,TR -3277824256,3277824511,AT 3277824512,3277824767,UA 3277824768,3277825023,AT 3277825024,3277825279,PL @@ -57436,8 +58364,8 @@ 3278115072,3278115327,SE 3278115328,3278116607,ES 3278116608,3278116735,SE -3278116736,3278116863,ES -3278116864,3278118143,SE +3278116736,3278117119,ES +3278117120,3278118143,SE 3278118144,3278118175,ES 3278118176,3278119423,SE 3278119424,3278119935,NL @@ -60388,7 +61316,6 @@ 3280654848,3280655103,RU 3280655104,3280655359,PL 3280655360,3280655615,SE -3280655616,3280655871,RU 3280655872,3280656127,RO 3280656128,3280656639,CH 3280656640,3280657407,UA @@ -60451,6 +61378,7 @@ 3280997120,3280997375,FR 3280997376,3280997631,BE 3280997632,3280997887,SE +3280997888,3280998143,UA 3280998144,3280998399,DE 3280998400,3280998655,GR 3280998656,3280999423,GB @@ -60459,7 +61387,6 @@ 3280999936,3281000447,DE 3281000448,3281000703,FR 3281000704,3281000959,UA -3281000960,3281001215,RU 3281001216,3281001471,RO 3281001472,3281001727,UA 3281001728,3281001983,RU @@ -60629,7 +61556,7 @@ 3281999104,3282042879,NO 3282042880,3282083839,CH 3282083840,3282084351,DE -3282084352,3282085375,RO +3282084352,3282084863,RO 3282085376,3282085887,BE 3282085888,3282086399,DE 3282086400,3282086911,LV @@ -60695,7 +61622,9 @@ 3282284600,3282284603,FR 3282284604,3282284687,SE 3282284688,3282284703,FI -3282284704,3282286975,SE +3282284704,3282284735,SE +3282284736,3282284783,FI +3282284784,3282286975,SE 3282286976,3282287007,FI 3282287008,3282287615,SE 3282287616,3282287759,FI @@ -60754,7 +61683,6 @@ 3282739200,3282739455,CH 3282739456,3282739711,RO 3282739712,3282739967,FR -3282739968,3282740223,UA 3282740224,3282740479,FR 3282740480,3282740735,AT 3282740736,3282740991,BG @@ -60827,7 +61755,7 @@ 3283213824,3283214335,UA 3283214336,3283214847,RO 3283214848,3283215359,RU -3283215360,3283215871,SE +3283215360,3283215871,AT 3283215872,3283216383,TR 3283216384,3283216895,DE 3283216896,3283217407,CH @@ -60848,7 +61776,8 @@ 3283233480,3283233483,RS 3283233484,3283234815,CS 3283234816,3283235071,CS -3283235072,3283235223,CS +3283235072,3283235199,RS +3283235200,3283235223,CS 3283235224,3283235227,RS 3283235228,3283235275,CS 3283235276,3283235279,RS @@ -60856,7 +61785,9 @@ 3283235304,3283235311,RS 3283235312,3283235319,CS 3283235320,3283235327,RS -3283235328,3283235647,CS +3283235328,3283235519,CS +3283235520,3283235535,RS +3283235536,3283235647,CS 3283235648,3283235655,RS 3283235656,3283235871,CS 3283235872,3283235875,RS @@ -60881,7 +61812,8 @@ 3283237284,3283237349,CS 3283237350,3283237351,RS 3283237352,3283237631,CS -3283237632,3283238335,CS +3283237632,3283237887,RS +3283237888,3283238335,CS 3283238336,3283238399,CS 3283238400,3283238463,RS 3283238464,3283238479,CS @@ -60935,9 +61867,8 @@ 3283486464,3283486719,UA 3283486720,3283486975,RU 3283486976,3283487231,PL -3283487232,3283487487,RU 3283487488,3283487743,DE -3283487744,3283488255,CH +3283487744,3283487999,CH 3283488256,3283488511,PL 3283488512,3283488767,RU 3283488768,3283489279,FR @@ -61204,8 +62135,7 @@ 3283587896,3283587903,CH 3283587904,3283587967,IE 3283587968,3283588095,DE -3283588096,3283588119,BE -3283588128,3283588191,BE +3283588096,3283588191,BE 3283588224,3283588479,BE 3283588480,3283588543,AT 3283588544,3283588607,GB @@ -61476,7 +62406,6 @@ 3283987456,3283987967,GB 3283987968,3283988991,RO 3283988992,3283989503,FR -3283989504,3283990015,IE 3283990016,3283990527,SE 3283990528,3283991551,RO 3283991552,3283992063,SE @@ -61557,6 +62486,7 @@ 3284045568,3284045823,AT 3284045824,3284046079,UA 3284046080,3284046335,DE +3284046336,3284046591,NL 3284046592,3284046847,SE 3284046848,3284047103,DE 3284047104,3284047359,DK @@ -61704,11 +62634,13 @@ 3285453568,3285454047,GB 3285454080,3285454175,GB 3285454208,3285454847,GB -3285454848,3285455687,DE -3285455712,3285455887,DE +3285454848,3285455695,DE +3285455712,3285455743,DE +3285455872,3285455887,DE 3285455888,3285455903,GB 3285455904,3285456255,DE -3285456288,3285456351,DE +3285456288,3285456335,DE +3285456344,3285456351,DE 3285456384,3285456639,DE 3285456640,3285456703,DK 3285456704,3285456711,DE @@ -61725,8 +62657,7 @@ 3285457408,3285457663,GB 3285457664,3285457759,IT 3285457792,3285457919,IT -3285457920,3285458103,GB -3285458112,3285458943,GB +3285457920,3285458943,GB 3285458944,3285459071,DK 3285459104,3285459327,DK 3285459392,3285459535,DK @@ -61743,7 +62674,8 @@ 3285461312,3285461375,CH 3285461376,3285461447,NL 3285461448,3285461455,DE -3285461456,3285461535,NL +3285461456,3285461503,NL +3285461520,3285461535,NL 3285461568,3285461807,NL 3285461856,3285461877,NL 3285461880,3285461991,NL @@ -61763,13 +62695,14 @@ 3285463008,3285463039,AT 3285463040,3285463071,LU 3285463080,3285463087,LU +3285463104,3285463135,LU 3285463296,3285463311,FR 3285463320,3285463327,FR 3285463360,3285463455,BE -3285463488,3285463519,GB 3285463520,3285463615,BE -3285463616,3285463631,FR -3285463672,3285463839,BE +3285463616,3285463647,FR +3285463672,3285463759,BE +3285463776,3285463839,BE 3285463856,3285463935,BE 3285463944,3285463991,BE 3285464016,3285464063,BE @@ -61801,11 +62734,10 @@ 3285468576,3285468591,DE 3285468600,3285468615,DE 3285468616,3285468623,GB -3285468640,3285468647,DE 3285468656,3285471007,DE 3285471040,3285471055,DE 3285471104,3285471743,DE -3285471808,3285471887,DE +3285471808,3285471871,DE 3285471936,3285471951,DE 3285472000,3285472127,DE 3285472160,3285472175,DE @@ -61825,12 +62757,12 @@ 3285474240,3285474271,DE 3285474304,3285474319,DE 3285474336,3285474559,DE -3285474816,3285475127,DE +3285475072,3285475127,DE 3285475144,3285475207,DE 3285475232,3285475327,DE 3285475624,3285475647,AT 3285475680,3285475711,AT -3285475776,3285475791,AT +3285475776,3285475783,AT 3285475808,3285475839,AT 3285475904,3285475951,AT 3285475968,3285476095,AT @@ -61840,7 +62772,7 @@ 3285477024,3285477087,AT 3285477152,3285477247,IT 3285477256,3285477263,IT -3285477280,3285477327,IT +3285477280,3285477319,IT 3285477336,3285477343,IT 3285477344,3285477359,FR 3285477360,3285477375,IT @@ -61865,6 +62797,7 @@ 3285482496,3285482527,CH 3285482752,3285482783,CH 3285483008,3285483519,CH +3285484544,3285485055,IE 3285485104,3285485119,SK 3285485640,3285485647,SK 3285485728,3285485743,SK @@ -61908,8 +62841,7 @@ 3285496608,3285496671,DE 3285496704,3285496783,DE 3285496800,3285496815,DE -3285496832,3285497087,DE -3285497344,3285497855,DE +3285496832,3285497855,DE 3285497888,3285498031,DE 3285498096,3285498111,DE 3285498112,3285498367,IT @@ -61951,7 +62883,8 @@ 3285507656,3285507711,CZ 3285507840,3285508095,CZ 3285508096,3285508607,DE -3285508608,3285508671,RU +3285508608,3285508623,RU +3285508632,3285508671,RU 3285508736,3285508863,RU 3285508872,3285508927,PT 3285509120,3285509247,SE @@ -62058,7 +62991,9 @@ 3285527432,3285527439,FR 3285527440,3285527455,LU 3285527456,3285527487,IL -3285527488,3285527551,BE +3285527488,3285527495,BE +3285527496,3285527503,DE +3285527504,3285527551,BE 3285527552,3285527615,IL 3285527616,3285527679,GB 3285527680,3285527807,BE @@ -62810,12 +63745,14 @@ 3285910272,3285910303,ES 3285910304,3285910335,GB 3285910336,3285910407,DE -3285910408,3285910463,GB +3285910408,3285910415,GB 3285910464,3285910527,ES 3285910528,3285911551,GB 3285912576,3285913087,GB 3285913088,3285913215,ES 3285913344,3285913599,GB +3285915648,3285915903,GB +3285915904,3285916159,AT 3285916160,3285916415,FR 3285916416,3285916671,YE 3285916672,3285916703,BH @@ -62831,6 +63768,7 @@ 3285919232,3285919487,GB 3285919488,3285919743,UA 3285919744,3285921791,QA +3285921792,3285921823,CZ 3285921856,3285921919,DE 3285921920,3285921983,GB 3285921984,3285922047,FR @@ -62840,9 +63778,13 @@ 3285922184,3285922191,RU 3285922192,3285922207,DE 3285922208,3285922239,ES +3285922240,3285922287,RU 3285922288,3285922303,IR +3285922304,3285922559,FR +3285922560,3285922815,GB 3285922816,3285923327,KW 3285923328,3285924415,ES +3285924416,3285924431,DE 3285924432,3285924479,GB 3285924480,3285924863,ES 3285925056,3285925119,FR @@ -62850,9 +63792,9 @@ 3285926144,3285926399,YE 3285926400,3285926407,DE 3285926408,3285926431,ES -3285926432,3285926463,GB 3285926496,3285926527,ES 3285926848,3285926911,GB +3285926912,3285927423,DE 3285927424,3285927679,GB 3285927680,3285927935,IR 3285928064,3285928191,ES @@ -62867,8 +63809,10 @@ 3285930560,3285930575,ES 3285930576,3285930623,GB 3285930624,3285930631,DE +3285930632,3285930639,GB 3285930672,3285930687,DE 3285930752,3285931007,GB +3285932032,3285932287,NL 3285932544,3285932799,GB 3285932800,3285933055,ES 3285933056,3285933311,DE @@ -62947,7 +63891,7 @@ 3285960192,3285960447,FR 3285960448,3285960703,GB 3285962752,3285963775,DE -3285963776,3285964031,GB +3285963776,3285964287,GB 3285964288,3285964351,KE 3285964544,3285964799,FR 3285966848,3285967103,FR @@ -63010,7 +63954,6 @@ 3286317056,3286317567,RU 3286317568,3286318079,PL 3286318080,3286318591,CH -3286318592,3286319103,NG 3286319104,3286320127,RO 3286320128,3286321151,PL 3286321152,3286322175,CZ @@ -63067,12 +64010,10 @@ 3286433792,3286499327,DE 3286499328,3286564863,HU 3286564864,3286566143,AE -3286566144,3286566399,TZ -3286566400,3286566655,AE +3286566144,3286566271,TZ +3286566272,3286566655,AE 3286566656,3286567423,KW -3286567424,3286567679,AE -3286567680,3286567935,TZ -3286567936,3286568191,AE +3286567424,3286568191,AE 3286568192,3286568703,KW 3286568704,3286571007,AE 3286571008,3286571775,KW @@ -63302,6 +64243,12 @@ 3287177216,3287178239,RO 3287178240,3287178751,UA 3287178752,3287179263,RO +3287179264,3287180287,FR +3287180288,3287181311,RU +3287181312,3287182335,UZ +3287182336,3287185407,UA +3287185408,3287186431,SE +3287186432,3287187455,FI 3287187456,3287196671,DE 3287196672,3287198719,PL 3287198720,3287199743,GB @@ -63362,6 +64309,7 @@ 3287436288,3287436799,RS 3287436800,3287437311,RO 3287437312,3287437823,UA +3287437824,3287438335,RU 3287438336,3287438847,CH 3287438848,3287439359,GB 3287439360,3287439871,RO @@ -63450,9 +64398,7 @@ 3287507984,3287507991,FR 3287507992,3287515375,DE 3287515376,3287515383,CZ -3287515384,3287522399,DE -3287522400,3287522431,GR -3287522432,3287523303,DE +3287515384,3287523303,DE 3287523304,3287523311,US 3287523312,3287526303,DE 3287526304,3287526311,LU @@ -63509,7 +64455,6 @@ 3287639552,3287640063,RU 3287640064,3287640575,DE 3287640576,3287641087,SI -3287641088,3287641599,NG 3287641600,3287642111,FI 3287642112,3287642623,UA 3287642624,3287643135,BE @@ -63842,7 +64787,9 @@ 3288143616,3288143871,CH 3288143872,3288145663,DE 3288145664,3288146175,CH -3288146176,3288236031,DE +3288146176,3288150015,DE +3288150016,3288151551,NL +3288151552,3288236031,DE 3288236032,3288236543,LI 3288236544,3288237055,FR 3288237056,3288238591,RO @@ -63998,7 +64945,8 @@ 3323020800,3323021055,SG 3323021056,3323022591,US 3323022592,3323022847,GB -3323022848,3323025663,US +3323022848,3323024383,US +3323024640,3323025663,US 3323025920,3323027199,US 3323027712,3323030015,US 3323030016,3323030271,AU @@ -64233,7 +65181,8 @@ 3325976064,3325976319,CA 3325976320,3325980671,US 3325980672,3325980927,CA -3325980928,3325986815,US +3325980928,3325982719,US +3325983488,3325986815,US 3325987072,3325992447,US 3325992448,3325992959,CA 3325992960,3325993215,US @@ -64266,7 +65215,8 @@ 3326713344,3326714111,US 3326714112,3326716927,CA 3326716928,3326717951,US -3326717952,3326728703,CA +3326717952,3326726399,CA +3326726912,3326728703,CA 3326728960,3326729215,CA 3326729216,3326729471,JP 3326729472,3326729727,CA @@ -64314,7 +65264,8 @@ 3328237312,3328245759,CA 3328245760,3328249087,US 3328249856,3328253439,US -3328253952,3328265471,US +3328253952,3328259071,US +3328259584,3328265471,US 3328265728,3328271871,US 3328272128,3328297215,US 3328298240,3328298495,US @@ -64408,7 +65359,8 @@ 3330678784,3330697215,US 3330703360,3330714367,US 3330714368,3330714623,CA -3330714624,3330726655,US +3330714624,3330723839,US +3330724096,3330726655,US 3330726656,3330726911,CA 3330726912,3330735871,US 3330736128,3330743295,US @@ -64431,18 +65383,21 @@ 3330785792,3330791423,US 3330791424,3330791679,CA 3330791680,3330795775,US -3330796032,3330798847,US +3330796032,3330796543,US +3330796800,3330798847,US 3330799104,3330799871,US 3330800128,3330801407,US 3330801664,3330807807,US 3330809856,3330812415,US -3330818048,3330844159,US +3330818048,3330841599,US +3330841856,3330844159,US 3330844416,3330848767,US 3330849024,3330862591,US 3330862848,3330866943,US 3330867200,3330904575,US 3330904832,3330906623,US -3330906880,3330923263,US +3330906880,3330908415,US +3330908672,3330923263,US 3330923520,3330928127,US 3330928384,3330930175,US 3330930944,3330932479,US @@ -64507,7 +65462,8 @@ 3331932160,3331934719,US 3331948544,3331962879,US 3331964416,3331968767,US -3331969024,3331972863,US +3331969024,3331971839,US +3331972096,3331972863,US 3331973120,3331981055,US 3331981312,3331983103,US 3331983360,3331987967,US @@ -64527,7 +65483,8 @@ 3332440320,3332460543,CA 3332460544,3332460799,US 3332460800,3332462335,CA -3332462592,3332473855,CA +3332462592,3332463615,CA +3332463872,3332473855,CA 3332477952,3332482303,CA 3332484096,3332491263,CA 3332492032,3332500735,CA @@ -64587,7 +65544,8 @@ 3333521408,3333534975,US 3333535232,3333535743,US 3333536256,3333541631,US -3333541888,3333553919,US +3333541888,3333550335,US +3333550592,3333553919,US 3333554176,3333561343,US 3333562368,3333568511,US 3333570560,3333583359,US @@ -64621,7 +65579,7 @@ 3333816320,3333859839,US 3333859840,3333860095,BM 3333860096,3333870847,US -3333871104,3333881599,US +3333871104,3333881343,US 3333881856,3333927423,US 3333927936,3333933823,US 3333934080,3333937919,US @@ -64677,7 +65635,8 @@ 3335000064,3335003135,US 3335028736,3335032063,US 3335032320,3335033343,US -3335033600,3335043327,US +3335033600,3335033855,US +3335034112,3335043327,US 3335043584,3335048191,US 3335048448,3335057407,US 3335058176,3335163135,US @@ -64809,9 +65768,11 @@ 3339000832,3339028735,US 3339028992,3339031295,US 3339031552,3339042047,US -3339042304,3339045119,US +3339042304,3339043327,US +3339043584,3339045119,US 3339045376,3339050751,US -3339051008,3339058943,US +3339051008,3339055615,US +3339055872,3339058943,US 3339059200,3339063039,US 3339063296,3339076863,US 3339076864,3339077631,JP @@ -64852,7 +65813,8 @@ 3339672576,3339673599,US 3339714560,3339722495,US 3339722752,3339739135,US -3339780096,3339923455,US +3339780096,3339911167,US +3339913216,3339923455,US 3339923456,3339926015,CA 3339926528,3339927551,CA 3339976704,3340046079,US @@ -64956,7 +65918,7 @@ 3343482880,3343568127,US 3343568384,3343575807,US 3343576064,3343580927,US -3343581184,3343855359,US +3343581184,3343855615,US 3343859712,3343887359,US 3343887616,3343890687,US 3343890944,3343902463,US @@ -64994,7 +65956,9 @@ 3344466688,3344467455,US 3344468480,3344469247,US 3344469504,3344482047,US -3344482304,3344495871,US +3344482304,3344486399,US +3344486400,3344488447,NL +3344488448,3344495871,US 3344496640,3344497919,US 3344498176,3344498431,US 3344498688,3344511231,US @@ -65016,7 +65980,9 @@ 3345292288,3345295871,US 3345296384,3345297407,US 3345350656,3345362943,US -3345416192,3345422847,US +3345416192,3345418239,US +3345418240,3345419519,NL +3345419520,3345422847,US 3345423360,3345424383,TC 3345424384,3345430527,US 3345430528,3345432575,CA @@ -65104,20 +66070,25 @@ 3349610496,3349614591,US 3349676032,3349678591,US 3349679104,3349682431,US -3349684224,3349686527,US +3349683200,3349686527,US +3349687296,3349688319,US 3349741568,3349987327,US 3349987328,3349996543,BM 3349996544,3349997055,KY 3349997056,3350003711,BM 3350003712,3350134783,US 3350135040,3350145791,CA +3350146048,3350147071,US 3350151168,3350160639,CA 3350160896,3350175743,CA 3350176512,3350181887,CA +3350181888,3350182911,US 3350183168,3350200063,CA 3350200320,3350466303,US 3350466560,3350469119,US +3350469632,3350470655,CA 3350470656,3350475775,US +3350475776,3350476799,CA 3350476800,3350478847,US 3350528000,3350545151,US 3350545408,3350548735,US @@ -65133,7 +66104,7 @@ 3350728704,3350746367,US 3350746624,3350756607,US 3350757376,3350760959,US -3350766080,3350770943,US +3350766080,3350771967,US 3350772224,3350774271,US 3350774528,3350778623,US 3350778880,3350789887,US @@ -65148,13 +66119,11 @@ 3350855680,3350862079,US 3350862080,3350864639,CL 3350864640,3350925055,US -3350925312,3350928383,US -3350929408,3350950399,US -3350951936,3350953983,US +3350925312,3350950399,US +3350950912,3350953983,US 3350986752,3350988031,US 3350988800,3350990335,US -3350990848,3350993919,US -3350994944,3350998015,US +3350990848,3350999039,US 3351052288,3351053823,US 3351054336,3351058943,US 3351060480,3351068159,US @@ -65246,9 +66215,7 @@ 3352014928,3352014943,IL 3352014944,3352014975,US 3352014976,3352015103,IL -3352015104,3352015839,US -3352015840,3352015871,IL -3352015872,3352015999,US +3352015104,3352015999,US 3352016000,3352016127,IL 3352016128,3352020671,US 3352020672,3352020703,IL @@ -65301,15 +66268,18 @@ 3353739264,3353741823,US 3353743360,3353746943,US 3353747456,3353752575,US -3353755648,3353765887,US +3353753600,3353767935,US 3353772032,3353806335,US 3353806848,3353818111,US +3353819136,3353821183,US 3353837568,3353843455,US +3353843712,3353845759,US 3353870336,3353939455,US 3353939968,3353942527,US 3353944064,3353948159,US 3353952256,3353953279,US -3353953536,3353960191,US +3353953536,3353959423,US +3353959680,3353960191,US 3353960448,3353966079,US 3353966336,3353967871,US 3353968128,3353969663,US @@ -65328,8 +66298,7 @@ 3354468352,3354476031,US 3354476544,3354484735,US 3354525696,3354532351,US -3354533888,3354540031,US -3354542080,3354560255,US +3354533888,3354560255,US 3354560512,3354562559,US 3354562816,3354568703,US 3354568960,3354570239,US @@ -65339,10 +66308,11 @@ 3354656768,3354660351,US 3354660864,3354663423,US 3354664960,3354670079,US +3354671104,3354673151,US 3354689536,3354707455,US 3354709248,3354720511,US 3354722304,3354735615,US -3354738688,3354747391,US +3354736640,3354747391,US 3354748416,3354751999,US 3354752256,3354758399,US 3354759424,3354767359,US @@ -65352,7 +66322,9 @@ 3354782720,3354782975,CA 3354782976,3354787071,US 3354787328,3354787583,US -3354788096,3354817535,CA +3354788096,3354807551,CA +3354807552,3354810367,US +3354810368,3354817535,CA 3354817792,3354823423,CA 3354823680,3354830847,CA 3354831360,3354853119,CA @@ -65364,7 +66336,8 @@ 3354955776,3354956031,AR 3354956032,3354967295,US 3354967552,3354969855,US -3354970112,3354978303,US +3354970112,3354972159,US +3354972416,3354978303,US 3354978560,3354988031,US 3354988544,3355012351,US 3355013120,3355017215,CA @@ -65396,11 +66369,11 @@ 3355445248,3355447295,BR 3355447296,3355447551,CU 3355447552,3355447807,AR +3355447808,3355448063,HT 3355448320,3355449343,AN 3355449344,3355450367,CU 3355450368,3355451391,EC 3355451392,3355459071,BR -3355459072,3355459327,CO 3355459328,3355459583,EC 3355459584,3355459839,PA 3355459840,3355460095,VE @@ -65428,7 +66401,7 @@ 3355472640,3355473407,CL 3355473408,3355473919,PE 3355473920,3355475199,CL -3355475200,3355478015,MX +3355475200,3355477503,MX 3355478016,3355478271,PE 3355478272,3355478783,US 3355478784,3355479039,VE @@ -65558,7 +66531,8 @@ 3355858944,3355860991,DO 3355860992,3355869183,CL 3355869184,3355870719,BR -3355871232,3355873279,AR +3355871232,3355871487,US +3355871488,3355873279,AR 3355873280,3355875327,AN 3355875328,3355877375,VE 3355877376,3355885567,CO @@ -65672,7 +66646,7 @@ 3356135680,3356135935,CL 3356135936,3356136191,BR 3356136192,3356137471,EC -3356137472,3356137727,US +3356137472,3356137727,JM 3356137728,3356138239,BR 3356138240,3356138495,US 3356138496,3356139519,BR @@ -65680,7 +66654,7 @@ 3356139776,3356140031,AR 3356140032,3356140287,DO 3356140288,3356140799,BR -3356140800,3356141311,US +3356140800,3356141311,BM 3356141312,3356142847,CL 3356142848,3356145151,BR 3356145152,3356145407,CL @@ -65728,6 +66702,7 @@ 3356163584,3356163839,VE 3356163840,3356164095,CL 3356164096,3356171519,BR +3356171520,3356171775,AR 3356172288,3356172543,PE 3356172800,3356174335,PE 3356174336,3356176383,CO @@ -66068,9 +67043,7 @@ 3358142720,3358142975,US 3358142976,3358143231,CO 3358143232,3358143487,VE -3358143488,3358143615,US -3358143616,3358143623,CL -3358143624,3358143999,AR +3358143488,3358143999,US 3358144000,3358144511,CL 3358144512,3358145023,VE 3358145024,3358147135,AR @@ -66153,7 +67126,9 @@ 3358717952,3358719999,AR 3358720000,3358728191,US 3358728192,3358736383,CL -3358736384,3358744575,US +3358736384,3358737111,US +3358737112,3358737119,CA +3358737120,3358744575,US 3358744576,3358752767,CL 3358752768,3358756863,US 3358756864,3358760959,CL @@ -66273,7 +67248,7 @@ 3360104448,3360116735,CO 3360116736,3360118783,BO 3360118784,3360120831,AR -3360120832,3360129023,CO +3360120832,3360124927,CO 3360129024,3360145407,VE 3360145408,3360153599,CL 3360153600,3360157695,AR @@ -66304,7 +67279,9 @@ 3360235520,3360235775,CL 3360235776,3360236799,CO 3360236800,3360237055,CL -3360237056,3360240895,CO +3360237056,3360238847,CO +3360238848,3360239103,CL +3360239104,3360240895,CO 3360240896,3360241151,CL 3360241152,3360243199,CO 3360243200,3360243455,CL @@ -66325,11 +67302,17 @@ 3360253952,3360255999,SV 3360256000,3360258047,AR 3360258048,3360260095,CL -3360260096,3360268287,AR -3360268288,3360268543,US -3360268544,3360268799,AR -3360268800,3360269055,US -3360269056,3360276479,AR +3360260096,3360267263,AR +3360267264,3360267775,US +3360267776,3360268287,AR +3360268288,3360269055,US +3360269056,3360269567,AR +3360269568,3360269823,US +3360269824,3360270079,AR +3360270080,3360270335,US +3360270336,3360270591,AR +3360270592,3360270847,US +3360270848,3360276479,AR 3360276480,3360278527,VE 3360278528,3360280575,EC 3360280576,3360282623,CL @@ -66339,6 +67322,7 @@ 3360333824,3360342015,CL 3360342016,3360354303,VE 3360354304,3360356351,PA +3360356352,3360358399,CR 3360358400,3360358911,CL 3360358912,3360358919,CO 3360358920,3360366591,CL @@ -66361,7 +67345,9 @@ 3360687984,3360688079,AR 3360688080,3360688119,CO 3360688120,3360688127,AR -3360688128,3360689407,CO +3360688128,3360688639,CO +3360688640,3360688895,AR +3360688896,3360689407,CO 3360689408,3360689919,AR 3360689920,3360690199,CO 3360690200,3360690215,AR @@ -66486,7 +67472,7 @@ 3361538048,3361570815,VE 3361570816,3361587199,CO 3361587200,3361599487,EC -3361599488,3361600511,UY +3361599488,3361600767,UY 3361601536,3361603583,EC 3361603584,3361734655,MX 3361734656,3362258943,BR @@ -66501,13 +67487,17 @@ 3362336768,3362338815,CO 3362338816,3362339839,AR 3362339840,3362341887,CO -3362341888,3362342143,GT +3362341888,3362342143,AR 3362342144,3362342911,PA 3362342912,3362343423,CO 3362343424,3362343679,EC 3362343680,3362344959,CO 3362344960,3362347007,PA 3362347008,3362349055,CO +3362349056,3362351103,CR +3362351104,3362353151,AR +3362353152,3362355199,EC +3362355200,3362357247,AR 3362357248,3362381823,BO 3362381824,3362390015,EC 3362390016,3362422783,PE @@ -66520,6 +67510,8 @@ 3362450176,3362451455,HN 3362455552,3362471935,EC 3362471936,3362476031,CL +3362476032,3362476287,HN +3362476544,3362477055,CR 3362484224,3362484479,AR 3362484480,3362486271,UY 3362486272,3362488319,HN @@ -66548,8 +67540,8 @@ 3362689280,3362689311,AR 3362689312,3362689535,CO 3362689536,3362689567,AR -3362689568,3362689791,CO -3362689792,3362690047,AR +3362689568,3362690015,CO +3362690016,3362690047,AR 3362690048,3362690367,CO 3362690368,3362690431,AR 3362690432,3362691071,CO @@ -66572,12 +67564,14 @@ 3362832384,3362836479,BO 3362840576,3362897919,CL 3362897920,3362906111,HT -3362914304,3362934783,CO +3362914304,3362930687,CO 3362947072,3362983935,AR 3362988032,3362992127,EC 3362996224,3363000319,UY 3363004416,3363012607,CO -3363012608,3363024895,PA +3363012608,3363013967,PA +3363013968,3363013975,NI +3363013976,3363024895,PA 3363028992,3363045375,AR 3363045376,3363110911,CO 3363110912,3363112063,AR @@ -66598,9 +67592,7 @@ 3363504128,3363512319,PE 3363520512,3363553599,AR 3363553600,3363553663,US -3363553664,3363553791,AR -3363553792,3363554047,CL -3363554048,3363557375,AR +3363553664,3363557375,AR 3363561472,3363565567,CO 3363569664,3363577855,PA 3363577856,3363586047,CL @@ -66799,9 +67791,7 @@ 3389211648,3389212671,TH 3389212672,3389213439,AU 3389213440,3389214207,IN -3389214208,3389214719,AU -3389214720,3389218815,IN -3389218816,3389222911,AU +3389214208,3389222911,AU 3389222912,3389225983,IN 3389225984,3389226239,HK 3389226240,3389226495,IN @@ -67236,7 +68226,21 @@ 3391819776,3391823871,JP 3391823872,3391827967,TH 3391827968,3391832063,KR -3391832064,3391852543,AU +3391832064,3391832575,ID +3391832576,3391832831,AU +3391832832,3391833087,IN +3391833088,3391834111,JP +3391834112,3391835135,ID +3391835136,3391836159,CN +3391836160,3391836671,AU +3391836672,3391837183,HK +3391837184,3391838207,AU +3391838208,3391838719,ID +3391838720,3391839231,AU +3391839232,3391840255,ID +3391840256,3391841279,JP +3391841280,3391842303,MY +3391842304,3391852543,AU 3391852544,3391856639,CN 3391856640,3391864831,ID 3391864832,3391868927,US @@ -67419,7 +68423,9 @@ 3392660928,3392667647,TW 3392667648,3392668671,IN 3392668672,3392669695,BD -3392669696,3392670815,HK +3392669696,3392670783,HK +3392670784,3392670791,GB +3392670792,3392670815,HK 3392670816,3392670847,US 3392670848,3392671743,HK 3392671744,3392675839,JP @@ -67646,7 +68652,7 @@ 3393789952,3393798143,SG 3393798144,3393806335,JP 3393806336,3393814527,ID -3393814528,3393815551,HK +3393814528,3393815551,AU 3393815552,3393816575,KR 3393816576,3393818623,JP 3393818624,3393822719,AU @@ -67664,7 +68670,7 @@ 3393871872,3393880063,HK 3393880064,3393896447,AU 3393896448,3393906687,NZ -3393906688,3393908735,PK +3393906688,3393908735,AU 3393908736,3393910783,BD 3393910784,3393911807,PH 3393911808,3393912063,AU @@ -67916,9 +68922,7 @@ 3395027968,3395028991,VN 3395028992,3395031039,AU 3395031040,3395035135,PK -3395035136,3395039231,AU -3395039232,3395043327,BD -3395043328,3395059711,AU +3395035136,3395059711,AU 3395059712,3395067903,PH 3395067904,3395076095,HK 3395076096,3395080191,ID @@ -68076,7 +69080,9 @@ 3397410816,3397419007,AU 3397419008,3397419535,HK 3397419536,3397419551,KR -3397419552,3397419871,HK +3397419552,3397419743,HK +3397419744,3397419759,KR +3397419760,3397419871,HK 3397419872,3397419904,KR 3397419905,3397427199,HK 3397427200,3397443583,SG @@ -68112,7 +69118,15 @@ 3397516800,3397517055,JP 3397517056,3397517311,AU 3397517312,3397525503,CN -3397525504,3397533695,AU +3397525504,3397526527,AU +3397526528,3397527039,VN +3397527040,3397527295,AU +3397527296,3397527551,JP +3397527552,3397528575,IN +3397528576,3397530623,AU +3397530624,3397531647,ID +3397531648,3397532671,SG +3397532672,3397533695,JP 3397533696,3397555903,HK 3397555904,3397555935,JP 3397555936,3397566263,HK @@ -68323,14 +69337,14 @@ 3398634464,3398634479,KR 3398634480,3398634495,AU 3398634496,3398634591,KR -3398634592,3398634607,AU -3398634608,3398634623,KR -3398634624,3398634751,AU +3398634592,3398634751,AU 3398634752,3398634783,KR 3398634784,3398635263,AU 3398635264,3398635391,KR 3398635392,3398636039,AU -3398636040,3398636127,HK +3398636040,3398636087,HK +3398636088,3398636095,AU +3398636096,3398636127,HK 3398636128,3398636351,AU 3398636352,3398636367,HK 3398636368,3398636375,AU @@ -68340,8 +69354,8 @@ 3398636512,3398636543,AU 3398636544,3398636583,HK 3398636584,3398636591,AU -3398636592,3398636735,HK -3398636736,3398636767,AU +3398636592,3398636719,HK +3398636720,3398636767,AU 3398636768,3398636775,HK 3398636776,3398636783,AU 3398636784,3398636799,HK @@ -68350,7 +69364,9 @@ 3398637216,3398637247,AU 3398637248,3398637311,HK 3398637312,3398637375,AU -3398637376,3398637503,HK +3398637376,3398637439,HK +3398637440,3398637455,AU +3398637456,3398637503,HK 3398637504,3398637511,AU 3398637512,3398637519,HK 3398637520,3398637551,AU @@ -68390,8 +69406,7 @@ 3398640640,3398640695,SG 3398640696,3398640783,AU 3398640784,3398640799,SG -3398640800,3398640895,AU -3398640896,3398640911,MY +3398640800,3398640911,AU 3398640912,3398640959,SG 3398640960,3398641007,AU 3398641008,3398641039,SG @@ -68444,7 +69459,8 @@ 3398819840,3398828031,CN 3398828032,3398829055,KH 3398829056,3398830079,IN -3398830080,3398832127,AU +3398830080,3398831103,KH +3398831104,3398832127,AU 3398832128,3398836223,CN 3398836224,3398840319,AU 3398840320,3398842367,JP @@ -68557,8 +69573,7 @@ 3399393280,3399401471,CN 3399401472,3399409663,AU 3399409664,3399413759,JP -3399413760,3399414015,NL -3399414016,3399414271,AU +3399413760,3399414271,AU 3399414272,3399414527,JP 3399414528,3399414783,AU 3399414784,3399415807,VN @@ -68667,8 +69682,7 @@ 3399924224,3399924735,AU 3399924736,3399925759,PH 3399925760,3399933951,NP -3399933952,3399942143,TW -3399942144,3399950335,AU +3399933952,3399950335,AU 3399950336,3399967871,US 3399967872,3399967999,HK 3399968000,3399974911,US @@ -68855,14 +69869,13 @@ 3400437632,3400437647,MY 3400437648,3400437655,HK 3400437656,3400437663,MY -3400437664,3400437671,MN -3400437672,3400437679,HK +3400437664,3400437679,HK 3400437680,3400437687,MN 3400437688,3400437703,ID 3400437704,3400437711,HK 3400437712,3400437719,MY -3400437720,3400437727,HK -3400437728,3400437759,ID +3400437720,3400437735,HK +3400437736,3400437759,ID 3400437760,3400437767,AF 3400437768,3400437775,MY 3400437776,3400437783,HK @@ -68882,12 +69895,7 @@ 3400437960,3400437967,ID 3400437968,3400437975,MY 3400437976,3400437983,AF -3400437984,3400438015,HK -3400438016,3400438079,LK -3400438080,3400438111,BD -3400438112,3400438143,HK -3400438144,3400438175,BD -3400438176,3400438191,HK +3400437984,3400438191,HK 3400438192,3400438207,US 3400438208,3400438399,HK 3400438400,3400438591,BD @@ -69032,15 +70040,23 @@ 3400608768,3400609791,IN 3400609792,3400630271,JP 3400630272,3400646655,IN -3400646656,3400648735,SG +3400646656,3400647043,SG +3400647044,3400647047,JP +3400647048,3400647623,SG +3400647624,3400647631,JP +3400647632,3400648735,SG 3400648736,3400648743,DE 3400648744,3400648767,SG 3400648768,3400648807,US 3400648808,3400649191,SG 3400649192,3400649199,HK -3400649200,3400649983,SG +3400649200,3400649519,SG +3400649520,3400649527,JP +3400649528,3400649983,SG 3400649984,3400650047,HK -3400650048,3400654847,SG +3400650048,3400650751,SG +3400650752,3400651007,JP +3400651008,3400654847,SG 3400654848,3400663039,IN 3400663040,3400683519,MY 3400683520,3400691711,JP @@ -69151,9 +70167,13 @@ 3406696960,3406697215,IN 3406697216,3406737407,AU 3406737408,3406737663,ID -3406737664,3406746623,AU +3406737664,3406739199,AU +3406739200,3406739455,ID +3406739456,3406746623,AU 3406746624,3406746879,HK -3406746880,3406946815,AU +3406746880,3406865663,AU +3406865664,3406865919,IN +3406865920,3406946815,AU 3406946816,3406947071,KR 3406947072,3406950399,AU 3406950400,3406951423,NF @@ -69161,11 +70181,14 @@ 3406961152,3406961407,IN 3406961408,3406967295,AU 3406967296,3406967551,CN -3406967552,3407020287,AU +3406967552,3406989567,AU +3406989568,3406989823,IN +3406989824,3407020287,AU 3407020288,3407020543,SG 3407020544,3407020799,AU 3407020800,3407021055,IN -3407021056,3407045887,AU +3407021056,3407021311,ID +3407021312,3407045887,AU 3407045888,3407046143,HK 3407046144,3407057663,AU 3407057664,3407057919,JP @@ -69211,7 +70234,11 @@ 3407243264,3407243775,HK 3407243776,3407268863,AU 3407268864,3407269119,US -3407269120,3407369983,AU +3407269120,3407329791,AU +3407329792,3407330047,IN +3407330048,3407367167,AU +3407367168,3407367679,ID +3407367680,3407369983,AU 3407369984,3407370239,IN 3407370240,3407498495,AU 3407498496,3407498751,PK @@ -69231,7 +70258,11 @@ 3407753216,3407753727,HK 3407753728,3407785471,AU 3407785472,3407785727,NZ -3407785728,3407814655,AU +3407785728,3407801343,AU +3407801344,3407801855,ID +3407801856,3407805951,AU +3407805952,3407806463,ID +3407806464,3407814655,AU 3407814656,3407815167,HK 3407815168,3407828991,AU 3407828992,3407829503,US @@ -69260,7 +70291,9 @@ 3408024064,3408032767,AU 3408032768,3408033279,IN 3408033280,3408033791,ID -3408033792,3408042495,AU +3408033792,3408039935,AU +3408039936,3408040191,VN +3408040192,3408042495,AU 3408042496,3408042751,HK 3408042752,3408066047,AU 3408066048,3408066303,PH @@ -69268,7 +70301,9 @@ 3409396480,3409396735,PH 3409396736,3409418495,AU 3409418496,3409418751,PL -3409418752,3409423615,AU +3409418752,3409420287,AU +3409420288,3409420543,IN +3409420544,3409423615,AU 3409423616,3409423871,IN 3409423872,3409491711,AU 3409491712,3409491967,SG @@ -69280,7 +70315,9 @@ 3409509632,3409509887,HK 3409509888,3409510367,AU 3409510368,3409510383,IN -3409510384,3409547519,AU +3409510384,3409516543,AU +3409516544,3409517055,ID +3409517056,3409547519,AU 3409547520,3409547775,NZ 3409547776,3409802831,AU 3409802832,3409802847,MT @@ -69553,7 +70590,18 @@ 3411609600,3411611647,AU 3411611648,3411615743,ID 3411615744,3411623935,JP -3411623936,3411648511,AU +3411623936,3411640319,AU +3411640320,3411641343,JP +3411641344,3411641599,IN +3411641600,3411641855,HK +3411641856,3411642367,IN +3411642368,3411643391,AU +3411643392,3411644415,VN +3411644416,3411644927,AU +3411644928,3411645951,ID +3411645952,3411646207,SG +3411646208,3411647487,IN +3411647488,3411648511,HK 3411648512,3411656703,NZ 3411656704,3411673087,AU 3411673088,3411674111,CN @@ -69673,8 +70721,8 @@ 3412249232,3412249239,HK 3412249240,3412249243,SG 3412249244,3412249247,AU -3412249248,3412249263,CN -3412249264,3412249279,AU +3412249248,3412249271,CN +3412249272,3412249279,AU 3412249280,3412249471,IN 3412249472,3412249599,TW 3412249600,3412249855,AU @@ -69761,7 +70809,8 @@ 3412295680,3412296191,NZ 3412296192,3412296703,ID 3412296704,3412297727,NZ -3412297728,3412298751,MY +3412297728,3412298239,SC +3412298240,3412298751,MY 3412298752,3412299263,CN 3412299264,3412299519,AU 3412299520,3412299775,HK @@ -69849,7 +70898,14 @@ 3413270528,3413278719,TH 3413278720,3413295103,NZ 3413295104,3413303295,JP -3413303296,3413311487,AU +3413303296,3413304319,ID +3413304320,3413305343,JP +3413305344,3413306367,IN +3413306368,3413307391,PH +3413307392,3413308415,IN +3413308416,3413309439,CN +3413309440,3413310463,JP +3413310464,3413311487,HK 3413311488,3413327871,LK 3413327872,3413344255,IN 3413344256,3413360639,PH @@ -70031,8 +71087,7 @@ 3415435264,3415436287,PH 3415436288,3415436799,AU 3415436800,3415437311,HK -3415437312,3415441407,SE -3415441408,3415474175,AU +3415437312,3415474175,AU 3415474176,3415490559,CN 3415490560,3415491583,PK 3415491584,3415494655,AU @@ -70208,9 +71263,7 @@ 3416481856,3416481871,HK 3416481872,3416481887,JP 3416481888,3416481919,HK -3416481920,3416481967,JP -3416481968,3416481983,HK -3416481984,3416482047,JP +3416481920,3416482047,JP 3416482048,3416482079,SG 3416482080,3416482159,JP 3416482160,3416482191,SG @@ -70349,7 +71402,8 @@ 3416865608,3416865655,AU 3416865656,3416865791,JP 3416865792,3416866055,HK -3416866056,3416866303,AU +3416866056,3416866063,SG +3416866064,3416866303,AU 3416866304,3416866559,HK 3416866560,3416866815,AU 3416866816,3416883199,SG @@ -70497,7 +71551,9 @@ 3418066528,3418066591,IN 3418066592,3418066703,US 3418066704,3418066719,IN -3418066720,3418067967,US +3418066720,3418067071,US +3418067072,3418067135,SG +3418067136,3418067967,US 3418067968,3418068223,IN 3418068224,3418068479,US 3418068480,3418068607,IN @@ -70530,8 +71586,7 @@ 3418181632,3418183679,AU 3418183680,3418184191,ID 3418184192,3418184959,IN -3418184960,3418185727,AU -3418185728,3418189823,PK +3418184960,3418189823,AU 3418189824,3418190847,BD 3418190848,3418191871,TH 3418191872,3418192895,ID @@ -70558,7 +71613,9 @@ 3418246024,3418251263,PH 3418251264,3418255359,CN 3418255360,3418257407,ID -3418257408,3418259367,HK +3418257408,3418257551,HK +3418257552,3418257559,GB +3418257560,3418259367,HK 3418259368,3418259373,SG 3418259374,3418259455,HK 3418259456,3418267647,IN @@ -70572,10 +71629,20 @@ 3418282496,3418283519,PH 3418283520,3418284031,AU 3418284032,3418285055,SG -3418285056,3418285567,JP -3418285568,3418287135,SG +3418285056,3418285823,JP +3418285824,3418287135,SG 3418287136,3418287167,JP -3418287168,3418288127,SG +3418287168,3418287691,SG +3418287692,3418287695,JP +3418287696,3418287699,SG +3418287700,3418287703,JP +3418287704,3418287719,SG +3418287720,3418287730,JP +3418287731,3418287732,SG +3418287733,3418287734,JP +3418287735,3418287735,SG +3418287736,3418287743,JP +3418287744,3418288127,SG 3418288128,3418290175,ID 3418290176,3418290431,IN 3418290432,3418290687,HK @@ -70764,8 +71831,8 @@ 3418510928,3418510943,HK 3418510944,3418510991,JP 3418510992,3418511007,HK -3418511008,3418511023,JP -3418511024,3418511055,HK +3418511008,3418511031,JP +3418511032,3418511055,HK 3418511056,3418511087,JP 3418511088,3418511103,HK 3418511104,3418511107,JP @@ -70790,10 +71857,7 @@ 3418513408,3418517503,IN 3418517504,3418519551,MN 3418519552,3418521599,AU -3418521600,3418524574,HK -3418524575,3418524606,CN -3418524607,3418524638,TH -3418524639,3418554367,HK +3418521600,3418554367,HK 3418554368,3418578943,AU 3418578944,3418583039,TH 3418583040,3418585087,AU @@ -71165,9 +72229,7 @@ 3423094784,3423095807,CA 3423095808,3423143935,US 3423143936,3423145983,CA -3423145984,3423177471,US -3423177472,3423177727,CA -3423177728,3423182847,US +3423145984,3423182847,US 3423182848,3423183743,CA 3423183744,3423183871,EE 3423183872,3423184207,CA @@ -71248,8 +72310,7 @@ 3423473664,3423474687,CA 3423474688,3423493631,US 3423493632,3423493887,CA -3423493888,3423498239,US -3423500288,3423533055,US +3423493888,3423533055,US 3423533056,3423535103,AI 3423535104,3423543295,US 3423543296,3423545343,CA @@ -71288,7 +72349,7 @@ 3423858688,3423858943,CA 3423859456,3423859711,CA 3423859968,3423862527,CA -3423862784,3424270591,US +3423862784,3424270847,US 3424271360,3424321279,US 3424321536,3424334847,US 3424334848,3424335871,CA @@ -71502,7 +72563,6 @@ 3428299776,3428302079,US 3428302336,3428305663,US 3428305920,3428306175,US -3428306176,3428306431,MX 3428306432,3428310527,US 3428310784,3428311039,US 3428311296,3428318975,US @@ -71516,7 +72576,8 @@ 3428434944,3428435199,IT 3428435200,3428437503,US 3428437504,3428437759,MX -3428437760,3428440575,US +3428437760,3428439551,US +3428439808,3428440575,US 3428440832,3428442367,US 3428442624,3428445695,US 3428445952,3428452863,US @@ -71667,7 +72728,7 @@ 3430704128,3430705151,US 3430705152,3430706175,MX 3430706176,3430707967,US -3430708224,3430715135,US +3430708224,3430714367,US 3430715392,3430719231,US 3430719488,3430721279,US 3430721536,3430722303,US @@ -71780,7 +72841,8 @@ 3432677376,3432680703,US 3432681472,3432683263,US 3432683520,3432688895,US -3432689664,3432703231,US +3432689664,3432695807,US +3432697856,3432703231,US 3432704000,3432716799,US 3432717312,3432734463,US 3432734720,3432806655,US @@ -71905,7 +72967,6 @@ 3438214912,3438215167,US 3438215424,3438215935,CA 3438216192,3438217983,CA -3438217984,3438218239,US 3438218240,3438218751,CA 3438219264,3438219519,CA 3438219776,3438246911,CA @@ -71913,15 +72974,11 @@ 3438252800,3438261759,CA 3438262016,3438280447,CA 3438280704,3438542847,US -3438542848,3438544943,CA -3438544944,3438544959,TC -3438544960,3438545423,CA +3438542848,3438545423,CA 3438545424,3438545431,US 3438545432,3438545471,CA 3438545472,3438545479,US -3438545480,3438545583,CA -3438545584,3438545591,US -3438545592,3438550071,CA +3438545480,3438550071,CA 3438550072,3438550079,US 3438550080,3438550447,CA 3438550448,3438550463,US @@ -71929,11 +72986,7 @@ 3438552272,3438552287,US 3438552288,3438570031,CA 3438570032,3438570039,MY -3438570040,3438589951,CA -3438589952,3438590207,TC -3438590208,3438590975,CA -3438590976,3438591231,TC -3438591232,3438592255,CA +3438570040,3438592255,CA 3438592256,3438592263,US 3438592264,3438600319,CA 3438600320,3438600351,US @@ -71943,11 +72996,11 @@ 3438723072,3438813183,US 3438813184,3438814207,GH 3438814208,3438895103,US -3438895104,3438896895,HN -3438896896,3439183359,US +3438895104,3438896639,HN +3438896640,3439183359,US 3439183360,3439183871,HT 3439183872,3447991551,US -3447992320,3448004095,US +3447991808,3448004095,US 3448004608,3448263423,US 3448263424,3448263935,AG 3448263936,3448338687,US @@ -71959,9 +73012,15 @@ 3448379424,3448379519,US 3448379520,3448379647,IN 3448379648,3448379903,SG -3448379904,3448380415,US +3448379904,3448380063,US +3448380064,3448380079,SG +3448380080,3448380095,US +3448380096,3448380159,SG +3448380160,3448380415,US 3448380416,3448380671,SG -3448380672,3448381183,US +3448380672,3448380687,US +3448380688,3448380719,SG +3448380720,3448381183,US 3448381184,3448381439,SG 3448381440,3448397887,US 3448397888,3448397967,CA @@ -71971,16 +73030,30 @@ 3448399360,3448399871,CA 3448399872,3448461311,US 3448461312,3448461391,GB -3448461392,3448462111,US +3448461392,3448461415,US +3448461416,3448461423,SG +3448461424,3448461543,US +3448461544,3448461551,GB +3448461552,3448461567,US +3448461568,3448461599,SG +3448461600,3448461631,US +3448461632,3448461695,SG +3448461696,3448462111,US 3448462112,3448462127,SG 3448462128,3448462143,US 3448462144,3448462223,SG 3448462224,3448462239,GB 3448462240,3448462255,US 3448462256,3448462271,GB -3448462272,3448556799,US +3448462272,3448556671,US +3448556672,3448556735,GB +3448556736,3448556799,US 3448556800,3448556815,GB -3448556816,3448637183,US +3448556816,3448558911,US +3448558912,3448558919,GB +3448558920,3448559103,US +3448559104,3448559359,GB +3448559360,3448637183,US 3448637440,3448638975,US 3448639488,3448647423,US 3448647680,3448651775,US @@ -72095,7 +73168,8 @@ 3449768192,3449769727,US 3449769984,3449782271,US 3449782528,3449783551,US -3449783808,3449814783,US +3449783808,3449813503,US +3449813760,3449814783,US 3449815040,3449843199,US 3449843200,3449843711,YE 3449843712,3449874687,US @@ -72242,8 +73316,7 @@ 3453408256,3453409023,BB 3453409024,3453409535,KN 3453409536,3453411327,BB -3453411328,3453480959,US -3453485056,3453551839,US +3453411328,3453551839,US 3453551840,3453551879,GB 3453551880,3453551895,US 3453551896,3453551903,GB @@ -72251,7 +73324,9 @@ 3453551936,3453551967,GB 3453551968,3453552039,US 3453552040,3453552047,GB -3453552048,3453552455,US +3453552048,3453552399,US +3453552400,3453552407,GB +3453552408,3453552455,US 3453552456,3453552463,IE 3453552464,3453552471,GB 3453552472,3453552511,US @@ -72259,7 +73334,13 @@ 3453552640,3453552895,GB 3453552896,3453553151,US 3453553152,3453553407,GB -3453553408,3453607935,US +3453553408,3453553631,US +3453553632,3453553639,GB +3453553640,3453553919,US +3453553920,3453553983,GB +3453553984,3453554063,US +3453554064,3453554095,GB +3453554096,3453607935,US 3453607936,3453608959,KN 3453608960,3453609983,LC 3453609984,3453612543,AG @@ -72414,7 +73495,7 @@ 3459457792,3459458047,PR 3459458048,3459512319,US 3459512320,3459513855,CA -3459514368,3459592191,US +3459513856,3459592191,US 3459592192,3459596287,CA 3459596288,3459614719,US 3459616768,3459620863,CA @@ -72445,7 +73526,9 @@ 3461285888,3461285967,GB 3461285968,3461330943,US 3461330944,3461331199,SG -3461331200,3461331711,US +3461331200,3461331327,US +3461331328,3461331455,SG +3461331456,3461331711,US 3461331712,3461331967,SG 3461331968,3461332223,US 3461332224,3461332479,SG @@ -72475,7 +73558,8 @@ 3462605824,3462608895,UY 3462608896,3462633471,US 3462633472,3462633727,SG -3462633728,3462633983,US +3462633728,3462633799,BV +3462633800,3462633983,US 3462633984,3462634239,SG 3462634240,3462634247,US 3462634248,3462634255,SG @@ -72590,7 +73674,9 @@ 3465983208,3465983263,GB 3465983264,3465983271,US 3465983272,3465983311,GB -3465983312,3466044903,US +3465983312,3465983463,US +3465983464,3465983487,GB +3465983488,3466044903,US 3466044904,3466044911,PH 3466044912,3466158079,US 3466158080,3466166271,PA @@ -72636,7 +73722,8 @@ 3468656640,3469055743,US 3469055744,3469055999,CA 3469056000,3469068287,US -3469068800,3469893631,US +3469068800,3469070335,US +3469070592,3469893631,US 3469893632,3469901823,CA 3469901824,3469989887,US 3469990400,3470131199,US @@ -72665,7 +73752,7 @@ 3470746112,3470749951,US 3470749952,3470750207,CA 3470750208,3470751743,US -3470752512,3470752767,US +3470752256,3470752767,US 3470752768,3470753023,CO 3470753024,3470754303,US 3470754304,3470754559,PE @@ -72723,8 +73810,7 @@ 3474391040,3474456575,CA 3474456576,3475111935,US 3475112192,3475113215,CA -3475113216,3475113471,US -3475113984,3475115007,US +3475113216,3475115007,US 3475115008,3475120127,CA 3475120128,3475124223,US 3475124224,3475243007,CA @@ -72764,11 +73850,8 @@ 3478364168,3479207935,US 3479207936,3479214079,CA 3479214080,3479214335,US -3479214336,3479231199,CA -3479231200,3479231207,US -3479231208,3479240703,CA -3479240704,3479339007,US -3479371776,3479568383,US +3479214336,3479240703,CA +3479240704,3479568383,US 3479568384,3479633919,CA 3479633920,3479896063,US 3479896064,3479961599,CA @@ -72799,8 +73882,7 @@ 3483296005,3483296005,BE 3483296006,3483435007,US 3483435008,3483533311,CA -3483533312,3483537407,US -3483541504,3483631615,US +3483533312,3483631615,US 3483631616,3483697151,CA 3483697152,3483791359,US 3483791360,3483795455,PR @@ -72890,8 +73972,7 @@ 3485290464,3485290479,GB 3485290480,3485327359,US 3485327360,3485335551,CA -3485335552,3485433855,US -3485442048,3485446143,VE +3485335552,3485442047,US 3485446144,3485462527,US 3485466624,3485597695,US 3485597696,3485671583,CA @@ -72901,7 +73982,10 @@ 3485672552,3485695999,CA 3485704192,3486023679,US 3486023680,3486031871,CA -3486031872,3486253055,US +3486031872,3486269439,US +3486269440,3486277631,JM +3486285824,3486302207,PR +3486302208,3486310399,CA 3486318592,3486646271,US 3486646272,3486662655,CA 3486662656,3486699519,US @@ -72910,7 +73994,9 @@ 3486700400,3486700407,CA 3486700408,3486701311,US 3486701312,3486701567,CA -3486701568,3487039487,US +3486701568,3486711551,US +3486711552,3486711807,CA +3486711808,3487039487,US 3487039488,3487105023,CA 3487105024,3487187199,US 3487187200,3487187215,GB @@ -72995,7 +74081,7 @@ 3489464320,3489529855,CA 3489529856,3489562623,US 3489562624,3489566719,JM -3489566720,3489579007,US +3489566720,3489583103,US 3489587200,3489717759,US 3489717760,3489718015,PR 3489718016,3489718271,US @@ -73174,7 +74260,7 @@ 3494095872,3494114303,US 3494115328,3494121471,US 3494121472,3494122495,CA -3494122496,3494135807,US +3494122496,3494134783,US 3494135808,3494136831,CA 3494136832,3494139903,US 3494139904,3494141735,CA @@ -73203,8 +74289,7 @@ 3494277120,3494290943,US 3494290944,3494291455,GB 3494291456,3494294527,US -3494295040,3494295551,UM -3494295552,3494302719,US +3494295040,3494302719,US 3494302720,3494303743,CA 3494303744,3494310911,US 3494310912,3494311935,CA @@ -73279,7 +74364,7 @@ 3494758400,3494776831,US 3494776832,3494777855,CA 3494777856,3494785023,US -3494785024,3494787071,GP +3494785024,3494787071,MF 3494787072,3494789119,CA 3494789120,3494852607,US 3494852608,3494854655,CA @@ -73297,7 +74382,8 @@ 3494928384,3494930431,CA 3494930432,3494938623,US 3494938624,3494939647,CA -3494939648,3494964223,US +3494939648,3494946815,US +3494948864,3494964223,US 3494964224,3494965247,PR 3494965248,3494968319,US 3494968320,3494972415,CA @@ -73342,9 +74428,7 @@ 3495349248,3495350271,CA 3495350272,3495358463,US 3495358464,3495359487,CA -3495359488,3495362367,US -3495362368,3495362399,AU -3495362400,3495367679,US +3495359488,3495367679,US 3495367680,3495368703,CA 3495368704,3495370751,US 3495370752,3495372799,BS @@ -73384,9 +74468,15 @@ 3495505920,3495507967,CA 3495507968,3495515135,US 3495515136,3495516159,CA -3495516160,3495526399,US +3495516160,3495520303,US +3495520304,3495520307,CA +3495520308,3495526399,US 3495526400,3495527423,CA -3495527424,3495551999,US +3495527424,3495549183,US +3495549184,3495549439,CA +3495549440,3495550207,US +3495550208,3495550463,CA +3495550464,3495551999,US 3495552000,3495553023,BM 3495553024,3495579647,US 3495579648,3495581695,CA @@ -73401,7 +74491,7 @@ 3495622656,3495653375,US 3495653376,3495654399,CA 3495655424,3495673855,US -3495673856,3495674879,GP +3495673856,3495674879,MF 3495674880,3495686143,US 3495687168,3495688191,US 3495688192,3495689215,CA @@ -73417,9 +74507,7 @@ 3495740416,3495741439,CA 3495741440,3495749631,US 3495749632,3495750655,CA -3495750656,3495761407,US -3495761408,3495761663,CA -3495761664,3495774207,US +3495750656,3495774207,US 3495774208,3495776255,CA 3495776256,3495815167,US 3495815168,3495817215,CA @@ -73438,7 +74526,8 @@ 3495896064,3495897087,PR 3495897088,3495930879,US 3495930880,3495931903,CA -3495931904,3495968767,US +3495931904,3495934975,US +3495936000,3495968767,US 3495968768,3495985151,CA 3495985152,3495988223,NI 3495988224,3495989247,GT @@ -73487,7 +74576,7 @@ 3497224320,3497224831,US 3497224832,3497224863,CH 3497224864,3497225375,US -3497225376,3497225383,GB +3497225376,3497225383,CN 3497225384,3497225471,US 3497225472,3497225535,IN 3497225536,3497226783,US @@ -73498,9 +74587,17 @@ 3497226880,3497226959,CH 3497226960,3497227023,US 3497227024,3497227039,GB -3497227040,3497227231,US -3497227232,3497227263,CH -3497227264,3497246719,US +3497227040,3497227247,US +3497227248,3497227255,CN +3497227256,3497227391,US +3497227392,3497227407,CN +3497227408,3497227527,US +3497227528,3497227535,CN +3497227536,3497228015,US +3497228016,3497228023,CN +3497228024,3497228079,US +3497228080,3497228087,CN +3497228088,3497246719,US 3497263104,3497264913,US 3497264914,3497264950,GB 3497264951,3497266527,US @@ -73587,7 +74684,8 @@ 3500752896,3500761087,KY 3500761088,3501181703,US 3501181704,3501181711,AU -3501181712,3501182975,US +3501181712,3501181727,KR +3501181728,3501182975,US 3501182976,3501183007,SG 3501183008,3501183167,US 3501183168,3501183231,SG @@ -73600,9 +74698,7 @@ 3501522944,3501588479,CA 3501588480,3502418175,US 3502418176,3502418431,GU -3502418432,3502569215,US -3502569216,3502569471,BS -3502569472,3502929663,US +3502418432,3502929663,US 3502929664,3502929919,GU 3502929920,3502993407,US 3502993408,3502993919,NL @@ -73664,10 +74760,14 @@ 3509326080,3509326087,CA 3509326088,3509327695,US 3509327696,3509327711,CA -3509327712,3509346303,US +3509327712,3509327807,US +3509327808,3509327871,CA +3509327872,3509346303,US 3509346304,3509347103,CA 3509347104,3509347119,US -3509347120,3509354495,CA +3509347120,3509350335,CA +3509350336,3509350343,US +3509350344,3509354495,CA 3509354496,3509387263,US 3509387264,3509420031,PE 3509420032,3509519871,US @@ -73724,9 +74824,7 @@ 3509555456,3509555711,CA 3509555712,3509555967,US 3509555968,3509556479,CA -3509556480,3509556735,US -3509556736,3509557247,CA -3509557248,3509558015,US +3509556480,3509558015,US 3509558016,3509558079,CA 3509558080,3509559039,US 3509559040,3509559295,KW @@ -73807,7 +74905,8 @@ 3510335744,3510335999,VG 3510336000,3510337279,AG 3510337280,3510337535,LC -3510337536,3510831527,US +3510337536,3510362111,US +3510370304,3510831527,US 3510831528,3510831535,GB 3510831536,3510833423,US 3510833424,3510833439,CA @@ -73988,8 +75087,8 @@ 3512647680,3512655871,TT 3512655872,3512696831,US 3512696832,3512699775,SE -3512699776,3512701951,US -3512701952,3512705023,SE +3512699776,3512699903,US +3512699904,3512705023,SE 3512705024,3512844287,US 3512844288,3512852479,CA 3512852480,3512983551,US @@ -74004,8 +75103,7 @@ 3513368576,3513376767,CA 3513376768,3513475071,US 3513475072,3513483263,CA -3513483264,3513499647,US -3513507840,3513778175,US +3513483264,3513778175,US 3513778176,3513794559,CA 3513794560,3514007551,US 3514007552,3514040319,CA @@ -74056,9 +75154,8 @@ 3516355664,3516355679,CA 3516355680,3516366847,US 3516366848,3516370943,CA -3516370944,3516375039,US -3516383232,3516432383,US -3516440576,3516514303,US +3516370944,3516379135,US +3516383232,3516514303,US 3516514304,3516530687,CA 3516530688,3516895231,US 3516899328,3516899839,ZA @@ -74227,7 +75324,9 @@ 3517597184,3517597695,US 3517597696,3517600767,SE 3517600768,3517601279,US -3517601280,3517603071,SE +3517601280,3517602047,SE +3517602048,3517602303,DE +3517602304,3517603071,SE 3517603072,3517603327,US 3517603328,3517605119,SE 3517605120,3517605375,US @@ -74310,7 +75409,7 @@ 3519873024,3519901695,CA 3519901696,3519934463,US 3519934464,3519938559,CA -3519938560,3520004095,US +3519938560,3520020479,US 3520020480,3520036863,CA 3520036864,3520356351,US 3520364544,3520368639,US @@ -74348,8 +75447,7 @@ 3521192704,3521192735,FR 3521192736,3521249279,US 3521249280,3521314815,CA -3521314816,3521781759,US -3521789952,3521904639,US +3521314816,3521904639,US 3521904640,3521921023,JM 3521937408,3522101247,US 3522101248,3522109439,CA @@ -74408,7 +75506,9 @@ 3523592496,3523592511,HK 3523592512,3523592575,PK 3523592576,3523592703,LB -3523592704,3523593215,HK +3523592704,3523592735,HK +3523592736,3523592751,AF +3523592752,3523593215,HK 3523593216,3523593231,KW 3523593232,3523593239,AE 3523593240,3523593279,HK @@ -74454,9 +75554,10 @@ 3523596864,3523596927,IQ 3523596928,3523597127,PK 3523597128,3523597311,HK -3523597312,3523597823,PK +3523597312,3523597567,AE +3523597568,3523597823,PK 3523597824,3523597951,TZ -3523597952,3523597959,IR +3523597952,3523597959,HK 3523597960,3523597983,IQ 3523597984,3523597991,KZ 3523597992,3523597999,US @@ -74797,8 +75898,8 @@ 3557027864,3557027871,BE 3557027872,3557027887,GB 3557027888,3557028031,BE -3557028032,3557028047,GB -3557028048,3557028095,BE +3557028032,3557028063,GB +3557028064,3557028095,BE 3557028096,3557028351,GB 3557028352,3557028735,BE 3557028736,3557028799,GB @@ -74880,13 +75981,13 @@ 3557310464,3557326847,ES 3557326848,3557335039,DE 3557335040,3557335391,BE -3557335456,3557335967,BE +3557335456,3557335535,BE +3557335552,3557335967,BE 3557336000,3557336191,BE -3557336256,3557336279,BE -3557336288,3557336639,BE +3557336256,3557336639,BE 3557338112,3557338367,BE 3557338496,3557339135,BE -3557339160,3557339175,BE +3557339152,3557339175,BE 3557339184,3557339199,BE 3557339216,3557339223,BE 3557339232,3557339267,BE @@ -74915,6 +76016,7 @@ 3557416960,3557425151,UA 3557425152,3557490687,DK 3557490688,3557507071,FR +3557507072,3557515263,GB 3557515264,3557523455,CZ 3557523456,3557531647,RU 3557531648,3557539839,SA @@ -75010,7 +76112,7 @@ 3558122768,3558122783,CH 3558122784,3558129663,DE 3558129664,3558137855,NO -3558137856,3558154239,GB +3558137856,3558146047,GB 3558154240,3558154367,NG 3558154368,3558154495,SD 3558154496,3558154623,MZ @@ -75032,8 +76134,8 @@ 3558195456,3558196031,ES 3558196032,3558196047,IT 3558196048,3558196095,ES -3558196096,3558196119,IT -3558196120,3558196159,ES +3558196096,3558196127,IT +3558196128,3558196159,ES 3558196160,3558196167,IT 3558196168,3558196175,ES 3558196176,3558196191,IT @@ -75066,7 +76168,9 @@ 3558271488,3558276095,GI 3558276096,3558276863,GB 3558276864,3558277119,GI -3558277120,3558285631,GB +3558277120,3558285567,GB +3558285568,3558285599,DE +3558285600,3558285631,GB 3558285632,3558285823,DE 3558285824,3558285951,GB 3558285952,3558286079,DE @@ -75085,8 +76189,8 @@ 3558288192,3558288255,SE 3558288256,3558288319,US 3558288320,3558288383,CH -3558288384,3558288431,US -3558288432,3558288447,GB +3558288384,3558288427,US +3558288428,3558288447,GB 3558288448,3558288483,US 3558288484,3558288487,GB 3558288488,3558288639,US @@ -75107,13 +76211,12 @@ 3558290176,3558290431,GB 3558290432,3558290575,BE 3558290576,3558290591,GB -3558290592,3558290623,BE -3558290624,3558290655,GB +3558290592,3558290615,BE +3558290616,3558290655,GB 3558290656,3558290663,BE 3558290664,3558290671,GB 3558290672,3558290687,BE -3558290688,3558290815,ES -3558290816,3558290943,GB +3558290688,3558290943,ES 3558290944,3558290959,DE 3558290960,3558290967,NL 3558290968,3558290975,GB @@ -75129,8 +76232,8 @@ 3558291240,3558291247,GB 3558291248,3558291263,CH 3558291264,3558291279,AT -3558291280,3558291295,GB -3558291296,3558291455,CH +3558291280,3558291311,GB +3558291312,3558291455,CH 3558291456,3558291903,GB 3558291904,3558291967,DE 3558291968,3558292223,GB @@ -75191,7 +76294,9 @@ 3558368448,3558368479,DE 3558368480,3558368495,ES 3558368496,3558368511,US -3558368512,3558372351,AT +3558368512,3558369503,AT +3558369504,3558369511,FR +3558369512,3558372351,AT 3558372352,3558372607,BG 3558372608,3558372735,AT 3558372736,3558372863,ES @@ -75272,8 +76377,7 @@ 3558851472,3558851479,NO 3558851480,3558851807,ES 3558851808,3558851815,PT -3558851816,3558851823,IR -3558851824,3558852095,ES +3558851816,3558852095,ES 3558852096,3558852607,GB 3558852608,3558852863,DE 3558852864,3558853119,ES @@ -75327,75 +76431,52 @@ 3559038721,3559038975,US 3559038976,3559047167,DE 3559047168,3559055359,IT +3559055360,3559063551,AM 3559063552,3559079935,CH 3559079936,3559088127,JO 3559088128,3559088283,BE 3559088284,3559088287,GB 3559088288,3559088367,BE 3559088368,3559088371,GB -3559088372,3559088431,BE -3559088432,3559088447,GB -3559088448,3559088551,BE -3559088552,3559088559,GB -3559088560,3559088919,BE -3559088920,3559088959,GB -3559088960,3559089015,BE -3559089016,3559089023,GB -3559089024,3559089055,BE +3559088372,3559088919,BE +3559088920,3559088927,GB +3559088928,3559089055,BE 3559089056,3559089063,DE -3559089064,3559089119,BE -3559089120,3559089127,GB -3559089128,3559089143,BE +3559089064,3559089143,BE 3559089144,3559089151,GB 3559089152,3559089159,BE -3559089160,3559089215,GB -3559089216,3559089279,BE -3559089280,3559089287,GB -3559089288,3559089295,BE -3559089296,3559089343,GB +3559089160,3559089167,GB +3559089168,3559089175,BE +3559089176,3559089215,GB +3559089216,3559089303,BE +3559089304,3559089311,GB +3559089312,3559089327,BE +3559089328,3559089343,GB 3559089344,3559089563,BE -3559089564,3559089599,GB +3559089564,3559089567,GB +3559089568,3559089583,BE +3559089584,3559089599,GB 3559089600,3559089607,BE 3559089608,3559089611,GB 3559089612,3559089663,BE 3559089664,3559089919,GB 3559089920,3559089983,BE -3559089984,3559090071,GB +3559089984,3559090047,GB +3559090048,3559090071,BE 3559090072,3559090079,NL -3559090080,3559090191,GB -3559090192,3559090199,BE -3559090200,3559090207,GB -3559090208,3559090215,BE -3559090216,3559090239,GB -3559090240,3559090367,BE -3559090368,3559090399,GB -3559090400,3559090415,BE -3559090416,3559090431,GB -3559090432,3559090503,BE -3559090504,3559090511,GB -3559090512,3559090519,BE +3559090080,3559090175,BE +3559090176,3559090191,GB +3559090192,3559090223,BE +3559090224,3559090239,GB +3559090240,3559090519,BE 3559090520,3559090527,GB -3559090528,3559090559,BE -3559090560,3559090567,GB -3559090568,3559090615,BE -3559090616,3559090623,GB -3559090624,3559090719,BE -3559090720,3559090751,GB -3559090752,3559090759,BE -3559090760,3559090767,GB -3559090768,3559090783,BE -3559090784,3559090791,GB -3559090792,3559090815,BE +3559090528,3559090815,BE 3559090816,3559090823,GB 3559090824,3559090895,BE 3559090896,3559090899,GB 3559090900,3559090919,BE 3559090920,3559090927,GB -3559090928,3559091047,BE -3559091048,3559091055,GB -3559091056,3559091095,BE -3559091096,3559091103,GB -3559091104,3559091111,BE +3559090928,3559091111,BE 3559091112,3559091115,GB 3559091116,3559091131,BE 3559091132,3559091151,GB @@ -75417,18 +76498,18 @@ 3559091584,3559091615,GB 3559091616,3559091631,BE 3559091632,3559091635,GB -3559091636,3559091775,BE -3559091776,3559091823,GB -3559091824,3559091855,BE -3559091856,3559091871,GB -3559091872,3559092159,BE +3559091636,3559091791,BE +3559091792,3559091807,GB +3559091808,3559092159,BE 3559092160,3559092160,GB 3559092161,3559092222,BE 3559092223,3559092223,GB 3559092224,3559092239,BE 3559092240,3559092247,GB 3559092248,3559092287,BE -3559092288,3559092351,GB +3559092288,3559092295,GB +3559092296,3559092311,BE +3559092312,3559092351,GB 3559092352,3559092367,BE 3559092368,3559092383,GB 3559092384,3559092447,BE @@ -75465,13 +76546,9 @@ 3559093672,3559093675,GB 3559093676,3559093679,BE 3559093680,3559093695,GB -3559093696,3559093703,BE -3559093704,3559093711,GB -3559093712,3559093759,BE -3559093760,3559093983,GB -3559093984,3559093999,BE -3559094000,3559094015,GB -3559094016,3559094071,BE +3559093696,3559093759,BE +3559093760,3559093975,GB +3559093976,3559094071,BE 3559094072,3559094079,GB 3559094080,3559094087,BE 3559094088,3559094095,GB @@ -75506,13 +76583,13 @@ 3559095648,3559095767,BE 3559095768,3559095775,GB 3559095776,3559096087,BE -3559096088,3559096107,GB -3559096108,3559096123,BE +3559096088,3559096103,GB +3559096104,3559096123,BE 3559096124,3559096127,GB -3559096128,3559096199,BE -3559096200,3559096223,GB -3559096224,3559096239,BE -3559096240,3559096251,GB +3559096128,3559096215,BE +3559096216,3559096223,NL +3559096224,3559096247,BE +3559096248,3559096251,GB 3559096252,3559096255,BE 3559096256,3559096319,GB 3559096320,3559103231,RO @@ -75591,8 +76668,8 @@ 3559491232,3559491263,ES 3559491264,3559491447,NL 3559491448,3559491455,ES -3559491456,3559491759,NL -3559491760,3559491771,ES +3559491456,3559491767,NL +3559491768,3559491771,ES 3559491772,3559491839,NL 3559491840,3559491871,ES 3559491872,3559491903,GB @@ -75692,9 +76769,7 @@ 3559981056,3559989247,EE 3559989248,3559997439,PL 3560005632,3560013823,RU -3560013824,3560022975,ES -3560022976,3560022991,IT -3560022992,3560030207,ES +3560013824,3560030207,ES 3560030208,3560046591,GB 3560046592,3560054783,BG 3560054784,3560062975,TR @@ -75735,7 +76810,11 @@ 3560341504,3560349695,PT 3560349696,3560357887,GB 3560357888,3560366079,GR -3560366080,3560374271,CH +3560366080,3560366687,CH +3560366688,3560366695,IT +3560366696,3560366703,CH +3560366704,3560366711,IT +3560366712,3560374271,CH 3560374272,3560382463,ES 3560382464,3560387103,FO 3560387104,3560387111,DK @@ -75794,9 +76873,7 @@ 3560842448,3560842455,RS 3560842456,3560842751,CS 3560842752,3560843007,RS -3560843008,3560843071,CS -3560843072,3560843135,RS -3560843136,3560844031,CS +3560843008,3560844031,CS 3560844032,3560844223,RS 3560844224,3560844227,CS 3560844228,3560844287,RS @@ -75808,7 +76885,9 @@ 3560844752,3560844759,RS 3560844760,3560844767,CS 3560844768,3560844775,RS -3560844776,3560844875,CS +3560844776,3560844799,CS +3560844800,3560844863,RS +3560844864,3560844875,CS 3560844876,3560844879,RS 3560844880,3560844895,CS 3560844896,3560844899,RS @@ -75837,8 +76916,8 @@ 3560845717,3560845717,CS 3560845718,3560845718,RS 3560845719,3560845759,CS -3560845760,3560845763,RS -3560845764,3560846079,CS +3560845760,3560845775,RS +3560845776,3560846079,CS 3560846080,3560846087,RS 3560846088,3560846351,CS 3560846352,3560846367,RS @@ -75855,9 +76934,10 @@ 3560848656,3560848671,CS 3560848672,3560848679,RS 3560848680,3560848695,CS -3560848696,3560848895,RS -3560848896,3560849407,CS -3560849408,3560857599,DE +3560848696,3560849407,RS +3560849408,3560852911,DE +3560852912,3560852919,TH +3560852920,3560857599,DE 3560857600,3560865791,SA 3560865792,3560882175,FR 3560882176,3560890367,DE @@ -75868,6 +76948,7 @@ 3560916392,3560919047,DE 3560919048,3560919055,CH 3560919056,3560923135,DE +3560923136,3560931327,ES 3560931328,3560939523,DE 3560939524,3560939527,AT 3560939528,3560939535,DE @@ -76944,14807 +78025,4 @@ 3560943551,3560943551,FR 3560943552,3560943552,IT 3560943553,3560943553,DE -3560943554,3560943554,IS -3560943555,3560943555,FR -3560943556,3560943556,DE -3560943557,3560943557,ES -3560943558,3560943558,DE -3560943559,3560943559,GB -3560943560,3560943562,IT -3560943563,3560943563,HU -3560943564,3560943564,DE -3560943565,3560943565,GB -3560943566,3560943566,DE -3560943567,3560943567,FR -3560943568,3560943568,GB -3560943569,3560943570,FR -3560943571,3560943572,DE -3560943573,3560943573,FR -3560943574,3560943574,NO -3560943575,3560943575,BE -3560943576,3560943576,IT -3560943577,3560943577,DK -3560943578,3560943578,ES -3560943579,3560943580,DE -3560943581,3560943581,NL -3560943582,3560943582,DE -3560943583,3560943583,ES -3560943584,3560943584,IT -3560943585,3560943585,FR -3560943586,3560943586,ES -3560943587,3560943587,DE -3560943588,3560943588,IT -3560943589,3560943589,NL -3560943590,3560943590,HU -3560943591,3560943591,AT -3560943592,3560943592,SK -3560943593,3560943593,PL -3560943594,3560943594,FR -3560943595,3560943596,ES -3560943597,3560943599,DE -3560943600,3560943600,AT -3560943601,3560943602,IT -3560943603,3560943603,CH -3560943604,3560943604,ES -3560943605,3560943605,GB -3560943606,3560943607,DE -3560943608,3560943608,IT -3560943609,3560943610,DE -3560943611,3560943611,FR -3560943612,3560943612,DE -3560943613,3560943613,ES -3560943614,3560943617,DE -3560943618,3560943618,FR -3560943619,3560943620,ES -3560943621,3560943621,SE -3560943622,3560943622,BE -3560943623,3560943623,DE -3560943624,3560943624,ES -3560943625,3560943625,AT -3560943626,3560943626,ES -3560943627,3560943627,DK -3560943628,3560943628,DE -3560943629,3560943629,IT -3560943630,3560943630,DE -3560943631,3560943631,HU -3560943632,3560943632,CH -3560943633,3560943633,ES -3560943634,3560943634,FR -3560943635,3560943635,ES -3560943636,3560943636,DE -3560943637,3560943637,PL -3560943638,3560943638,IT -3560943639,3560943639,ES -3560943640,3560943640,FR -3560943641,3560943643,IT -3560943644,3560943644,DE -3560943645,3560943645,GB -3560943646,3560943646,DE -3560943647,3560943647,ES -3560943648,3560943648,DE -3560943649,3560943649,NL -3560943650,3560943651,DE -3560943652,3560943652,AT -3560943653,3560943653,DE -3560943654,3560943654,IT -3560943655,3560943655,DE -3560943656,3560943656,IT -3560943657,3560943657,DE -3560943658,3560943658,GB -3560943659,3560943659,DE -3560943660,3560943660,PT -3560943661,3560943661,DK -3560943662,3560943662,DE -3560943663,3560943664,NL -3560943665,3560943666,DE -3560943667,3560943667,PL -3560943668,3560943668,DK -3560943669,3560943669,FR -3560943670,3560943671,DE -3560943672,3560943672,BH -3560943673,3560943673,SE -3560943674,3560943674,MA -3560943675,3560943675,FR -3560943676,3560943677,DE -3560943678,3560943680,ES -3560943681,3560943682,DE -3560943683,3560943683,GR -3560943684,3560943684,NL -3560943685,3560943685,IT -3560943686,3560943686,FR -3560943687,3560943687,PT -3560943688,3560943688,DE -3560943689,3560943689,PT -3560943690,3560943690,IT -3560943691,3560943691,DE -3560943692,3560943692,SE -3560943693,3560943693,DE -3560943694,3560943694,FR -3560943695,3560943695,GR -3560943696,3560943697,CH -3560943698,3560943698,DE -3560943699,3560943699,IT -3560943700,3560943700,DE -3560943701,3560943701,AT -3560943702,3560943702,DE -3560943703,3560943703,FR -3560943704,3560943704,DE -3560943705,3560943705,CH -3560943706,3560943706,LI -3560943707,3560943709,DE -3560943710,3560943710,NL -3560943711,3560943711,DE -3560943712,3560943712,IT -3560943713,3560943713,PL -3560943714,3560943714,NL -3560943715,3560943715,DE -3560943716,3560943716,GB -3560943717,3560943717,FR -3560943718,3560943719,DE -3560943720,3560943721,IT -3560943722,3560943726,DE -3560943727,3560943727,ES -3560943728,3560943728,GB -3560943729,3560943729,DE -3560943730,3560943730,NL -3560943731,3560943731,IT -3560943732,3560943732,FR -3560943733,3560943733,NO -3560943734,3560943736,DE -3560943737,3560943737,GR -3560943738,3560943738,PT -3560943739,3560943740,DE -3560943741,3560943741,FR -3560943742,3560943742,DE -3560943743,3560943743,PL -3560943744,3560943744,DE -3560943745,3560943745,PL -3560943746,3560943748,DE -3560943749,3560943749,GB -3560943750,3560943750,DE -3560943751,3560943751,IT -3560943752,3560943752,DE -3560943753,3560943753,ES -3560943754,3560943754,HU -3560943755,3560943755,BE -3560943756,3560943756,IT -3560943757,3560943757,DE -3560943758,3560943758,CZ -3560943759,3560943759,IE -3560943760,3560943760,NO -3560943761,3560943761,GB -3560943762,3560943762,IT -3560943763,3560943763,FR -3560943764,3560943764,PL -3560943765,3560943765,SE -3560943766,3560943766,CY -3560943767,3560943768,DE -3560943769,3560943769,FR -3560943770,3560943770,NL -3560943771,3560943771,IT -3560943772,3560943774,DE -3560943775,3560943775,FR -3560943776,3560943780,DE -3560943781,3560943781,ES -3560943782,3560943782,DE -3560943783,3560943783,BE -3560943784,3560943786,DE -3560943787,3560943787,ES -3560943788,3560943788,DK -3560943789,3560943789,IT -3560943790,3560943790,DE -3560943791,3560943791,IT -3560943792,3560943793,DE -3560943794,3560943794,FR -3560943795,3560943795,DE -3560943796,3560943796,IT -3560943797,3560943797,DE -3560943798,3560943798,DK -3560943799,3560943799,DE -3560943800,3560943800,CH -3560943801,3560943801,FR -3560943802,3560943802,IT -3560943803,3560943803,HU -3560943804,3560943804,ES -3560943805,3560943805,DE -3560943806,3560943806,ES -3560943807,3560943807,DK -3560943808,3560943810,DE -3560943811,3560943811,ES -3560943812,3560943812,IT -3560943813,3560943813,CH -3560943814,3560943814,DE -3560943815,3560943815,IT -3560943816,3560943817,FR -3560943818,3560943818,PT -3560943819,3560943819,DE -3560943820,3560943820,FR -3560943821,3560943821,IT -3560943822,3560943822,DE -3560943823,3560943823,GR -3560943824,3560943827,DE -3560943828,3560943828,ES -3560943829,3560943829,NL -3560943830,3560943830,DK -3560943831,3560943833,FR -3560943834,3560943835,DE -3560943836,3560943836,BE -3560943837,3560943837,CH -3560943838,3560943838,DE -3560943839,3560943839,NO -3560943840,3560943840,LU -3560943841,3560943841,GB -3560943842,3560943842,DE -3560943843,3560943843,GB -3560943844,3560943844,BE -3560943845,3560943845,CZ -3560943846,3560943846,LU -3560943847,3560943847,CZ -3560943848,3560943848,FR -3560943849,3560943849,DE -3560943850,3560943850,NL -3560943851,3560943857,DE -3560943858,3560943858,GB -3560943859,3560943859,DE -3560943860,3560943860,GB -3560943861,3560943865,DE -3560943866,3560943866,BE -3560943867,3560943867,ES -3560943868,3560943868,FR -3560943869,3560943869,LU -3560943870,3560943871,DE -3560943872,3560943875,BR -3560943876,3560943879,DE -3560943880,3560943887,US -3560943888,3560943891,CA -3560943892,3560943895,DE -3560943896,3560943899,CL -3560943900,3560943903,MX -3560943904,3560943915,US -3560943916,3560943919,CA -3560943920,3560943923,US -3560943924,3560943927,MX -3560943928,3560943935,US -3560943936,3560943939,PE -3560943940,3560943943,DE -3560943944,3560943947,US -3560943948,3560943975,DE -3560943976,3560943979,US -3560943980,3560943983,DE -3560943984,3560943987,US -3560943988,3560943991,DE -3560943992,3560943999,US -3560944000,3560944023,DE -3560944024,3560944031,US -3560944032,3560944035,MX -3560944036,3560944039,US -3560944040,3560944043,MX -3560944044,3560944059,DE -3560944060,3560944063,US -3560944064,3560944067,DE -3560944068,3560944071,US -3560944072,3560944079,DE -3560944080,3560944083,US -3560944084,3560944087,CL -3560944088,3560944103,DE -3560944104,3560944107,US -3560944108,3560944119,DE -3560944120,3560944135,US -3560944136,3560944139,DE -3560944140,3560944159,US -3560944160,3560944163,MX -3560944164,3560944167,AR -3560944168,3560944175,US -3560944176,3560944179,BR -3560944180,3560944183,PA -3560944184,3560944187,US -3560944188,3560944191,CA -3560944192,3560944195,US -3560944196,3560944199,DE -3560944200,3560944203,BO -3560944204,3560944207,DE -3560944208,3560944211,CA -3560944212,3560944215,DE -3560944216,3560944219,BR -3560944220,3560944227,US -3560944228,3560944231,IT -3560944232,3560944235,US -3560944236,3560944239,CA -3560944240,3560944243,US -3560944244,3560944247,MX -3560944248,3560944267,US -3560944268,3560944271,CO -3560944272,3560944275,BR -3560944276,3560944279,PE -3560944280,3560944283,DE -3560944284,3560944295,US -3560944296,3560944299,CO -3560944300,3560944307,US -3560944308,3560944311,MX -3560944312,3560944315,US -3560944316,3560944323,AR -3560944324,3560944339,US -3560944340,3560944343,CO -3560944344,3560944351,US -3560944352,3560944355,GT -3560944356,3560944359,CA -3560944360,3560944363,DO -3560944364,3560944367,AR -3560944368,3560944371,BR -3560944372,3560944375,DE -3560944376,3560944379,AR -3560944380,3560944383,DE -3560944384,3560944395,US -3560944396,3560944399,PR -3560944400,3560944403,CA -3560944404,3560944411,DE -3560944412,3560944415,US -3560944416,3560944419,SG -3560944420,3560944431,US -3560944432,3560944435,DE -3560944436,3560944447,US -3560944448,3560944451,DE -3560944452,3560944459,US -3560944460,3560944460,AR -3560944461,3560944463,DE -3560944464,3560944467,CA -3560944468,3560944471,BR -3560944472,3560944475,US -3560944476,3560944479,AR -3560944480,3560944487,US -3560944488,3560944491,CA -3560944492,3560944519,US -3560944520,3560944523,DE -3560944524,3560944531,US -3560944532,3560944535,MX -3560944536,3560944551,US -3560944552,3560944555,BR -3560944556,3560944559,MX -3560944560,3560944563,US -3560944564,3560944567,ES -3560944568,3560944575,US -3560944576,3560944579,BR -3560944580,3560944603,US -3560944604,3560944607,CA -3560944608,3560944615,US -3560944616,3560944619,EC -3560944620,3560944623,US -3560944624,3560944627,CL -3560944628,3560944631,DE -3560944632,3560944635,CA -3560944636,3560944639,DE -3560944640,3560944643,TR -3560944644,3560944647,ES -3560944648,3560944651,TR -3560944652,3560944655,HU -3560944656,3560944659,TR -3560944660,3560944663,MZ -3560944664,3560944667,FR -3560944668,3560944671,TR -3560944672,3560944675,KZ -3560944676,3560944679,GR -3560944680,3560944687,TR -3560944688,3560944691,FR -3560944692,3560944695,SA -3560944696,3560944699,TR -3560944700,3560944703,CU -3560944704,3560944707,ZW -3560944708,3560944711,TR -3560944712,3560944715,IL -3560944716,3560944719,ZW -3560944720,3560944723,SK -3560944724,3560944727,TR -3560944728,3560944731,KZ -3560944732,3560944735,TR -3560944736,3560944743,FR -3560944744,3560944747,GR -3560944748,3560944755,TR -3560944756,3560944759,MZ -3560944760,3560944767,TR -3560944768,3560944771,MZ -3560944772,3560944779,DE -3560944780,3560944783,ES -3560944784,3560944787,FR -3560944788,3560944791,NL -3560944792,3560944795,ES -3560944796,3560944799,GB -3560944800,3560944803,ES -3560944804,3560944807,FR -3560944808,3560944811,DE -3560944812,3560944815,ES -3560944816,3560944823,IT -3560944824,3560944827,DE -3560944828,3560944831,IE -3560944832,3560944835,DE -3560944836,3560944839,IT -3560944840,3560944843,TR -3560944844,3560944847,DE -3560944848,3560944855,FR -3560944856,3560944859,NL -3560944860,3560944863,DK -3560944864,3560944871,FR -3560944872,3560944875,DE -3560944876,3560944879,ES -3560944880,3560944883,SA -3560944884,3560944887,ES -3560944888,3560944891,CH -3560944892,3560944895,DE -3560944896,3560944899,TW -3560944900,3560944903,SG -3560944904,3560944907,MY -3560944908,3560944919,SG -3560944920,3560944923,MY -3560944924,3560944927,CN -3560944928,3560944931,MY -3560944932,3560944935,SG -3560944936,3560944943,CN -3560944944,3560944947,MY -3560944948,3560944951,SG -3560944952,3560944955,TW -3560944956,3560944959,SG -3560944960,3560944963,IN -3560944964,3560944967,MY -3560944968,3560944971,SG -3560944972,3560944975,CN -3560944976,3560944987,IN -3560944988,3560944991,SG -3560944992,3560944995,MY -3560944996,3560944999,SG -3560945000,3560945003,MY -3560945004,3560945007,IN -3560945008,3560945011,SG -3560945012,3560945015,DE -3560945016,3560945027,IN -3560945028,3560945031,MY -3560945032,3560945035,IN -3560945036,3560945039,CN -3560945040,3560945043,SG -3560945044,3560945047,TW -3560945048,3560945059,IN -3560945060,3560945063,SG -3560945064,3560945067,MY -3560945068,3560945075,IN -3560945076,3560945083,CN -3560945084,3560945091,IN -3560945092,3560945095,SG -3560945096,3560945099,CN -3560945100,3560945103,SG -3560945104,3560945107,MY -3560945108,3560945111,TW -3560945112,3560945115,SG -3560945116,3560945119,IN -3560945120,3560945123,CN -3560945124,3560945131,SG -3560945132,3560945135,TW -3560945136,3560945139,MY -3560945140,3560945143,SG -3560945144,3560945147,IN -3560945148,3560945151,SG -3560945152,3560945153,DE -3560945154,3560945156,AU -3560945157,3560945157,NZ -3560945158,3560945167,AU -3560945168,3560945168,DE -3560945169,3560945169,AU -3560945170,3560945191,DE -3560945192,3560945192,AU -3560945193,3560945194,DE -3560945195,3560945195,AU -3560945196,3560945204,DE -3560945205,3560945205,AU -3560945206,3560945206,IN -3560945207,3560945209,AU -3560945210,3560945227,DE -3560945228,3560945231,IN -3560945232,3560945267,DE -3560945268,3560945271,AU -3560945272,3560945275,DE -3560945276,3560945279,AU -3560945280,3560945355,JP -3560945356,3560945359,TH -3560945360,3560945403,JP -3560945404,3560945407,TH -3560945408,3560945409,DE -3560945410,3560945410,MY -3560945411,3560945411,TW -3560945412,3560945412,CN -3560945413,3560945413,SG -3560945414,3560945414,IN -3560945415,3560945416,SG -3560945417,3560945418,CN -3560945419,3560945419,MY -3560945420,3560945420,IN -3560945421,3560945422,SG -3560945423,3560945423,CN -3560945424,3560945424,MY -3560945425,3560945425,IN -3560945426,3560945426,MY -3560945427,3560945427,CN -3560945428,3560945428,SG -3560945429,3560945429,TW -3560945430,3560945430,MY -3560945431,3560945431,CN -3560945432,3560945433,IN -3560945434,3560945434,TW -3560945435,3560945435,MY -3560945436,3560945436,CN -3560945437,3560945437,SG -3560945438,3560945438,TW -3560945439,3560945439,SG -3560945440,3560945440,ID -3560945441,3560945441,SG -3560945442,3560945443,IN -3560945444,3560945448,SG -3560945449,3560945449,IN -3560945450,3560945450,SG -3560945451,3560945451,IN -3560945452,3560945452,SG -3560945453,3560945453,IN -3560945454,3560945458,SG -3560945459,3560945459,TW -3560945460,3560945461,SG -3560945462,3560945462,IN -3560945463,3560945465,SG -3560945466,3560945466,CN -3560945467,3560945467,MY -3560945468,3560945469,SG -3560945470,3560945470,CN -3560945471,3560945471,SG -3560945472,3560945472,CN -3560945473,3560945473,TW -3560945474,3560945475,SG -3560945476,3560945476,CN -3560945477,3560945477,TW -3560945478,3560945478,IN -3560945479,3560945479,SG -3560945480,3560945481,IN -3560945482,3560945482,DE -3560945483,3560945485,MY -3560945486,3560945487,IN -3560945488,3560945488,DE -3560945489,3560945489,MY -3560945490,3560945490,TH -3560945491,3560945492,IN -3560945493,3560945495,DE -3560945496,3560945496,IN -3560945497,3560945497,DE -3560945498,3560945499,IN -3560945500,3560945500,SG -3560945501,3560945501,US -3560945502,3560945502,IN -3560945503,3560945535,DE -3560945536,3560945539,IN -3560945540,3560945543,SG -3560945544,3560945559,IN -3560945560,3560945563,DE -3560945564,3560945567,SG -3560945568,3560945575,IN -3560945576,3560945579,SG -3560945580,3560945583,MY -3560945584,3560945587,SG -3560945588,3560945591,TW -3560945592,3560945603,SG -3560945604,3560945607,US -3560945608,3560945611,IN -3560945612,3560945619,SG -3560945620,3560945627,CN -3560945628,3560945635,SG -3560945636,3560945639,CN -3560945640,3560945643,IN -3560945644,3560945647,MY -3560945648,3560945651,IN -3560945652,3560945659,DE -3560945660,3560945663,IN -3560945664,3560945667,US -3560945668,3560945671,BR -3560945672,3560945675,US -3560945676,3560945679,PE -3560945680,3560945683,BR -3560945684,3560945691,CO -3560945692,3560945699,US -3560945700,3560945703,CO -3560945704,3560945707,US -3560945708,3560945711,CO -3560945712,3560945727,US -3560945728,3560945731,AR -3560945732,3560945739,US -3560945740,3560945743,BR -3560945744,3560945747,US -3560945748,3560945751,AR -3560945752,3560945763,US -3560945764,3560945767,AR -3560945768,3560945771,BR -3560945772,3560945775,CA -3560945776,3560945787,US -3560945788,3560945791,CO -3560945792,3560945795,AR -3560945796,3560945799,US -3560945800,3560945803,BR -3560945804,3560945807,US -3560945808,3560945811,CO -3560945812,3560945815,US -3560945816,3560945819,AR -3560945820,3560945823,US -3560945824,3560945827,BR -3560945828,3560945835,US -3560945836,3560945839,CL -3560945840,3560945843,BR -3560945844,3560945851,US -3560945852,3560945855,DE -3560945856,3560945859,US -3560945860,3560945863,DE -3560945864,3560945867,US -3560945868,3560945871,DE -3560945872,3560945875,CA -3560945876,3560945911,US -3560945912,3560945915,CA -3560945916,3560945919,US -3560945920,3560946017,DE -3560946018,3560946018,FI -3560946019,3560946019,CZ -3560946020,3560946176,DE -3560946177,3560946189,US -3560946190,3560946190,AR -3560946191,3560946194,US -3560946195,3560946195,PE -3560946196,3560946196,CA -3560946197,3560946197,US -3560946198,3560946198,CA -3560946199,3560946199,AR -3560946200,3560946200,US -3560946201,3560946201,CA -3560946202,3560946202,DE -3560946203,3560946203,CA -3560946204,3560946204,US -3560946205,3560946205,PE -3560946206,3560946208,US -3560946209,3560946209,CA -3560946210,3560946212,US -3560946213,3560946213,CO -3560946214,3560946214,CA -3560946215,3560946215,PE -3560946216,3560946229,US -3560946230,3560946230,AR -3560946231,3560946231,US -3560946232,3560946232,CA -3560946233,3560946234,US -3560946235,3560946235,CL -3560946236,3560946237,US -3560946238,3560946238,AR -3560946239,3560946253,US -3560946254,3560946254,SG -3560946255,3560946256,US -3560946257,3560946257,MX -3560946258,3560946259,US -3560946260,3560946260,AR -3560946261,3560946262,US -3560946263,3560946263,AR -3560946264,3560946266,US -3560946267,3560946267,CA -3560946268,3560946271,US -3560946272,3560946272,DE -3560946273,3560946273,CA -3560946274,3560946279,US -3560946280,3560946280,ES -3560946281,3560946282,US -3560946283,3560946283,CL -3560946284,3560946284,US -3560946285,3560946285,CO -3560946286,3560946290,US -3560946291,3560946291,CA -3560946292,3560946295,US -3560946296,3560946296,CL -3560946297,3560946297,DE -3560946298,3560946298,US -3560946299,3560946299,DE -3560946300,3560946300,CL -3560946301,3560946311,DE -3560946312,3560946312,US -3560946313,3560946317,DE -3560946318,3560946319,US -3560946320,3560946320,DE -3560946321,3560946326,US -3560946327,3560946327,CA -3560946328,3560946328,US -3560946329,3560946329,DO -3560946330,3560946330,US -3560946331,3560946331,DO -3560946332,3560946333,CA -3560946334,3560946335,US -3560946336,3560946336,CA -3560946337,3560946337,DE -3560946338,3560946338,CA -3560946339,3560946339,US -3560946340,3560946340,CL -3560946341,3560946342,CA -3560946343,3560946343,DO -3560946344,3560946344,AR -3560946345,3560946345,US -3560946346,3560946346,PE -3560946347,3560946347,US -3560946348,3560946361,DE -3560946362,3560946363,US -3560946364,3560946367,DE -3560946368,3560946368,US -3560946369,3560946372,DE -3560946373,3560946373,US -3560946374,3560946374,DE -3560946375,3560946375,US -3560946376,3560946398,DE -3560946399,3560946399,US -3560946400,3560946408,DE -3560946409,3560946409,US -3560946410,3560946419,DE -3560946420,3560946420,US -3560946421,3560946431,DE -3560946432,3560946443,US -3560946444,3560946447,BR -3560946448,3560946451,DE -3560946452,3560946455,BO -3560946456,3560946467,US -3560946468,3560946471,BR -3560946472,3560946483,US -3560946484,3560946487,MX -3560946488,3560946491,US -3560946492,3560946495,BR -3560946496,3560946499,VE -3560946500,3560946503,AR -3560946504,3560946507,US -3560946508,3560946511,MX -3560946512,3560946523,US -3560946524,3560946527,MX -3560946528,3560946531,US -3560946532,3560946535,CA -3560946536,3560946539,PE -3560946540,3560946543,US -3560946544,3560946547,CA -3560946548,3560946551,US -3560946552,3560946555,PE -3560946556,3560946559,US -3560946560,3560946563,BR -3560946564,3560946567,US -3560946568,3560946571,BR -3560946572,3560946579,US -3560946580,3560946583,CA -3560946584,3560946587,US -3560946588,3560946591,AR -3560946592,3560946603,US -3560946604,3560946607,AR -3560946608,3560946611,BR -3560946612,3560946623,US -3560946624,3560946635,MX -3560946636,3560946643,US -3560946644,3560946647,AR -3560946648,3560946651,MX -3560946652,3560946655,CL -3560946656,3560946659,BR -3560946660,3560946663,MX -3560946664,3560946667,US -3560946668,3560946671,MX -3560946672,3560946679,BR -3560946680,3560946687,US -3560946688,3560946689,DE -3560946690,3560946695,US -3560946696,3560946696,BR -3560946697,3560946698,US -3560946699,3560946700,DE -3560946701,3560946701,CO -3560946702,3560946706,US -3560946707,3560946707,VE -3560946708,3560946708,BR -3560946709,3560946710,VE -3560946711,3560946711,US -3560946712,3560946712,VE -3560946713,3560946714,US -3560946715,3560946715,CO -3560946716,3560946716,US -3560946717,3560946717,AR -3560946718,3560946718,US -3560946719,3560946720,BR -3560946721,3560946723,CO -3560946724,3560946724,MX -3560946725,3560946729,US -3560946730,3560946730,MX -3560946731,3560946733,US -3560946734,3560946734,PR -3560946735,3560946747,US -3560946748,3560946748,DE -3560946749,3560946760,US -3560946761,3560946761,DE -3560946762,3560946767,US -3560946768,3560946768,CA -3560946769,3560946769,US -3560946770,3560946825,DE -3560946826,3560946826,US -3560946827,3560946835,DE -3560946836,3560946836,US -3560946837,3560946839,DE -3560946840,3560946840,US -3560946841,3560946943,DE -3560946944,3560946947,US -3560946948,3560946951,BR -3560946952,3560946955,MX -3560946956,3560946959,CO -3560946960,3560946963,MX -3560946964,3560946967,AR -3560946968,3560946979,US -3560946980,3560946987,DE -3560946988,3560946991,US -3560946992,3560946995,DE -3560946996,3560946999,UY -3560947000,3560947015,US -3560947016,3560947019,AR -3560947020,3560947027,US -3560947028,3560947031,CO -3560947032,3560947039,US -3560947040,3560947043,BR -3560947044,3560947067,US -3560947068,3560947071,AR -3560947072,3560947075,BR -3560947076,3560947095,US -3560947096,3560947099,MX -3560947100,3560947107,US -3560947108,3560947111,DE -3560947112,3560947123,US -3560947124,3560947127,CO -3560947128,3560947143,US -3560947144,3560947147,DE -3560947148,3560947191,US -3560947192,3560947195,VE -3560947196,3560947199,DE -3560947200,3560947203,CA -3560947204,3560947207,US -3560947208,3560947211,DE -3560947212,3560947231,US -3560947232,3560947235,CA -3560947236,3560947239,CO -3560947240,3560947247,US -3560947248,3560947251,CA -3560947252,3560947267,US -3560947268,3560947271,CO -3560947272,3560947275,US -3560947276,3560947279,AR -3560947280,3560947283,MX -3560947284,3560947287,US -3560947288,3560947291,BR -3560947292,3560947331,US -3560947332,3560947335,MX -3560947336,3560947343,US -3560947344,3560947347,MX -3560947348,3560947351,CO -3560947352,3560947355,US -3560947356,3560947359,AN -3560947360,3560947363,US -3560947364,3560947367,HN -3560947368,3560947371,BR -3560947372,3560947375,CA -3560947376,3560947383,US -3560947384,3560947391,CO -3560947392,3560947395,MX -3560947396,3560947399,US -3560947400,3560947407,AR -3560947408,3560947411,US -3560947412,3560947415,AR -3560947416,3560947431,US -3560947432,3560947435,MX -3560947436,3560947439,DE -3560947440,3560947443,BR -3560947444,3560947455,US -3560947456,3560947495,JP -3560947496,3560947499,KR -3560947500,3560947686,JP -3560947687,3560947687,DE -3560947688,3560947711,JP -3560947712,3560951195,SE -3560951196,3560951199,DK -3560951200,3560951207,SE -3560951208,3560951211,DK -3560951212,3560951383,SE -3560951384,3560951387,NO -3560951388,3560951423,SE -3560951424,3560951427,NL -3560951428,3560951447,SE -3560951448,3560951451,FR -3560951452,3560951551,SE -3560951552,3560951555,ES -3560951556,3560951583,SE -3560951584,3560951587,FI -3560951588,3560955903,SE -3560955904,3560964095,BE -3560964096,3560996863,NL -3560996864,3561005055,SA -3561005056,3561013247,ES -3561013248,3561021439,TR -3561021440,3561022719,DE -3561022720,3561022975,AT -3561022976,3561037823,DE -3561037824,3561046015,BE -3561046016,3561054207,RU -3561054208,3561062399,MT -3561062400,3561070591,TR -3561070592,3561070847,DE -3561070848,3561078783,CH -3561078784,3561095167,CZ -3561095168,3561103359,DE -3561103360,3561111551,UA -3561111552,3561119743,LU -3561119744,3561127935,IT -3561127936,3561136127,DE -3561136128,3561144319,ES -3561144320,3561152511,FI -3561152512,3561160703,IT -3561160704,3561168895,RU -3561168896,3561177087,FR -3561177088,3561181215,CZ -3561181216,3561181247,CA -3561181248,3561181263,CZ -3561181264,3561181271,DE -3561181272,3561185279,CZ -3561185280,3561193471,GB -3561193472,3561201663,PL -3561201664,3561206655,NL -3561206656,3561206663,BE -3561206664,3561209855,NL -3561209856,3561218047,GB -3561218048,3561226239,AT -3561226240,3561234431,FI -3561234432,3561242623,TR -3561242624,3561259007,DE -3561259008,3561267199,IL -3561267200,3561275391,UA -3561275392,3561291775,BE -3561291776,3561299967,CS -3561299968,3561308159,GB -3561308160,3561316351,PL -3561316352,3561324543,RU -3561324544,3561332735,IT -3561332736,3561340927,AT -3561340928,3561357311,GB -3561357312,3561365503,DK -3561365504,3561373695,SA -3561373696,3561381887,GB -3561381888,3561382479,AT -3561382480,3561382495,DE -3561382496,3561390079,AT -3561390080,3561398271,BG -3561398272,3561406463,LV -3561406464,3561414655,GR -3561414656,3561422847,IT -3561422848,3561427207,BE -3561427208,3561427211,NL -3561427212,3561429279,BE -3561429280,3561429287,NL -3561429288,3561431039,BE -3561431040,3561439231,SA -3561439232,3561447423,NO -3561447424,3561455615,CH -3561455616,3561471999,CZ -3561472000,3561480191,DE -3561480192,3561488383,GB -3561488384,3561496575,OM -3561496576,3561496735,NL -3561496736,3561497215,GB -3561497216,3561497423,NL -3561497424,3561497471,GB -3561497472,3561498367,NL -3561498368,3561498399,GB -3561498400,3561498431,NL -3561498432,3561498487,GB -3561498488,3561498491,NL -3561498492,3561498495,GB -3561498496,3561498559,NL -3561498560,3561498607,GB -3561498608,3561498615,NL -3561498616,3561498623,GB -3561498624,3561500415,NL -3561500416,3561500671,GB -3561500672,3561500751,NL -3561500752,3561500763,GB -3561500764,3561500767,NL -3561500768,3561500775,GB -3561500776,3561500807,NL -3561500808,3561500815,GB -3561500816,3561500991,NL -3561500992,3561501055,GB -3561501056,3561501375,NL -3561501376,3561501407,GB -3561501408,3561501455,NL -3561501456,3561501487,GB -3561501488,3561501631,NL -3561501632,3561501695,GB -3561501696,3561502047,NL -3561502048,3561502079,GB -3561502080,3561502143,NL -3561502144,3561502207,GB -3561502208,3561502631,NL -3561502632,3561502655,GB -3561502656,3561504319,NL -3561504320,3561504383,GB -3561504384,3561504767,NL -3561504768,3561512959,DE -3561512960,3561521151,SI -3561521152,3561529343,GE -3561529344,3561534559,DE -3561534560,3561534575,US -3561534576,3561537535,DE -3561537536,3561545727,BG -3561545728,3561553919,NL -3561553920,3561562111,SE -3561562112,3561570303,ES -3561570304,3561578495,AM -3561578496,3561586687,RU -3561586688,3561594879,BG -3561594880,3561594935,SE -3561594936,3561594939,DK -3561594940,3561594975,SE -3561594976,3561595007,DK -3561595008,3561603071,SE -3561603072,3561603263,FR -3561603264,3561603295,GB -3561603296,3561603455,FR -3561603456,3561603487,GB -3561603488,3561604351,FR -3561604352,3561604895,GB -3561604896,3561604911,FR -3561604912,3561605119,GB -3561605120,3561607231,FR -3561607232,3561607235,GB -3561607236,3561607239,FR -3561607240,3561607247,GB -3561607248,3561607343,FR -3561607344,3561607359,GB -3561607360,3561607679,FR -3561607680,3561607711,GB -3561607712,3561610239,FR -3561610240,3561610495,US -3561610496,3561610511,FR -3561610512,3561610719,GB -3561610720,3561611295,FR -3561611296,3561611559,GB -3561611560,3561611567,FR -3561611568,3561614175,GB -3561614176,3561614199,FR -3561614200,3561615359,GB -3561615360,3561615615,FR -3561615616,3561615871,IT -3561615872,3561616447,FR -3561616448,3561616511,GB -3561616512,3561616543,FR -3561616544,3561616559,GB -3561616560,3561616575,FR -3561616576,3561616895,GB -3561616896,3561616959,FR -3561616960,3561617151,GB -3561617152,3561617407,FR -3561617408,3561617919,CH -3561617920,3561618175,SE -3561618176,3561618431,IE -3561618432,3561618687,DK -3561618688,3561618815,FR -3561618816,3561618943,PL -3561618944,3561619455,FR -3561619456,3561636863,GB -3561636864,3561637119,BE -3561637120,3561637375,ES -3561637376,3561637631,CH -3561637632,3561637887,IT -3561637888,3561638143,AT -3561638144,3561638399,SE -3561638400,3561638655,US -3561638656,3561638911,DK -3561638912,3561639423,GB -3561639424,3561639679,DE -3561639680,3561640575,GB -3561640576,3561640831,FR -3561640832,3561641983,GB -3561641984,3561642239,DE -3561642240,3561652223,GB -3561652224,3561668607,CH -3561668608,3561679359,RU -3561679360,3561679615,UA -3561679616,3561684991,RU -3561684992,3561693183,BG -3561693184,3561694487,DE -3561694488,3561694495,CH -3561694496,3561701375,DE -3561701376,3561706031,SE -3561706032,3561706047,DK -3561706048,3561709567,SE -3561709568,3561717759,PL -3561717760,3561725951,RU -3561725952,3561734143,ES -3561734144,3561742335,RU -3561742336,3561750527,KW -3561750528,3561758719,KZ -3561758720,3561766911,PL -3561766912,3561775103,SA -3561775104,3561783295,IL -3561783296,3561791487,DE -3561791488,3561799679,RU -3561799680,3561807871,DE -3561807872,3561816063,BE -3561816064,3561824255,VA -3561824256,3561832447,LI -3561832448,3561840639,IT -3561840640,3561848831,PL -3561848832,3561857023,RU -3561857024,3561865215,DE -3561865216,3561873407,QA -3561873408,3561881599,DE -3561881600,3561889791,IT -3561889792,3561897983,FR -3561897984,3561906175,GB -3561906176,3561907759,DE -3561907760,3561907763,GB -3561907764,3561910207,DE -3561910208,3561910223,GB -3561910224,3561914367,DE -3561914368,3561922559,ES -3561922560,3561922855,NL -3561922856,3561922911,GB -3561922912,3561922975,NL -3561922976,3561922991,GB -3561922992,3561923015,NL -3561923016,3561923071,GB -3561923072,3561923551,NL -3561923552,3561923583,GB -3561923584,3561923679,NL -3561923680,3561923847,GB -3561923848,3561923855,NL -3561923856,3561923871,GB -3561923872,3561924159,NL -3561924160,3561924207,GB -3561924208,3561924215,NL -3561924216,3561924703,GB -3561924704,3561924719,NL -3561924720,3561924911,GB -3561924912,3561924943,NL -3561924944,3561924975,GB -3561924976,3561924991,NL -3561924992,3561925007,GB -3561925008,3561925039,NL -3561925040,3561925087,GB -3561925088,3561925103,NL -3561925104,3561926911,GB -3561926912,3561926975,NL -3561926976,3561927167,GB -3561927168,3561927423,NL -3561927424,3561927551,GB -3561927552,3561927647,NL -3561927648,3561927663,GB -3561927664,3561927679,NL -3561927680,3561928191,GB -3561928192,3561929727,NL -3561929728,3561929743,GB -3561929744,3561929791,NL -3561929792,3561929879,GB -3561929880,3561929919,NL -3561929920,3561929967,GB -3561929968,3561930335,NL -3561930336,3561930503,GB -3561930504,3561930511,NL -3561930512,3561930751,GB -3561930752,3561931519,DE -3561931520,3561931967,SE -3561931968,3561932031,DE -3561932032,3561934591,SE -3561934592,3561934847,DE -3561934848,3561935359,SE -3561935360,3561935871,DE -3561935872,3561936127,SE -3561936128,3561938175,DE -3561938176,3561938559,SE -3561938560,3561938687,DE -3561938688,3561938943,SE -3561938944,3561947135,IE -3561947136,3561963519,DE -3561963520,3561971711,BE -3561971712,3561976831,TR -3561976832,3561977343,DE -3561977344,3561977855,US -3561977856,3561978367,PK -3561978368,3561979903,TR -3561979904,3561988095,ES -3561988096,3562004479,DE -3562004480,3562006159,NL -3562006160,3562006175,DE -3562006176,3562006819,NL -3562006820,3562006823,VG -3562006824,3562007839,NL -3562007840,3562007871,VG -3562007872,3562007903,KN -3562007904,3562010399,NL -3562010400,3562010431,KN -3562010432,3562010943,NL -3562010944,3562010975,VG -3562010976,3562012031,NL -3562012032,3562012063,VG -3562012064,3562012479,NL -3562012480,3562012483,KN -3562012484,3562012671,NL -3562020864,3562029055,UA -3562029056,3562037247,CZ -3562037248,3562045439,CH -3562045440,3562056711,ES -3562056712,3562056719,NL -3562056720,3562056911,ES -3562056912,3562056927,FR -3562056928,3562057215,ES -3562057216,3562057247,NL -3562057248,3562057263,BE -3562057264,3562057471,ES -3562057472,3562057727,DE -3562057728,3562057975,ES -3562057976,3562057983,FR -3562057984,3562058303,ES -3562058304,3562058367,IT -3562058368,3562059327,ES -3562059328,3562059335,CH -3562059336,3562059391,ES -3562059392,3562059775,CH -3562059776,3562061823,ES -3562061824,3562070015,IT -3562070016,3562078207,DE -3562078208,3562086399,SK -3562086400,3562087423,SE -3562087424,3562088447,GB -3562088448,3562094591,SE -3562094592,3562098879,FR -3562098880,3562098895,BE -3562098896,3562102415,FR -3562102416,3562102431,NL -3562102432,3562105503,FR -3562105504,3562105535,DE -3562105536,3562110975,FR -3562110976,3562143743,ES -3562143744,3562151935,GB -3562151936,3562160127,DE -3562160128,3562161151,GB -3562161152,3562161183,NL -3562161184,3562170367,GB -3562170368,3562172415,IE -3562172416,3562173951,CH -3562173952,3562174463,GB -3562174464,3562176511,CH -3562176512,3562184703,FR -3562184704,3562192895,DE -3562192896,3562201087,UA -3562201088,3562209279,DE -3562209280,3562217471,RU -3562217472,3562220287,DE -3562220288,3562220799,CH -3562220800,3562225663,DE -3562225664,3562233855,NL -3562233856,3562242047,FI -3562242048,3562258431,FR -3562258432,3562283007,NL -3562283008,3562291199,IT -3562291200,3562307583,GB -3562307584,3562315775,NL -3562315776,3562323967,GB -3562323968,3562340351,DE -3562340352,3562348543,GB -3562348544,3562356735,ES -3562356736,3562364927,SE -3562364928,3562373119,PL -3562373120,3562381311,FR -3562381312,3562389503,IT -3562397696,3562405887,GB -3562405888,3562414079,FI -3562414080,3562422271,DE -3562422272,3562430463,GB -3562430464,3562438655,UA -3562438656,3562463231,DE -3562463232,3562471423,UA -3562471424,3562479615,PL -3562479616,3562487807,DE -3562487808,3562495999,GB -3562496000,3562504191,BE -3562504192,3562512383,DE -3562512384,3562520575,UA -3562520576,3562528767,ES -3562528768,3562536959,PL -3562536960,3562545151,AT -3562545152,3562553343,GB -3562553344,3562561535,DK -3562569728,3562572143,DE -3562572144,3562572159,LU -3562572160,3562572223,DE -3562572224,3562572239,US -3562572240,3562572543,DE -3562572544,3562572799,LU -3562572800,3562577919,DE -3562577920,3562586111,AT -3562586112,3562594303,DE -3562594304,3562595423,BE -3562595424,3562595455,LU -3562595456,3562598207,BE -3562598208,3562598223,LU -3562598224,3562602495,BE -3562602496,3562610687,ES -3562610688,3562618879,NO -3562618880,3562627071,GB -3562627072,3562643455,DE -3562643456,3562651647,GR -3562651648,3562659839,DE -3562659840,3562668031,SK -3562668032,3562676223,IT -3562676224,3562684415,GB -3562684416,3562692607,FI -3562692608,3562695375,UA -3562695376,3562695379,CZ -3562695380,3562700799,UA -3562700800,3562708991,DE -3562708992,3562717183,UA -3562717184,3562725375,CH -3562725376,3562733567,CZ -3562733568,3562741759,PL -3562741760,3562758143,IT -3562758144,3562766335,HR -3562766336,3562774527,SE -3562774528,3562782719,BG -3562782720,3562790911,RU -3562790912,3562799103,DE -3562799104,3562803471,HU -3562803472,3562803479,UA -3562803480,3562807295,HU -3562807296,3562815487,ES -3562815488,3562823679,NL -3562823680,3562848255,RU -3562848256,3562856447,HR -3562856448,3562864639,UA -3562864640,3562872831,DE -3562872832,3562881023,DK -3562881024,3562889215,GB -3562889216,3562897407,LV -3562897408,3562905599,RO -3562905600,3562921983,SA -3562921984,3562930175,SI -3562930176,3562938367,RU -3562938368,3562946559,CH -3562946560,3562954751,FI -3562954752,3562962943,RU -3562962944,3562971135,IT -3562971136,3562987519,FR -3562987520,3562995711,DE -3562995712,3563003903,AT -3563003904,3563005183,DE -3563005184,3563005311,KZ -3563005312,3563005439,DE -3563005440,3563005695,TR -3563005696,3563005951,DE -3563005952,3563006463,TR -3563006464,3563006591,DE -3563006592,3563006719,CA -3563006720,3563006729,DE -3563006730,3563006847,CN -3563006848,3563006975,CA -3563006976,3563007487,DE -3563007488,3563007999,TR -3563008000,3563008255,PA -3563008256,3563008511,PL -3563008512,3563009279,DE -3563009280,3563009535,LT -3563009536,3563009791,BY -3563009792,3563010047,CN -3563010048,3563010063,DE -3563010064,3563010079,KZ -3563010080,3563010303,DE -3563010304,3563010559,NL -3563010560,3563010815,BY -3563010816,3563011071,PL -3563011072,3563011583,DE -3563011584,3563011839,ES -3563011840,3563012095,BY -3563012096,3563020287,FR -3563020288,3563028479,DE -3563036672,3563044863,BG -3563044864,3563053055,ES -3563053056,3563053503,GB -3563053504,3563053527,US -3563053528,3563061247,GB -3563069440,3563077631,HU -3563077632,3563085823,FR -3563085824,3563094015,RU -3563094016,3563096255,DE -3563096256,3563096287,GB -3563096288,3563097087,DE -3563097088,3563097119,GB -3563097120,3563097151,DE -3563097152,3563097183,GB -3563097184,3563097215,DE -3563097216,3563097247,GB -3563097248,3563097311,DE -3563097312,3563097343,GB -3563097344,3563102207,DE -3563102208,3563110399,CZ -3563110400,3563118591,RU -3563118592,3563126783,DE -3563134976,3563143167,IT -3563143168,3563151359,GB -3563151360,3563159551,DE -3563159552,3563167487,DK -3563167488,3563167503,SE -3563167504,3563167743,DK -3563167744,3563175935,ES -3563175936,3563192319,DK -3563192320,3563200511,TR -3563200512,3563208703,CH -3563208704,3563225087,DK -3563225088,3563233279,LB -3563233280,3563241471,BY -3563241472,3563257855,TR -3563257856,3563290623,FR -3563290624,3563315199,DE -3563315200,3563323391,DK -3563323392,3563329791,GB -3563331584,3563339775,DE -3563347968,3563356159,GB -3563356160,3563364351,RU -3563364352,3563372543,BE -3563372544,3563380735,SA -3563380736,3563381951,GB -3563381952,3563381959,IT -3563381960,3563382383,GB -3563382384,3563382391,AU -3563382392,3563382495,GB -3563382496,3563382503,AT -3563382504,3563382583,GB -3563382584,3563382587,AT -3563382588,3563382589,DE -3563382590,3563382767,GB -3563382768,3563382775,IE -3563382776,3563388927,GB -3563388928,3563397119,CH -3563397120,3563405311,DE -3563405312,3563407871,ES -3563407872,3563407903,US -3563407904,3563413503,ES -3563413504,3563421695,TR -3563421696,3563438079,CH -3563438080,3563446271,DE -3563454464,3563462655,SA -3563462656,3563479039,IT -3563479040,3563487231,GB -3563487232,3563488255,RS -3563488256,3563488351,CS -3563488352,3563488383,CS -3563488384,3563488447,RS -3563488448,3563488511,CS -3563488512,3563489535,RS -3563489536,3563491323,CS -3563491324,3563491327,RS -3563491328,3563495423,CS -3563495424,3563503615,DE -3563503616,3563511807,GB -3563511808,3563519999,DE -3563520000,3563528191,FR -3563528192,3563536383,DE -3563536384,3563539087,CH -3563539088,3563539095,US -3563539096,3563539119,CH -3563539120,3563539135,DE -3563539136,3563540191,CH -3563540192,3563540199,DE -3563540200,3563544575,CH -3563544576,3563552767,DE -3563552768,3563560959,SI -3563569152,3563577343,IT -3563577344,3563585535,GB -3563585536,3563601919,IT -3563601920,3563610111,GR -3563610112,3563618303,BG -3563618304,3563626495,GB -3563626496,3563634687,ES -3563634688,3563651071,NL -3563651072,3563683839,SE -3563683840,3563692031,BE -3563692032,3563700223,GB -3563700224,3563708415,DE -3563708416,3563716607,HU -3563716608,3563724799,PL -3563724800,3563732991,RU -3563732992,3563741183,PS -3563741184,3563749375,GB -3563749376,3563765759,PL -3563765760,3563782143,ES -3563782144,3563790335,GR -3563790336,3563798527,EE -3563798528,3563800447,FR -3563800448,3563800463,GB -3563800464,3563800495,FR -3563800496,3563800511,GB -3563800512,3563800607,FR -3563800608,3563800623,GB -3563800624,3563800767,FR -3563800768,3563800783,GB -3563800784,3563800911,FR -3563800912,3563800927,GB -3563800928,3563800943,FR -3563800944,3563800991,GB -3563800992,3563801135,FR -3563801136,3563801151,DE -3563801152,3563801183,FR -3563801184,3563801199,DE -3563801200,3563801279,FR -3563801280,3563801295,NL -3563801296,3563801375,FR -3563801376,3563801391,GB -3563801392,3563801407,IT -3563801408,3563801423,DE -3563801424,3563801455,FR -3563801456,3563801519,GB -3563801520,3563801551,FR -3563801552,3563801567,GB -3563801568,3563801599,FR -3563801600,3563801631,GB -3563801632,3563801647,FR -3563801648,3563801743,GB -3563801744,3563801775,FR -3563801776,3563801791,BE -3563801792,3563801839,FR -3563801840,3563801855,GB -3563801856,3563801871,FR -3563801872,3563801887,GB -3563801888,3563801922,FR -3563801923,3563801935,GB -3563801936,3563802015,FR -3563802016,3563802031,BE -3563802032,3563802047,FR -3563802048,3563802063,IT -3563802064,3563802207,FR -3563802208,3563802223,GB -3563802224,3563802255,FR -3563802256,3563802271,GB -3563802272,3563802303,FR -3563802304,3563802319,IT -3563802320,3563802447,FR -3563802448,3563802463,GB -3563802464,3563802623,FR -3563802624,3563802655,GB -3563802656,3563802735,FR -3563802736,3563802751,US -3563802752,3563802783,GB -3563802784,3563803007,FR -3563803008,3563803023,GB -3563803024,3563803039,FR -3563803040,3563803055,GB -3563803056,3563803119,FR -3563803120,3563803135,NL -3563803136,3563803151,FR -3563803152,3563803167,GB -3563803168,3563803183,FR -3563803184,3563803215,GB -3563803216,3563803247,FR -3563803248,3563803263,GB -3563803264,3563803279,FR -3563803280,3563803295,GB -3563803296,3563803311,FR -3563803312,3563803327,GB -3563803328,3563803359,FR -3563803360,3563803423,GB -3563803424,3563803439,FR -3563803440,3563803455,DE -3563803456,3563803487,GB -3563803488,3563803503,US -3563803504,3563803519,GB -3563803520,3563803631,FR -3563803632,3563803647,GB -3563803648,3563803967,FR -3563803968,3563803983,BE -3563803984,3563804695,FR -3563804696,3563804703,GB -3563804704,3563804719,FR -3563804720,3563804727,GB -3563804728,3563806543,FR -3563806544,3563806559,DE -3563806560,3563806687,FR -3563806688,3563806703,DE -3563806704,3563806719,FR -3563806720,3563814911,SA -3563814912,3563823103,SE -3563823104,3563831295,DE -3563831296,3563847679,RU -3563847680,3563848383,NL -3563848384,3563848447,ES -3563848448,3563848575,NL -3563848576,3563848583,ES -3563848584,3563848671,NL -3563848672,3563848703,ES -3563848704,3563848959,US -3563848960,3563848967,NL -3563848968,3563848983,ES -3563848984,3563849015,NL -3563849016,3563849023,ES -3563849024,3563849151,NL -3563849152,3563849183,ES -3563849184,3563849197,NL -3563849198,3563849199,ES -3563849200,3563849211,NL -3563849212,3563849215,ES -3563849216,3563849727,GB -3563849728,3563849991,NL -3563849992,3563849999,SA -3563850000,3563850007,FI -3563850008,3563850239,NL -3563850240,3563850751,GB -3563850752,3563850815,NL -3563850816,3563850831,ES -3563850832,3563850847,NL -3563850848,3563850879,ES -3563850880,3563851199,NL -3563851200,3563851263,ES -3563851264,3563851775,US -3563851776,3563852095,ES -3563852096,3563852191,NL -3563852192,3563852207,GB -3563852208,3563852216,NL -3563852217,3563852223,ES -3563852224,3563852543,NL -3563852544,3563852799,ES -3563852800,3563853375,NL -3563853376,3563853439,ES -3563853440,3563853567,NL -3563853568,3563854079,ES -3563854080,3563854095,NL -3563854096,3563854103,ES -3563854104,3563854175,NL -3563854176,3563854239,ES -3563854240,3563854259,NL -3563854260,3563854591,ES -3563854592,3563855103,NL -3563855104,3563855359,ES -3563855360,3563855487,NL -3563855488,3563855551,ES -3563855552,3563855583,NL -3563855584,3563855615,ES -3563855616,3563855871,US -3563855872,3563864063,AT -3563864064,3563872255,GB -3563872256,3563880447,RU -3563880448,3563888639,TR -3563888640,3563896831,DE -3563896832,3563899391,HU -3563899392,3563899647,SK -3563899648,3563899903,HU -3563899904,3563900159,SK -3563900160,3563900415,HU -3563900416,3563900671,SK -3563900672,3563902975,HU -3563902976,3563903231,SK -3563903232,3563913215,HU -3563913216,3563921407,SE -3563921408,3563929599,UA -3563929600,3563937791,CH -3563937792,3563945983,TR -3563945984,3563954175,PL -3563954176,3563962367,IT -3563962368,3563970559,RU -3563970560,3563978751,TR -3563978752,3563995135,IT -3563995136,3564003327,MK -3564003328,3564008191,DE -3564008192,3564008223,CH -3564008224,3564011519,DE -3564011520,3564019711,UA -3564019712,3564027903,GB -3564027904,3564036351,DE -3564036352,3564037631,RU -3564037632,3564038143,KZ -3564038144,3564039167,RU -3564039168,3564039679,AZ -3564039680,3564039935,RU -3564039936,3564040191,KZ -3564040192,3564040447,RU -3564040448,3564040703,UZ -3564040704,3564042239,RU -3564042240,3564042495,TJ -3564042496,3564043007,RU -3564043008,3564044287,DE -3564044288,3564052479,CZ -3564052480,3564060671,GB -3564060672,3564068863,RU -3564068864,3564077055,ES -3564077056,3564093439,GB -3564093440,3564101631,UA -3564101632,3564109823,DE -3564109824,3564126207,SE -3564126208,3564134399,IT -3564134400,3564142591,KG -3564142592,3564146175,DE -3564146176,3564150783,DK -3564150784,3564152607,SE -3564152608,3564152639,NO -3564152640,3564157207,SE -3564157208,3564157215,NO -3564157216,3564158975,SE -3564158976,3564161855,DE -3564161856,3564161891,NL -3564161892,3564165119,DE -3564165120,3564165439,NL -3564165440,3564175359,DE -3564175360,3564183551,GB -3564183552,3564191743,UA -3564191744,3564199935,BE -3564199936,3564208127,RU -3564208128,3564216319,GB -3564216320,3564224511,PT -3564224512,3564232703,GB -3564232704,3564240895,RU -3564240896,3564241407,TJ -3564241408,3564249087,RU -3564249088,3564260735,DE -3564260736,3564260863,NL -3564260864,3564265471,DE -3564265472,3564273663,GR -3564273664,3564302655,DE -3564302656,3564302687,BE -3564302688,3564306431,DE -3564306432,3564314623,TR -3564314624,3564322815,GB -3564322816,3564331007,IT -3564331008,3564339199,ES -3564339200,3564339967,GB -3564339968,3564339999,NL -3564340000,3564340351,GB -3564340352,3564340415,NL -3564340416,3564340479,GB -3564340480,3564340735,NL -3564340736,3564340991,GB -3564340992,3564341119,NL -3564341120,3564341183,GB -3564341184,3564341247,NL -3564341248,3564341759,GB -3564341760,3564342063,NL -3564342064,3564342207,GB -3564342208,3564342271,NL -3564342272,3564342335,GB -3564342336,3564342431,NL -3564342432,3564342527,GB -3564342528,3564342783,NL -3564342784,3564343583,GB -3564343584,3564343615,NL -3564343616,3564343679,GB -3564343680,3564343743,NL -3564343744,3564343775,GB -3564343776,3564343807,NL -3564343808,3564343839,GB -3564343840,3564343871,NL -3564343872,3564343967,GB -3564343968,3564343999,NL -3564344000,3564344031,GB -3564344032,3564344231,NL -3564344232,3564344239,GB -3564344240,3564344255,NL -3564344256,3564344575,GB -3564344576,3564344831,NL -3564344832,3564344895,GB -3564344896,3564344959,NL -3564344960,3564345023,GB -3564345024,3564345087,NL -3564345088,3564345127,GB -3564345128,3564345151,NL -3564345152,3564345215,GB -3564345216,3564345343,NL -3564345344,3564346143,GB -3564346144,3564346175,NL -3564346176,3564346207,GB -3564346208,3564346239,NL -3564346240,3564346271,GB -3564346272,3564346303,NL -3564346304,3564347391,GB -3564347392,3564347583,NL -3564347584,3564347647,GB -3564347648,3564348159,NL -3564348160,3564348191,GB -3564348192,3564348239,NL -3564348240,3564348255,GB -3564348256,3564348287,NL -3564348288,3564348399,GB -3564348400,3564348415,NL -3564348416,3564348479,GB -3564348480,3564348495,NL -3564348496,3564348527,GB -3564348528,3564348543,NL -3564348544,3564348559,GB -3564348560,3564348639,NL -3564348640,3564348671,GB -3564348672,3564348991,NL -3564348992,3564349183,GB -3564349184,3564349311,NL -3564349312,3564349375,GB -3564349376,3564349407,NL -3564349408,3564349503,GB -3564349504,3564349583,NL -3564349584,3564349615,GB -3564349616,3564349695,NL -3564349696,3564350335,GB -3564350336,3564350351,NL -3564350352,3564350367,GB -3564350368,3564350719,NL -3564350720,3564351231,GB -3564351232,3564351295,NL -3564351296,3564351375,GB -3564351376,3564351391,NL -3564351392,3564351439,GB -3564351440,3564351455,NL -3564351456,3564351471,GB -3564351472,3564351487,NL -3564351488,3564351503,GB -3564351504,3564351679,NL -3564351680,3564351999,GB -3564352000,3564352079,NL -3564352080,3564352095,GB -3564352096,3564352127,NL -3564352128,3564352191,GB -3564352192,3564352511,NL -3564352512,3564352543,GB -3564352544,3564352575,NL -3564352576,3564352735,GB -3564352736,3564352767,NL -3564352768,3564353023,GB -3564353024,3564353087,NL -3564353088,3564353111,GB -3564353112,3564353167,NL -3564353168,3564353199,GB -3564353200,3564353215,NL -3564353216,3564353223,GB -3564353224,3564353263,NL -3564353264,3564353295,GB -3564353296,3564353311,NL -3564353312,3564353343,GB -3564353344,3564353359,NL -3564353360,3564353407,GB -3564353408,3564353487,NL -3564353488,3564353503,GB -3564353504,3564353535,NL -3564353536,3564353791,GB -3564353792,3564353919,NL -3564353920,3564354063,GB -3564354064,3564354079,NL -3564354080,3564354303,GB -3564354304,3564354335,NL -3564354336,3564354367,GB -3564354368,3564354559,NL -3564354560,3564354943,GB -3564354944,3564355039,NL -3564355040,3564355135,GB -3564355136,3564355199,NL -3564355200,3564355295,GB -3564355296,3564355311,NL -3564355312,3564355583,GB -3564355584,3564363775,NL -3564363776,3564371967,UA -3564371968,3564380159,DE -3564380160,3564388351,FI -3564388352,3564392959,SE -3564392960,3564393087,NO -3564393088,3564396543,SE -3564396544,3564404735,RU -3564404736,3564412927,BG -3564412928,3564421119,IL -3564421120,3564429311,SA -3564429312,3564431567,KZ -3564431568,3564431583,AF -3564431584,3564437503,KZ -3564437504,3564445695,LT -3564445696,3564453887,BG -3564453888,3564462079,DE -3564462080,3564470271,CH -3564470272,3564478463,IL -3564478464,3564484607,LU -3564484608,3564484640,AL -3564484641,3564484863,LU -3564484864,3564485119,RU -3564485120,3564485631,LU -3564485632,3564485887,BZ -3564485888,3564486143,LU -3564486144,3564486399,IT -3564486400,3564486655,LU -3564486656,3564494847,CH -3564494848,3564494907,GB -3564494908,3564494911,FR -3564494912,3564494975,GB -3564494976,3564494983,CH -3564494984,3564495103,GB -3564495104,3564495167,DE -3564495168,3564495203,GB -3564495616,3564495743,GB -3564495872,3564495927,GB -3564495936,3564496111,GB -3564496128,3564496175,GB -3564496184,3564496199,GB -3564496208,3564496215,GB -3564496224,3564496263,GB -3564496272,3564496319,GB -3564496320,3564496327,FR -3564496336,3564496607,GB -3564496640,3564496655,GB -3564496672,3564496847,GB -3564496848,3564496863,FR -3564496864,3564496895,GB -3564498944,3564499007,NL -3564499008,3564499055,GB -3564499200,3564499215,NL -3564499216,3564499231,DK -3564499232,3564499239,NL -3564499248,3564499335,GB -3564499456,3564499551,NL -3564499552,3564499711,GB -3564500992,3564500999,SE -3564501248,3564501263,DE -3564501264,3564501279,SE -3564501280,3564501311,GB -3564501504,3564501507,SE -3564501508,3564501511,DE -3564501760,3564501887,DE -3564502528,3564502559,DE -3564502560,3564502591,GB -3564503040,3564511231,JO -3564511232,3564519423,RU -3564519424,3564527615,SI -3564527616,3564543999,SA -3564544000,3564560383,DE -3564560384,3564560391,US -3564560392,3564560399,CA -3564560400,3564560415,US -3564560416,3564560511,GB -3564560512,3564560639,US -3564560640,3564560927,GB -3564560928,3564560959,US -3564560960,3564561039,GB -3564561040,3564561087,US -3564561088,3564561151,GB -3564561152,3564561407,US -3564561408,3564561663,GB -3564561664,3564561791,US -3564561792,3564561919,GB -3564561920,3564562431,CH -3564562432,3564562687,GB -3564562688,3564562815,US -3564562816,3564562879,GB -3564562880,3564562943,US -3564562944,3564563711,GB -3564563712,3564563967,US -3564563968,3564564223,GB -3564564224,3564564239,US -3564564240,3564565247,GB -3564565248,3564565279,US -3564565280,3564565327,GB -3564565328,3564565407,US -3564565408,3564566271,GB -3564566272,3564566527,US -3564566528,3564567143,GB -3564567144,3564567151,US -3564567152,3564567247,GB -3564567248,3564567255,US -3564567256,3564567295,GB -3564567296,3564567423,US -3564567424,3564567551,GB -3564567552,3564567935,US -3564567936,3564568039,GB -3564568040,3564568183,US -3564568184,3564568223,GB -3564568224,3564568231,US -3564568232,3564568255,GB -3564568256,3564568319,US -3564568320,3564571055,GB -3564571056,3564571071,DE -3564571072,3564571135,GB -3564571136,3564571455,FR -3564571456,3564571479,GB -3564571480,3564571487,FR -3564571488,3564571511,GB -3564571512,3564571519,FR -3564571520,3564571567,GB -3564571568,3564571583,FR -3564571584,3564571591,GB -3564571592,3564571599,FR -3564571600,3564572271,GB -3564572272,3564572287,DE -3564572288,3564576767,GB -3564576768,3564584959,RU -3564584960,3564593151,SA -3564593152,3564601343,RU -3564601344,3564609535,AT -3564609536,3564634111,RU -3564634112,3564642303,MK -3564642304,3564650495,CH -3564650496,3564666879,NL -3564666880,3564668943,IE -3564668944,3564668991,GB -3564668992,3564669103,IE -3564669104,3564669119,GB -3564669120,3564669343,IE -3564669344,3564669359,GB -3564669360,3564669407,IE -3564669408,3564669439,GB -3564669440,3564670207,IE -3564670208,3564670239,GB -3564670240,3564673023,IE -3564673024,3564673055,GB -3564673056,3564673135,IE -3564673136,3564673215,GB -3564673216,3564673407,IE -3564673408,3564673663,GB -3564673664,3564673791,IE -3564673792,3564673807,GB -3564673808,3564673823,IE -3564673824,3564673839,GB -3564673840,3564674047,IE -3564674048,3564674431,GB -3564674432,3564675071,IE -3564675072,3564683263,RU -3564683264,3564691455,IR -3564691456,3564699647,GI -3564699648,3564716031,GB -3564716032,3564724223,IT -3564724224,3564732415,GR -3564732416,3564733439,DE -3564733440,3564733695,GB -3564733696,3564734239,DE -3564734240,3564734271,GB -3564734272,3564734287,DE -3564734288,3564734303,GB -3564734304,3564734335,DE -3564734336,3564734431,GB -3564734432,3564734719,DE -3564734720,3564734807,GB -3564734808,3564734815,DE -3564734816,3564734819,GB -3564734820,3564736511,DE -3564736512,3564736527,GB -3564736528,3564736583,DE -3564736584,3564736603,GB -3564736604,3564736607,DE -3564736608,3564736611,GB -3564736612,3564736767,DE -3564736768,3564736887,GB -3564736888,3564736895,DE -3564736896,3564736903,GB -3564736904,3564736927,DE -3564736928,3564736959,GB -3564736960,3564736967,DE -3564736968,3564736975,GB -3564736976,3564736991,DE -3564736992,3564737007,GB -3564737008,3564737535,DE -3564737536,3564737791,GB -3564737792,3564738047,DE -3564738048,3564738303,GB -3564738304,3564739327,DE -3564739328,3564739335,GB -3564739336,3564739351,DE -3564739352,3564739391,GB -3564739392,3564739455,DE -3564739456,3564739503,GB -3564739504,3564739519,DE -3564739520,3564739567,GB -3564739568,3564739583,DE -3564739584,3564739799,GB -3564739800,3564739815,DE -3564739816,3564739823,GB -3564739824,3564740351,DE -3564740352,3564740383,GB -3564740384,3564740415,DE -3564740416,3564740447,GB -3564740448,3564740455,DE -3564740456,3564740459,GB -3564740460,3564740463,DE -3564740464,3564740471,GB -3564740472,3564740479,DE -3564740480,3564740495,GB -3564740496,3564740503,DE -3564740504,3564740527,GB -3564740528,3564740543,DE -3564740544,3564740575,GB -3564740576,3564740591,DE -3564740592,3564740595,GB -3564740596,3564740607,DE -3564740608,3564748799,FR -3564748800,3564756991,GB -3564756992,3564765183,ES -3564765184,3564773375,RU -3564773376,3564781567,DE -3564781568,3564789759,LT -3564789760,3564797951,ES -3564797952,3564806143,DE -3564806144,3564814335,BG -3564814336,3564822527,PL -3564830720,3564838911,BE -3564838912,3564847103,DE -3564847104,3564855295,IT -3564855296,3564862863,DE -3564862864,3564862871,AE -3564862872,3564863487,DE -3564863488,3564880895,NL -3564880896,3564880911,GB -3564880912,3564880919,NL -3564880920,3564880943,GB -3564880944,3564880951,NL -3564880952,3564880975,GB -3564880976,3564880991,NL -3564880992,3564881167,GB -3564881168,3564881183,NL -3564881184,3564881231,GB -3564881232,3564881263,NL -3564881264,3564881375,GB -3564881376,3564881391,NL -3564881392,3564881455,GB -3564881456,3564881471,NL -3564881472,3564881519,GB -3564881520,3564881535,NL -3564881536,3564881551,GB -3564881552,3564881567,NL -3564881568,3564881663,GB -3564881664,3564881727,NL -3564881728,3564881919,GB -3564881920,3564881939,NL -3564881940,3564881983,GB -3564881984,3564881991,NL -3564881992,3564881999,GB -3564882000,3564882079,NL -3564882080,3564882095,GB -3564882096,3564882119,NL -3564882120,3564882127,GB -3564882128,3564882239,NL -3564882240,3564882255,GB -3564882256,3564882279,NL -3564882280,3564882335,GB -3564882336,3564882367,NL -3564882368,3564882399,GB -3564882400,3564882943,NL -3564882944,3564883007,GB -3564883008,3564883039,NL -3564883040,3564883047,GB -3564883048,3564883055,NL -3564883056,3564883087,GB -3564883088,3564883095,NL -3564883096,3564883167,GB -3564883168,3564883967,NL -3564883968,3564884223,GB -3564884224,3564884235,NL -3564884236,3564884239,GB -3564884240,3564884255,NL -3564884256,3564884303,GB -3564884304,3564884319,NL -3564884320,3564884335,GB -3564884336,3564884343,NL -3564884344,3564884359,GB -3564884360,3564884367,NL -3564884368,3564884375,GB -3564884376,3564884399,NL -3564884400,3564884407,GB -3564884408,3564884415,NL -3564884416,3564884431,GB -3564884432,3564884439,NL -3564884440,3564884455,GB -3564884456,3564884463,NL -3564884464,3564884735,GB -3564884736,3564884991,NL -3564884992,3564885007,GB -3564885008,3564885023,NL -3564885024,3564885087,GB -3564885088,3564885135,NL -3564885136,3564885343,GB -3564885344,3564885359,NL -3564885360,3564885439,GB -3564885440,3564885455,NL -3564885456,3564885527,GB -3564885528,3564885546,NL -3564885547,3564885551,GB -3564885552,3564885583,NL -3564885584,3564885631,GB -3564885632,3564885695,NL -3564885696,3564885727,GB -3564885728,3564885743,NL -3564885744,3564885775,GB -3564885776,3564885791,NL -3564885792,3564885839,GB -3564885840,3564885903,NL -3564885904,3564885919,GB -3564885920,3564885967,NL -3564885968,3564885983,GB -3564885984,3564885999,NL -3564886000,3564886015,GB -3564886016,3564886031,NL -3564886032,3564886271,GB -3564886272,3564886279,NL -3564886280,3564886287,GB -3564886288,3564886295,NL -3564886296,3564886303,GB -3564886304,3564886367,NL -3564886368,3564886375,GB -3564886376,3564886415,NL -3564886416,3564886431,GB -3564886432,3564886527,NL -3564886528,3564886655,GB -3564886656,3564886751,NL -3564886752,3564886919,GB -3564886920,3564886927,NL -3564886928,3564886943,GB -3564886944,3564886951,NL -3564886952,3564887039,GB -3564887040,3564888207,NL -3564888208,3564888223,GB -3564888224,3564888327,NL -3564888328,3564888335,GB -3564888336,3564888367,NL -3564888368,3564888383,GB -3564888384,3564888463,NL -3564888464,3564888479,DE -3564888480,3564888503,NL -3564888504,3564888511,GB -3564888512,3564888527,DE -3564888528,3564888591,NL -3564888592,3564888607,GB -3564888608,3564888623,NL -3564888624,3564888663,GB -3564888664,3564888671,NL -3564888672,3564888799,GB -3564888800,3564888815,NL -3564888816,3564888823,GB -3564888824,3564888879,NL -3564888880,3564888895,GB -3564888896,3564888903,NL -3564888904,3564888911,GB -3564888912,3564888991,NL -3564888992,3564889023,FR -3564889024,3564889087,NL -3564889088,3564889151,GB -3564889152,3564889167,NL -3564889168,3564889199,GB -3564889200,3564889215,NL -3564889216,3564889295,GB -3564889296,3564889311,NL -3564889312,3564889343,GB -3564889344,3564889375,NL -3564889376,3564889407,GB -3564889408,3564889511,NL -3564889512,3564889519,GB -3564889520,3564889631,NL -3564889632,3564889647,GB -3564889648,3564889663,NL -3564889664,3564889695,GB -3564889696,3564889727,DE -3564889728,3564889887,NL -3564889888,3564890239,GB -3564890240,3564890271,NL -3564890272,3564890303,GB -3564890304,3564890367,NL -3564890368,3564890399,FR -3564890400,3564890527,NL -3564890528,3564890543,GB -3564890544,3564890579,NL -3564890580,3564890591,GB -3564890592,3564890623,NL -3564890624,3564890703,GB -3564890704,3564890719,NL -3564890720,3564890751,GB -3564890752,3564890783,NL -3564890784,3564892431,GB -3564892432,3564892447,NL -3564892448,3564892463,GB -3564892464,3564892479,NL -3564892480,3564892607,GB -3564892608,3564892639,NL -3564892640,3564892735,GB -3564892736,3564892751,NL -3564892752,3564894207,GB -3564894208,3564896255,NL -3564896256,3564904447,RU -3564904448,3564912639,DE -3564912640,3564920831,BG -3564920832,3564921855,ES -3564921856,3564923007,US -3564923008,3564923135,RU -3564923136,3564924671,US -3564924672,3564929023,RU -3564929024,3564937215,AT -3564937216,3564941311,CS -3564941312,3564942591,CS -3564942592,3564942847,CS -3564942848,3564945407,CS -3564945408,3564947175,GB -3564947176,3564947183,FR -3564947184,3564948063,GB -3564948064,3564948071,IE -3564948072,3564948319,GB -3564948320,3564948351,IE -3564948352,3564953647,GB -3564953648,3564953651,CH -3564953652,3564954111,GB -3564954112,3564954131,AT -3564954132,3564954139,GB -3564954140,3564954143,AT -3564954144,3564954155,GB -3564954156,3564954159,AT -3564954160,3564954175,GB -3564954176,3564954183,AT -3564954184,3564954191,CH -3564954192,3564954199,AT -3564954200,3564954207,GB -3564954208,3564954211,AT -3564954212,3564954231,GB -3564954232,3564954239,AT -3564954240,3564954303,GB -3564954304,3564954311,AT -3564954312,3564954367,GB -3564954368,3564954383,AT -3564954384,3564954415,GB -3564954416,3564954431,DE -3564954432,3564956160,GB -3564956161,3564956543,AT -3564956544,3564956671,GB -3564956672,3564956703,GR -3564956704,3564956719,AT -3564956720,3564956735,GB -3564956736,3564956751,AT -3564956752,3564956767,US -3564956768,3564956831,AT -3564956832,3564956839,GB -3564956840,3564956855,AT -3564956856,3564956903,GB -3564956904,3564956907,AT -3564956908,3564956911,CH -3564956912,3564956927,AT -3564956928,3564956967,GB -3564956968,3564956971,CH -3564956972,3564956975,US -3564956976,3564956979,GB -3564956980,3564956991,AT -3564956992,3564956999,GB -3564957000,3564957007,AT -3564957008,3564957023,GB -3564957024,3564957039,AT -3564957040,3564957087,GB -3564957088,3564957119,AT -3564957120,3564957183,GB -3564957184,3564957255,AT -3564957256,3564957263,GB -3564957264,3564957439,AT -3564957440,3564957447,GB -3564957448,3564957455,CH -3564957456,3564957459,AT -3564957460,3564957471,GB -3564957472,3564957499,AT -3564957500,3564957511,GB -3564957512,3564957519,AT -3564957520,3564957527,GB -3564957528,3564957531,AT -3564957532,3564957547,GB -3564957548,3564957551,AT -3564957552,3564957559,GB -3564957560,3564957591,AT -3564957592,3564957595,GB -3564957596,3564957599,AT -3564957600,3564957607,GB -3564957608,3564957631,AT -3564957632,3564957663,GB -3564957664,3564957671,AT -3564957672,3564957679,GB -3564957680,3564957695,AT -3564957696,3564957855,GB -3564957856,3564957859,ES -3564957860,3564957863,AT -3564957864,3564957867,IT -3564957868,3564957871,AT -3564957872,3564957891,GB -3564957892,3564957903,AT -3564957904,3564957911,GB -3564957912,3564957919,AT -3564957920,3564957951,GB -3564957952,3564957967,AT -3564957968,3564957987,GB -3564957988,3564958015,AT -3564958016,3564958111,GB -3564958112,3564958143,AT -3564958144,3564958147,GB -3564958148,3564958159,AT -3564958160,3564958175,GB -3564958176,3564958179,AT -3564958180,3564958183,US -3564958184,3564958191,AT -3564958192,3564958207,GB -3564958208,3564958463,AT -3564958464,3564958487,GB -3564958488,3564958495,AT -3564958496,3564958719,GB -3564958720,3564958799,AT -3564958800,3564958807,GB -3564958808,3564958815,AT -3564958816,3564958816,GB -3564958817,3564958847,AT -3564958848,3564958912,GB -3564958913,3564958943,AT -3564958944,3564959008,GB -3564959009,3564959039,AT -3564959040,3564959075,GB -3564959076,3564959091,AT -3564959092,3564959095,GB -3564959096,3564959103,AT -3564959104,3564959119,GB -3564959120,3564959127,AT -3564959128,3564959191,GB -3564959192,3564959195,AT -3564959196,3564959199,GB -3564959200,3564959227,AT -3564959228,3564959263,GB -3564959264,3564959295,AT -3564959296,3564959383,GB -3564959384,3564959391,AT -3564959392,3564959399,SA -3564959400,3564959407,AT -3564959408,3564959423,CH -3564959424,3564959443,GB -3564959444,3564959451,AT -3564959452,3564959455,FR -3564959456,3564959471,GB -3564959472,3564959479,AT -3564959480,3564959487,GB -3564959488,3564959495,AT -3564959496,3564959499,GB -3564959500,3564959503,AT -3564959504,3564959511,GB -3564959512,3564959519,AT -3564959520,3564959535,GB -3564959536,3564959551,AT -3564959552,3564959567,GB -3564959568,3564959579,AT -3564959580,3564959623,GB -3564959624,3564959639,AT -3564959640,3564959655,GB -3564959656,3564959663,CH -3564959664,3564959679,AT -3564959680,3564959695,GB -3564959696,3564959711,AT -3564959712,3564959755,GB -3564959756,3564959759,AT -3564959760,3564959904,GB -3564959905,3564959935,AT -3564959936,3564960127,GB -3564960128,3564960135,DE -3564960136,3564960191,GB -3564960192,3564960195,AT -3564960196,3564960211,GB -3564960212,3564960223,AT -3564960224,3564960231,GB -3564960232,3564960383,AT -3564960384,3564960551,GB -3564960552,3564960559,AT -3564960560,3564960615,GB -3564960616,3564960623,FR -3564960624,3564960635,GB -3564960636,3564960639,AT -3564960640,3564960767,GB -3564960768,3564960799,AT -3564960800,3564960871,GB -3564960872,3564960879,IT -3564960880,3564960927,GB -3564960928,3564960959,AT -3564960960,3564960991,GB -3564960992,3564961007,AT -3564961008,3564961023,GB -3564961024,3564961079,AT -3564961080,3564961279,GB -3564961280,3564961311,AT -3564961312,3564961319,GB -3564961320,3564961791,AT -3564961792,3564969983,TR -3564969984,3564972607,DE -3564972608,3564972631,AT -3564972632,3564972639,LI -3564972640,3564978175,DE -3564978176,3564986367,GB -3564986368,3564994559,DE -3564994560,3565002751,NL -3565002752,3565007247,NO -3565007248,3565007251,SE -3565007252,3565027327,NO -3565027328,3565035519,PL -3565035520,3565043711,IE -3565043712,3565045247,AT -3565045248,3565045503,SK -3565045504,3565051903,AT -3565051904,3565068287,GB -3565068288,3565076479,CH -3565076480,3565084671,DE -3565084672,3565092863,IS -3565092864,3565093055,GB -3565093056,3565093087,PS -3565093088,3565093391,GB -3565093392,3565093399,NO -3565093400,3565096759,GB -3565096760,3565096767,IE -3565096768,3565099647,GB -3565099648,3565099651,US -3565099652,3565101055,GB -3565101056,3565109247,DE -3565109248,3565117439,PL -3565117440,3565125631,TR -3565125632,3565158399,NL -3565158400,3565223935,ES -3565223936,3565240319,FR -3565240320,3565248511,IE -3565248512,3565256703,RU -3565256704,3565289471,NL -3565289472,3565355007,DK -3565355008,3565420543,IT -3565420544,3565486079,GB -3565486080,3565486335,IE -3565486336,3565486975,FR -3565486976,3565487615,NL -3565487616,3565487871,SE -3565487872,3565488383,GB -3565488384,3565488639,ES -3565488640,3565488895,GB -3565488896,3565489535,DE -3565489536,3565489791,GB -3565489792,3565489823,DE -3565489824,3565490175,GB -3565490176,3565490431,NL -3565490432,3565491199,GB -3565491200,3565491215,FR -3565491216,3565491455,GB -3565491456,3565491711,IT -3565491712,3565491839,GB -3565491840,3565491903,IT -3565491904,3565491967,NL -3565491968,3565492223,DE -3565492224,3565492295,GB -3565492296,3565492303,IE -3565492304,3565492319,GB -3565492320,3565492327,DE -3565492328,3565492335,GB -3565492336,3565492351,FR -3565492352,3565492479,GB -3565492480,3565492607,NL -3565492608,3565492639,GB -3565492640,3565492655,FR -3565492656,3565492671,GB -3565492672,3565492735,IT -3565492736,3565492991,CH -3565492992,3565493247,NL -3565493248,3565493583,GB -3565493584,3565493591,DE -3565493592,3565493679,GB -3565493680,3565493687,FR -3565493688,3565493759,GB -3565493760,3565493775,NL -3565493776,3565493983,GB -3565493984,3565494055,DE -3565494056,3565494063,GB -3565494064,3565494079,NL -3565494080,3565494143,GB -3565494144,3565494271,DE -3565494272,3565494527,IS -3565494528,3565494543,GB -3565494544,3565494551,IT -3565494552,3565494559,DE -3565494560,3565494591,GB -3565494592,3565494655,FR -3565494656,3565494671,SE -3565494672,3565494687,DE -3565494688,3565494703,SE -3565494704,3565494719,DK -3565494720,3565494735,GB -3565494736,3565494743,CA -3565494744,3565495295,GB -3565495296,3565496447,FR -3565496448,3565496511,DE -3565496512,3565496575,US -3565496576,3565496831,GB -3565496832,3565497087,IT -3565497088,3565497103,GB -3565497104,3565497119,IE -3565497120,3565497151,DE -3565497152,3565497159,IE -3565497160,3565497167,US -3565497168,3565497199,GB -3565497200,3565497207,IT -3565497208,3565497215,GB -3565497216,3565497279,CZ -3565497280,3565497287,NL -3565497288,3565497343,GB -3565497344,3565497599,US -3565497600,3565497871,GB -3565497872,3565497887,DE -3565497888,3565497903,GB -3565497904,3565497911,IE -3565497912,3565497919,DE -3565497920,3565497927,PR -3565497928,3565497951,GB -3565497952,3565497967,US -3565497968,3565498111,GB -3565498112,3565498367,NL -3565498368,3565498431,FR -3565498432,3565498479,US -3565498480,3565498519,GB -3565498520,3565498527,ZA -3565498528,3565499815,GB -3565499816,3565499823,FR -3565499824,3565500479,GB -3565500480,3565500543,DE -3565500544,3565500567,GB -3565500568,3565500575,IE -3565500576,3565500591,GB -3565500592,3565500599,DE -3565500600,3565500607,GB -3565500608,3565500623,FR -3565500624,3565501095,GB -3565501096,3565501103,FR -3565501104,3565501119,FI -3565501120,3565501231,GB -3565501232,3565501247,DE -3565501248,3565501311,GB -3565501312,3565501439,DE -3565501440,3565501679,GB -3565501680,3565501695,IE -3565501696,3565502207,GB -3565502208,3565502239,IT -3565502240,3565502463,GB -3565502464,3565503487,NL -3565503488,3565503999,GB -3565504000,3565504511,NL -3565504512,3565510655,GB -3565510656,3565511679,NL -3565511680,3565512191,CH -3565512192,3565512703,DE -3565512704,3565512767,GB -3565512768,3565512959,DE -3565512960,3565514111,GB -3565514112,3565514239,DE -3565514240,3565514495,DK -3565514496,3565518847,GB -3565518848,3565551615,TR -3565551616,3565578495,GB -3565578496,3565578751,CA -3565578752,3565682687,GB -3565682688,3565688063,NL -3565688064,3565688319,GB -3565688320,3565748223,NL -3565748224,3565752407,GB -3565752416,3565752463,GB -3565752472,3565752479,GB -3565752488,3565752535,GB -3565752544,3565752839,GB -3565752856,3565752879,GB -3565752888,3565752983,GB -3565752992,3565752999,GB -3565753016,3565753031,GB -3565753040,3565753071,GB -3565753080,3565753183,GB -3565753248,3565753279,GB -3565753344,3565753791,GB -3565753800,3565753815,GB -3565753824,3565753831,GB -3565753840,3565753847,GB -3565753984,3565754367,GB -3565754496,3565754511,GB -3565754624,3565755263,GB -3565755280,3565755359,GB -3565755376,3565755583,GB -3565755648,3565755695,GB -3565755704,3565755727,GB -3565755736,3565755831,GB -3565755840,3565755847,GB -3565755856,3565755871,GB -3565755880,3565755919,GB -3565755928,3565755935,GB -3565755944,3565755959,GB -3565755968,3565755999,GB -3565756008,3565756063,GB -3565756072,3565756087,GB -3565756096,3565756119,GB -3565756136,3565756159,GB -3565756288,3565760783,GB -3565760792,3565760799,GB -3565760808,3565760823,GB -3565760832,3565760855,GB -3565760864,3565760935,GB -3565760944,3565760967,GB -3565760976,3565761007,GB -3565761016,3565761279,GB -3565761344,3565761535,GB -3565761544,3565761599,GB -3565761616,3565761631,GB -3565761640,3565761647,GB -3565761656,3565761687,GB -3565761704,3565761727,GB -3565761752,3565761783,GB -3565761792,3565762047,GB -3565762048,3565762303,ZA -3565762560,3565762815,GB -3565763072,3565763455,GB -3565763488,3565763599,GB -3565763616,3565763671,GB -3565763680,3565763703,GB -3565763720,3565763735,GB -3565763744,3565763751,GB -3565763760,3565763799,GB -3565763808,3565763815,GB -3565763832,3565763839,GB -3565763884,3565763891,GB -3565764096,3565764183,GB -3565764192,3565764207,GB -3565764256,3565764367,GB -3565764376,3565764439,GB -3565764448,3565764455,GB -3565764464,3565764551,GB -3565764576,3565766655,GB -3565766912,3565767167,GB -3565767176,3565767255,GB -3565767272,3565767287,GB -3565767296,3565767351,GB -3565767360,3565767399,GB -3565767408,3565767439,GB -3565767456,3565767487,GB -3565767504,3565767599,GB -3565767616,3565767631,GB -3565767680,3565767999,GB -3565768208,3565768271,GB -3565768280,3565768295,GB -3565768312,3565768335,GB -3565768448,3565768575,GB -3565768704,3565768983,GB -3565769216,3565769471,GB -3565777920,3565813759,GB -3565813760,3565879295,SA -3565879296,3566010367,GB -3566010368,3566075903,IT -3566075904,3566092287,NL -3566092288,3566108671,LV -3566108672,3566141439,ES -3566141440,3566206975,IL -3566206976,3566272511,DE -3566272512,3566338047,ES -3566338048,3566354431,FI -3566354432,3566370815,RO -3566370816,3566403583,TR -3566403584,3566436351,CH -3566436352,3566439615,IE -3566439616,3566439631,GB -3566439632,3566469119,IE -3566469120,3566534655,GB -3566534656,3566551039,DE -3566551040,3566600191,FI -3566600192,3566607359,IL -3566607360,3566607615,GN -3566607616,3566627583,IL -3566627584,3566627839,CA -3566627840,3566665727,IL -3566665728,3566723071,SE -3566723072,3566723327,FR -3566723328,3566731263,SE -3566731264,3566739455,CH -3566739456,3566747647,RU -3566747648,3566764031,GR -3566764032,3566796799,AT -3566796800,3566816511,NL -3566816512,3566816767,US -3566816768,3566862335,NL -3566862336,3566895103,TR -3566895104,3566897279,KZ -3566897280,3566897311,KG -3566897312,3566905939,KZ -3566905940,3566905943,DE -3566905944,3566927871,KZ -3566927872,3566960127,FR -3566960128,3566960143,GB -3566960144,3566993407,FR -3566993408,3567058943,TR -3567058944,3567103047,FR -3567103048,3567103055,IT -3567103056,3567108255,FR -3567108256,3567108263,SE -3567108264,3567124479,FR -3567124992,3567125023,GB -3567125248,3567125503,GB -3567126688,3567126759,GB -3567127552,3567127807,GB -3567129856,3567129887,GB -3567130016,3567130079,GB -3567131384,3567131647,GB -3567133216,3567133247,GB -3567133368,3567133375,GB -3567134208,3567134335,GB -3567134848,3567134975,GB -3567136000,3567136255,GB -3567136512,3567136575,GB -3567136640,3567136671,GB -3567136768,3567136895,GB -3567137024,3567137279,GB -3567137600,3567137663,GB -3567137988,3567137991,GB -3567138000,3567138003,GB -3567138040,3567138047,GB -3567140096,3567140351,GB -3567140864,3567140927,GB -3567141632,3567141887,GB -3567142272,3567142399,GB -3567143432,3567143439,GB -3567143520,3567143551,GB -3567143680,3567143687,GB -3567143872,3567143935,GB -3567143952,3567143967,GB -3567144048,3567144063,GB -3567144172,3567144175,GB -3567144320,3567144447,GB -3567144768,3567144831,GB -3567147528,3567147535,GB -3567147552,3567147559,GB -3567147936,3567147967,GB -3567148520,3567148527,GB -3567148800,3567149055,GB -3567149088,3567149119,GB -3567149904,3567149911,GB -3567149920,3567149935,GB -3567151104,3567151199,GB -3567151232,3567151263,GB -3567152000,3567152127,GB -3567152160,3567152191,GB -3567152256,3567152383,GB -3567152392,3567152407,GB -3567152640,3567152647,GB -3567152664,3567152671,GB -3567152744,3567152751,GB -3567152832,3567152863,GB -3567152960,3567152991,GB -3567153024,3567153055,GB -3567153600,3567153623,GB -3567153648,3567153663,GB -3567153688,3567153703,GB -3567153720,3567153727,GB -3567153824,3567153847,GB -3567154304,3567154367,GB -3567155200,3567155967,GB -3567156416,3567156607,GB -3567156992,3567157247,GB -3567157248,3567165439,CZ -3567165440,3567169535,RU -3567169536,3567173631,MK -3567173632,3567239167,GB -3567239168,3567250143,NL -3567250176,3567250943,NL -3567255552,3567321087,PL -3567321088,3567353855,GB -3567353856,3567386623,CH -3567386624,3567386879,GB -3567386880,3567386883,DE -3567386884,3567386975,GB -3567386976,3567387007,DE -3567387008,3567387071,GB -3567387072,3567387391,DE -3567387392,3567387439,GB -3567387440,3567387455,DE -3567387456,3567387471,GB -3567387472,3567387539,DE -3567387540,3567387543,GB -3567387544,3567387547,DE -3567387548,3567387567,GB -3567387568,3567388031,DE -3567388032,3567388159,GB -3567388160,3567388399,DE -3567388400,3567388415,GB -3567388416,3567388479,DE -3567388480,3567388543,GB -3567388544,3567388607,DE -3567388608,3567388671,GB -3567388672,3567388927,CZ -3567388928,3567389183,DE -3567389184,3567389695,GB -3567389696,3567390847,DE -3567390848,3567390879,GB -3567390880,3567390975,DE -3567390976,3567391231,GB -3567391232,3567391743,DE -3567391744,3567391759,GB -3567391760,3567391791,DE -3567391792,3567391807,GB -3567391808,3567391839,DE -3567391840,3567392767,GB -3567392768,3567393023,DE -3567393024,3567393279,FR -3567393280,3567394975,GB -3567394976,3567395007,DE -3567395008,3567395071,GB -3567395072,3567395327,DE -3567395328,3567396863,GB -3567396864,3567397119,DE -3567397120,3567397375,GB -3567397376,3567397503,ES -3567397504,3567397887,GB -3567397888,3567398143,DE -3567398144,3567398655,GB -3567398656,3567398911,DE -3567398912,3567398991,GB -3567398992,3567399031,DE -3567399032,3567399039,GB -3567399040,3567399055,DE -3567399056,3567399071,GB -3567399072,3567399103,DE -3567399104,3567399167,GB -3567399168,3567399439,DE -3567399440,3567399487,GB -3567399488,3567399647,DE -3567399648,3567399687,GB -3567399688,3567399695,DE -3567399696,3567399711,GB -3567399712,3567400703,DE -3567400704,3567400735,GB -3567400736,3567400751,DE -3567400752,3567400959,GB -3567400960,3567401471,DE -3567401472,3567401503,GB -3567401504,3567401519,DE -3567401520,3567401543,GB -3567401544,3567401551,DE -3567401552,3567401583,GB -3567401584,3567401599,DE -3567401600,3567401727,GB -3567401728,3567402367,DE -3567402368,3567402495,GB -3567402496,3567403007,DE -3567403008,3567419391,IT -3567419392,3567427583,SA -3567427584,3567435775,SE -3567435776,3567436543,GB -3567436544,3567436595,IN -3567436596,3567436599,GB -3567436600,3567436603,IN -3567436604,3567436799,GB -3567436800,3567436895,IN -3567436896,3567441375,GB -3567441376,3567441407,NL -3567441408,3567444223,GB -3567444224,3567444475,TZ -3567444476,3567444479,NL -3567444480,3567445951,GB -3567445952,3567445983,NL -3567445984,3567446367,GB -3567446368,3567446399,CH -3567446400,3567446607,GB -3567446608,3567446623,IT -3567446624,3567452031,GB -3567452032,3567452047,GR -3567452048,3567452159,GB -3567452160,3567507455,ES -3567507456,3567509503,NL -3567509504,3567512575,ES -3567512576,3567513599,NL -3567513600,3567517695,ES -3567517696,3567583231,RU -3567583232,3567583487,AT -3567583744,3567583871,AT -3567583936,3567583999,AT -3567584256,3567584383,AT -3567584400,3567584407,AT -3567584512,3567584639,AT -3567585792,3567586303,GB -3567587328,3567591423,GB -3567591424,3567599615,IT -3567599616,3567606271,NL -3567606272,3567606783,DZ -3567606784,3567615999,NL -3567616000,3567616511,BD -3567616512,3567617087,GB -3567617088,3567617119,NG -3567617120,3567617151,GB -3567617152,3567617279,NG -3567617280,3567617535,IN -3567617536,3567617791,KE -3567617792,3567618047,NG -3567618048,3567619071,IN -3567619072,3567619075,NG -3567619076,3567619087,GB -3567619088,3567619095,NG -3567619096,3567619103,GB -3567619104,3567619111,KE -3567619112,3567619135,GB -3567619136,3567619583,NG -3567619584,3567620095,TZ -3567620096,3567620351,GB -3567620352,3567620479,TZ -3567620480,3567620623,GB -3567620624,3567620631,PK -3567620632,3567620639,IN -3567620640,3567620679,PK -3567620680,3567620695,GB -3567620696,3567620719,PK -3567620720,3567620727,GB -3567620728,3567620735,IN -3567620736,3567620863,GB -3567620864,3567620927,NG -3567620928,3567620931,GB -3567620932,3567620935,TZ -3567620936,3567620959,KE -3567620960,3567620991,GB -3567620992,3567621055,NG -3567621056,3567621119,KE -3567621120,3567621631,GB -3567621632,3567621887,ID -3567621888,3567621895,TZ -3567621896,3567621903,KE -3567621904,3567621911,NG -3567621912,3567621919,TZ -3567621920,3567621951,NG -3567621952,3567622655,GB -3567622656,3567622951,KE -3567622952,3567622959,GB -3567622960,3567622963,TZ -3567622964,3567622967,NG -3567622968,3567622975,GB -3567622976,3567623039,TZ -3567623040,3567623055,GA -3567623056,3567623071,NG -3567623072,3567623087,TZ -3567623088,3567623095,GB -3567623096,3567623103,GA -3567623104,3567623135,TZ -3567623136,3567623143,GB -3567623144,3567623151,TZ -3567623152,3567623167,GB -3567623168,3567623423,KE -3567623424,3567623471,GB -3567623472,3567623479,KE -3567623480,3567623727,GB -3567623728,3567623759,PK -3567623760,3567623767,GB -3567623768,3567623775,PK -3567623776,3567623791,GB -3567623792,3567623839,PK -3567623840,3567623935,GB -3567623936,3567624191,PK -3567624192,3567624447,GB -3567624448,3567625727,TZ -3567625728,3567625983,PK -3567625984,3567626239,KE -3567626240,3567627008,NG -3567627009,3567629311,GB -3567629312,3567630207,TJ -3567630208,3567648767,GB -3567648768,3567665151,BE -3567665152,3567673343,ES -3567673344,3567673647,AT -3567673648,3567673655,GI -3567673656,3567681535,AT -3567681536,3567714303,ES -3567714304,3567715327,GB -3567715584,3567715839,GB -3567716352,3567716383,GB -3567716608,3567716639,IL -3567716944,3567717119,GB -3567717120,3567717375,DE -3567717376,3567717631,GB -3567717632,3567717679,DE -3567717760,3567717887,DE -3567717888,3567718015,GB -3567718144,3567718399,CH -3567718400,3567719423,US -3567719424,3567719679,GB -3567779840,3567845375,DE -3567845376,3567861759,GB -3567861760,3567878143,NO -3567878144,3567976447,ES -3567976448,3568041983,IT -3568041984,3568107519,DE -3568107520,3568153759,GB -3568153760,3568153767,CH -3568153768,3568173055,GB -3568173056,3568304127,TR -3568304128,3568309775,RU -3568309776,3568309791,UZ -3568309792,3568309919,BY -3568309920,3568309951,RU -3568309952,3568310015,BY -3568310016,3568369663,RU -3568369664,3568369743,IT -3568369744,3568369751,FR -3568369752,3568435199,IT -3568435200,3568443391,UA -3568443392,3568476159,NL -3568476160,3568484351,DK -3568484352,3568492543,NL -3568492544,3568493055,CS -3568493056,3568493567,RS -3568493568,3568494591,CS -3568494592,3568500735,RS -3568500736,3568566271,IL -3568566272,3568599039,FR -3568599040,3568631807,PL -3568631808,3568697343,SE -3568697344,3568730111,PL -3568730112,3568746495,NL -3568746496,3568752895,FI -3568752896,3568752959,EE -3568752960,3568762879,FI -3568762880,3568795647,AT -3568795648,3568803839,GB -3568803840,3568812031,IT -3568812032,3568828415,ES -3568828416,3568829631,DE -3568829632,3568829639,CH -3568829640,3568836247,DE -3568836248,3568836255,NL -3568836256,3568848791,DE -3568848792,3568848799,PL -3568848800,3568848871,DE -3568848872,3568848879,GB -3568848880,3568876159,DE -3568876160,3568876287,ES -3568876288,3568877583,DE -3568877584,3568877591,NL -3568877592,3568916399,DE -3568916400,3568916407,IT -3568916408,3568938311,DE -3568938312,3568938319,FI -3568938320,3568939519,DE -3568939520,3568939527,IT -3568939528,3568946663,DE -3568946664,3568946671,IT -3568946672,3568959487,DE -3568959488,3569025023,AT -3569025024,3569057791,NL -3569057792,3569068031,GB -3569068032,3569068543,DE -3569068544,3569068671,BG -3569068672,3569068951,GB -3569068952,3569068991,DE -3569068992,3569075711,GB -3569075712,3569075839,FR -3569075840,3569083903,GB -3569083904,3569084159,US -3569084160,3569090559,GB -3569090560,3569123327,RU -3569123328,3569156095,GB -3569156096,3569188863,NL -3569188864,3569221631,IT -3569221632,3569238399,BE -3569238400,3569238527,AT -3569238528,3569239071,BE -3569239072,3569239103,LU -3569239104,3569239231,BE -3569239232,3569239263,LU -3569239264,3569239519,BE -3569239520,3569239551,LU -3569239552,3569239903,BE -3569239904,3569239935,LU -3569239936,3569239983,BE -3569239984,3569239999,BN -3569240000,3569240031,BE -3569240032,3569240063,FR -3569240064,3569241583,BE -3569241584,3569241599,LU -3569241600,3569241887,BE -3569241888,3569241903,LU -3569241904,3569242047,BE -3569242048,3569242111,LU -3569242112,3569242551,BE -3569242552,3569242559,LU -3569242560,3569242879,BE -3569242880,3569243135,US -3569243136,3569243903,BE -3569243904,3569244031,NL -3569244032,3569244303,BE -3569244304,3569244319,LU -3569244320,3569245695,BE -3569245696,3569245727,LU -3569245728,3569250879,BE -3569250880,3569250895,LU -3569250896,3569250927,BE -3569250928,3569250935,CA -3569250936,3569251071,BE -3569251072,3569251327,LU -3569251328,3569251839,US -3569251840,3569252991,BE -3569252992,3569253007,LU -3569253008,3569253095,BE -3569253096,3569253103,LU -3569253104,3569253311,BE -3569253312,3569253343,LU -3569253344,3569254911,BE -3569254912,3569254959,LU -3569254960,3569255007,BE -3569255008,3569255055,LU -3569255056,3569255071,BE -3569255072,3569255103,LU -3569255104,3569258783,BE -3569258784,3569258815,LU -3569258816,3569258847,US -3569258848,3569258975,BE -3569258976,3569259007,LU -3569259008,3569271815,BE -3569271816,3569271823,LU -3569271824,3569271871,BE -3569271872,3569271903,NL -3569271904,3569271911,BE -3569271912,3569271919,DE -3569271920,3569271935,BE -3569271936,3569271943,IT -3569271944,3569271959,BE -3569271960,3569271963,LU -3569271964,3569272063,BE -3569272064,3569272079,LU -3569272080,3569272223,BE -3569272224,3569272255,LU -3569272256,3569273167,BE -3569273168,3569273183,LU -3569273184,3569273791,BE -3569273792,3569273823,LU -3569273824,3569273935,BE -3569273936,3569273951,LI -3569273952,3569274143,BE -3569274144,3569274175,CA -3569274176,3569274303,BE -3569274304,3569274311,LU -3569274312,3569274335,BE -3569274336,3569274383,LU -3569274384,3569274495,BE -3569274496,3569274559,LU -3569274560,3569274687,BE -3569274688,3569274719,LU -3569274720,3569277183,BE -3569277184,3569277439,LU -3569277440,3569278311,BE -3569278312,3569278319,LU -3569278320,3569278703,BE -3569278704,3569278719,NL -3569278720,3569279223,BE -3569279224,3569279231,US -3569279232,3569279263,BE -3569279264,3569279279,US -3569279280,3569287167,BE -3569287168,3569352703,PL -3569352704,3569483775,RU -3569483776,3569614847,FR -3569614848,3569680383,GB -3569680384,3569683711,SK -3569683712,3569683719,IQ -3569683720,3569710959,SK -3569710960,3569710975,NL -3569710976,3569713151,SK -3569713152,3569729535,AT -3569729536,3569731167,FR -3569731168,3569731183,IT -3569731184,3569731215,GB -3569731216,3569731231,FR -3569731232,3569731247,DE -3569731248,3569731263,GB -3569731264,3569731311,FR -3569731312,3569731327,GB -3569731328,3569731375,FR -3569731376,3569731391,GB -3569731392,3569731423,FR -3569731424,3569731439,GB -3569731440,3569731455,FR -3569731456,3569731471,GB -3569731472,3569731487,FR -3569731488,3569731503,GB -3569731504,3569731519,IT -3569731520,3569731551,GB -3569731552,3569731583,FR -3569731584,3569731599,GB -3569731600,3569731615,FR -3569731616,3569731631,DE -3569731632,3569731647,IT -3569731648,3569731727,FR -3569731728,3569731743,GB -3569731744,3569731791,FR -3569731792,3569731807,GB -3569731808,3569731839,FR -3569731840,3569731871,GB -3569731872,3569731903,FR -3569731904,3569731919,BE -3569731920,3569731951,FR -3569731952,3569731967,NL -3569731968,3569731983,GB -3569731984,3569732031,FR -3569732032,3569732047,DE -3569732048,3569732063,GB -3569732064,3569732079,FR -3569732080,3569732095,GB -3569732096,3569732143,FR -3569732144,3569732191,GB -3569732192,3569732207,DE -3569732208,3569732287,FR -3569732288,3569732303,GB -3569732304,3569732319,DE -3569732320,3569732335,FR -3569732336,3569732351,GB -3569732352,3569732383,FR -3569732384,3569732399,US -3569732400,3569732447,FR -3569732448,3569732479,US -3569732480,3569732495,GB -3569732496,3569732543,FR -3569732544,3569732575,GB -3569732576,3569732607,FR -3569732608,3569732639,GB -3569732640,3569732671,FR -3569732672,3569732703,GB -3569732704,3569732719,FR -3569732720,3569732735,GB -3569732736,3569732751,FR -3569732752,3569732767,GB -3569732768,3569732783,FR -3569732784,3569732847,GB -3569732848,3569732863,FR -3569732864,3569732879,GB -3569732880,3569732895,FR -3569732896,3569732911,IT -3569732912,3569733007,FR -3569733008,3569733023,IE -3569733024,3569733055,FR -3569733056,3569733087,GB -3569733088,3569733103,IT -3569733104,3569733183,FR -3569733184,3569733199,GB -3569733200,3569733263,FR -3569733264,3569733279,US -3569733280,3569733295,DE -3569733296,3569733311,GB -3569733312,3569733327,FR -3569733328,3569733343,GB -3569733344,3569733423,FR -3569733424,3569733439,GB -3569733440,3569733471,FR -3569733472,3569733487,GB -3569733488,3569733519,FR -3569733520,3569733535,GB -3569733536,3569733551,NL -3569733552,3569733567,FR -3569733568,3569733583,GB -3569733584,3569733599,FR -3569733600,3569733615,GB -3569733616,3569733647,FR -3569733648,3569733663,GB -3569733664,3569733679,FR -3569733680,3569733695,GB -3569733696,3569733775,FR -3569733776,3569733791,IE -3569733792,3569733807,FR -3569733808,3569733823,GB -3569733824,3569733887,FR -3569733888,3569733919,GB -3569733920,3569733935,FR -3569733936,3569733951,GB -3569733952,3569733967,FR -3569733968,3569733983,ES -3569733984,3569733999,GB -3569734000,3569734047,FR -3569734048,3569734079,GB -3569734080,3569734143,FR -3569734144,3569734159,GB -3569734160,3569734191,FR -3569734192,3569734207,GB -3569734208,3569734367,FR -3569734368,3569734399,GB -3569734400,3569734447,BE -3569734448,3569734463,FR -3569734464,3569734511,BE -3569734512,3569736047,FR -3569736048,3569736063,GB -3569736064,3569736071,FR -3569736072,3569736079,ES -3569736080,3569736191,FR -3569736192,3569736223,NL -3569736224,3569736239,FR -3569736240,3569736383,NL -3569736384,3569736399,SE -3569736400,3569736655,NL -3569736656,3569736671,FR -3569736672,3569736703,NL -3569736704,3569739263,FR -3569739264,3569739295,NL -3569739296,3569739327,FR -3569739328,3569739471,NL -3569739472,3569739487,FR -3569739488,3569739599,NL -3569739600,3569739631,FR -3569739632,3569739647,NL -3569739648,3569739663,FR -3569739664,3569739679,NL -3569739680,3569739695,FR -3569739696,3569739839,NL -3569739840,3569739855,FR -3569739856,3569739903,NL -3569739904,3569739919,FR -3569739920,3569739935,NL -3569739936,3569739951,FR -3569739952,3569740047,NL -3569740048,3569740063,FR -3569740064,3569740111,NL -3569740112,3569740127,FR -3569740128,3569740255,NL -3569740256,3569740271,FR -3569740272,3569740303,NL -3569740304,3569740319,FR -3569740320,3569740367,NL -3569740368,3569740383,FR -3569740384,3569740415,NL -3569740416,3569740431,FR -3569740432,3569740463,NL -3569740464,3569740479,FR -3569740480,3569740495,NL -3569740496,3569740511,FR -3569740512,3569740543,NL -3569740544,3569740559,FR -3569740560,3569740655,NL -3569740656,3569740671,FR -3569740672,3569740687,NL -3569740688,3569740703,FR -3569740704,3569740799,NL -3569740800,3569741311,FR -3569741312,3569741823,BE -3569741824,3569741843,FR -3569741844,3569741859,NL -3569741860,3569742335,FR -3569742336,3569742351,BE -3569742352,3569742383,FR -3569742384,3569742399,BE -3569742400,3569742415,FR -3569742416,3569742511,BE -3569742512,3569742527,FR -3569742528,3569742623,BE -3569742624,3569742639,FR -3569742640,3569742671,BE -3569742672,3569742687,FR -3569742688,3569742735,BE -3569742736,3569742751,FR -3569742752,3569742767,BE -3569742768,3569742783,FR -3569742784,3569742927,BE -3569742928,3569742943,FR -3569742944,3569743087,BE -3569743088,3569743103,FR -3569743104,3569743135,BE -3569743136,3569743199,FR -3569743200,3569743215,BE -3569743216,3569743359,FR -3569743360,3569743391,BE -3569743392,3569743407,FR -3569743408,3569743423,BE -3569743424,3569743455,FR -3569743456,3569743583,BE -3569743584,3569743599,NL -3569743600,3569743615,FR -3569743616,3569743631,BE -3569743632,3569743647,FR -3569743648,3569743679,BE -3569743680,3569743711,FR -3569743712,3569743775,BE -3569743776,3569743791,FR -3569743792,3569743871,BE -3569743872,3569743983,NL -3569743984,3569743999,FR -3569744000,3569744047,NL -3569744048,3569744063,FR -3569744064,3569744127,NL -3569744128,3569744143,FR -3569744144,3569744543,NL -3569744544,3569744559,FR -3569744560,3569744575,NL -3569744576,3569744623,FR -3569744624,3569744815,NL -3569744816,3569744831,FR -3569744832,3569744911,NL -3569744912,3569744927,FR -3569744928,3569744975,NL -3569744976,3569744991,FR -3569744992,3569745007,NL -3569745008,3569745023,FR -3569745024,3569745039,NL -3569745040,3569745055,FR -3569745056,3569745103,NL -3569745104,3569745119,FR -3569745120,3569745167,NL -3569745168,3569745183,FR -3569745184,3569745215,NL -3569745216,3569745231,FR -3569745232,3569745247,NL -3569745248,3569745279,FR -3569745280,3569745311,NL -3569745312,3569745327,FR -3569745328,3569745359,NL -3569745360,3569745375,FR -3569745376,3569745407,NL -3569745408,3569745663,FR -3569745664,3569745727,NL -3569745728,3569745743,FR -3569745744,3569745813,NL -3569745814,3569745823,FR -3569745824,3569745839,NL -3569745840,3569745871,FR -3569745872,3569745887,NL -3569745888,3569745903,FR -3569745904,3569745919,NL -3569745920,3569811455,FR -3569811456,3569830463,IL -3569830464,3569830527,GB -3569830528,3569876991,IL -3569876992,3569877247,CS -3569877248,3569878015,RS -3569878016,3569879295,CS -3569879296,3569879807,RS -3569879808,3569885183,CS -3569885184,3569885439,CS -3569885440,3569885951,RS -3569885952,3569889791,CS -3569889792,3569890047,RS -3569890048,3569890575,CS -3569890576,3569890591,RS -3569890592,3569890615,CS -3569890616,3569890623,RS -3569890624,3569891071,CS -3569891072,3569891327,RS -3569891328,3569891583,CS -3569891584,3569891839,RS -3569891840,3569892351,CS -3569892352,3569892607,CS -3569892608,3569892863,CS -3569892864,3569893375,RS -3569893376,3569893887,CS -3569893888,3569894143,RS -3569894144,3569895943,CS -3569895944,3569895951,RS -3569895952,3569896047,CS -3569896048,3569896063,RS -3569896064,3569896083,CS -3569896084,3569896087,RS -3569896088,3569896103,CS -3569896104,3569896111,RS -3569896112,3569896143,CS -3569896144,3569896155,RS -3569896156,3569896395,CS -3569896396,3569896415,RS -3569896416,3569896447,CS -3569896448,3569896703,CS -3569896704,3569898495,CS -3569898496,3569899007,CS -3569899008,3569899775,CS -3569899776,3569900031,RS -3569900032,3569902847,CS -3569902848,3569903359,RS -3569903360,3569903999,CS -3569904000,3569904127,RS -3569904128,3569905499,CS -3569905500,3569905503,RS -3569905504,3569905539,CS -3569905540,3569905543,RS -3569905544,3569905631,CS -3569905632,3569905663,RS -3569905664,3569907711,CS -3569907712,3569907719,RS -3569907720,3569907723,CS -3569907724,3569907731,RS -3569907732,3569907787,CS -3569907788,3569907791,RS -3569907792,3569907847,CS -3569907848,3569907855,RS -3569907856,3569907911,CS -3569907912,3569907927,RS -3569907928,3569907975,CS -3569907976,3569907983,RS -3569907984,3569911039,CS -3569911040,3569911295,RS -3569911296,3569912623,CS -3569912624,3569912627,RS -3569912628,3569912751,CS -3569912752,3569912831,RS -3569912832,3569913599,CS -3569913600,3569913607,RS -3569913608,3569913711,CS -3569913712,3569913719,RS -3569913720,3569914015,CS -3569914016,3569914047,RS -3569914048,3569914191,CS -3569914192,3569914239,RS -3569914240,3569914351,CS -3569914352,3569914367,RS -3569914368,3569914623,CS -3569914624,3569914879,RS -3569914880,3569915831,CS -3569915832,3569915839,RS -3569915840,3569916331,CS -3569916332,3569916335,RS -3569916336,3569916671,CS -3569916672,3569916735,RS -3569916736,3569918847,CS -3569918848,3569918855,RS -3569918856,3569918863,CS -3569918864,3569918951,RS -3569918952,3569922047,CS -3569922048,3569925375,RS -3569925376,3569934335,CS -3569934336,3569934847,RS -3569934848,3569942527,CS -3569942528,3570073599,DE -3570073600,3570076943,NL -3570076944,3570076951,PH -3570076952,3570081791,NL -3570081792,3570096831,CH -3570096832,3570096895,US -3570096896,3570106367,CH -3570106368,3570139135,PL -3570139136,3570170079,DE -3570170080,3570170111,BE -3570170112,3570171903,DE -3570171904,3570204671,NL -3570204672,3570270207,GR -3570270208,3570335743,NL -3570335744,3570401279,GB -3570401280,3570442687,FR -3570442688,3570442695,IT -3570442696,3570466815,FR -3570466816,3570507439,SE -3570507440,3570507455,CH -3570507456,3570532351,SE -3570532352,3570597887,IT -3570597888,3570607103,GB -3570607104,3570608127,DE -3570608128,3570611199,GB -3570611200,3570611455,FR -3570611456,3570614271,GB -3570614272,3570617343,DE -3570617344,3570617855,GB -3570617856,3570622463,DE -3570622464,3570630655,GB -3570630656,3570633343,DE -3570633344,3570633471,CH -3570633472,3570663423,DE -3570663424,3570728959,GB -3570728960,3570729983,FI -3570729984,3570731007,SE -3570731008,3570756191,FI -3570756192,3570756223,RU -3570756224,3570760543,FI -3570760544,3570760575,RU -3570760576,3570794495,FI -3570794496,3570860031,SE -3570860032,3570892799,CH -3570892800,3570925567,SA -3570925568,3570991103,IT -3571023872,3571056639,SE -3571056640,3571122175,DE -3571122176,3571187711,GB -3571187712,3571253247,RU -3571253248,3571259551,BE -3571259552,3571259583,LU -3571259584,3571261359,BE -3571261360,3571261367,LU -3571261368,3571262335,BE -3571262336,3571262367,LU -3571262368,3571264607,BE -3571264608,3571264639,FR -3571264640,3571265935,BE -3571265936,3571265951,LU -3571265952,3571267199,BE -3571267200,3571267263,LU -3571267264,3571268607,BE -3571268608,3571268639,LU -3571268640,3571269823,BE -3571269824,3571269855,LU -3571269856,3571271423,BE -3571271424,3571271439,LU -3571271440,3571271551,BE -3571271552,3571271679,LU -3571271680,3571272447,BE -3571272448,3571272575,LU -3571272576,3571277119,BE -3571277120,3571277151,DE -3571277152,3571286015,BE -3571286016,3571321055,DE -3571321056,3571321087,GB -3571321088,3571326255,DE -3571326256,3571326259,BE -3571326260,3571337471,DE -3571337472,3571337599,NL -3571337600,3571343495,DE -3571343496,3571343503,ES -3571343504,3571347455,DE -3571347456,3571347711,BE -3571347712,3571349743,DE -3571349744,3571349759,CH -3571349760,3571349791,DE -3571349792,3571349799,SE -3571349800,3571349807,DE -3571349808,3571349815,BE -3571349816,3571349819,SE -3571349820,3571364951,DE -3571364952,3571364955,GB -3571364956,3571366399,DE -3571366400,3571366511,NL -3571366512,3571379311,DE -3571379312,3571379315,NL -3571379316,3571381631,DE -3571381632,3571381695,AT -3571381696,3571382783,DE -3571382784,3571383039,AT -3571383040,3571383135,DE -3571383136,3571383151,AT -3571383152,3571385151,DE -3571385152,3571385183,GB -3571385184,3571385631,DE -3571385632,3571385663,GB -3571385664,3571389471,DE -3571389472,3571389475,ES -3571389476,3571389503,DE -3571389504,3571389519,HU -3571389520,3571425695,DE -3571425696,3571425727,ES -3571425728,3571426895,DE -3571426896,3571426903,ES -3571426904,3571426931,DE -3571426932,3571426935,ES -3571426936,3571456575,DE -3571456576,3571456591,GB -3571456592,3571472383,DE -3571472384,3571472639,NL -3571472640,3571481599,DE -3571481600,3571481855,NL -3571481856,3571482367,DE -3571482368,3571482623,CH -3571482624,3571515391,BE -3571515392,3571548159,GB -3571548160,3571580927,ES -3571580928,3571646463,FI -3571646464,3571675679,DE -3571675680,3571675687,GB -3571675688,3571711999,DE -3571712000,3571843071,GB -3571843072,3571974143,ES -3571974144,3571978495,AT -3571978496,3571979007,SK -3571979008,3572006911,AT -3572006912,3572039679,CH -3572039680,3572047871,BE -3572047872,3572056063,LU -3572056064,3572072447,RU -3572072448,3572105215,BG -3572105216,3572148223,FR -3572148224,3572148479,MC -3572148480,3572170751,FR -3572170752,3572195791,IL -3572195792,3572195807,GB -3572195808,3572203519,IL -3572203520,3572236287,SI -3572236288,3572301823,AT -3572301824,3572367359,DK -3572367360,3572432895,NL -3572432896,3572436047,IT -3572436048,3572436063,GB -3572436064,3572442495,IT -3572442496,3572442511,NL -3572442512,3572447231,IT -3572447232,3572447239,AT -3572447240,3572447247,FR -3572447248,3572447255,GB -3572447256,3572447263,ES -3572447264,3572465663,IT -3572465664,3572498431,BE -3572498432,3572563967,GB -3572563968,3572572159,KG -3572572160,3572580351,NL -3572580352,3572596735,AT -3572596736,3572629503,GB -3572629504,3572695039,DK -3572695040,3572704951,CH -3572704952,3572704959,DE -3572704960,3572705479,CH -3572705480,3572705487,NL -3572705488,3572715519,CH -3572715520,3572715775,GB -3572715776,3572760575,CH -3572760576,3572826111,PL -3572826112,3572891647,IT -3572891648,3572957183,FI -3572957184,3573022719,SE -3573022720,3573055487,RU -3573055488,3573088255,GB -3573088256,3573142015,CH -3573142016,3573142271,AT -3573142272,3573153791,CH -3573153792,3573175711,GB -3573175712,3573175727,IE -3573175728,3573208511,GB -3573208512,3573208543,IE -3573208544,3573219327,GB -3573219328,3573252095,GR -3573252096,3573284863,NO -3573284864,3573415935,TR -3573415936,3573481471,CH -3573481472,3573547007,DE -3573547008,3573612543,ES -3573612544,3573733375,GB -3573733376,3573734399,IT -3573734400,3573743615,GB -3573743616,3573809151,CH -3573809152,3573874687,ES -3573874688,3573940223,GR -3573940224,3574005759,PS -3574005760,3574071295,CY -3574071296,3574136831,IL -3574136832,3574137783,DE -3574137784,3574137791,AT -3574137792,3574138559,DE -3574138560,3574138623,NL -3574138624,3574138735,DE -3574138736,3574138751,NL -3574138752,3574138767,DE -3574138768,3574138775,NL -3574138776,3574151823,DE -3574151824,3574151831,AT -3574151832,3574153351,DE -3574153352,3574153359,LU -3574153360,3574153367,AT -3574153368,3574153615,DE -3574153616,3574153623,AT -3574153624,3574153731,DE -3574153732,3574153735,HU -3574153736,3574154831,DE -3574154832,3574154847,LU -3574154848,3574155551,DE -3574155552,3574155583,CH -3574155584,3574155591,DE -3574155592,3574155595,FR -3574155596,3574155727,DE -3574155728,3574155731,AT -3574155732,3574155739,DE -3574155740,3574155743,AT -3574155744,3574155811,DE -3574155812,3574155815,LU -3574155816,3574155819,DE -3574155820,3574155823,NO -3574155824,3574155851,DE -3574155852,3574155855,NO -3574155856,3574155859,DE -3574155860,3574155863,NO -3574155864,3574155983,DE -3574155984,3574155987,AT -3574155988,3574157551,DE -3574157552,3574157559,AT -3574157560,3574159871,DE -3574159872,3574159875,GB -3574159876,3574159879,NL -3574159880,3574160931,DE -3574160932,3574160935,NL -3574160936,3574160959,DE -3574160960,3574161023,GB -3574161024,3574161039,DE -3574161040,3574161043,NL -3574161044,3574161055,DE -3574161056,3574161087,NL -3574161088,3574161107,DE -3574161108,3574161111,NL -3574161112,3574161171,DE -3574161172,3574161175,NO -3574161176,3574161383,DE -3574161384,3574161387,GB -3574161388,3574169599,DE -3574169600,3574202367,ES -3574202368,3574267903,NL -3574267904,3574333439,FR -3574333440,3574341631,GB -3574348288,3574348543,GB -3574398976,3574464511,PT -3574464512,3574530047,TR -3574530048,3574563679,SE -3574563680,3574563695,FI -3574563696,3574563727,SE -3574563728,3574563775,FI -3574563776,3574563807,SE -3574563808,3574563823,FI -3574563824,3574563839,SE -3574563840,3574564863,FI -3574564864,3574565887,SE -3574565888,3574565951,FI -3574565952,3574566207,SE -3574566208,3574566271,FI -3574566272,3574566447,SE -3574566448,3574566463,FI -3574566464,3574594559,SE -3574594560,3574595583,GB -3574595584,3574595839,FR -3574595840,3574596095,MQ -3574596096,3574596351,FR -3574596352,3574596863,MQ -3574596864,3574597119,FR -3574597120,3574597631,MQ -3574597632,3574598143,GP -3574598144,3574598399,FR -3574598400,3574598655,RE -3574598656,3574599679,MQ -3574599680,3574600191,FR -3574600192,3574601215,MQ -3574601216,3574601471,RE -3574601472,3574601983,MQ -3574601984,3574602239,GF -3574602240,3574602495,FR -3574602496,3574603263,MQ -3574603264,3574603775,FR -3574603776,3574611967,BG -3574611968,3574628351,HU -3574628352,3574661119,GR -3574661120,3574693887,NL -3574693888,3574726655,PL -3574726656,3574792191,GB -3574792192,3574824959,CZ -3574824960,3574825215,NL -3574825216,3574825279,GB -3574825280,3574825407,NL -3574825408,3574825471,GB -3574825472,3574826111,NL -3574826112,3574826239,GB -3574826240,3574829823,NL -3574829824,3574830079,GB -3574830080,3574831359,NL -3574831360,3574833279,GB -3574833280,3574833311,NL -3574833312,3574833343,GB -3574833344,3574833359,NL -3574833360,3574833407,GB -3574833408,3574833439,NL -3574833440,3574833663,GB -3574833664,3574834175,NL -3574834176,3574834431,GB -3574834432,3574834559,NL -3574834560,3574834687,GB -3574834688,3574836223,NL -3574836224,3574836351,GB -3574836352,3574838015,NL -3574838016,3574838271,GB -3574838272,3574838527,NL -3574838528,3574839807,GB -3574839808,3574841343,NL -3574841344,3574857727,GB -3574857728,3574917375,DE -3574917376,3574917631,CH -3574917632,3574919359,DE -3574919360,3574919391,FR -3574919392,3574923263,DE -3574923264,3574939647,RU -3574939648,3574956031,SE -3574956032,3574972415,IT -3574972416,3574988799,LV -3574988800,3575054335,PT -3575054336,3575086175,DE -3575086176,3575086207,MT -3575086208,3575119871,DE -3575119872,3575185407,RU -3575185408,3575250943,PL -3575250944,3575316479,IT -3575316480,3575349247,RU -3575349248,3575355231,ES -3575355232,3575355247,GB -3575355248,3575367111,ES -3575367112,3575367119,DE -3575367120,3575372239,ES -3575372240,3575372247,PT -3575372248,3575382015,ES -3575382016,3575412991,FI -3575412992,3575413119,RU -3575413120,3575447551,FI -3575447552,3575513087,CZ -3575513088,3575545855,PT -3575545856,3575562239,FR -3575562240,3575578623,DE -3575578624,3575580671,BE -3575580672,3575580927,NL -3575580928,3575581439,ES -3575581440,3575581567,GB -3575581568,3575581695,BE -3575581696,3575581823,FR -3575581824,3575581951,ES -3575581952,3575582207,GR -3575582208,3575583103,BE -3575583104,3575583111,HU -3575583112,3575583999,BE -3575584000,3575584255,FR -3575584256,3575586943,BE -3575586944,3575587071,GB -3575587072,3575587103,BE -3575587104,3575587119,ES -3575587120,3575587135,BE -3575587136,3575587151,GB -3575587152,3575587247,BE -3575587248,3575587255,FR -3575587256,3575587263,BE -3575587264,3575587271,CH -3575587272,3575587295,BE -3575587296,3575587311,RU -3575587312,3575587839,BE -3575587840,3575588351,GB -3575588352,3575588863,BE -3575588864,3575589375,FR -3575589376,3575590399,BE -3575590400,3575590911,FR -3575590912,3575622607,BE -3575622608,3575622611,GB -3575622612,3575622655,BE -3575622656,3575622815,GB -3575622816,3575622847,DK -3575622848,3575622911,BE -3575622912,3575623167,GB -3575623168,3575624703,BE -3575624704,3575624831,FR -3575624832,3575624839,PT -3575624840,3575624863,GB -3575624864,3575624895,BE -3575624896,3575624911,GB -3575624912,3575624927,ES -3575624928,3575624943,GB -3575624944,3575624951,BE -3575624952,3575624959,IE -3575624960,3575624991,GB -3575624992,3575624999,IT -3575625000,3575625087,BE -3575625088,3575625095,US -3575625096,3575625375,BE -3575625376,3575625407,IT -3575625408,3575625439,BE -3575625440,3575625455,ES -3575625456,3575625471,BE -3575625472,3575625503,NO -3575625504,3575625983,BE -3575625984,3575625991,SE -3575625992,3575626047,BE -3575626048,3575626111,FR -3575626112,3575626319,BE -3575626320,3575626335,GB -3575626336,3575626351,ES -3575626352,3575626367,DE -3575626368,3575626503,BE -3575626504,3575626511,CH -3575626512,3575626519,BE -3575626520,3575626527,FR -3575626528,3575626567,BE -3575626568,3575626575,RO -3575626576,3575626599,BE -3575626600,3575626607,IE -3575626608,3575626631,BE -3575626632,3575626639,GB -3575626640,3575626647,DE -3575626648,3575626655,IT -3575626656,3575627311,BE -3575627312,3575627327,ES -3575627328,3575627335,SE -3575627336,3575627359,BE -3575627360,3575627367,ES -3575627368,3575627423,BE -3575627424,3575627431,DE -3575627432,3575627487,BE -3575627488,3575627503,GB -3575627504,3575627775,BE -3575627776,3575628543,NL -3575628544,3575628631,BE -3575628632,3575628639,GB -3575628640,3575628815,BE -3575628816,3575628823,ES -3575628824,3575628831,FR -3575628832,3575629183,BE -3575629184,3575629247,NL -3575629248,3575629279,BE -3575629280,3575629287,GB -3575629288,3575629295,BE -3575629296,3575629303,NL -3575629304,3575629823,BE -3575629824,3575629855,GR -3575629856,3575629871,DE -3575629872,3575629935,BE -3575629936,3575629951,FR -3575629952,3575630015,BE -3575630016,3575630023,GR -3575630024,3575630063,BE -3575630064,3575630079,ZA -3575630080,3575630335,BE -3575630336,3575630463,IT -3575630464,3575630591,CH -3575630592,3575630847,IL -3575630848,3575630975,BE -3575630976,3575630991,FR -3575630992,3575631103,BE -3575631104,3575631111,AT -3575631112,3575631119,CH -3575631120,3575631127,DE -3575631128,3575631183,BE -3575631184,3575631199,HU -3575631200,3575631207,IE -3575631208,3575631231,BE -3575631232,3575631295,CH -3575631296,3575631303,BE -3575631304,3575631311,FI -3575631312,3575631615,BE -3575631616,3575631631,SE -3575631632,3575631639,BE -3575631640,3575631647,CH -3575631648,3575631663,SE -3575631664,3575631679,DE -3575631680,3575631695,SE -3575631696,3575631711,IT -3575631712,3575631759,BE -3575631760,3575631775,ZA -3575631776,3575631791,BE -3575631792,3575631799,ES -3575631800,3575631807,CZ -3575631808,3575631855,BE -3575631856,3575631863,ZA -3575631864,3575631871,BE -3575631872,3575632639,IL -3575632640,3575632655,NO -3575632656,3575632703,BE -3575632704,3575632711,GB -3575632712,3575632783,BE -3575632784,3575632791,GB -3575632792,3575632847,BE -3575632848,3575632863,CH -3575632864,3575632879,BE -3575632880,3575632895,DE -3575632896,3575632967,BE -3575632968,3575632975,GB -3575632976,3575632991,BE -3575632992,3575632999,IT -3575633000,3575633039,BE -3575633040,3575633055,DE -3575633056,3575633063,SE -3575633064,3575633071,NL -3575633072,3575633087,BE -3575633088,3575633119,GB -3575633120,3575633135,BE -3575633136,3575633143,GB -3575633144,3575633599,BE -3575633600,3575633663,NL -3575633664,3575633727,BE -3575633728,3575633735,AT -3575633736,3575633743,IT -3575633744,3575633783,BE -3575633784,3575633791,DE -3575633792,3575633887,BE -3575633888,3575633895,SE -3575633896,3575633919,BE -3575633920,3575633983,CH -3575633984,3575633991,DE -3575633992,3575633999,BE -3575634000,3575634007,PT -3575634008,3575634015,DK -3575634016,3575634047,GB -3575634048,3575634183,BE -3575634184,3575634191,AT -3575634192,3575634255,BE -3575634256,3575634271,IT -3575634272,3575634367,BE -3575634368,3575634399,NO -3575634400,3575634431,GB -3575634432,3575634455,BE -3575634456,3575634463,DE -3575634464,3575634495,BE -3575634496,3575634511,FI -3575634512,3575634519,CH -3575634520,3575634591,BE -3575634592,3575634599,ES -3575634600,3575634607,BE -3575634608,3575634615,GB -3575634616,3575634623,DE -3575634624,3575634695,BE -3575634696,3575634703,FI -3575634704,3575634711,BE -3575634712,3575634719,DE -3575634720,3575634767,BE -3575634768,3575634775,NO -3575634776,3575634783,BE -3575634784,3575634791,FR -3575634792,3575634799,ES -3575634800,3575634807,BE -3575634808,3575634815,SE -3575634816,3575634879,BE -3575634880,3575634911,GB -3575634912,3575634919,SE -3575634920,3575634927,GB -3575634928,3575634935,IT -3575634936,3575635015,BE -3575635016,3575635023,CH -3575635024,3575635039,ES -3575635040,3575635055,BE -3575635056,3575635063,CH -3575635064,3575635071,BE -3575635072,3575635087,SE -3575635088,3575635103,BE -3575635104,3575635119,PT -3575635120,3575635135,PL -3575635136,3575635151,DE -3575635152,3575635159,PT -3575635160,3575635167,DE -3575635168,3575635175,GB -3575635176,3575635199,BE -3575635200,3575635455,NO -3575635456,3575635463,RU -3575635464,3575635471,GB -3575635472,3575635583,BE -3575635584,3575635615,EG -3575635616,3575635631,FI -3575635632,3575635647,BE -3575635648,3575635679,GB -3575635680,3575635695,BE -3575635696,3575635703,GB -3575635704,3575635775,BE -3575635776,3575635839,CH -3575635840,3575635847,GB -3575635848,3575635855,FR -3575635856,3575635871,TR -3575635872,3575635983,BE -3575635984,3575635999,DE -3575636000,3575636143,BE -3575636144,3575636151,HU -3575636152,3575636607,BE -3575636608,3575636735,FR -3575636736,3575636807,BE -3575636808,3575636815,GB -3575636816,3575636823,BE -3575636824,3575636831,RU -3575636832,3575636855,BE -3575636856,3575636863,DE -3575636864,3575636871,BE -3575636872,3575636879,CZ -3575636880,3575636895,BE -3575636896,3575636903,PL -3575636904,3575636911,CZ -3575636912,3575636983,BE -3575636984,3575636991,FR -3575636992,3575637039,BE -3575637040,3575637055,DE -3575637056,3575637151,BE -3575637152,3575637183,GB -3575637184,3575637407,BE -3575637408,3575637439,LU -3575637440,3575637471,GB -3575637472,3575638103,BE -3575638104,3575638111,GB -3575638112,3575638175,BE -3575638176,3575638239,GB -3575638240,3575638279,BE -3575638280,3575638287,RU -3575638288,3575638303,BE -3575638304,3575638335,NO -3575638336,3575638527,BE -3575638528,3575638543,DE -3575638544,3575638559,BE -3575638560,3575638591,GB -3575638592,3575638623,BE -3575638624,3575638639,PL -3575638640,3575638719,BE -3575638720,3575638735,NL -3575638736,3575638751,GR -3575638752,3575638767,BE -3575638768,3575638783,SE -3575638784,3575638911,BE -3575638912,3575638943,FR -3575638944,3575638975,GB -3575638976,3575639007,BE -3575639008,3575639011,GB -3575639012,3575639023,IE -3575639024,3575639039,PL -3575639040,3575644159,BE -3575644160,3575709695,DK -3575709696,3575730175,AT -3575730176,3575730183,SA -3575730184,3575732735,AT -3575732736,3575732991,LI -3575732992,3575736319,AT -3575736320,3575736895,LI -3575736896,3575738407,AT -3575738408,3575738415,SA -3575738416,3575738431,AT -3575738432,3575738463,SA -3575738464,3575738751,AT -3575738752,3575738759,SA -3575738760,3575742463,AT -3575742464,3575775231,RU -3575775232,3575775295,AT -3575775296,3575775487,NL -3575775488,3575775743,AT -3575775744,3575824383,NL -3575824384,3575832575,KW -3575832576,3575857151,NL -3575857152,3575857407,BE -3575857408,3575858529,NL -3575858530,3575858543,US -3575858544,3575860299,NL -3575860300,3575860303,BE -3575860304,3575866367,NL -3575866368,3575867135,US -3575867136,3575873535,NL -3575873536,3575906303,EE -3575906304,3575971839,FR -3575971840,3576037375,ES -3576038208,3576038271,GB -3576038336,3576038463,GB -3576038528,3576038591,GB -3576038912,3576038975,GB -3576039168,3576039231,GB -3576039360,3576039383,GB -3576039392,3576039455,GB -3576039520,3576039551,GB -3576039584,3576039647,GB -3576039808,3576039839,GB -3576039904,3576039935,GB -3576040064,3576040127,GB -3576040216,3576040223,GB -3576040272,3576040287,GB -3576040352,3576040383,GB -3576040832,3576040959,GB -3576041472,3576041535,GB -3576041728,3576041799,GB -3576041832,3576041847,GB -3576041864,3576041871,GB -3576041880,3576041887,GB -3576041904,3576041919,GB -3576041936,3576041943,GB -3576041952,3576041975,GB -3576042112,3576042239,GB -3576042496,3576042623,GB -3576042688,3576042815,GB -3576045568,3576045599,GB -3576045616,3576045631,GB -3576045664,3576045679,GB -3576045712,3576045735,GB -3576045800,3576045807,GB -3576045816,3576045823,GB -3576048640,3576048767,GB -3576048960,3576049023,GB -3576049152,3576050047,GB -3576053760,3576054911,GB -3576055104,3576055111,GB -3576055120,3576055127,GB -3576055152,3576055167,GB -3576055184,3576055199,GB -3576055208,3576055215,GB -3576055280,3576055551,GB -3576055680,3576055871,GB -3576055936,3576055999,GB -3576056192,3576056255,GB -3576056320,3576056447,GB -3576056704,3576056767,GB -3576056856,3576056871,GB -3576056880,3576056887,GB -3576056896,3576056903,GB -3576056920,3576056927,GB -3576056936,3576056943,GB -3576056952,3576056975,GB -3576056992,3576057007,GB -3576057040,3576057055,GB -3576057632,3576057647,GB -3576057712,3576057743,GB -3576057760,3576057775,GB -3576057824,3576057839,GB -3576058880,3576059007,GB -3576059648,3576059679,GB -3576059712,3576059743,GB -3576059776,3576059807,GB -3576060096,3576060159,GB -3576060288,3576060351,GB -3576061040,3576061055,GB -3576061120,3576061135,GB -3576061184,3576061247,GB -3576061312,3576061439,GB -3576061584,3576061591,GB -3576061620,3576061631,GB -3576061640,3576061647,GB -3576061688,3576061695,GB -3576062464,3576062479,GB -3576064320,3576064448,GB -3576064544,3576064559,GB -3576065408,3576065535,GB -3576065856,3576065887,GB -3576066288,3576066295,GB -3576066304,3576066431,GB -3576067072,3576067199,GB -3576067248,3576067255,GB -3576068352,3576068479,GB -3576068864,3576068927,GB -3576069056,3576069119,GB -3576069248,3576069279,GB -3576069312,3576069343,GB -3576070696,3576070703,GB -3576070712,3576070719,GB -3576070728,3576070735,GB -3576070776,3576070783,GB -3576071296,3576071423,GB -3576071552,3576071679,GB -3576071936,3576071951,GB -3576072064,3576072079,GB -3576072288,3576072319,GB -3576072416,3576072511,GB -3576073216,3576073279,GB -3576074752,3576074879,GB -3576075104,3576075135,GB -3576075264,3576075327,GB -3576075648,3576075711,GB -3576075776,3576075903,GB -3576076272,3576076351,GB -3576076568,3576076575,GB -3576076624,3576076631,GB -3576076704,3576076719,GB -3576076784,3576076791,GB -3576077440,3576077471,GB -3576077568,3576077695,GB -3576077872,3576077887,GB -3576077936,3576077967,GB -3576078080,3576078175,GB -3576078464,3576078591,GB -3576079616,3576079871,GB -3576080000,3576080127,GB -3576080224,3576080255,GB -3576080776,3576080799,GB -3576080808,3576080815,GB -3576080824,3576080831,GB -3576082080,3576082111,GB -3576082192,3576082223,GB -3576082688,3576082943,GB -3576083968,3576084031,GB -3576084480,3576084543,GB -3576084608,3576084671,GB -3576084704,3576084735,GB -3576084864,3576084927,GB -3576085184,3576085215,GB -3576085696,3576085711,GB -3576086016,3576086143,GB -3576086368,3576086431,GB -3576086496,3576086527,GB -3576086568,3576086571,GB -3576086576,3576086591,GB -3576086600,3576086603,GB -3576087808,3576087823,GB -3576087952,3576087967,GB -3576088032,3576088047,GB -3576088224,3576088231,GB -3576088376,3576088383,GB -3576088480,3576088511,GB -3576088960,3576088967,GB -3576089024,3576089039,GB -3576089440,3576089471,GB -3576089776,3576089791,GB -3576089824,3576089839,GB -3576091408,3576091423,GB -3576091456,3576091479,GB -3576091520,3576091535,GB -3576091968,3576091983,GB -3576092000,3576092031,GB -3576092128,3576092159,GB -3576092864,3576092895,GB -3576093064,3576093071,GB -3576093184,3576093247,GB -3576095232,3576096767,GB -3576099072,3576100863,GB -3576101376,3576102911,GB -3576102912,3576109023,FR -3576109024,3576109055,DE -3576109056,3576119295,FR -3576119296,3576119455,CH -3576119456,3576119471,BE -3576119472,3576127487,CH -3576127488,3576131583,FR -3576131584,3576135679,CH -3576135680,3576168447,DE -3576168448,3576233983,GB -3576233984,3576236671,FR -3576236672,3576236703,GB -3576236704,3576236879,FR -3576236880,3576237055,GB -3576237056,3576237063,FR -3576237064,3576237071,GB -3576237072,3576237087,FR -3576237088,3576237135,GB -3576237136,3576237215,FR -3576237216,3576237279,GB -3576237280,3576237455,FR -3576237456,3576237503,GB -3576237504,3576237567,FR -3576237568,3576237583,GB -3576237584,3576237599,FR -3576237600,3576237679,GB -3576237680,3576237695,FR -3576237696,3576237759,GB -3576237760,3576237791,FR -3576237792,3576237823,GB -3576237824,3576237855,FR -3576237856,3576237871,GB -3576237872,3576237887,FR -3576237888,3576237919,GB -3576237920,3576237935,FR -3576237936,3576237967,GB -3576237968,3576237983,FR -3576237984,3576238015,GB -3576238016,3576238143,FR -3576238144,3576238159,GB -3576238160,3576238271,FR -3576238272,3576238287,GB -3576238288,3576238303,FR -3576238304,3576238335,GB -3576238336,3576238447,FR -3576238448,3576238463,GB -3576238464,3576238511,FR -3576238512,3576238527,GB -3576238528,3576238559,FR -3576238560,3576238591,GB -3576238592,3576238607,FR -3576238608,3576238623,GB -3576238624,3576238639,FR -3576238640,3576238719,GB -3576238720,3576238847,FR -3576238848,3576238911,GB -3576238912,3576238927,FR -3576238928,3576238959,GB -3576238960,3576239007,FR -3576239008,3576239023,GB -3576239024,3576239039,FR -3576239040,3576239071,GB -3576239072,3576239087,FR -3576239088,3576239103,GB -3576239104,3576240039,FR -3576240040,3576240047,GB -3576240048,3576240111,FR -3576240112,3576240127,GB -3576240128,3576240639,FR -3576240640,3576240895,GB -3576240896,3576241287,FR -3576241288,3576241295,GB -3576241296,3576241343,FR -3576241344,3576241351,GB -3576241352,3576241391,FR -3576241392,3576241399,GB -3576241400,3576241791,FR -3576241792,3576241799,GB -3576241800,3576241815,FR -3576241816,3576241823,GB -3576241824,3576241919,FR -3576241920,3576242111,GB -3576242112,3576246399,FR -3576246400,3576246527,GB -3576246528,3576246656,FR -3576246657,3576246783,GB -3576246784,3576248575,FR -3576248576,3576248831,GB -3576248832,3576249463,FR -3576249464,3576249471,GB -3576249472,3576249527,FR -3576249528,3576249535,GB -3576249536,3576249743,FR -3576249744,3576249791,GB -3576249792,3576249799,FR -3576249800,3576249823,GB -3576249824,3576249831,FR -3576249832,3576249839,GB -3576249840,3576251407,FR -3576251408,3576251519,GB -3576251520,3576251583,FR -3576251584,3576251599,GB -3576251600,3576251615,FR -3576251616,3576251647,GB -3576251648,3576252415,FR -3576252416,3576252671,GB -3576252672,3576253159,FR -3576253160,3576253183,GB -3576253184,3576254479,FR -3576254480,3576254495,GB -3576254496,3576254511,FR -3576254512,3576254527,GB -3576254528,3576254551,FR -3576254552,3576254559,GB -3576254560,3576254575,FR -3576254576,3576254615,GB -3576254616,3576254623,FR -3576254624,3576254639,GB -3576254640,3576254647,FR -3576254648,3576254663,GB -3576254664,3576254671,FR -3576254672,3576254679,GB -3576254680,3576254695,FR -3576254696,3576254711,GB -3576254712,3576254767,FR -3576254768,3576254783,GB -3576254784,3576254847,FR -3576254848,3576254855,GB -3576254856,3576254863,FR -3576254864,3576254879,GB -3576254880,3576254895,FR -3576254896,3576254903,GB -3576254904,3576255087,FR -3576255088,3576255199,GB -3576255200,3576255215,FR -3576255216,3576255263,GB -3576255264,3576255319,FR -3576255320,3576255359,GB -3576255360,3576255375,FR -3576255376,3576255383,GB -3576255384,3576255407,FR -3576255408,3576255423,GB -3576255424,3576255431,FR -3576255432,3576255439,GB -3576255440,3576255447,FR -3576255448,3576255455,GB -3576255456,3576255503,FR -3576255504,3576255511,GB -3576255512,3576255519,FR -3576255520,3576255527,GB -3576255528,3576255543,FR -3576255544,3576255551,GB -3576255552,3576255575,FR -3576255576,3576255583,GB -3576255584,3576255631,FR -3576255632,3576255647,GB -3576255648,3576255671,FR -3576255672,3576255679,GB -3576255680,3576255703,FR -3576255704,3576255727,GB -3576255728,3576255743,FR -3576255744,3576255759,GB -3576255760,3576255839,FR -3576255840,3576255871,GB -3576255872,3576255887,FR -3576255888,3576255935,GB -3576255936,3576255943,FR -3576255944,3576255951,GB -3576255952,3576255975,FR -3576255976,3576256047,GB -3576256048,3576256111,FR -3576256112,3576256143,GB -3576256144,3576256239,FR -3576256240,3576256255,GB -3576256256,3576256351,FR -3576256352,3576256367,GB -3576256368,3576256383,FR -3576256384,3576256415,GB -3576256416,3576256431,FR -3576256432,3576256447,GB -3576256448,3576256463,FR -3576256464,3576256527,GB -3576256528,3576256543,FR -3576256544,3576256559,GB -3576256560,3576256607,FR -3576256608,3576256623,GB -3576256624,3576256639,FR -3576256640,3576256671,GB -3576256672,3576256687,FR -3576256688,3576256767,GB -3576256768,3576256895,FR -3576256896,3576256959,GB -3576256960,3576256991,FR -3576256992,3576257007,GB -3576257008,3576257103,FR -3576257104,3576257111,GB -3576257112,3576257135,FR -3576257136,3576257151,GB -3576257152,3576257159,FR -3576257160,3576257167,GB -3576257168,3576257287,FR -3576257288,3576257295,GB -3576257296,3576257327,FR -3576257328,3576257359,GB -3576257360,3576257367,FR -3576257368,3576257375,GB -3576257376,3576257455,FR -3576257456,3576257471,GB -3576257472,3576257487,FR -3576257488,3576257495,GB -3576257496,3576257503,FR -3576257504,3576257535,GB -3576257536,3576257551,FR -3576257552,3576257583,GB -3576257584,3576257631,FR -3576257632,3576257647,GB -3576257648,3576257727,FR -3576257728,3576257807,GB -3576257808,3576257823,FR -3576257824,3576257839,GB -3576257840,3576257855,FR -3576257856,3576257871,GB -3576257872,3576257887,FR -3576257888,3576257895,GB -3576257896,3576257983,FR -3576257984,3576257999,GB -3576258000,3576258055,FR -3576258056,3576258063,GB -3576258064,3576258095,FR -3576258096,3576258127,GB -3576258128,3576258160,FR -3576258161,3576258175,GB -3576258176,3576258191,FR -3576258192,3576258207,GB -3576258208,3576258351,FR -3576258352,3576258399,GB -3576258400,3576258415,FR -3576258416,3576258431,GB -3576258432,3576258447,FR -3576258448,3576258463,GB -3576258464,3576258495,FR -3576258496,3576258511,GB -3576258512,3576258527,FR -3576258528,3576258575,GB -3576258576,3576258591,FR -3576258592,3576258623,GB -3576258624,3576258671,FR -3576258672,3576258687,GB -3576258688,3576258719,FR -3576258720,3576258783,GB -3576258784,3576258863,FR -3576258864,3576258895,GB -3576258896,3576258911,FR -3576258912,3576258927,GB -3576258928,3576259031,FR -3576259032,3576259087,GB -3576259088,3576259103,FR -3576259104,3576259199,GB -3576259200,3576259231,FR -3576259232,3576259247,GB -3576259248,3576259279,FR -3576259280,3576259295,GB -3576259296,3576259311,FR -3576259312,3576259327,GB -3576259328,3576259343,FR -3576259344,3576259391,GB -3576259392,3576259423,FR -3576259424,3576259439,GB -3576259440,3576259519,FR -3576259520,3576259583,GB -3576259584,3576259919,FR -3576259920,3576259935,GB -3576259936,3576259991,FR -3576259992,3576259999,GB -3576260000,3576260015,FR -3576260016,3576260031,GB -3576260032,3576260063,FR -3576260064,3576260087,GB -3576260088,3576260175,FR -3576260176,3576260191,GB -3576260192,3576260207,FR -3576260208,3576260223,GB -3576260224,3576260239,FR -3576260240,3576260255,GB -3576260256,3576260271,FR -3576260272,3576260335,GB -3576260336,3576260463,FR -3576260464,3576260543,GB -3576260544,3576260559,FR -3576260560,3576260607,GB -3576260608,3576260623,FR -3576260624,3576260639,GB -3576260640,3576260655,FR -3576260656,3576260687,GB -3576260688,3576260703,FR -3576260704,3576260735,GB -3576260736,3576260895,FR -3576260896,3576260927,GB -3576260928,3576260959,FR -3576260960,3576260999,GB -3576261000,3576261015,FR -3576261016,3576261023,GB -3576261024,3576261047,FR -3576261048,3576261055,GB -3576261056,3576261063,FR -3576261064,3576261071,GB -3576261072,3576261087,FR -3576261088,3576261095,GB -3576261096,3576261103,FR -3576261104,3576261111,GB -3576261112,3576261375,FR -3576261376,3576261631,GB -3576261632,3576261927,FR -3576261928,3576261935,GB -3576261936,3576262023,FR -3576262024,3576262031,GB -3576262032,3576262063,FR -3576262064,3576262071,GB -3576262072,3576263439,FR -3576263440,3576263455,GB -3576263456,3576263519,FR -3576263520,3576263551,GB -3576263552,3576263567,FR -3576263568,3576263575,GB -3576263576,3576263583,FR -3576263584,3576263599,GB -3576263600,3576263615,FR -3576263616,3576263623,GB -3576263624,3576263751,FR -3576263752,3576263759,GB -3576263760,3576263791,FR -3576263792,3576263903,GB -3576263904,3576263911,FR -3576263912,3576263919,GB -3576263920,3576264303,FR -3576264304,3576264311,GB -3576264312,3576264383,FR -3576264384,3576264399,GB -3576264400,3576264447,FR -3576264448,3576264511,GB -3576264512,3576264543,FR -3576264544,3576264559,GB -3576264560,3576264575,FR -3576264576,3576264607,GB -3576264608,3576264639,FR -3576264640,3576264703,GB -3576264704,3576265311,FR -3576265312,3576265319,GB -3576265320,3576265343,FR -3576265344,3576265359,GB -3576265360,3576265407,FR -3576265408,3576265415,GB -3576265416,3576265831,FR -3576265832,3576265839,GB -3576265840,3576265855,FR -3576265856,3576265863,GB -3576265864,3576265879,FR -3576265880,3576265895,GB -3576265896,3576265911,FR -3576265912,3576265935,GB -3576265936,3576266655,FR -3576266656,3576266671,GB -3576266672,3576266687,FR -3576266688,3576266751,GB -3576266752,3576299519,FR -3576299520,3576365055,AE -3576365056,3576430591,TR -3576430592,3576496127,FR -3576496128,3576561663,IT -3576561664,3576603135,NL -3576603136,3576603391,BE -3576603392,3576603647,FR -3576603648,3576604159,NL -3576604160,3576604415,HU -3576604416,3576605183,NL -3576605184,3576605439,RO -3576605440,3576605695,NL -3576605696,3576605951,CZ -3576605952,3576606207,AT -3576606208,3576606463,GB -3576606464,3576606719,NL -3576606720,3576606975,SE -3576606976,3576607231,NO -3576607232,3576607487,PL -3576607488,3576607743,DE -3576607744,3576620031,NL -3576620032,3576620543,SE -3576620544,3576620799,GB -3576620800,3576622335,NL -3576622336,3576622591,GB -3576622592,3576623871,NL -3576623872,3576624127,AT -3576624128,3576627199,NL -3576627200,3576692735,AT -3576692736,3576758271,GB -3576758272,3576823807,BE -3576823808,3576889343,SE -3576889344,3576954879,NL -3576954880,3576987647,NO -3576987648,3577020415,GB -3577020416,3577085951,NL -3577085952,3577151487,DE -3577151488,3577167871,GB -3577184256,3577217023,CH -3577217024,3577263167,FR -3577263168,3577263199,US -3577263200,3577282559,FR -3577282560,3577348095,IL -3577348096,3577392767,PT -3577392768,3577392783,DE -3577392784,3577413631,PT -3577413632,3577417519,RU -3577417520,3577417535,KZ -3577417536,3577479167,RU -3577479168,3577544703,ES -3577544704,3577545795,DE -3577545796,3577545799,GB -3577545800,3577545863,DE -3577545864,3577545871,US -3577545872,3577545983,DE -3577545984,3577546111,SE -3577546112,3577546143,DE -3577546144,3577546151,GB -3577546152,3577546159,DE -3577546160,3577546175,GB -3577546176,3577546239,DE -3577546240,3577546367,US -3577546368,3577546383,GB -3577546384,3577546415,DE -3577546416,3577546423,GB -3577546424,3577546703,DE -3577546704,3577546719,GB -3577546720,3577547223,DE -3577547224,3577547231,GB -3577547232,3577547375,DE -3577547376,3577547383,GB -3577547384,3577547455,DE -3577547456,3577547519,FR -3577547520,3577547631,DE -3577547632,3577547663,GB -3577547664,3577547743,DE -3577547744,3577547775,GB -3577547776,3577548287,DE -3577548288,3577548303,GB -3577548304,3577548319,DE -3577548320,3577548351,GB -3577548352,3577549055,DE -3577549056,3577549079,GB -3577549080,3577549119,DE -3577549120,3577549151,GB -3577549152,3577549599,DE -3577549600,3577549631,GB -3577549632,3577549695,DE -3577549696,3577549823,GB -3577549824,3577550847,DE -3577550848,3577550983,GB -3577550984,3577551047,DE -3577551048,3577551063,GB -3577551064,3577551087,DE -3577551088,3577551095,GB -3577551096,3577551103,DE -3577551104,3577551111,GB -3577551112,3577551119,DE -3577551120,3577551127,GB -3577551128,3577551151,DE -3577551152,3577551159,GB -3577551160,3577551271,DE -3577551272,3577551279,GB -3577551280,3577551287,DE -3577551288,3577551327,GB -3577551328,3577551343,DE -3577551344,3577551351,GB -3577551352,3577551407,DE -3577551408,3577551411,US -3577551412,3577551423,DE -3577551424,3577551455,GB -3577551456,3577552159,DE -3577552160,3577552183,GB -3577552184,3577552191,DE -3577552192,3577552199,GB -3577552200,3577552215,DE -3577552216,3577552223,GB -3577552224,3577552239,DE -3577552240,3577552247,GB -3577552248,3577552255,DE -3577552256,3577552263,GB -3577552264,3577552287,DE -3577552288,3577552295,GB -3577552296,3577552399,DE -3577552400,3577552447,GB -3577552448,3577552919,DE -3577552920,3577552927,GB -3577552928,3577552959,DE -3577552960,3577552967,GB -3577552968,3577552975,DE -3577552976,3577552991,GB -3577552992,3577553007,DE -3577553008,3577553023,GB -3577553024,3577553103,DE -3577553104,3577553119,GB -3577553120,3577553191,DE -3577553192,3577553199,GB -3577553200,3577553223,DE -3577553224,3577553407,GB -3577553408,3577553503,DE -3577553504,3577553575,GB -3577553576,3577553583,DE -3577553584,3577553607,GB -3577553608,3577553623,DE -3577553624,3577553663,GB -3577553664,3577553983,DE -3577553984,3577554463,GB -3577554464,3577554467,DE -3577554468,3577554483,GB -3577554484,3577554487,DE -3577554488,3577554647,GB -3577554648,3577554659,DE -3577554660,3577554663,GB -3577554664,3577554671,DE -3577554672,3577554687,GB -3577554688,3577554815,DE -3577554816,3577554943,GB -3577554944,3577556999,DE -3577557000,3577557007,GB -3577557008,3577557071,DE -3577557072,3577557103,GB -3577557104,3577557215,DE -3577557216,3577557231,US -3577557232,3577557247,GB -3577557248,3577558783,DE -3577558784,3577559167,GB -3577559168,3577559183,DE -3577559184,3577559199,GB -3577559200,3577559215,DE -3577559216,3577559223,GB -3577559224,3577559231,DE -3577559232,3577559247,GB -3577559248,3577559279,DE -3577559280,3577559303,GB -3577559304,3577559311,DE -3577559312,3577559319,GB -3577559320,3577559327,DE -3577559328,3577559351,GB -3577559352,3577559383,DE -3577559384,3577559391,GB -3577559392,3577559399,DE -3577559400,3577559407,GB -3577559408,3577559415,DE -3577559416,3577559423,GB -3577559424,3577559431,DE -3577559432,3577559447,GB -3577559448,3577559455,DE -3577559456,3577559463,GB -3577559464,3577559471,DE -3577559472,3577559487,GB -3577559488,3577559519,DE -3577559520,3577559527,GB -3577559528,3577559535,DE -3577559536,3577559543,GB -3577559544,3577559559,DE -3577559560,3577559567,GB -3577559568,3577559663,DE -3577559664,3577559671,GB -3577559672,3577559679,DE -3577559680,3577559687,GB -3577559688,3577559751,DE -3577559752,3577559759,GB -3577559760,3577559815,DE -3577559816,3577559823,GB -3577559824,3577559951,DE -3577559952,3577559959,GB -3577559960,3577559983,DE -3577559984,3577559999,GB -3577560000,3577560063,DE -3577560064,3577560079,GB -3577560080,3577560087,DE -3577560088,3577560103,GB -3577560104,3577560111,DE -3577560112,3577560575,GB -3577560576,3577561087,DE -3577561088,3577561127,GB -3577561128,3577561131,DE -3577561132,3577561235,GB -3577561236,3577561263,DE -3577561264,3577561267,GB -3577561268,3577561271,DE -3577561272,3577561287,GB -3577561288,3577561323,DE -3577561324,3577561327,GB -3577561328,3577561331,DE -3577561332,3577561595,GB -3577561596,3577561639,DE -3577561640,3577561647,GB -3577561648,3577561767,DE -3577561768,3577561775,GB -3577561776,3577561791,DE -3577561792,3577561855,GB -3577561856,3577561863,DE -3577561864,3577561879,GB -3577561880,3577561887,DE -3577561888,3577561903,GB -3577561904,3577562087,DE -3577562088,3577562095,GB -3577562096,3577562103,DE -3577562104,3577562111,GB -3577562112,3577562391,DE -3577562392,3577562415,GB -3577562416,3577562439,DE -3577562440,3577562447,GB -3577562448,3577562455,DE -3577562456,3577562471,GB -3577562472,3577562479,DE -3577562480,3577562495,GB -3577562496,3577562511,DE -3577562512,3577562519,GB -3577562520,3577562535,DE -3577562536,3577562551,GB -3577562552,3577562559,DE -3577562560,3577562623,GB -3577562624,3577562935,DE -3577562936,3577562991,GB -3577562992,3577562999,DE -3577563000,3577563007,GB -3577563008,3577563015,DE -3577563016,3577563135,GB -3577563136,3577563295,DE -3577563296,3577563311,GB -3577563312,3577563327,DE -3577563328,3577563359,GB -3577563360,3577563375,DE -3577563376,3577563383,GB -3577563384,3577563919,DE -3577563920,3577563927,GB -3577563928,3577563935,DE -3577563936,3577563967,GB -3577563968,3577563983,DE -3577563984,3577564031,GB -3577564032,3577564039,DE -3577564040,3577564043,GB -3577564044,3577564079,DE -3577564080,3577564087,GB -3577564088,3577564111,DE -3577564112,3577564119,GB -3577564120,3577564303,DE -3577564304,3577564319,GB -3577564320,3577564327,DE -3577564328,3577564335,GB -3577564336,3577564359,DE -3577564360,3577564383,GB -3577564384,3577564575,DE -3577564576,3577564583,GB -3577564584,3577564591,DE -3577564592,3577564599,GB -3577564600,3577564927,DE -3577564928,3577565227,GB -3577565228,3577565255,DE -3577565256,3577565259,GB -3577565260,3577565271,DE -3577565272,3577565283,GB -3577565284,3577565287,DE -3577565288,3577565695,GB -3577565696,3577565711,DE -3577565712,3577565719,GB -3577565720,3577565743,DE -3577565744,3577565759,GB -3577565760,3577565775,DE -3577565776,3577565791,GB -3577565792,3577565823,DE -3577565824,3577565839,GB -3577565840,3577565847,DE -3577565848,3577565855,GB -3577565856,3577565863,DE -3577565864,3577565879,GB -3577565880,3577565895,DE -3577565896,3577565903,GB -3577565904,3577565911,DE -3577565912,3577565919,GB -3577565920,3577565943,DE -3577565944,3577565967,GB -3577565968,3577565975,DE -3577565976,3577565999,GB -3577566000,3577566007,DE -3577566008,3577566071,GB -3577566072,3577566079,DE -3577566080,3577566103,GB -3577566104,3577566119,DE -3577566120,3577566135,GB -3577566136,3577566143,DE -3577566144,3577566151,GB -3577566152,3577566175,DE -3577566176,3577566183,GB -3577566184,3577566191,DE -3577566192,3577566207,GB -3577566208,3577566219,DE -3577566220,3577566423,GB -3577566424,3577566431,DE -3577566432,3577566463,GB -3577566464,3577566711,DE -3577566712,3577566719,GB -3577566720,3577566871,DE -3577566872,3577566879,GB -3577566880,3577567039,DE -3577567040,3577567047,GB -3577567048,3577567111,DE -3577567112,3577567119,GB -3577567120,3577567127,DE -3577567128,3577567135,GB -3577567136,3577567167,DE -3577567168,3577567199,GB -3577567200,3577567495,DE -3577567496,3577567503,GB -3577567504,3577567615,DE -3577567616,3577567623,GB -3577567624,3577567639,DE -3577567640,3577567647,GB -3577567648,3577567663,DE -3577567664,3577567671,GB -3577567672,3577567679,DE -3577567680,3577567871,GB -3577567872,3577568351,DE -3577568352,3577568359,GB -3577568360,3577568479,DE -3577568480,3577568487,GB -3577568488,3577568495,DE -3577568496,3577568519,GB -3577568520,3577568527,DE -3577568528,3577569279,GB -3577569280,3577569383,DE -3577569384,3577569391,GB -3577569392,3577569499,DE -3577569500,3577569503,GB -3577569504,3577569519,DE -3577569520,3577569535,GB -3577569536,3577569855,DE -3577569856,3577569863,GB -3577569864,3577569887,DE -3577569888,3577569895,GB -3577569896,3577570159,DE -3577570160,3577570167,GB -3577570168,3577570367,DE -3577570368,3577570559,GB -3577570560,3577570703,DE -3577570704,3577570707,GB -3577570708,3577570847,DE -3577570848,3577570855,GB -3577570856,3577570911,DE -3577570912,3577570943,GB -3577570944,3577571695,DE -3577571696,3577571703,GB -3577571704,3577571791,DE -3577571792,3577571839,GB -3577571840,3577572463,DE -3577572464,3577572471,GB -3577572472,3577573051,DE -3577573052,3577573055,GB -3577573056,3577573071,DE -3577573072,3577573079,GB -3577573080,3577573119,DE -3577573120,3577573151,GB -3577573152,3577573175,DE -3577573176,3577573183,GB -3577573184,3577573191,DE -3577573192,3577573207,GB -3577573208,3577573439,DE -3577573440,3577574399,GB -3577574400,3577574479,DE -3577574480,3577575175,GB -3577575176,3577575191,DE -3577575192,3577575431,GB -3577575432,3577575583,DE -3577575584,3577575599,GB -3577575600,3577575655,DE -3577575656,3577575663,GB -3577575664,3577576799,DE -3577576800,3577576815,GB -3577576816,3577576847,DE -3577576848,3577576863,GB -3577576864,3577576911,DE -3577576912,3577576927,GB -3577576928,3577577231,DE -3577577232,3577577247,US -3577577248,3577577391,DE -3577577392,3577577407,GB -3577577408,3577577647,DE -3577577648,3577577655,GB -3577577656,3577577695,DE -3577577696,3577577703,GB -3577577704,3577577743,DE -3577577744,3577577759,GB -3577577760,3577577783,DE -3577577784,3577577791,GB -3577577792,3577577887,DE -3577577888,3577577895,GB -3577577896,3577577923,DE -3577577924,3577577927,GB -3577577928,3577577983,DE -3577577984,3577578047,GB -3577578048,3577579191,DE -3577579192,3577579199,GB -3577579200,3577579231,DE -3577579232,3577579239,GB -3577579240,3577579887,DE -3577579888,3577579895,GB -3577579896,3577580127,DE -3577580128,3577580135,GB -3577580136,3577580175,DE -3577580176,3577580191,GB -3577580192,3577580343,DE -3577580344,3577580351,GB -3577580352,3577580375,DE -3577580376,3577580383,GB -3577580384,3577580407,DE -3577580408,3577580415,GB -3577580416,3577580483,DE -3577580484,3577580487,GB -3577580488,3577580895,DE -3577580896,3577580911,GB -3577580912,3577581015,DE -3577581016,3577581055,GB -3577581056,3577581903,DE -3577581904,3577581911,GB -3577581912,3577581919,DE -3577581920,3577581927,GB -3577581928,3577582015,DE -3577582016,3577582023,GB -3577582024,3577582111,DE -3577582112,3577582335,GB -3577582336,3577582343,DE -3577582344,3577582351,GB -3577582352,3577582511,DE -3577582512,3577582519,GB -3577582520,3577583247,DE -3577583248,3577583255,GB -3577583256,3577584143,DE -3577584144,3577584147,GB -3577584148,3577584175,DE -3577584176,3577584191,GB -3577584192,3577584295,DE -3577584296,3577584303,GB -3577584304,3577584351,DE -3577584352,3577584359,GB -3577584360,3577584383,DE -3577584384,3577584407,GB -3577584408,3577584463,DE -3577584464,3577584471,GB -3577584472,3577584591,DE -3577584592,3577584599,GB -3577584600,3577584607,DE -3577584608,3577584615,GB -3577584616,3577584639,DE -3577584640,3577584895,GB -3577584896,3577584903,DE -3577584904,3577584911,GB -3577584912,3577584927,DE -3577584928,3577584959,GB -3577584960,3577584991,DE -3577584992,3577585023,GB -3577585024,3577585415,DE -3577585416,3577585423,GB -3577585424,3577585439,DE -3577585440,3577585447,GB -3577585448,3577585455,DE -3577585456,3577585487,GB -3577585488,3577585567,DE -3577585568,3577585615,GB -3577585616,3577585631,DE -3577585632,3577585639,GB -3577585640,3577585647,DE -3577585648,3577585663,GB -3577585664,3577585919,DE -3577585920,3577586067,GB -3577586068,3577586071,DE -3577586072,3577586075,GB -3577586076,3577586079,DE -3577586080,3577586083,GB -3577586084,3577586087,DE -3577586088,3577586171,GB -3577586172,3577586175,DE -3577586176,3577586207,GB -3577586208,3577586319,DE -3577586320,3577586327,GB -3577586328,3577586431,DE -3577586432,3577586447,GB -3577586448,3577586495,DE -3577586496,3577586559,GB -3577586560,3577586575,DE -3577586576,3577586583,GB -3577586584,3577586647,DE -3577586648,3577586687,GB -3577586688,3577586711,DE -3577586712,3577586719,GB -3577586720,3577586751,DE -3577586752,3577586783,GB -3577586784,3577587103,DE -3577587104,3577587135,GB -3577587136,3577587239,DE -3577587240,3577587319,GB -3577587320,3577587327,DE -3577587328,3577587455,GB -3577587456,3577587463,DE -3577587464,3577587471,GB -3577587472,3577587479,DE -3577587480,3577587487,GB -3577587488,3577587503,DE -3577587504,3577587519,GB -3577587520,3577587615,DE -3577587616,3577587623,GB -3577587624,3577587631,DE -3577587632,3577587711,GB -3577587712,3577587775,DE -3577587776,3577587791,GB -3577587792,3577587847,DE -3577587848,3577587863,GB -3577587864,3577587871,DE -3577587872,3577587879,GB -3577587880,3577588095,DE -3577588096,3577588099,GB -3577588100,3577588103,DE -3577588104,3577588151,GB -3577588152,3577588155,DE -3577588156,3577588223,GB -3577588224,3577588511,DE -3577588512,3577588551,GB -3577588552,3577588559,DE -3577588560,3577588735,GB -3577588736,3577588783,DE -3577588784,3577588799,GB -3577588800,3577588803,DE -3577588804,3577588815,GB -3577588816,3577588863,DE -3577588864,3577588871,GB -3577588872,3577589007,DE -3577589008,3577589023,GB -3577589024,3577589119,DE -3577589120,3577589135,GB -3577589136,3577589151,DE -3577589152,3577589167,GB -3577589168,3577589311,DE -3577589312,3577589375,GB -3577589376,3577589391,DE -3577589392,3577589407,GB -3577589408,3577589455,DE -3577589456,3577589471,GB -3577589472,3577589503,DE -3577589504,3577589515,GB -3577589516,3577589519,DE -3577589520,3577589551,GB -3577589552,3577589555,DE -3577589556,3577589703,GB -3577589704,3577589735,DE -3577589736,3577589759,GB -3577589760,3577590047,DE -3577590048,3577590079,GB -3577590080,3577590199,DE -3577590200,3577590207,GB -3577590208,3577590219,DE -3577590220,3577590223,GB -3577590224,3577590295,DE -3577590296,3577590303,GB -3577590304,3577590399,DE -3577590400,3577590407,GB -3577590408,3577590455,DE -3577590456,3577590463,GB -3577590464,3577590975,DE -3577590976,3577591039,GB -3577591040,3577591279,DE -3577591280,3577591287,GB -3577591288,3577591807,DE -3577591808,3577591871,GB -3577591872,3577591887,DE -3577591888,3577591935,GB -3577591936,3577591959,DE -3577591960,3577591963,GB -3577591964,3577592007,DE -3577592008,3577592015,GB -3577592016,3577592543,DE -3577592544,3577592551,GB -3577592552,3577592703,DE -3577592704,3577592735,GB -3577592736,3577592743,DE -3577592744,3577592751,IE -3577592752,3577592767,GB -3577592768,3577593103,DE -3577593104,3577593111,GB -3577593112,3577593171,DE -3577593172,3577593175,GB -3577593176,3577593187,DE -3577593188,3577593199,GB -3577593200,3577593215,DE -3577593216,3577593223,GB -3577593224,3577593231,DE -3577593232,3577593239,GB -3577593240,3577593407,DE -3577593408,3577593415,GB -3577593416,3577593487,DE -3577593488,3577593495,GB -3577593496,3577600687,DE -3577600688,3577600703,GB -3577600704,3577600795,DE -3577600796,3577600831,GB -3577600832,3577600863,DE -3577600864,3577600895,GB -3577600896,3577600918,DE -3577600919,3577600919,GB -3577600920,3577601007,DE -3577601008,3577601023,GB -3577601024,3577601319,DE -3577601320,3577601327,GB -3577601328,3577601375,DE -3577601376,3577601383,GB -3577601384,3577601399,DE -3577601400,3577601407,GB -3577601408,3577601447,DE -3577601448,3577601455,GB -3577601456,3577601791,DE -3577601792,3577602071,GB -3577602072,3577602847,DE -3577602848,3577602879,GB -3577602880,3577602919,DE -3577602920,3577602927,GB -3577602928,3577602959,DE -3577602960,3577602967,GB -3577602968,3577603039,DE -3577603040,3577603055,GB -3577603056,3577603063,DE -3577603064,3577603079,GB -3577603080,3577603103,DE -3577603104,3577603111,GB -3577603112,3577603131,DE -3577603132,3577603135,GB -3577603136,3577603199,DE -3577603200,3577603247,GB -3577603248,3577603263,DE -3577603264,3577603271,GB -3577603272,3577603455,DE -3577603456,3577603471,GB -3577603472,3577603551,DE -3577603552,3577603583,GB -3577603584,3577603887,DE -3577603888,3577603903,GB -3577603904,3577604031,DE -3577604032,3577604095,GB -3577604096,3577606191,DE -3577606192,3577606199,GB -3577606200,3577606215,DE -3577606216,3577606223,GB -3577606224,3577606279,DE -3577606280,3577606287,GB -3577606288,3577606431,DE -3577606432,3577606447,GB -3577606448,3577606479,DE -3577606480,3577606487,GB -3577606488,3577606655,DE -3577606656,3577606663,GB -3577606664,3577606735,DE -3577606736,3577606783,GB -3577606784,3577606815,DE -3577606816,3577606831,GB -3577606832,3577606847,DE -3577606848,3577606855,GB -3577606856,3577606911,DE -3577606912,3577607007,GB -3577607008,3577607199,DE -3577607200,3577607423,GB -3577607424,3577607559,DE -3577607560,3577607567,GB -3577607568,3577607583,DE -3577607584,3577607615,GB -3577607616,3577607663,DE -3577607664,3577607671,GB -3577607672,3577607711,DE -3577607712,3577607719,GB -3577607720,3577607727,DE -3577607728,3577607735,GB -3577607736,3577607743,DE -3577607744,3577607775,GB -3577607776,3577607807,DE -3577607808,3577607815,GB -3577607816,3577607831,DE -3577607832,3577607839,GB -3577607840,3577607847,DE -3577607848,3577607855,GB -3577607856,3577608191,DE -3577608192,3577608447,GB -3577608448,3577608703,DE -3577608704,3577608743,GB -3577608744,3577608751,ES -3577608752,3577608959,GB -3577608960,3577608999,DE -3577609000,3577609007,GB -3577609008,3577609023,DE -3577609024,3577609071,GB -3577609072,3577609087,DE -3577609088,3577609215,GB -3577609216,3577609359,DE -3577609360,3577610239,GB -3577610240,3577610367,DE -3577610368,3577610495,GB -3577610496,3577610751,DE -3577610752,3577611199,CH -3577611264,3577612287,DE -3577612320,3577612383,DE -3577612416,3577612543,NO -3577612544,3577612799,HU -3577612800,3577613055,FI -3577613312,3577613567,DE -3577613888,3577613951,TR -3577614080,3577614111,DE -3577614144,3577614207,DE -3577618432,3577618447,GB -3577618448,3577618463,NL -3577618464,3577618559,GB -3577618560,3577618623,BE -3577618656,3577618663,AT -3577618688,3577619935,GB -3577619968,3577620575,GB -3577620624,3577620671,GB -3577620672,3577620735,TR -3577620992,3577621055,GB -3577621120,3577621151,GB -3577621216,3577621223,SK -3577621248,3577622143,GB -3577622144,3577622271,DE -3577622272,3577622527,GB -3577622592,3577622927,GB -3577623040,3577623935,GB -3577624064,3577624319,GB -3577624448,3577624879,GB -3577624896,3577625199,GB -3577625208,3577625215,GB -3577625232,3577625599,GB -3577625808,3577625839,GB -3577625856,3577626143,GB -3577626240,3577626367,GB -3577626624,3577627135,FR -3577627392,3577627647,GB -3577627648,3577627967,FR -3577628000,3577628671,FR -3577628672,3577630719,CH -3577630720,3577630975,GB -3577631232,3577631743,GB -3577633792,3577633951,CZ -3577633960,3577633967,CZ -3577634048,3577634239,CZ -3577634816,3577635455,FR -3577635520,3577635839,FR -3577635840,3577636863,DE -3577636864,3577638143,GB -3577638144,3577638399,BE -3577638400,3577638911,GB -3577638912,3577638959,FR -3577638968,3577639239,FR -3577639248,3577639679,FR -3577639760,3577639783,FR -3577639792,3577639807,FR -3577639840,3577639847,FR -3577639856,3577639871,FR -3577639936,3577640719,FR -3577640728,3577641151,FR -3577641160,3577641175,FR -3577641184,3577641199,FR -3577641216,3577641279,FR -3577641344,3577641407,FR -3577641416,3577641423,FR -3577641472,3577641983,FR -3577641984,3577642047,GB -3577642056,3577642111,GB -3577642176,3577642223,GB -3577642240,3577642623,FR -3577642752,3577643007,FR -3577643008,3577643231,NL -3577643232,3577643247,GB -3577643248,3577643263,NL -3577645432,3577645447,NL -3577645456,3577645503,NL -3577645504,3577645567,SK -3577645824,3577645887,NL -3577645904,3577645951,NL -3577646080,3577646207,NL -3577646208,3577646335,NO -3577646336,3577646407,NL -3577646416,3577646527,NL -3577646592,3577646847,NL -3577647104,3577647911,DK -3577647936,3577647967,DK -3577648000,3577648127,DK -3577648384,3577649151,NL -3577651200,3577651455,GB -3577652224,3577652671,IT -3577652736,3577652743,NO -3577652752,3577652767,NO -3577652864,3577652943,NO -3577652992,3577653119,NO -3577653248,3577655295,IT -3577655296,3577655519,AT -3577655552,3577655647,AT -3577655664,3577655679,AT -3577655712,3577655743,AT -3577655808,3577656447,AT -3577657344,3577659391,GB -3577659392,3577659679,GR -3577659712,3577659743,GR -3577660160,3577660607,BE -3577660672,3577661439,BE -3577663488,3577665215,SE -3577665248,3577665311,SE -3577665344,3577665375,SE -3577665408,3577665455,SE -3577665536,3577665591,ES -3577665600,3577665607,ES -3577665616,3577665679,ES -3577665792,3577665823,BE -3577665824,3577665855,RO -3577665856,3577665919,LU -3577666048,3577666175,ES -3577667584,3577667743,PL -3577668640,3577668671,IE -3577668736,3577668799,IE -3577669120,3577669383,HU -3577669504,3577669631,HU -3577669632,3577671679,BE -3577671680,3577672191,ZA -3577672192,3577673727,DE -3577675776,3577741311,PT -3577741312,3578003455,SE -3578003456,3578049023,DE -3578049024,3578049055,CH -3578049056,3578235279,DE -3578235280,3578235295,NL -3578235296,3578265599,DE -3578265600,3578331135,GB -3578331136,3578339327,PL -3578339328,3578347519,ES -3578347520,3578363903,DE -3578363904,3578396671,NL -3578396672,3578462207,TR -3578462208,3578527743,NL -3578527744,3578658815,PL -3578658816,3578724351,GB -3578724352,3578732543,RU -3578732544,3578740735,IE -3578740736,3578757119,RU -3578757120,3578822655,SE -3578822656,3578855423,RU -3578855424,3578888191,GB -3578888192,3578920959,SK -3578920960,3578986495,IT -3578986496,3578988095,DE -3578988096,3578988099,LI -3578988100,3578996999,DE -3578997000,3578997007,CH -3578997008,3578998575,DE -3578998576,3578998583,GB -3578998584,3579002879,DE -3579002880,3579019263,GB -3579019264,3579052031,DK -3579052032,3579117567,NL -3579117568,3579132159,RU -3579132160,3579132415,BY -3579132416,3579183103,RU -3579183104,3579191759,GB -3579191760,3579191775,DE -3579191776,3579193599,GB -3579193600,3579193647,NL -3579193648,3579193663,GB -3579193664,3579193695,NL -3579193696,3579193711,GB -3579193712,3579193727,BE -3579193728,3579193743,GB -3579193744,3579193855,NL -3579193856,3579197055,GB -3579197056,3579197183,US -3579197184,3579197871,GB -3579197872,3579197887,US -3579197888,3579197903,IT -3579197904,3579228159,GB -3579228160,3579228415,US -3579228416,3579228671,GB -3579228672,3579228799,US -3579228800,3579241151,GB -3579241152,3579241215,IE -3579241216,3579242751,GB -3579242752,3579243007,US -3579243008,3579248639,GB -3579248640,3579314175,RU -3579314176,3579346943,IT -3579346944,3579361535,SE -3579361536,3579361791,NO -3579361792,3579362047,SE -3579362048,3579362063,NO -3579362064,3579362303,SE -3579362304,3579362559,NO -3579362560,3579362815,SE -3579362816,3579363327,NO -3579363328,3579445247,SE -3579445248,3579463679,AT -3579463680,3579463683,US -3579463684,3579478015,AT -3579478016,3579480847,FR -3579480848,3579480855,NL -3579480856,3579480863,FR -3579480864,3579480871,NL -3579480872,3579481095,FR -3579481096,3579481103,CH -3579481104,3579481119,FR -3579481120,3579481127,GB -3579481128,3579481143,FR -3579481144,3579481151,CH -3579481152,3579481159,FR -3579481160,3579481167,GB -3579481168,3579481191,FR -3579481192,3579481199,CH -3579481200,3579481247,FR -3579481248,3579481255,GB -3579481256,3579481263,CH -3579481264,3579481279,FR -3579481280,3579481287,GB -3579481288,3579482623,FR -3579482624,3579482783,NL -3579482784,3579482799,FR -3579482800,3579482927,NL -3579482928,3579482943,FR -3579482944,3579482991,NL -3579482992,3579483151,FR -3579483152,3579483263,NL -3579483264,3579483295,FR -3579483296,3579483311,NL -3579483312,3579483359,FR -3579483360,3579483375,NL -3579483376,3579484751,FR -3579484752,3579484767,BE -3579484768,3579485263,FR -3579485264,3579485279,BE -3579485280,3579485695,FR -3579485696,3579485711,GB -3579485712,3579485714,FR -3579485715,3579485727,GB -3579485728,3579485807,FR -3579485808,3579485823,GB -3579485824,3579485887,FR -3579485888,3579485888,GB -3579485889,3579485903,FR -3579485904,3579485919,DE -3579485920,3579485983,FR -3579485984,3579485999,CH -3579486000,3579486015,FR -3579486016,3579486031,GB -3579486032,3579486047,DE -3579486048,3579486095,GB -3579486096,3579486143,FR -3579486144,3579486175,GB -3579486176,3579486191,FR -3579486192,3579486207,GB -3579486208,3579486271,FR -3579486272,3579486287,GB -3579486288,3579486303,FR -3579486304,3579486319,GB -3579486320,3579486335,FR -3579486336,3579486351,GB -3579486352,3579486367,FR -3579486368,3579486383,IT -3579486384,3579486399,DE -3579486400,3579486415,FR -3579486416,3579486431,DE -3579486432,3579486447,GB -3579486448,3579486735,FR -3579486736,3579486751,DE -3579486752,3579486831,FR -3579486832,3579486847,BE -3579486848,3579486863,FR -3579486864,3579486879,GB -3579486880,3579487007,FR -3579487008,3579487039,GB -3579487040,3579487055,DE -3579487056,3579487103,FR -3579487104,3579487119,GB -3579487120,3579487215,FR -3579487216,3579487231,GB -3579487232,3579487247,FR -3579487248,3579487263,GB -3579487264,3579487471,FR -3579487472,3579487487,ES -3579487488,3579487519,FR -3579487520,3579487531,IT -3579487532,3579487535,FR -3579487536,3579487551,GB -3579487552,3579487567,FR -3579487568,3579487583,GB -3579487584,3579487599,FR -3579487600,3579487615,IT -3579487616,3579487663,FR -3579487664,3579487711,DE -3579487712,3579487727,SE -3579487728,3579487743,GB -3579487744,3579487807,FR -3579487808,3579487823,GB -3579487824,3579487855,FR -3579487856,3579487871,GB -3579487872,3579487887,IE -3579487888,3579487903,DE -3579487904,3579487951,FR -3579487952,3579487967,GB -3579487968,3579487983,IT -3579487984,3579487999,GB -3579488000,3579488047,FR -3579488048,3579488079,GB -3579488080,3579490559,FR -3579490560,3579490655,PT -3579490656,3579490671,FR -3579490672,3579490719,PT -3579490720,3579490735,NL -3579490736,3579490751,FR -3579490752,3579490799,PT -3579490800,3579490831,FR -3579490832,3579490943,PT -3579490944,3579490959,FR -3579490960,3579490975,PT -3579490976,3579491007,FR -3579491008,3579491023,PT -3579491024,3579491231,FR -3579491232,3579491247,PT -3579491248,3579491263,NL -3579491264,3579491471,FR -3579491472,3579491487,PT -3579491488,3579497983,FR -3579497984,3579497991,NL -3579497992,3579527167,FR -3579527168,3579543551,BA -3579543552,3579576319,BG -3579576320,3579579263,IT -3579579264,3579579295,US -3579579296,3579582367,IT -3579582368,3579582399,US -3579582400,3579596927,IT -3579596928,3579597055,GR -3579597056,3579600191,IT -3579600192,3579600207,US -3579600208,3579601471,IT -3579601472,3579601487,US -3579601488,3579605487,IT -3579605488,3579605503,DE -3579605504,3579607551,IT -3579607552,3579607807,US -3579607808,3579609087,IT -3579609088,3579641855,PL -3579641856,3579707391,NL -3579707392,3579723775,ES -3579723776,3579740159,AT -3579740160,3579772927,IE -3579772928,3579838463,DE -3579838464,3580100607,ES -3580100608,3580198911,SE -3580198912,3580199423,LV -3580199424,3580199935,SE -3580199936,3580200447,EE -3580200448,3580200959,SE -3580200960,3580201471,LT -3580201472,3580203519,SE -3580203520,3580204543,RU -3580204544,3580205055,SE -3580205056,3580205567,HR -3580205568,3580208127,SE -3580208128,3580208639,EE -3580208640,3580213247,SE -3580213248,3580214271,CH -3580214272,3580214783,LV -3580214784,3580222463,SE -3580222464,3580222719,FR -3580222720,3580223487,SE -3580223488,3580231679,DE -3580231680,3580231935,LV -3580231936,3580232191,LT -3580232192,3580233215,LV -3580233216,3580233727,LT -3580233728,3580235263,SE -3580235264,3580235775,LT -3580235776,3580236799,SE -3580236800,3580237567,LV -3580237568,3580237823,LT -3580237824,3580239359,SE -3580239360,3580239871,LV -3580239872,3580241919,SE -3580241920,3580243967,CH -3580243968,3580248063,NL -3580248064,3580250111,ES -3580250112,3580252671,SE -3580252672,3580254207,EE -3580254208,3580260351,DE -3580260352,3580265727,AT -3580265728,3580266495,SE -3580266496,3580272639,PL -3580272640,3580329983,SE -3580329984,3580338175,CH -3580338176,3580362751,SE -3580362752,3580473375,GB -3580473376,3580473391,IE -3580473392,3580473503,GB -3580473504,3580473511,IE -3580473512,3580473519,GB -3580473520,3580473527,IE -3580473528,3580473695,GB -3580473696,3580473727,IE -3580473728,3580473759,GB -3580473760,3580473887,IE -3580473888,3580473951,GB -3580473952,3580473959,IE -3580473960,3580473967,GB -3580473968,3580473983,IE -3580473984,3580473999,GB -3580474000,3580474007,IE -3580474008,3580474095,GB -3580474096,3580474111,IE -3580474112,3580474495,GB -3580474496,3580474559,IE -3580474560,3580474639,GB -3580474640,3580474647,IE -3580474648,3580474655,GB -3580474656,3580474671,IE -3580474672,3580474687,GB -3580474688,3580474703,IE -3580474704,3580474719,GB -3580474720,3580474735,IE -3580474736,3580474807,GB -3580474808,3580474879,IE -3580474880,3580475055,GB -3580475056,3580475063,IE -3580475064,3580475123,GB -3580475124,3580475127,IE -3580475128,3580475343,GB -3580475344,3580475351,IE -3580475352,3580624895,GB -3580887040,3581149183,SE -3581150368,3581150463,IE -3581150592,3581150719,NL -3581150720,3581150783,SE -3581150976,3581151039,SE -3581151232,3581151295,SE -3581154048,3581154303,NL -3581157120,3581158655,AT -3581159168,3581159295,AT -3581159424,3581161471,IE -3581173760,3581196799,NL -3581197312,3581197567,IE -3581197824,3581200127,NL -3581203968,3581214719,SE -3581214720,3581231103,NL -3581239296,3581241343,NL -3581255680,3581259263,FR -3581261312,3581261439,FR -3581279104,3581279199,NL -3581280256,3581411327,BE -3581411328,3581673471,GB -3581673472,3581935615,NL -3581935616,3581943807,RU -3581943808,3581951999,FR -3581960192,3581976575,DE -3581976576,3581984767,NO -3581984768,3581992959,RU -3581992960,3582001151,GB -3582001152,3582009343,DK -3582009344,3582017535,RU -3582017536,3582025727,GB -3582025728,3582033919,RU -3582033920,3582042111,CZ -3582042112,3582050303,ES -3582050304,3582058495,NL -3582058496,3582066687,AT -3582066688,3582074879,UA -3582074880,3582078631,GB -3582078632,3582078639,DE -3582078640,3582083071,GB -3582083072,3582091263,BG -3582091264,3582099455,QA -3582099456,3582107647,GB -3582107648,3582115839,NL -3582115840,3582132223,FI -3582132224,3582140415,RU -3582140416,3582148607,GE -3582156800,3582164991,GB -3582164992,3582173183,SE -3582173184,3582181375,GB -3582181376,3582190847,DE -3582190848,3582190879,CH -3582190880,3582190927,DE -3582190928,3582190931,FR -3582190932,3582191023,DE -3582191024,3582191031,BE -3582191032,3582192127,DE -3582192128,3582192143,NL -3582192144,3582192287,DE -3582192288,3582192303,CH -3582192304,3582192575,DE -3582192576,3582192591,NL -3582192592,3582194775,DE -3582194776,3582194783,CY -3582194784,3582194863,DE -3582194864,3582194879,CH -3582194880,3582195135,DE -3582195136,3582195143,CH -3582195144,3582196183,DE -3582196184,3582196191,BE -3582196192,3582197759,DE -3582197760,3582205951,DK -3582205952,3582214143,AE -3582214144,3582222335,RU -3582222336,3582222511,SE -3582222512,3582222527,DK -3582222528,3582222863,SE -3582222864,3582222879,NO -3582222880,3582223967,SE -3582223968,3582223975,NO -3582223976,3582230527,SE -3582230528,3582238719,BE -3582238720,3582255103,NL -3582255104,3582263295,KW -3582263296,3582271487,ME -3582271488,3582279679,NL -3582279680,3582287871,GB -3582287872,3582296063,DE -3582296064,3582304255,GB -3582304256,3582312447,UA -3582312448,3582320639,GB -3582320640,3582328831,CH -3582328832,3582337023,HU -3582337024,3582341119,ES -3582341120,3582343167,PT -3582343168,3582345215,ES -3582345216,3582353407,IT -3582353408,3582361599,SE -3582361600,3582377983,PL -3582377984,3582386175,RU -3582386176,3582394367,NL -3582394368,3582402559,DE -3582402560,3582410751,PL -3582410752,3582435327,RU -3582435328,3582443519,MK -3582443520,3582451711,DE -3582451712,3582459903,LU -3582459904,3582468095,NL -3582468096,3582476287,SE -3582476288,3582484479,DE -3582492672,3582509055,IT -3582509056,3582517247,SA -3582517248,3582525439,PL -3582525440,3582533631,GB -3582533632,3582538183,BG -3582538184,3582538191,GB -3582538192,3582541823,BG -3582541824,3582550015,US -3582550016,3582550059,CS -3582550060,3582550063,RS -3582550064,3582550071,CS -3582550072,3582550075,RS -3582550076,3582550915,CS -3582550916,3582550919,RS -3582550920,3582551191,CS -3582551192,3582551215,RS -3582551216,3582551551,CS -3582551552,3582553471,RS -3582553472,3582554623,CS -3582554624,3582555391,RS -3582555392,3582555647,CS -3582555648,3582557183,RS -3582557184,3582557439,CS -3582557440,3582557951,RS -3582557952,3582558079,CS -3582558080,3582558207,RS -3582558208,3582566399,MC -3582566432,3582566479,BE -3582566480,3582566495,SA -3582566528,3582566591,BE -3582566736,3582566743,BE -3582566752,3582566767,BE -3582566784,3582566847,BE -3582566864,3582566879,BE -3582566912,3582567019,BE -3582567024,3582567039,BE -3582567136,3582567151,BE -3582567232,3582567295,BE -3582567392,3582567399,BE -3582567424,3582567807,US -3582567904,3582567935,US -3582567936,3582568191,GB -3582568208,3582568223,SE -3582568248,3582568263,SE -3582568336,3582568339,SE -3582568344,3582568351,SE -3582568440,3582568447,SE -3582568448,3582568703,US -3582568832,3582568959,US -3582568960,3582568967,HU -3582568992,3582569023,CZ -3582569032,3582569035,AT -3582569036,3582569039,DE -3582569040,3582569043,AT -3582569080,3582569087,HU -3582569096,3582569103,HU -3582569152,3582569167,HU -3582569208,3582569215,AT -3582569280,3582569303,AT -3582569984,3582570239,GB -3582570240,3582570367,DE -3582570400,3582570431,FR -3582570464,3582570479,FR -3582570752,3582570831,FR -3582570848,3582570863,FR -3582570880,3582570895,FR -3582570904,3582570975,FR -3582570984,3582570991,FR -3582571008,3582571039,FR -3582571136,3582571199,FR -3582571304,3582571307,CH -3582571308,3582571311,FR -3582571328,3582571343,FR -3582571376,3582571391,FR -3582571408,3582571423,FR -3582571456,3582571487,FR -3582571648,3582571671,IE -3582571680,3582571707,IE -3582571720,3582571839,IE -3582571856,3582571871,IE -3582571976,3582571991,IE -3582572000,3582572015,IE -3582572024,3582572031,IE -3582572032,3582572431,CH -3582572456,3582572463,CH -3582572480,3582572543,CH -3582572560,3582572567,DE -3582572624,3582572631,DE -3582572800,3582572863,DE -3582572944,3582572951,DE -3582572976,3582572983,DE -3582573024,3582573055,DE -3582573088,3582573095,DE -3582573104,3582573111,DE -3582573120,3582573135,DE -3582573184,3582573215,DE -3582573408,3582573423,DE -3582573432,3582573519,DE -3582573552,3582573567,DE -3582573608,3582573703,CH -3582573728,3582573759,CH -3582573824,3582573855,CH -3582573896,3582573903,CH -3582573912,3582574015,CH -3582574432,3582574435,CH -3582574456,3582574479,CH -3582574592,3582582783,DE -3582582784,3582590975,RU -3582590976,3582599167,FR -3582599168,3582607359,DE -3582607360,3582615551,RU -3582615552,3582619391,CY -3582619392,3582619647,UA -3582619648,3582622591,CY -3582622592,3582622719,LB -3582622720,3582623743,CY -3582623744,3582631935,FI -3582631936,3582640127,NO -3582640128,3582648319,RU -3582648320,3582656511,PT -3582656512,3582664047,ES -3582664048,3582664055,FR -3582664056,3582664703,ES -3582664704,3582672895,JO -3582672896,3582681087,DE -3582681088,3582689279,FR -3582689280,3582697471,DE -3582697472,3582705663,FI -3582705664,3582722047,TR -3582722048,3582730239,IT -3582730240,3582736383,ES -3582736384,3582737407,DZ -3582737408,3582737919,MA -3582737920,3582738431,ES -3582738432,3582746623,DK -3582746624,3582754815,RU -3582754816,3582763007,GR -3582763008,3582771199,FI -3582771200,3582779391,IT -3582779392,3582787583,RU -3582787584,3582795775,PT -3582795776,3582803967,ES -3582803968,3582812159,SE -3582812160,3582820351,FI -3582820352,3582828543,RU -3582828544,3582836735,KZ -3582836736,3582853119,RU -3582853120,3582861311,SE -3582861312,3582869503,RU -3582869504,3582877695,NO -3582877696,3582885887,AT -3582885888,3582894079,GR -3582894080,3582902271,CH -3582902272,3582910463,RU -3582910464,3582918655,SI -3582918656,3582926847,GB -3582926848,3582935039,ES -3582935040,3582943231,SI -3582943232,3582951423,AT -3582951424,3582959615,GB -3582959616,3582967807,FI -3582967808,3582975999,DE -3582976000,3582984191,TR -3582984192,3582992383,DE -3582992384,3583000575,ES -3583000576,3583008767,IT -3583008768,3583016959,TR -3583016960,3583017847,CH -3583017848,3583017855,US -3583017856,3583019367,CH -3583019368,3583019375,DE -3583019376,3583023215,CH -3583023216,3583023223,DE -3583023224,3583025151,CH -3583025152,3583028991,IT -3583028992,3583029247,US -3583029248,3583029375,SG -3583029376,3583029503,FR -3583029504,3583029759,IT -3583029760,3583030015,GR -3583030016,3583030783,IT -3583030784,3583031039,GR -3583031040,3583031295,FR -3583031296,3583031551,GR -3583031552,3583031807,GB -3583031808,3583031839,GR -3583031840,3583031847,IT -3583031848,3583031887,GR -3583031888,3583032095,IT -3583032096,3583032127,GR -3583032128,3583032159,IT -3583032160,3583032191,FR -3583032192,3583032319,IT -3583032320,3583032831,NL -3583032832,3583033087,GR -3583033088,3583033343,IT -3583033344,3583041535,FR -3583041536,3583049727,NL -3583049728,3583057919,IT -3583057920,3583066111,RU -3583066112,3583074303,DE -3583074304,3583082495,BG -3583082496,3583090687,KG -3583090688,3583098879,NO -3583098880,3583107071,FI -3583107072,3583115263,AT -3583115264,3583123455,CH -3583123456,3583131647,PL -3583131648,3583139839,SE -3583139840,3583141727,DE -3583141728,3583141735,AT -3583141736,3583148031,DE -3583148032,3583157247,GB -3583157248,3583157279,IE -3583157280,3583157439,GB -3583157440,3583157471,IE -3583157472,3583158271,GB -3583158272,3583159039,DE -3583159040,3583159295,GB -3583159296,3583159327,DE -3583159328,3583159359,GB -3583159360,3583159375,DE -3583159376,3583160063,GB -3583160064,3583161343,DE -3583161344,3583161855,GB -3583161856,3583162111,DE -3583162112,3583162367,GB -3583162368,3583162623,DE -3583162624,3583164415,GB -3583164416,3583172607,PT -3583172608,3583188991,DE -3583188992,3583197183,RU -3583205376,3583213567,HR -3583213568,3583221759,RU -3583221760,3583229951,AT -3583229952,3583238143,RU -3583238144,3583246335,GB -3583246336,3583254527,RU -3583254528,3583262719,GB -3583262720,3583270911,TR -3583270912,3583279103,NL -3583279104,3583287295,DE -3583287296,3583295487,RU -3583295488,3583303679,ES -3583303680,3583311871,NL -3583311872,3583320063,RU -3583320064,3583328255,HR -3583328256,3583336447,DE -3583336448,3583337727,ME -3583337728,3583337983,AL -3583337984,3583338015,ME -3583338016,3583338023,CS -3583338024,3583338031,ME -3583338032,3583338047,CS -3583338048,3583338143,ME -3583338144,3583338175,CS -3583338176,3583339519,ME -3583339520,3583339775,AL -3583339776,3583341039,ME -3583341040,3583341055,AL -3583341056,3583342335,ME -3583342336,3583342591,CS -3583342592,3583344639,ME -3583344640,3583352831,BG -3583352832,3583361023,CY -3583361024,3583369215,IT -3583369216,3583377407,ES -3583377408,3583385599,AT -3583385600,3583393791,DK -3583393792,3583401983,RU -3583410176,3583418367,SE -3583434752,3583442943,AT -3583442944,3583451135,UA -3583451136,3583459327,IL -3583459328,3583463891,CZ -3583463892,3583463895,PL -3583463896,3583467519,CZ -3583467520,3583475711,ES -3583475712,3583483903,NO -3583483904,3583492095,FR -3583492096,3583508479,SK -3583508480,3583516671,FR -3583516672,3583524863,GB -3583533056,3583541247,DE -3583541248,3583549439,RU -3583549440,3583558399,IT -3583558400,3583558527,SM -3583558528,3583565823,IT -3583565824,3583574015,GB -3583574016,3583582207,NO -3583582208,3583590399,AT -3583590400,3583598591,DE -3583598592,3583606783,SE -3583606784,3583639551,TR -3583639552,3583647743,GB -3583664128,3583680511,RO -3583680512,3583688703,RU -3583688704,3583696895,UA -3583696896,3583705087,NL -3583705088,3583705095,UA -3583705096,3583705103,NA -3583705104,3583705119,UA -3583705120,3583705127,NA -3583705128,3583705175,UA -3583705176,3583705223,NA -3583705224,3583705239,UA -3583705240,3583705247,NA -3583705248,3583705303,UA -3583705304,3583705319,NA -3583705320,3583705335,UA -3583705336,3583705343,NA -3583705344,3583705347,UA -3583705348,3583705351,NA -3583705352,3583705407,UA -3583705408,3583705535,NA -3583705536,3583705603,UA -3583705604,3583705607,NA -3583705608,3583705663,UA -3583705664,3583705791,NA -3583705792,3583705831,UA -3583705832,3583705839,NA -3583705840,3583705847,UA -3583705848,3583705855,NA -3583705856,3583705859,UA -3583705860,3583705863,NA -3583705864,3583705887,UA -3583705888,3583705895,NA -3583705896,3583705903,UA -3583705904,3583705911,NA -3583705912,3583706023,UA -3583706024,3583706031,NA -3583706032,3583706039,UA -3583706040,3583706047,NA -3583706048,3583706055,UA -3583706056,3583706063,RU -3583706064,3583706071,UA -3583706072,3583706079,NA -3583706080,3583706175,UA -3583706176,3583706183,NA -3583706184,3583706263,UA -3583706264,3583706271,NA -3583706272,3583706295,UA -3583706296,3583706311,NA -3583706312,3583706343,UA -3583706344,3583706351,NA -3583706352,3583706375,UA -3583706376,3583706383,NA -3583706384,3583706463,UA -3583706464,3583706471,NA -3583706472,3583706495,UA -3583706496,3583706511,NA -3583706512,3583706519,UA -3583706520,3583706527,NA -3583706528,3583706535,UA -3583706536,3583706543,NA -3583706544,3583706551,UA -3583706552,3583706559,NA -3583706560,3583706575,UA -3583706576,3583706583,NA -3583706584,3583706591,UA -3583706592,3583706607,NA -3583706608,3583706615,UA -3583706616,3583706623,NA -3583706624,3583706624,UA -3583706625,3583706631,NA -3583706632,3583706647,UA -3583706648,3583706655,NA -3583706656,3583706679,UA -3583706680,3583706687,NA -3583706688,3583706695,RU -3583706696,3583706719,NA -3583706720,3583706743,RU -3583706744,3583706831,NA -3583706832,3583706863,UA -3583706864,3583706879,NA -3583706880,3583706887,UA -3583706888,3583706903,NA -3583706904,3583706927,UA -3583706928,3583706935,NA -3583706936,3583706959,UA -3583706960,3583706967,NA -3583706968,3583706983,UA -3583706984,3583706999,NA -3583707000,3583707015,UA -3583707016,3583707023,NA -3583707024,3583707071,UA -3583707072,3583707103,NA -3583707104,3583707119,UA -3583707120,3583707135,NA -3583707136,3583707519,UA -3583707520,3583707527,NA -3583707528,3583707559,UA -3583707560,3583707567,NA -3583707568,3583707639,UA -3583707640,3583707647,NA -3583707648,3583707671,UA -3583707672,3583707679,RU -3583707680,3583707735,UA -3583707736,3583707743,NA -3583707744,3583707775,UA -3583707776,3583707791,NA -3583707792,3583707807,UA -3583707808,3583707815,NA -3583707816,3583707839,UA -3583707840,3583707855,NA -3583707856,3583707919,UA -3583707920,3583707927,NA -3583707928,3583708031,UA -3583708032,3583708095,NA -3583708096,3583708167,UA -3583708168,3583708175,NA -3583708176,3583713279,UA -3583713280,3583721471,CZ -3583721472,3583729663,DE -3583729664,3583737855,TR -3583740672,3583740927,GB -3583741440,3583741695,GB -3583741696,3583741951,NL -3583742720,3583743487,DE -3583743976,3583743983,GB -3583744068,3583744071,GB -3583744128,3583744255,GB -3583744288,3583744303,GB -3583744512,3583744767,GB -3583744832,3583744847,GB -3583744960,3583744991,GB -3583745280,3583745535,GB -3583745536,3583745663,SE -3583745808,3583745823,GB -3583746048,3583754239,PL -3583754240,3583762431,IT -3583762432,3583770623,CZ -3583770624,3583772351,NL -3583772352,3583772367,IT -3583772368,3583778815,NL -3583778816,3583787007,IT -3583787008,3583795199,UA -3583795200,3583803391,PL -3583803392,3583806719,RU -3583806720,3583806975,BY -3583806976,3583811583,RU -3583811584,3583811839,GB -3583811840,3583819775,DE -3583819776,3583827967,RU -3583827968,3583836159,CH -3583836160,3583844351,DE -3583844352,3583852543,KZ -3583852544,3583854591,FI -3583854592,3583854863,GB -3583854864,3583854879,FI -3583854880,3583854995,GB -3583854996,3583855007,FI -3583855008,3583855041,GB -3583855042,3583855047,FI -3583855048,3583855103,GB -3583855104,3583855167,US -3583855168,3583855175,FI -3583855176,3583855183,US -3583855184,3583855191,FI -3583855192,3583855199,US -3583855200,3583855207,FI -3583855208,3583855247,US -3583855248,3583855311,FI -3583855312,3583855327,US -3583855328,3583856383,FI -3583856384,3583856447,SG -3583856448,3583856615,FI -3583856616,3583856639,SG -3583856640,3583860735,FI -3583860736,3583868927,HU -3583868928,3583877119,AT -3583877120,3583882239,RO -3583882240,3583882751,HU -3583882752,3583885311,RO -3583885312,3583893503,GE -3583893504,3583901695,SI -3583901696,3583909887,RU -3583909888,3583918079,SE -3583918080,3583926271,IT -3583926272,3583934463,DE -3583934464,3583942655,CH -3583950848,3583959039,PL -3583959040,3583967231,NO -3583967232,3583975423,NL -3583975424,3583983615,LT -3583983616,3583999999,RU -3584000000,3584008191,IE -3584008192,3584016383,DK -3584016384,3584024575,RU -3584024576,3584032767,UA -3584032768,3584040959,DE -3584040960,3584049151,CH -3584049152,3584055911,DE -3584055912,3584055919,TR -3584055920,3584057343,DE -3584057344,3584065535,GB -3584065536,3584073727,UA -3584073728,3584081919,SK -3584081920,3584081951,AT -3584081952,3584081959,NL -3584081960,3584082143,AT -3584082144,3584082175,NL -3584082176,3584082279,AT -3584082280,3584082287,NL -3584082288,3584082943,AT -3584082944,3584089087,NL -3584089088,3584089855,AT -3584089856,3584089871,NL -3584089872,3584089903,AT -3584089904,3584089919,NL -3584089920,3584090111,AT -3584090112,3584090623,NO -3584090624,3584090879,NL -3584090880,3584090887,NO -3584090888,3584090895,NL -3584090896,3584090943,NO -3584090944,3584090959,NL -3584090960,3584093783,NO -3584093784,3584093791,NL -3584093792,3584094893,NO -3584094894,3584094895,NL -3584094896,3584095935,NO -3584095936,3584095999,NL -3584096000,3584096255,NO -3584096256,3584098303,NL -3584098304,3584106495,SI -3584106496,3584114687,FI -3584114688,3584122879,GB -3584122880,3584131071,PL -3584131072,3584139263,TR -3584139264,3584147455,NO -3584147456,3584155647,FR -3584155648,3584163839,NO -3584163840,3584172031,CH -3584172032,3584180223,FR -3584180224,3584188415,AT -3584188416,3584196607,GB -3584196608,3584204799,DE -3584204800,3584212991,NL -3584212992,3584221183,ES -3584221184,3584229375,NO -3584229376,3584245759,HU -3584245760,3584253951,NL -3584253952,3584256383,CS -3584256384,3584256399,CS -3584256400,3584260135,CS -3584260136,3584260139,CS -3584260140,3584260151,CS -3584260152,3584260155,CS -3584260156,3584260231,CS -3584260232,3584260239,CS -3584260240,3584260247,CS -3584260248,3584260255,CS -3584260256,3584262143,CS -3584262144,3584270335,SE -3584270336,3584278527,FR -3584278528,3584286719,GB -3584286720,3584303103,AT -3584303104,3584311295,ES -3584311296,3584319487,DE -3584319488,3584327679,LT -3584327680,3584335871,DE -3584335872,3584344063,ES -3584344064,3584352255,SE -3584352256,3584360447,RO -3584360448,3584368639,GB -3584368640,3584376831,SA -3584376832,3584385023,DE -3584393216,3584401407,GB -3584401408,3584409599,MT -3584409600,3584413439,RU -3584413440,3584413695,DE -3584413696,3584414207,GB -3584414208,3584414719,RU -3584414720,3584414975,DE -3584414976,3584416255,RU -3584416256,3584416767,GB -3584416768,3584417791,RU -3584417792,3584434175,GB -3584434176,3584442367,LU -3584442368,3584450559,GB -3584458752,3584466943,SA -3584466944,3584475135,NG -3584475136,3584483327,FR -3584483328,3584491519,DE -3584491520,3584499711,BG -3584499712,3584507903,RU -3584507904,3584508927,GB -3584508928,3584508943,CY -3584508944,3584508951,KY -3584508952,3584509031,GB -3584509032,3584509039,NL -3584509040,3584509231,GB -3584509232,3584509239,AW -3584509240,3584509359,GB -3584509360,3584509367,KY -3584509368,3584510623,GB -3584510624,3584510655,NL -3584510656,3584510999,GB -3584511000,3584511007,KY -3584511008,3584511023,GB -3584511024,3584511039,KY -3584511040,3584511055,GB -3584511056,3584511071,NL -3584511072,3584511807,GB -3584511808,3584511935,MT -3584511936,3584513535,GB -3584513536,3584513599,US -3584513600,3584516047,GB -3584516048,3584516063,KY -3584516064,3584516071,GB -3584516072,3584516079,BB -3584516080,3584516095,GB -3584516096,3584524287,NO -3584524288,3584532479,IS -3584532480,3584540671,DE -3584540672,3584548863,RU -3584548864,3584557055,ES -3584557056,3584565247,EE -3584565248,3584573439,RU -3584573440,3584589823,DE -3584589824,3584598015,RU -3584598016,3584606207,CZ -3584606208,3584614399,DE -3584614400,3584614495,GB -3584614496,3584622335,IE -3584622336,3584622591,GB -3584622592,3584630783,FI -3584630784,3584638975,BG -3584638976,3584647167,UA -3584647168,3584655359,LU -3584655360,3584663551,CY -3584663552,3584671743,FR -3584671744,3584688127,NL -3584688128,3584696319,GB -3584696320,3584701751,ES -3584701752,3584701823,NL -3584701824,3584701991,ES -3584701992,3584702007,CH -3584702008,3584703095,ES -3584703096,3584703103,BE -3584703104,3584704511,ES -3584704512,3584720895,RU -3584720896,3584729087,GB -3584729088,3584737279,DE -3584737280,3584745471,GR -3584745472,3584753663,DK -3584753664,3584770047,RU -3584770048,3584778239,NL -3584778240,3584786431,IT -3584786432,3584794623,NL -3584794624,3584802815,IT -3584802816,3584811007,GB -3584811008,3584819199,ES -3584819200,3584827391,RU -3584827392,3584835583,ES -3584835584,3584843775,AZ -3584843776,3584851967,DE -3584860160,3584868351,PL -3584868352,3584876543,NO -3584876544,3584884735,SI -3584884736,3584892927,DE -3584892928,3584901119,IL -3584901120,3584909311,AT -3584909312,3584917503,IT -3584917504,3584925695,FI -3584925696,3584931375,CH -3584931376,3584931391,ES -3584931392,3584931687,CH -3584931688,3584931695,ES -3584931696,3584932191,CH -3584932192,3584932199,GB -3584932200,3584933639,CH -3584933640,3584933647,GB -3584933648,3584933887,CH -3584933888,3584942079,PL -3584942080,3584950271,DK -3584950272,3584958463,BG -3584958464,3584966655,DE -3584966656,3584974847,DK -3584974848,3584983039,FR -3584983040,3584983295,US -3584983296,3584984063,NL -3584984064,3584984319,US -3584984320,3584984575,NL -3584984576,3584987135,US -3584987136,3584988159,NL -3584988160,3584988311,US -3584988312,3584988319,NL -3584988320,3584988335,US -3584988336,3584988415,NL -3584988416,3584988607,US -3584988608,3584988671,NL -3584988672,3584989695,US -3584989696,3584991231,NL -3584991232,3584999423,IT -3584999424,3585007615,GB -3585007616,3585015807,AT -3585015808,3585023999,IT -3585024000,3585032191,CZ -3585032192,3585048575,LV -3585056768,3585064959,LB -3585064960,3585081343,GB -3585081344,3585114111,IR -3585114112,3585122303,IS -3585122304,3585130495,ES -3585130496,3585138687,DE -3585138688,3585146879,RU -3585146880,3585147327,GB -3585147328,3585155071,CH -3585155072,3585163263,GB -3585163264,3585171455,BE -3585171456,3585179647,RU -3585179648,3585189887,BE -3585189888,3585190399,DZ -3585190400,3585190463,IQ -3585190464,3585190527,BE -3585190528,3585190591,DZ -3585190592,3585196031,BE -3585196032,3585204223,ES -3585204224,3585212415,GB -3585212416,3585220607,DE -3585220608,3585228799,RU -3585228800,3585236991,DE -3585236992,3585245183,HU -3585245184,3585253375,GB -3585253376,3585261567,DE -3585261568,3585269759,IT -3585269760,3585277951,SY -3585277952,3585286143,SE -3585286144,3585294335,NO -3585294336,3585302527,DE -3585302528,3585310719,ES -3585310720,3585318911,DE -3585327104,3585335295,DE -3585335296,3585343487,UA -3585343488,3585351679,EE -3585351680,3585359871,CZ -3585359872,3585368063,SE -3585368064,3585376255,LV -3585376256,3585384447,PL -3585384448,3585392639,CH -3585392640,3585400831,RU -3585400832,3585409023,FR -3585409024,3585417215,RU -3585417216,3585425407,BE -3585425408,3585433599,NG -3585433600,3585441791,IS -3585449984,3585458175,SA -3585458176,3585466367,HU -3585474560,3585482751,DE -3585482752,3585490943,FR -3585490944,3585499135,IT -3585499136,3585515519,DE -3585515520,3585523711,RU -3585523712,3585531903,LV -3585531904,3585540095,AT -3585540096,3585548287,DE -3585548288,3585556479,RU -3585556480,3585564671,DE -3585564672,3585572863,RU -3585572864,3585581055,IT -3585581056,3585597439,DE -3585597440,3585605631,RU -3585605632,3585613823,PL -3585613824,3585622015,EE -3585622016,3585630207,RU -3585630208,3585630783,CS -3585630784,3585630975,CS -3585630976,3585630983,CS -3585630984,3585630999,RS -3585631000,3585631007,CS -3585631008,3585631023,CS -3585631024,3585631031,CS -3585631032,3585631103,CS -3585631104,3585631135,CS -3585631136,3585631167,CS -3585631168,3585631183,CS -3585631184,3585631199,CS -3585631200,3585631215,RS -3585631216,3585631223,CS -3585631224,3585631227,CS -3585631228,3585631231,RS -3585631232,3585631307,CS -3585631308,3585631311,RS -3585631312,3585631503,CS -3585631504,3585631519,RS -3585631520,3585632495,CS -3585632496,3585632511,RS -3585632512,3585638399,CS -3585638400,3585646591,RU -3585646592,3585654783,SA -3585654784,3585655631,NO -3585655632,3585655639,US -3585655640,3585662975,NO -3585662976,3585671167,BY -3585671168,3585672191,SE -3585672192,3585672447,DK -3585672448,3585672959,SE -3585672960,3585673983,DK -3585673984,3585674239,SE -3585674240,3585675775,DK -3585675776,3585676287,SE -3585676288,3585677055,DK -3585677056,3585677311,SE -3585677312,3585677567,DK -3585677568,3585679359,SE -3585679360,3585687551,FI -3585687552,3585695743,DE -3585695744,3585695999,CM -3585696000,3585696063,BD -3585696064,3585696511,GB -3585696512,3585696767,LB -3585696768,3585696799,NO -3585696800,3585696831,LR -3585696832,3585697279,GB -3585697280,3585697535,NO -3585697536,3585697791,GB -3585697792,3585698047,NG -3585698048,3585698303,GB -3585698304,3585698815,NG -3585698816,3585699583,GB -3585699584,3585699711,US -3585699712,3585699839,AU -3585699840,3585700159,US -3585700160,3585700191,GB -3585700192,3585700222,US -3585700223,3585700231,GB -3585700232,3585700239,US -3585700240,3585700255,ZA -3585700256,3585700271,GB -3585700272,3585700287,NG -3585700288,3585700303,GB -3585700304,3585700319,NG -3585700320,3585700343,AU -3585700344,3585700351,ZA -3585700352,3585700607,NG -3585700608,3585700863,TZ -3585700864,3585701119,IQ -3585701120,3585701375,US -3585701376,3585701439,MW -3585701440,3585701503,GB -3585701504,3585701519,NG -3585701520,3585701535,CA -3585701536,3585701631,NG -3585701632,3585701887,GB -3585701888,3585702143,FR -3585702144,3585702399,LR -3585702400,3585702463,US -3585702464,3585702527,GB -3585702528,3585702655,TZ -3585702656,3585702911,TG -3585702912,3585703167,NG -3585703168,3585703423,FR -3585703424,3585703679,TZ -3585703680,3585703935,GB -3585703936,3585712127,DE -3585712128,3585720319,AT -3585720320,3585728511,GB -3585728512,3585736703,SE -3585736704,3585744895,GB -3585744896,3585753087,FR -3585753088,3585761279,PL -3585761280,3585769471,UA -3585769472,3585777663,TR -3585777664,3585785855,JO -3585785856,3585794047,UA -3585794048,3585802239,FI -3585802240,3585810431,DE -3585810432,3585818623,GB -3585818624,3585826815,DE -3585826816,3585835007,RU -3585835008,3585835583,NL -3585835584,3585835647,IQ -3585835648,3585835791,NL -3585835792,3585835839,GQ -3585835840,3585835847,AO -3585835848,3585835871,NL -3585835872,3585835879,IQ -3585835880,3585835895,NL -3585835896,3585835903,IQ -3585835904,3585835911,NL -3585835912,3585835919,KE -3585835920,3585835927,SO -3585835928,3585835935,SC -3585835936,3585835943,SD -3585835944,3585835951,DJ -3585835952,3585835959,SO -3585835960,3585835967,TD -3585835968,3585835983,ER -3585835984,3585836007,NL -3585836008,3585836023,IQ -3585836024,3585836287,NL -3585836288,3585836543,SA -3585836544,3585837055,DZ -3585837056,3585837311,NG -3585837312,3585837439,IQ -3585837440,3585837567,NG -3585837568,3585838143,AO -3585838144,3585838207,NA -3585838208,3585838247,NL -3585838248,3585838255,AO -3585838256,3585838271,NL -3585838272,3585838279,AO -3585838280,3585838295,NL -3585838296,3585838303,AO -3585838304,3585838591,NL -3585838592,3585838879,NG -3585838880,3585838911,IQ -3585838912,3585838975,NG -3585838976,3585839103,DZ -3585839104,3585840127,NL -3585840128,3585841151,US -3585841152,3585841663,IQ -3585841664,3585841919,DZ -3585841920,3585842175,NG -3585842176,3585842199,IQ -3585842200,3585842207,NG -3585842208,3585842687,IQ -3585842688,3585842943,NG -3585842944,3585843199,SE -3585843200,3585851391,NO -3585851392,3585859583,SE -3585859584,3585860607,RU -3585860608,3585865727,DE -3585865728,3585867775,RU -3585867776,3585875967,NO -3585875968,3585884159,CH -3585884160,3585892351,IQ -3585892352,3585900543,DE -3585900544,3585902239,NO -3585902240,3585902271,GB -3585902272,3585902447,NO -3585902448,3585902463,GB -3585902464,3585908735,NO -3585908736,3585909759,FR -3585909760,3585910271,MQ -3585910272,3585910783,FR -3585910784,3585911039,MQ -3585911040,3585911551,FR -3585911552,3585911807,GP -3585911808,3585912063,FR -3585912064,3585912319,GP -3585912320,3585912575,FR -3585912576,3585912831,GP -3585912832,3585913855,FR -3585913856,3585914111,GP -3585914112,3585916671,FR -3585916672,3585916927,MQ -3585916928,3585925119,IT -3585925120,3585933311,CH -3585933312,3585936127,NL -3585936128,3585937407,US -3585937408,3585940479,NL -3585940480,3585940735,BE -3585940736,3585941503,NL -3585941504,3585949695,IL -3585949696,3585957887,KW -3585957888,3585966079,SE -3585966080,3585974271,CH -3585974272,3585982463,BE -3585982464,3585998847,RU -3585998848,3586007039,ES -3586007040,3586015231,LT -3586015232,3586023423,FR -3586023424,3586031615,IS -3586031616,3586039807,IE -3586039808,3586047999,GB -3586048000,3586056191,PT -3586056192,3586072575,RU -3586072576,3586088959,DE -3586088960,3586097151,CZ -3586097152,3586105343,HR -3586105600,3586105727,ER -3586113536,3586121727,BG -3586121728,3586129919,IE -3586129920,3586146303,CZ -3586146304,3586162687,PL -3586162688,3586179071,FI -3586179072,3586191871,ES -3586191872,3586191887,FR -3586191888,3586195455,ES -3586195456,3586197503,DE -3586197504,3586198015,FR -3586198016,3586198527,DE -3586198528,3586199295,FR -3586199296,3586203391,DE -3586203392,3586203647,SE -3586211840,3586220287,CH -3586220288,3586220303,FR -3586220304,3586225295,CH -3586225296,3586225311,FR -3586225312,3586228223,CH -3586228224,3586237695,BE -3586237696,3586237951,NL -3586237952,3586244607,BE -3586244608,3586244863,NL -3586244864,3586246655,GB -3586246656,3586248703,BE -3586248704,3586250449,NL -3586250450,3586250457,BE -3586250458,3586252799,NL -3586252800,3586254847,BE -3586254848,3586258943,NL -3586258944,3586259455,BE -3586259456,3586269263,NL -3586269264,3586269279,ES -3586269280,3586269343,NL -3586269344,3586269415,ES -3586269416,3586269423,NL -3586269424,3586269439,ES -3586269440,3586269471,NL -3586269472,3586269487,ES -3586269488,3586269503,NL -3586269504,3586269519,ES -3586269520,3586269535,NL -3586269536,3586269607,GB -3586269608,3586269695,ES -3586269696,3586269759,NL -3586269760,3586269823,ES -3586269824,3586269855,NL -3586269856,3586269887,ES -3586269888,3586269951,NL -3586269952,3586270079,ES -3586270080,3586270207,NL -3586270208,3586271231,ES -3586271232,3586271487,NL -3586271488,3586271999,ES -3586272000,3586272255,IT -3586272256,3586272383,NL -3586272384,3586272767,ES -3586272768,3586272799,NL -3586272800,3586272807,IT -3586272808,3586272815,ES -3586272816,3586272831,IT -3586272832,3586272895,NL -3586272896,3586272959,IT -3586272960,3586272991,ES -3586272992,3586273023,IT -3586273024,3586276351,NL -3586276352,3586276863,ES -3586276864,3586277375,NL -3586277376,3586293759,TR -3586293760,3586310143,ES -3586310144,3586326527,CZ -3586342912,3586359295,ES -3586359296,3586375679,PL -3586375680,3586392063,CZ -3586392064,3586396415,NL -3586396416,3586396671,GB -3586396672,3586408447,NL -3586408448,3586424831,BA -3586424832,3586441215,CH -3586441216,3586457599,DE -3586457600,3586473983,NL -3586473984,3586490367,HU -3586490368,3586506751,LT -3586506752,3586523135,NL -3586523136,3586543519,DE -3586543520,3586543527,GB -3586543528,3586543759,DE -3586543760,3586543791,GB -3586543792,3586545679,DE -3586545680,3586545703,GB -3586545704,3586546375,DE -3586546376,3586546383,GB -3586546384,3586555903,DE -3586555904,3586572287,IT -3586572288,3586588671,CS -3586588672,3586596863,IT -3586596864,3586605055,GB -3586605056,3586621439,SE -3586621440,3586625535,IE -3586625536,3586629631,GB -3586629632,3586637823,IE -3586637824,3586654207,PL -3586654208,3586662399,GE -3586662400,3586670591,UA -3586670592,3586677759,DE -3586677760,3586678015,GR -3586678016,3586678271,DE -3586678272,3586678303,IE -3586678304,3586678335,DE -3586678336,3586678399,US -3586678400,3586678415,GB -3586678416,3586678439,IE -3586678440,3586678447,DE -3586678448,3586678527,IE -3586678528,3586678671,DE -3586678672,3586678679,GB -3586678680,3586678687,MU -3586678688,3586678783,GB -3586678784,3586679039,DE -3586679040,3586679103,US -3586679104,3586679167,DE -3586679168,3586679231,US -3586679232,3586679327,DE -3586679328,3586679335,DK -3586679336,3586679583,DE -3586679584,3586679599,IT -3586679600,3586679647,DE -3586679648,3586679711,IT -3586679712,3586679727,DE -3586679728,3586679743,IT -3586679744,3586679839,DE -3586679840,3586679871,FR -3586679872,3586680319,DE -3586680320,3586680447,ES -3586680448,3586680463,DE -3586680464,3586680575,ES -3586680576,3586680607,DE -3586680608,3586680623,ES -3586680624,3586680703,DE -3586680704,3586680831,ES -3586680832,3586680959,FR -3586680960,3586681015,DE -3586681016,3586681087,FR -3586681088,3586681599,DE -3586681600,3586681615,FR -3586681616,3586681695,DE -3586681696,3586682111,FR -3586682112,3586682175,US -3586682176,3586682367,DE -3586682368,3586682399,AT -3586682400,3586682431,DE -3586682432,3586682879,FR -3586682880,3586686975,US -3586686976,3586703359,SE -3586703360,3586719743,CH -3586719744,3586752511,ES -3586752512,3586785279,NL -3586785280,3586793471,RU -3586793472,3586801663,CH -3586801664,3586818047,HR -3586818048,3586834431,IE -3586834432,3586850495,DE -3586850496,3586850511,US -3586850512,3586850815,DE -3586850816,3586867199,NO -3586867200,3586883583,FR -3586883584,3586899967,IT -3586899968,3586902271,DE -3586902272,3586902335,CH -3586902336,3586902411,DE -3586902412,3586902415,CH -3586902416,3586903263,DE -3586903264,3586903295,CH -3586903296,3586904223,DE -3586904224,3586904255,CH -3586904256,3586904319,DE -3586904320,3586904415,CH -3586904416,3586905039,DE -3586905040,3586905055,CH -3586905056,3586905071,DE -3586905072,3586905079,CH -3586905080,3586905087,DE -3586905088,3586905119,CH -3586905120,3586905167,DE -3586905168,3586905199,CH -3586905200,3586905215,GB -3586905216,3586905247,DE -3586905248,3586905279,CH -3586905280,3586906391,DE -3586906392,3586906399,CH -3586906400,3586906423,DE -3586906424,3586906427,CH -3586906428,3586906719,DE -3586906720,3586906735,CH -3586906736,3586907903,DE -3586907904,3586908031,CH -3586908032,3586910559,DE -3586910560,3586910567,NL -3586910568,3586910575,CY -3586910576,3586910587,NL -3586910588,3586910591,DE -3586910592,3586910671,NL -3586910672,3586910687,DE -3586910688,3586910703,NL -3586910704,3586910991,DE -3586910992,3586911007,BE -3586911008,3586911039,DE -3586911040,3586911103,GB -3586911104,3586911167,NL -3586911168,3586911191,DE -3586911192,3586911195,BE -3586911196,3586912255,DE -3586912256,3586912575,FR -3586912576,3586912647,DE -3586912648,3586912671,FR -3586912672,3586912675,US -3586912676,3586912703,DE -3586912704,3586912719,FR -3586912720,3586912735,US -3586912736,3586912767,FR -3586912768,3586916351,DE -3586916352,3586924031,IT -3586924032,3586924047,US -3586924048,3586924543,IT -3586924544,3586924743,FI -3586924744,3586924751,AX -3586924752,3586924919,FI -3586924920,3586924927,AX -3586924928,3586924943,FI -3586924944,3586924959,AX -3586924960,3586924983,FI -3586924984,3586925055,AX -3586925056,3586925791,FI -3586925792,3586925823,AX -3586925824,3586925831,FI -3586925832,3586925839,AX -3586925840,3586925983,FI -3586925984,3586926003,AX -3586926004,3586926591,FI -3586926592,3586926847,SE -3586926848,3586927103,FI -3586927104,3586927871,AX -3586927872,3586928159,FI -3586928160,3586928175,AX -3586928176,3586928639,FI -3586928640,3586932735,AX -3586932736,3586949119,LB -3586949120,3586965503,SE -3586965504,3586981887,NL -3586981888,3586998271,IT -3586998272,3587006463,PT -3587006464,3587014655,FR -3587014656,3587051007,GB -3587051008,3587051775,DE -3587051776,3587052031,GB -3587052032,3587052799,NL -3587052800,3587053055,GB -3587053056,3587053823,FR -3587053824,3587055615,GB -3587055616,3587063807,UZ -3587063808,3587071583,NL -3587071584,3587071599,BE -3587071600,3587071615,NL -3587071616,3587071631,DE -3587071632,3587072095,NL -3587072096,3587072127,DE -3587072128,3587074415,NL -3587074416,3587074431,BE -3587074432,3587080191,NL -3587080192,3587082367,GB -3587082368,3587082431,US -3587082432,3587088383,GB -3587088384,3587096575,DE -3587096576,3587121151,NL -3587121152,3587129343,AL -3587129344,3587134463,NL -3587134464,3587134591,ES -3587134592,3587145727,NL -3587145728,3587162111,CY -3587162112,3587178495,IR -3587178496,3587178795,AT -3587178796,3587178799,US -3587178800,3587179279,AT -3587179280,3587179287,AU -3587179288,3587179439,AT -3587179440,3587179455,GB -3587179456,3587179463,TR -3587179464,3587179471,CH -3587179472,3587186687,AT -3587186688,3587186943,DE -3587186944,3587187199,AM -3587187200,3587187455,DE -3587187456,3587188223,RU -3587188224,3587189503,DE -3587189504,3587189759,RU -3587189760,3587193343,DE -3587193344,3587193599,KG -3587193600,3587194367,DE -3587194368,3587194511,RU -3587194512,3587194623,DE -3587194624,3587194879,RU -3587194880,3587211263,GB -3587211264,3587211531,AT -3587211532,3587211535,DE -3587211536,3587213911,AT -3587213912,3587213919,UY -3587213920,3587213959,AT -3587213960,3587213967,RO -3587213968,3587219455,AT -3587219456,3587227647,RU -3587227648,3587227663,GB -3587227664,3587227711,NL -3587227712,3587227759,GB -3587227760,3587227791,NL -3587227792,3587227807,GB -3587227808,3587227823,NL -3587227824,3587227871,GB -3587227872,3587227887,NL -3587227888,3587227919,GB -3587227920,3587227935,NL -3587227936,3587227983,GB -3587227984,3587228015,NL -3587228016,3587228047,GB -3587228048,3587228095,NL -3587228096,3587228127,GB -3587228128,3587228159,NL -3587228160,3587228175,GB -3587228176,3587228207,NL -3587228208,3587228223,GB -3587228224,3587228271,NL -3587228272,3587228287,GB -3587228288,3587228319,NL -3587228320,3587228335,GB -3587228336,3587228351,NL -3587228352,3587228447,GB -3587228448,3587228463,NL -3587228464,3587228671,GB -3587228672,3587229183,NL -3587229184,3587229455,GB -3587229456,3587229487,NL -3587229488,3587229535,GB -3587229536,3587229615,NL -3587229616,3587229647,GB -3587229648,3587229663,NL -3587229664,3587229743,GB -3587229744,3587229759,NL -3587229760,3587229791,GB -3587229792,3587229807,NL -3587229808,3587229855,GB -3587229856,3587229903,NL -3587229904,3587230047,GB -3587230048,3587230079,NL -3587230080,3587230095,GB -3587230096,3587230111,NL -3587230112,3587230127,GB -3587230128,3587230143,NL -3587230144,3587230239,GB -3587230240,3587230271,NL -3587230272,3587230335,GB -3587230336,3587230351,NL -3587230352,3587230383,GB -3587230384,3587230399,NL -3587230400,3587230511,GB -3587230512,3587230519,NL -3587230520,3587230527,GB -3587230528,3587230543,NL -3587230544,3587230607,GB -3587230608,3587230623,NL -3587230624,3587230791,GB -3587230792,3587230815,NL -3587230816,3587230847,GB -3587230848,3587230911,NL -3587230912,3587230943,GB -3587230944,3587230959,NL -3587230960,3587230975,GB -3587230976,3587230991,NL -3587230992,3587231231,GB -3587231232,3587231263,NL -3587231264,3587231359,GB -3587231360,3587231487,NL -3587231488,3587231887,GB -3587231888,3587231903,NL -3587231904,3587232767,GB -3587232768,3587232831,NL -3587232832,3587232847,GB -3587232848,3587232895,NL -3587232896,3587232911,GB -3587232912,3587232927,NL -3587232928,3587232967,GB -3587232968,3587232975,NL -3587232976,3587232991,GB -3587232992,3587233007,NL -3587233008,3587233023,GB -3587233024,3587233087,NL -3587233088,3587233103,GB -3587233104,3587233119,NL -3587233120,3587233135,GB -3587233136,3587233143,BE -3587233144,3587233151,GB -3587233152,3587233183,NL -3587233184,3587233199,GB -3587233200,3587233215,NL -3587233216,3587233231,GB -3587233232,3587233295,NL -3587233296,3587233311,GB -3587233312,3587233343,NL -3587233344,3587233359,GB -3587233360,3587233407,NL -3587233408,3587233471,GB -3587233472,3587233519,NL -3587233520,3587233535,GB -3587233536,3587233551,NL -3587233552,3587233599,GB -3587233600,3587233663,NL -3587233664,3587233791,GB -3587233792,3587233807,NL -3587233808,3587233839,GB -3587233840,3587233855,NL -3587233856,3587233903,GB -3587233904,3587233935,NL -3587233936,3587233951,GB -3587233952,3587233967,NL -3587233968,3587233983,GB -3587233984,3587233999,NL -3587234000,3587234015,GB -3587234016,3587234047,NL -3587234048,3587234063,GB -3587234064,3587234079,NL -3587234080,3587234095,GB -3587234096,3587234175,NL -3587234176,3587234303,GB -3587234304,3587236094,NL -3587236095,3587236095,GB -3587236096,3587236471,NL -3587236472,3587236479,GB -3587236480,3587236487,NL -3587236488,3587236495,GB -3587236496,3587236503,NL -3587236504,3587236527,GB -3587236528,3587236535,NL -3587236536,3587236543,GB -3587236544,3587236607,NL -3587236608,3587236863,GB -3587236864,3587237375,NL -3587237376,3587237407,GB -3587237408,3587237439,NL -3587237440,3587237447,GB -3587237448,3587237471,NL -3587237472,3587237479,GB -3587237480,3587237487,NL -3587237488,3587237503,GB -3587237504,3587237551,NL -3587237552,3587237567,GB -3587237568,3587237887,NL -3587237888,3587238143,GB -3587238144,3587238399,NL -3587238400,3587238463,GB -3587238464,3587238479,NL -3587238480,3587238487,GB -3587238488,3587238559,NL -3587238560,3587239279,GB -3587239280,3587239287,NL -3587239288,3587239359,GB -3587239360,3587239423,NL -3587239424,3587239455,GB -3587239456,3587239487,NL -3587239488,3587239943,GB -3587239944,3587239951,NL -3587239952,3587239967,GB -3587239968,3587239983,NL -3587239984,3587239999,GB -3587240000,3587240055,NL -3587240056,3587240071,GB -3587240072,3587240111,NL -3587240112,3587240119,GB -3587240120,3587240271,NL -3587240272,3587240287,GB -3587240288,3587240295,NL -3587240296,3587240319,GB -3587240320,3587240351,NL -3587240352,3587240359,GB -3587240360,3587240367,NL -3587240368,3587240383,GB -3587240384,3587240575,NL -3587240576,3587240583,GB -3587240584,3587240639,NL -3587240640,3587241031,GB -3587241032,3587241119,NL -3587241120,3587241151,GB -3587241152,3587241167,NL -3587241168,3587241279,GB -3587241280,3587241287,NL -3587241288,3587241983,GB -3587241984,3587242047,NL -3587242048,3587242063,GB -3587242064,3587242071,NL -3587242072,3587242079,GB -3587242080,3587242111,NL -3587242112,3587242271,GB -3587242272,3587242287,NL -3587242288,3587242495,GB -3587242496,3587242527,NL -3587242528,3587242559,GB -3587242560,3587242623,NL -3587242624,3587242663,GB -3587242664,3587243279,NL -3587243280,3587243295,GB -3587243296,3587243407,NL -3587243408,3587243415,GB -3587243416,3587243423,NL -3587243424,3587243439,GB -3587243440,3587243471,NL -3587243472,3587243519,GB -3587243520,3587243647,NL -3587243648,3587244031,GB -3587244032,3587260415,IT -3587260416,3587284991,DE -3587284992,3587287295,IT -3587287296,3587287307,GE -3587287308,3587287311,DE -3587287312,3587287319,GE -3587287320,3587287327,FR -3587287328,3587287335,GB -3587287336,3587287339,DE -3587287340,3587287343,PL -3587287344,3587287351,GE -3587287352,3587287359,IS -3587287360,3587287363,NL -3587287364,3587287367,IT -3587287368,3587287387,NL -3587287388,3587287391,CZ -3587287392,3587287395,DE -3587287396,3587287403,IS -3587287404,3587287411,PL -3587287412,3587287415,DE -3587287416,3587287419,IQ -3587287420,3587287423,DE -3587287424,3587287427,SE -3587287428,3587287431,DE -3587287432,3587287435,IT -3587287436,3587287439,DE -3587287440,3587287447,TR -3587287448,3587287451,DE -3587287452,3587287455,IT -3587287456,3587287459,DE -3587287460,3587287463,IT -3587287464,3587287475,SE -3587287476,3587287479,PL -3587287480,3587287535,IT -3587287536,3587287543,DE -3587287544,3587287551,PL -3587287552,3587287559,GB -3587287560,3587287563,FR -3587287564,3587287571,PL -3587287572,3587287575,DE -3587287576,3587287579,FR -3587287580,3587287583,DE -3587287584,3587287591,FR -3587287592,3587287599,GB -3587287600,3587287679,IT -3587287680,3587287687,NL -3587287688,3587287711,IS -3587287712,3587287719,GE -3587287720,3587287723,IT -3587287724,3587287727,SE -3587287728,3587287807,IT -3587287808,3587287815,IS -3587287816,3587287823,GB -3587287824,3587287835,FR -3587287836,3587287847,GB -3587287848,3587287851,SE -3587287852,3587287879,IQ -3587287880,3587287887,FR -3587287888,3587287935,IT -3587287936,3587287943,FR -3587287944,3587287947,DE -3587287948,3587287959,IT -3587287960,3587287963,FR -3587287964,3587287967,GB -3587287968,3587287983,DE -3587287984,3587288575,IT -3587288576,3587288703,AE -3587288704,3587288707,DE -3587288708,3587288759,NL -3587288760,3587288959,IT -3587288960,3587289087,DE -3587289088,3587289343,FR -3587289344,3587289347,ES -3587289348,3587289351,FR -3587289352,3587289359,PT -3587289360,3587289367,ES -3587289368,3587289375,FR -3587289376,3587289383,IT -3587289384,3587289387,GB -3587289388,3587289391,ES -3587289392,3587289399,GB -3587289400,3587289407,ES -3587289408,3587289411,IT -3587289412,3587289415,FR -3587289416,3587289423,IT -3587289424,3587289467,GB -3587289468,3587289855,IT -3587289856,3587289859,FR -3587289860,3587289863,IT -3587289864,3587289871,GB -3587289872,3587289895,IT -3587289896,3587289907,GB -3587289908,3587289911,ES -3587289912,3587289915,IT -3587289916,3587289919,FR -3587289920,3587290367,IT -3587290368,3587290622,GB -3587290623,3587290623,IT -3587290624,3587291135,FR -3587291136,3587291139,NL -3587291140,3587291967,IT -3587291968,3587292031,AL -3587292032,3587292159,IT -3587292160,3587292223,DZ -3587292224,3587292415,IT -3587292416,3587292419,ES -3587292420,3587292799,IT -3587292800,3587292863,AT -3587292864,3587309567,IT -3587309568,3587325951,GB -3587325952,3587342335,RU -3587342336,3587358719,CZ -3587358720,3587375103,SA -3587375104,3587383295,TR -3587383296,3587391487,CZ -3587391488,3587407871,KZ -3587407872,3587424255,NL -3587424256,3587440639,DE -3587440640,3587457023,SE -3587457024,3587459263,GB -3587459264,3587459295,DE -3587459296,3587473407,GB -3587473408,3587489791,IT -3587506176,3587538943,IT -3587538944,3587547135,IS -3587547136,3587555327,CH -3587555328,3587571711,BE -3587571712,3587579903,DE -3587579904,3587588095,BE -3587596288,3587604479,NL -3587604480,3587620863,FI -3587620864,3587637247,SE -3587637248,3587653631,FR -3587653632,3587670015,SK -3587670016,3587687591,IT -3587687592,3587687599,NL -3587687600,3587702783,IT -3587702784,3587710975,DE -3587710976,3587719167,CZ -3587719168,3587735551,PL -3587735552,3587751935,GB -3587751936,3587768319,FI -3587768320,3587776511,DE -3587776512,3587784703,IR -3587784704,3587801087,DE -3587801088,3587817471,IT -3587817472,3587833855,MT -3587833856,3587842047,DE -3587842048,3587850239,IT -3587850240,3587854335,NL -3587854336,3587866623,PL -3587866624,3587874815,FR -3587874816,3587877383,DE -3587877384,3587877391,US -3587877392,3587877407,DE -3587877408,3587877439,NL -3587877440,3587878527,DE -3587878528,3587878559,AT -3587878560,3587883007,DE -3587883008,3587915775,GB -3587915776,3587932159,EE -3587932160,3587932415,NL -3587932416,3587932671,DE -3587932672,3587932927,BE -3587932928,3587933183,GB -3587933184,3587940095,BE -3587940096,3587940351,FR -3587940352,3587944447,BE -3587944448,3587945471,NL -3587945472,3587948031,BE -3587948032,3587948543,NL -3587948544,3587964927,RU -3587964928,3587981311,ES -3587981312,3587997695,IS -3587997696,3588014079,DE -3588014080,3588030463,CZ -3588030464,3588046847,RU -3588046848,3588060351,DE -3588060352,3588060359,CH -3588060360,3588063231,DE -3588063232,3588071423,CH -3588071424,3588079615,GB -3588079616,3588095999,CH -3588096000,3588104191,NL -3588104192,3588112383,BG -3588112384,3588128767,FR -3588128768,3588145151,HU -3588145152,3588161535,PL -3588161536,3588227071,FR -3588227072,3588292607,BE -3588292608,3588308991,AT -3588308992,3588325375,NO -3588325376,3588333567,GB -3588333568,3588341759,FR -3588341760,3588358143,IT -3588358144,3588374527,BG -3588374528,3588390911,SE -3588390912,3588393983,LT -3588393984,3588394495,LV -3588394496,3588407295,LT -3588407296,3588423679,CZ -3588423680,3588440063,ES -3588440064,3588456447,PL -3588456448,3588464639,NL -3588464640,3588472831,AT -3588472832,3588489215,UA -3588489216,3588505599,FR -3588505600,3588521983,RU -3588521984,3588538367,PT -3588538368,3588538623,ES -3588538624,3588544383,GB -3588544384,3588544391,IE -3588544392,3588547327,GB -3588547328,3588547583,IE -3588547584,3588550447,GB -3588550448,3588550463,IE -3588550464,3588553983,GB -3588553984,3588554239,IE -3588554240,3588554687,GB -3588554688,3588554751,IE -3588554752,3588571135,AT -3588571136,3588587519,NL -3588587520,3588603903,ES -3588603904,3588620287,SI -3588620288,3588628479,SA -3588628480,3588636671,CH -3588636672,3588653055,UZ -3588653056,3588661247,IT -3588661248,3588669439,NO -3588669440,3588685823,GB -3588685824,3588702207,UA -3588702208,3588718591,ES -3588718592,3588734975,BG -3588734976,3588751359,PL -3588751360,3588767743,TR -3588767744,3588773759,GB -3588773760,3588773887,SL -3588773888,3588775935,GB -3588775936,3588776191,NG -3588776192,3588784127,GB -3588784128,3588800511,CH -3588800512,3588816895,RU -3588816896,3588833279,IT -3588833280,3588848767,RO -3588848768,3588848775,FR -3588848776,3588849663,RO -3588849664,3588857855,IE -3588857856,3588866047,IR -3588866048,3588882431,NL -3588882432,3588890623,RU -3588890624,3588898815,GB -3588898816,3588915199,NO -3588915200,3588931583,IT -3588931584,3588947967,RU -3588947968,3588964351,GB -3588964352,3588997119,CZ -3588997120,3589013503,AT -3589013504,3589021695,ES -3589021696,3589029887,SA -3589029888,3589030015,NL -3589030016,3589030143,ES -3589030144,3589030175,NL -3589030176,3589030183,ES -3589030184,3589030207,NL -3589030208,3589030239,ES -3589030240,3589031423,NL -3589031424,3589031935,ES -3589031936,3589034015,NL -3589034016,3589034111,ES -3589034112,3589034143,NL -3589034144,3589034159,ES -3589034160,3589034167,GB -3589034168,3589034175,NL -3589034176,3589034183,ES -3589034184,3589034191,GB -3589034192,3589034207,DE -3589034208,3589034223,ES -3589034224,3589034271,NL -3589034272,3589034303,ES -3589034304,3589034335,DE -3589034336,3589034367,FR -3589034368,3589034431,NL -3589034432,3589034495,FR -3589034496,3589037311,ES -3589037312,3589037343,NL -3589037344,3589037375,SE -3589037376,3589037391,NL -3589037392,3589037407,ES -3589037408,3589037423,NL -3589037424,3589037439,ES -3589037440,3589037487,NL -3589037488,3589037495,ES -3589037496,3589037503,CH -3589037504,3589037535,NL -3589037536,3589037551,ES -3589037552,3589037559,BE -3589037560,3589037567,NL -3589037568,3589038079,ES -3589038080,3589040127,NL -3589040128,3589042207,ES -3589042208,3589042367,NL -3589042368,3589043231,ES -3589043232,3589043327,NL -3589043328,3589043455,ES -3589043456,3589043711,NL -3589043712,3589044223,ES -3589044224,3589044319,NL -3589044320,3589046271,ES -3589046272,3589051503,NO -3589051504,3589051511,SE -3589051512,3589079039,NO -3589079040,3589092223,DK -3589092224,3589092227,SE -3589092228,3589128191,DK -3589128192,3589144575,GB -3589144576,3589152767,UA -3589152768,3589152927,DE -3589152928,3589152935,CH -3589152936,3589153027,DE -3589153028,3589153031,ES -3589153032,3589156591,DE -3589156592,3589156607,CH -3589156608,3589160959,DE -3589160960,3589177343,PL -3589177344,3589193727,TR -3589193728,3589210111,SE -3589210112,3589226495,NL -3589226496,3589230415,NO -3589230416,3589230431,DK -3589230432,3589230759,NO -3589230760,3589230775,GB -3589230776,3589242879,NO -3589242880,3589248511,NL -3589248512,3589248767,GB -3589248768,3589256191,NL -3589256192,3589256447,GR -3589256448,3589258495,NL -3589258496,3589258751,GB -3589258752,3589259263,NL -3589259264,3589269455,DE -3589269456,3589269471,AT -3589269472,3589275647,DE -3589275648,3589283327,CS -3589283328,3589283343,RS -3589283344,3589283535,CS -3589283536,3589283543,RS -3589283544,3589284975,CS -3589284976,3589285007,RS -3589285008,3589285047,CS -3589285048,3589285055,RS -3589285056,3589285087,CS -3589285088,3589285279,RS -3589285280,3589285327,CS -3589285328,3589285335,RS -3589285336,3589288015,CS -3589288016,3589288023,RS -3589288024,3589288127,CS -3589288128,3589288159,RS -3589288160,3589289855,CS -3589289856,3589289871,RS -3589289872,3589289879,CS -3589289880,3589289887,RS -3589289888,3589292031,CS -3589292032,3589308415,AT -3589308416,3589317887,DE -3589317888,3589317951,GB -3589317952,3589324799,DE -3589324800,3589341183,BG -3589341184,3589373951,PL -3589373952,3589375495,DE -3589375496,3589375503,CI -3589375504,3589390335,DE -3589390336,3589423103,RU -3589423104,3589423615,IT -3589423616,3589424127,CH -3589424128,3589424639,SE -3589424640,3589425151,ES -3589425152,3589425663,CH -3589425664,3589426175,GB -3589426176,3589426239,FR -3589426240,3589427199,GB -3589427200,3589427247,FR -3589427248,3589429247,GB -3589429248,3589429503,FR -3589429504,3589430271,GB -3589430272,3589430527,FR -3589430528,3589430655,GB -3589430656,3589430719,FR -3589430720,3589431039,GB -3589431040,3589431343,FR -3589431344,3589432319,GB -3589432320,3589432575,CH -3589432576,3589432895,FR -3589432896,3589433343,GB -3589433344,3589433375,IT -3589433376,3589433407,CH -3589433408,3589433439,SE -3589433440,3589433471,ES -3589433472,3589433503,CH -3589433504,3589433535,IE -3589433536,3589433567,DK -3589433568,3589433599,GB -3589433600,3589434111,IE -3589434112,3589434623,DK -3589434624,3589434751,GB -3589434752,3589434879,ES -3589434880,3589435391,FR -3589435392,3589435519,PL -3589435520,3589435647,GB -3589435648,3589435775,ES -3589435776,3589435903,GB -3589435904,3589436159,ES -3589436160,3589439487,GB -3589439488,3589444631,SE -3589444632,3589444639,NO -3589444640,3589455871,SE -3589455872,3589472255,RU -3589472256,3589488639,TR -3589488640,3589491711,RU -3589491712,3589491743,TJ -3589491744,3589505023,RU -3589505024,3589521407,FI -3589521408,3589537791,IT -3589537792,3589545983,FR -3589545984,3589554175,DE -3589554176,3589570559,PS -3589570560,3589570655,NL -3589570656,3589571327,GB -3589571328,3589571455,NL -3589571456,3589578751,GB -3589578752,3589580031,NL -3589580032,3589580127,GB -3589580128,3589580159,NL -3589580160,3589580287,GB -3589580288,3589580799,NL -3589580800,3589580895,GB -3589580896,3589581055,NL -3589581056,3589581199,GB -3589581200,3589581215,NL -3589581216,3589581327,GB -3589581328,3589581791,NL -3589581792,3589581823,GB -3589581824,3589582591,NL -3589582592,3589582607,GB -3589582608,3589582639,NL -3589582640,3589582655,GB -3589582656,3589583615,NL -3589583616,3589583647,GB -3589583648,3589583663,NL -3589583664,3589583743,GB -3589583744,3589584271,NL -3589584272,3589584383,GB -3589584384,3589585279,NL -3589585280,3589585407,GB -3589585408,3589585983,NL -3589585984,3589586431,GB -3589586432,3589586943,NL -3589586944,3589597559,CS -3589597560,3589597567,RS -3589597568,3589603327,CS -3589603328,3589668863,FR -3589668864,3589677055,RU -3589677056,3589680287,FR -3589680288,3589680303,MQ -3589680304,3589680751,FR -3589680752,3589680767,MQ -3589680768,3589685247,FR -3589685248,3589718079,GB -3589718080,3589718087,BE -3589718088,3589718095,GB -3589718096,3589718103,BE -3589718104,3589718111,GB -3589718112,3589718159,BE -3589718160,3589718167,GB -3589718168,3589718175,BE -3589718176,3589718191,GB -3589718192,3589718239,BE -3589718240,3589718255,GB -3589718256,3589718303,BE -3589718304,3589718327,GB -3589718328,3589718351,BE -3589718352,3589718359,GB -3589718360,3589718431,BE -3589718432,3589718439,GB -3589718440,3589718447,BE -3589718448,3589718455,GB -3589718456,3589718591,BE -3589718592,3589718631,GB -3589718632,3589718639,BE -3589718640,3589718647,GB -3589718648,3589718655,BE -3589718656,3589718783,GB -3589718784,3589719095,BE -3589719096,3589719103,GB -3589719104,3589719159,BE -3589719160,3589719167,GB -3589719168,3589719231,BE -3589719232,3589719295,GB -3589719296,3589719343,BE -3589719344,3589719395,GB -3589719396,3589719399,BE -3589719400,3589719551,GB -3589719552,3589719647,BE -3589719648,3589719679,GB -3589719680,3589719711,BE -3589719712,3589719743,GB -3589719744,3589719775,BE -3589719776,3589719783,GB -3589719784,3589719807,BE -3589719808,3589719815,GB -3589719816,3589719823,BE -3589719824,3589719839,GB -3589719840,3589719855,BE -3589719856,3589719903,GB -3589719904,3589719971,BE -3589719972,3589719975,GB -3589719976,3589720071,BE -3589720072,3589720075,GB -3589720076,3589720151,BE -3589720152,3589720159,GB -3589720160,3589720207,BE -3589720208,3589720223,GB -3589720224,3589720263,BE -3589720264,3589720271,GB -3589720272,3589720575,BE -3589720576,3589720607,GB -3589720608,3589720655,BE -3589720656,3589720671,GB -3589720672,3589720695,BE -3589720696,3589720703,GB -3589720704,3589720727,BE -3589720728,3589720767,GB -3589720768,3589720791,BE -3589720792,3589720799,GB -3589720800,3589720823,BE -3589720824,3589720831,GB -3589720832,3589720855,BE -3589720856,3589720863,GB -3589720864,3589720887,BE -3589720888,3589720895,GB -3589720896,3589720911,BE -3589720912,3589720935,GB -3589720936,3589720959,BE -3589720960,3589720975,GB -3589720976,3589721015,BE -3589721016,3589721031,GB -3589721032,3589721055,BE -3589721056,3589721071,GB -3589721072,3589721103,BE -3589721104,3589721111,GB -3589721112,3589721143,BE -3589721144,3589721151,GB -3589721152,3589721155,BE -3589721156,3589721167,GB -3589721168,3589721215,BE -3589721216,3589721223,GB -3589721224,3589721247,BE -3589721248,3589721279,GB -3589721280,3589721295,BE -3589721296,3589721311,GB -3589721312,3589721375,BE -3589721376,3589721407,GB -3589721408,3589721423,BE -3589721424,3589721431,GB -3589721432,3589721487,BE -3589721488,3589721495,GB -3589721496,3589721575,BE -3589721576,3589721583,GB -3589721584,3589721607,BE -3589721608,3589721615,GB -3589721616,3589721647,BE -3589721648,3589721655,GB -3589721656,3589721671,BE -3589721672,3589721695,GB -3589721696,3589721711,BE -3589721712,3589721791,GB -3589721792,3589721831,BE -3589721832,3589721847,GB -3589721848,3589721855,BE -3589721856,3589721863,GB -3589721864,3589721879,BE -3589721880,3589721887,GB -3589721888,3589721895,BE -3589721896,3589721899,GB -3589721900,3589721951,BE -3589721952,3589721955,GB -3589721956,3589721967,BE -3589721968,3589721983,GB -3589721984,3589722023,BE -3589722024,3589722031,GB -3589722032,3589722059,BE -3589722060,3589722063,GB -3589722064,3589722111,BE -3589722112,3589722167,GB -3589722168,3589722175,BE -3589722176,3589722207,GB -3589722208,3589722247,BE -3589722248,3589722255,GB -3589722256,3589722279,BE -3589722280,3589722287,GB -3589722288,3589722295,BE -3589722296,3589722299,GB -3589722300,3589722351,BE -3589722352,3589722359,GB -3589722360,3589722395,BE -3589722396,3589722399,GB -3589722400,3589722439,BE -3589722440,3589722447,GB -3589722448,3589722511,BE -3589722512,3589722527,GB -3589722528,3589722607,BE -3589722608,3589722615,GB -3589722616,3589722639,BE -3589722640,3589722647,GB -3589722648,3589722655,BE -3589722656,3589722663,GB -3589722664,3589722691,BE -3589722692,3589722703,GB -3589722704,3589722799,BE -3589722800,3589722803,GB -3589722804,3589722807,BE -3589722808,3589722815,GB -3589722816,3589722835,BE -3589722836,3589722843,GB -3589722844,3589722855,BE -3589722856,3589722863,GB -3589722864,3589722871,BE -3589722872,3589722875,GB -3589722876,3589722883,BE -3589722884,3589722887,GB -3589722888,3589722943,BE -3589722944,3589722999,GB -3589723000,3589723023,BE -3589723024,3589723095,GB -3589723096,3589723391,BE -3589723392,3589723647,GB -3589723648,3589723775,BE -3589723776,3589723839,GB -3589723840,3589723903,BE -3589723904,3589723967,GB -3589723968,3589724031,BE -3589724032,3589724159,GB -3589724160,3589724223,BE -3589724224,3589724231,GB -3589724232,3589724271,BE -3589724272,3589724287,GB -3589724288,3589724351,BE -3589724352,3589724407,GB -3589724408,3589724423,BE -3589724424,3589724431,GB -3589724432,3589724607,BE -3589724608,3589724631,GB -3589724632,3589724671,BE -3589724672,3589724735,GB -3589724736,3589724775,BE -3589724776,3589724783,GB -3589724784,3589724791,BE -3589724792,3589724807,GB -3589724808,3589724823,BE -3589724824,3589724831,GB -3589724832,3589724839,BE -3589724840,3589724847,GB -3589724848,3589724863,BE -3589724864,3589724883,GB -3589724884,3589724887,BE -3589724888,3589724927,GB -3589724928,3589725023,BE -3589725024,3589725039,GB -3589725040,3589725135,BE -3589725136,3589725279,GB -3589725280,3589725295,BE -3589725296,3589725375,GB -3589725376,3589725383,BE -3589725384,3589725391,GB -3589725392,3589725407,BE -3589725408,3589725463,GB -3589725464,3589725495,BE -3589725496,3589725503,GB -3589725504,3589725567,BE -3589725568,3589725583,GB -3589725584,3589725591,BE -3589725592,3589725607,GB -3589725608,3589725615,BE -3589725616,3589725695,GB -3589725696,3589725759,BE -3589725760,3589725767,GB -3589725768,3589725775,BE -3589725776,3589725783,GB -3589725784,3589725791,BE -3589725792,3589725807,GB -3589725808,3589725831,BE -3589725832,3589725863,GB -3589725864,3589725871,BE -3589725872,3589725895,GB -3589725896,3589725903,BE -3589725904,3589725943,GB -3589725944,3589725959,BE -3589725960,3589725983,GB -3589725984,3589725999,BE -3589726000,3589726007,GB -3589726008,3589726023,BE -3589726024,3589726031,GB -3589726032,3589726047,BE -3589726048,3589726063,GB -3589726064,3589726071,BE -3589726072,3589726095,GB -3589726096,3589726111,BE -3589726112,3589726143,GB -3589726144,3589726167,BE -3589726168,3589726183,GB -3589726184,3589726191,BE -3589726192,3589726351,GB -3589726352,3589726359,BE -3589726360,3589726367,GB -3589726368,3589726391,BE -3589726392,3589726407,GB -3589726408,3589726415,BE -3589726416,3589726439,GB -3589726440,3589726447,BE -3589726448,3589726519,GB -3589726520,3589726527,BE -3589726528,3589726551,GB -3589726552,3589726599,BE -3589726600,3589726631,GB -3589726632,3589726655,BE -3589726656,3589726663,GB -3589726664,3589726671,BE -3589726672,3589726783,GB -3589726784,3589726791,BE -3589726792,3589726847,GB -3589726848,3589726911,BE -3589726912,3589726975,GB -3589726976,3589726983,BE -3589726984,3589727007,GB -3589727008,3589727015,BE -3589727016,3589727055,GB -3589727056,3589727063,BE -3589727064,3589727071,GB -3589727072,3589727095,BE -3589727096,3589727127,GB -3589727128,3589727143,BE -3589727144,3589727159,GB -3589727160,3589727175,BE -3589727176,3589727215,GB -3589727216,3589727223,BE -3589727224,3589727295,GB -3589727296,3589727319,BE -3589727320,3589727327,GB -3589727328,3589727431,BE -3589727432,3589727439,GB -3589727440,3589727447,BE -3589727448,3589727455,GB -3589727456,3589727463,BE -3589727464,3589727471,GB -3589727472,3589727487,BE -3589727488,3589727743,GB -3589727744,3589727759,BE -3589727760,3589727999,GB -3589728000,3589728255,BE -3589728256,3589729111,GB -3589729112,3589729127,BE -3589729128,3589729183,GB -3589729184,3589729191,BE -3589729192,3589729215,GB -3589729216,3589729287,BE -3589729288,3589729295,GB -3589729296,3589729311,BE -3589729312,3589729343,GB -3589729344,3589729407,BE -3589729408,3589729559,GB -3589729560,3589729567,BE -3589729568,3589729583,GB -3589729584,3589729607,BE -3589729608,3589729631,GB -3589729632,3589729647,BE -3589729648,3589729679,GB -3589729680,3589729703,BE -3589729704,3589729751,GB -3589729752,3589729775,BE -3589729776,3589729799,GB -3589729800,3589729815,BE -3589729816,3589729823,GB -3589729824,3589729855,BE -3589729856,3589729895,GB -3589729896,3589729903,BE -3589729904,3589729919,GB -3589729920,3589729935,BE -3589729936,3589729951,GB -3589729952,3589729959,BE -3589729960,3589729975,GB -3589729976,3589729983,BE -3589729984,3589729991,GB -3589729992,3589730015,BE -3589730016,3589730031,GB -3589730032,3589730039,BE -3589730040,3589730047,GB -3589730048,3589730055,BE -3589730056,3589730063,GB -3589730064,3589730071,BE -3589730072,3589730079,GB -3589730080,3589730095,BE -3589730096,3589730103,GB -3589730104,3589730111,BE -3589730112,3589730119,GB -3589730120,3589730135,BE -3589730136,3589730143,GB -3589730144,3589730151,BE -3589730152,3589730159,GB -3589730160,3589730175,BE -3589730176,3589730279,GB -3589730280,3589730287,BE -3589730288,3589730295,GB -3589730296,3589730815,BE -3589730816,3589731455,GB -3589731456,3589731599,BE -3589731600,3589731607,GB -3589731608,3589731615,BE -3589731616,3589731623,GB -3589731624,3589731631,BE -3589731632,3589731679,GB -3589731680,3589731719,BE -3589731720,3589731735,GB -3589731736,3589731783,BE -3589731784,3589731791,GB -3589731792,3589731799,BE -3589731800,3589731831,GB -3589731832,3589731839,BE -3589731840,3589732111,GB -3589732112,3589732239,BE -3589732240,3589732255,GB -3589732256,3589732287,BE -3589732288,3589732295,GB -3589732296,3589732303,BE -3589732304,3589732319,GB -3589732320,3589732327,BE -3589732328,3589732607,GB -3589732608,3589732711,BE -3589732712,3589732743,GB -3589732744,3589732759,BE -3589732760,3589732783,GB -3589732784,3589732863,BE -3589732864,3589733183,GB -3589733184,3589733191,BE -3589733192,3589733439,GB -3589733440,3589733455,BE -3589733456,3589733695,GB -3589733696,3589733711,BE -3589733712,3589734015,GB -3589734016,3589734055,BE -3589734056,3589734063,GB -3589734064,3589734119,BE -3589734120,3589734159,GB -3589734160,3589734231,BE -3589734232,3589734247,GB -3589734248,3589734271,BE -3589734272,3589734319,GB -3589734320,3589734327,BE -3589734328,3589734335,GB -3589734336,3589734367,BE -3589734368,3589734383,GB -3589734384,3589734391,BE -3589734392,3589734399,GB -3589742592,3589744895,NL -3589744896,3589744959,BE -3589744960,3589745119,NL -3589745120,3589745151,BE -3589745152,3589747047,NL -3589747048,3589747055,BE -3589747056,3589747071,NL -3589747072,3589747103,ES -3589747104,3589747167,NL -3589747168,3589747199,IE -3589747200,3589747327,NL -3589747328,3589747455,US -3589747456,3589767167,NL -3589767168,3589816319,RU -3589827072,3589827327,SE -3589827328,3589827583,FR -3589827584,3589827687,HU -3589827712,3589828095,DE -3589828096,3589828111,FR -3589828160,3589828607,FR -3589828608,3589828639,SE -3589828640,3589828671,NL -3589828736,3589828863,NL -3589829376,3589829887,GB -3589830144,3589830655,GB -3589830656,3589831167,DE -3589831168,3589831679,US -3589831680,3589832703,FR -3589832704,3589849087,TR -3589849088,3589865471,GB -3589865472,3589881855,GR -3589881856,3589890047,NL -3589890048,3589890175,BE -3589890176,3589890303,GB -3589890304,3589890367,BE -3589890368,3589890431,GB -3589890432,3589890559,BE -3589890560,3589890687,GB -3589890688,3589891327,BE -3589891328,3589891615,GB -3589891616,3589891631,BE -3589891632,3589931007,GB -3589931008,3589947391,SI -3589947392,3589963775,FI -3589963776,3589971231,ES -3589971232,3589971247,CA -3589971248,3589980159,ES -3589980160,3589996543,CZ -3589996544,3589996623,NL -3589996624,3589996639,GB -3589996640,3589996655,NL -3589996656,3589996703,GB -3589996704,3589996799,NL -3589996800,3589996863,GB -3589996864,3589996879,NL -3589996880,3589996911,GB -3589996912,3589996931,NL -3589996932,3589996959,GB -3589996960,3589996991,NL -3589996992,3589997055,GB -3589997056,3589997311,NL -3589997312,3589997439,GB -3589997440,3589997503,NL -3589997504,3589997535,GB -3589997536,3589997543,NL -3589997544,3589997559,GB -3589997560,3589997567,NL -3589997568,3590012927,GB -3590012928,3590029311,BE -3590029312,3590045695,FR -3590045696,3590053887,RU -3590053888,3590057983,UA -3590057984,3590062079,RU -3590062080,3590078463,DE -3590078464,3590094847,RU -3590094848,3590111231,DE -3590111232,3590113023,LT -3590113024,3590113279,LV -3590113280,3590127615,LT -3590127616,3590128127,GB -3590128128,3590128383,FR -3590128384,3590128639,GB -3590128640,3590128895,IT -3590128896,3590129151,NL -3590129152,3590135551,GB -3590135552,3590135807,ES -3590135808,3590137855,GB -3590137856,3590138111,PT -3590138112,3590143999,GB -3590144000,3590151143,SI -3590151144,3590151151,HR -3590151152,3590154047,SI -3590154048,3590154063,HR -3590154064,3590155799,SI -3590155800,3590155807,HR -3590155808,3590155815,SI -3590155816,3590155823,HR -3590155824,3590156287,SI -3590156288,3590156959,HR -3590156960,3590156991,AE -3590156992,3590157311,HR -3590157312,3590157335,CS -3590157336,3590157343,RS -3590157344,3590157439,SI -3590157440,3590157471,RS -3590157472,3590157567,CS -3590157568,3590157631,SI -3590157632,3590157647,RS -3590157648,3590157655,CS -3590157656,3590157663,RS -3590157664,3590157671,CS -3590157672,3590157695,SI -3590157696,3590157727,CS -3590157728,3590157735,RS -3590157736,3590157743,SI -3590157744,3590157759,RS -3590157760,3590157775,SI -3590157776,3590157783,RS -3590157784,3590157823,SI -3590157824,3590157831,CS -3590157832,3590157839,RS -3590157840,3590158343,CS -3590158344,3590158399,SI -3590158400,3590158407,RS -3590158408,3590158439,CS -3590158440,3590158447,SI -3590158448,3590158455,RS -3590158456,3590158479,CS -3590158480,3590158495,SI -3590158496,3590158503,RS -3590158504,3590158527,SI -3590158528,3590158535,RS -3590158536,3590158591,SI -3590158592,3590159359,CS -3590159360,3590160383,SI -3590160384,3590176767,GB -3590176768,3590178615,HU -3590178616,3590178623,MK -3590178624,3590193151,HU -3590193152,3590201343,IT -3590201344,3590209535,DE -3590209536,3590225919,ES -3590225920,3590234111,TR -3590234112,3590242303,GB -3590242304,3590244351,US -3590244352,3590244863,DE -3590244864,3590245119,GR -3590245120,3590245183,BE -3590245184,3590245215,FR -3590245216,3590245279,DE -3590245280,3590245311,BE -3590245312,3590245439,DE -3590245440,3590245503,FR -3590245504,3590245567,GB -3590245568,3590245631,US -3590245632,3590245887,FR -3590245888,3590245983,US -3590245984,3590246175,FR -3590246176,3590246207,AU -3590246208,3590246271,FR -3590246272,3590246303,DE -3590246304,3590246399,FR -3590246400,3590247039,DE -3590247040,3590247055,IT -3590247056,3590247071,DE -3590247072,3590247087,IT -3590247088,3590247167,DE -3590247168,3590247231,US -3590247232,3590247295,IT -3590247296,3590247423,US -3590247424,3590247487,IT -3590247488,3590247551,US -3590247552,3590247679,IT -3590247680,3590247687,GB -3590247688,3590247935,DE -3590247936,3590248191,ES -3590248192,3590248447,DE -3590248448,3590248959,US -3590248960,3590249471,ES -3590249472,3590249983,IE -3590249984,3590250495,GR -3590250496,3590250751,IE -3590250752,3590251007,GR -3590251008,3590251263,ES -3590251264,3590251519,DE -3590251520,3590251551,ES -3590251552,3590251583,DE -3590251584,3590251647,US -3590251648,3590251775,DE -3590251776,3590251839,US -3590251840,3590251903,ES -3590251904,3590251967,US -3590251968,3590252543,ES -3590252544,3590253055,GB -3590253056,3590253375,DE -3590253376,3590253407,US -3590253408,3590254111,DE -3590254112,3590254127,IL -3590254128,3590254135,RU -3590254136,3590254143,DE -3590254144,3590254207,US -3590254208,3590254303,DE -3590254304,3590254335,US -3590254336,3590254591,DE -3590254592,3590254879,ES -3590254880,3590254911,DE -3590254912,3590254975,ES -3590254976,3590255047,DE -3590255048,3590255071,ES -3590255072,3590255103,DE -3590255104,3590255359,ES -3590255360,3590255935,DE -3590255936,3590255999,US -3590256000,3590256639,DE -3590256640,3590256703,US -3590256704,3590256719,BE -3590256720,3590256735,DE -3590256736,3590256767,BE -3590256768,3590256895,DE -3590256896,3590257151,FR -3590257152,3590258431,DE -3590258432,3590258447,GB -3590258448,3590258463,DE -3590258464,3590258495,US -3590258496,3590258687,DE -3590258688,3590291455,IT -3590299648,3590307839,FI -3590307840,3590307903,CG -3590307904,3590307935,UA -3590307936,3590307951,GB -3590307952,3590307967,NG -3590307968,3590307999,CD -3590308000,3590308031,GB -3590308032,3590308047,UG -3590308048,3590308055,KE -3590308056,3590308063,GB -3590308064,3590308071,ZM -3590308072,3590308079,SZ -3590308080,3590308087,GB -3590308088,3590308095,AO -3590308096,3590308183,GB -3590308184,3590308191,IQ -3590308192,3590308199,GB -3590308200,3590308223,IQ -3590308224,3590308247,GB -3590308248,3590308263,IQ -3590308264,3590308271,GB -3590308272,3590308279,IQ -3590308280,3590308351,GB -3590308352,3590308607,CG -3590308608,3590308735,NG -3590308736,3590308767,GB -3590308768,3590308775,RW -3590308776,3590308783,ZA -3590308784,3590308799,ZW -3590308800,3590308815,GB -3590308816,3590308831,KE -3590308832,3590308839,CG -3590308840,3590308855,GB -3590308856,3590308911,NG -3590308912,3590308927,BI -3590308928,3590308951,GB -3590308952,3590308959,GH -3590308960,3590308991,GB -3590308992,3590308999,ZM -3590309000,3590309007,UG -3590309008,3590309023,GB -3590309024,3590309055,ZW -3590309056,3590309071,GB -3590309072,3590309079,MW -3590309080,3590309087,GH -3590309088,3590309103,NG -3590309104,3590309111,ZW -3590309112,3590309503,GB -3590309504,3590309511,NG -3590309512,3590309519,AO -3590309520,3590309527,NG -3590309528,3590309535,CM -3590309536,3590309543,SO -3590309544,3590309551,AM -3590309552,3590309559,UG -3590309560,3590309567,KE -3590309568,3590309575,NG -3590309576,3590309583,AO -3590309584,3590309591,ZW -3590309592,3590309599,SO -3590309600,3590309607,KE -3590309608,3590309615,GB -3590309616,3590309623,UG -3590309624,3590309887,GB -3590309888,3590310143,MW -3590310144,3590310399,GB -3590310400,3590310655,UA -3590310656,3590311679,GB -3590311680,3590311935,YT -3590311936,3590312703,MW -3590312704,3590312799,GB -3590312800,3590312807,KE -3590312808,3590312815,GB -3590312816,3590312823,MW -3590312824,3590312831,GB -3590312832,3590312895,NG -3590312896,3590312903,ZA -3590312904,3590312911,AO -3590312912,3590312919,NG -3590312920,3590312927,ZM -3590312928,3590312943,UG -3590312944,3590312951,NG -3590312952,3590314639,GB -3590314640,3590314655,GH -3590314656,3590314671,GB -3590314672,3590314679,UG -3590314680,3590314687,CG -3590314688,3590314703,NG -3590314704,3590314719,GB -3590314720,3590314727,TG -3590314728,3590314735,UG -3590314736,3590314743,NG -3590314744,3590314751,KE -3590314752,3590314767,GB -3590314768,3590314783,KE -3590314784,3590314791,GB -3590314792,3590314799,KE -3590314800,3590314807,NG -3590314808,3590314815,GB -3590314816,3590314823,NG -3590314824,3590314895,GB -3590314896,3590314903,NG -3590314904,3590314911,KE -3590314912,3590314927,GH -3590314928,3590314943,NG -3590314944,3590314959,GB -3590314960,3590314967,NG -3590314968,3590314973,YT -3590314974,3590314975,GB -3590314976,3590314983,UG -3590314984,3590314991,RW -3590314992,3590316031,GB -3590316032,3590316039,CI -3590316040,3590316047,GB -3590316048,3590316055,GH -3590316056,3590316071,IQ -3590316072,3590316079,BJ -3590316080,3590316087,GB -3590316088,3590316127,IQ -3590316128,3590316151,NG -3590316152,3590316159,GR -3590316160,3590316175,GB -3590316176,3590316183,IQ -3590316184,3590316191,GB -3590316192,3590316199,LY -3590316200,3590316207,GB -3590316208,3590316215,IQ -3590316216,3590316255,GB -3590316256,3590316263,IQ -3590316264,3590316271,GB -3590316272,3590316287,IQ -3590316288,3590316543,LB -3590316544,3590316559,GB -3590316560,3590316575,IQ -3590316576,3590316591,GB -3590316592,3590316599,IQ -3590316600,3590316607,GB -3590316608,3590316615,IQ -3590316616,3590316623,GR -3590316624,3590316632,IQ -3590316633,3590316647,GB -3590316648,3590316655,LY -3590316656,3590316663,IQ -3590316664,3590316671,LY -3590316672,3590316679,IQ -3590316680,3590316687,GB -3590316688,3590316695,IQ -3590316696,3590316703,NG -3590316704,3590316719,GB -3590316720,3590316727,IQ -3590316728,3590316735,LB -3590316736,3590316751,GR -3590316752,3590316783,GB -3590316784,3590316791,IQ -3590316792,3590316799,CI -3590316800,3590317055,CS -3590317056,3590317311,NG -3590317312,3590317471,GB -3590317472,3590317479,MW -3590317480,3590317527,GB -3590317528,3590317951,IQ -3590317952,3590318063,UA -3590318064,3590319167,GB -3590319168,3590319231,AE -3590319232,3590319335,GB -3590319336,3590319359,AE -3590319360,3590319423,GB -3590319424,3590319455,AE -3590319456,3590319967,GB -3590319968,3590319999,AE -3590320000,3590320127,GB -3590320128,3590320191,NG -3590320192,3590320199,LB -3590320200,3590320231,GB -3590320232,3590320239,IQ -3590320240,3590320247,GB -3590320248,3590320255,LB -3590320256,3590320263,LY -3590320264,3590320271,TZ -3590320272,3590320335,IQ -3590320336,3590320343,GB -3590320344,3590320351,UG -3590320352,3590320367,IQ -3590320368,3590320375,GB -3590320376,3590320383,IQ -3590320384,3590320639,CM -3590320640,3590321151,GB -3590321152,3590321663,IQ -3590321664,3590321711,GB -3590321712,3590321727,IQ -3590321728,3590321839,GB -3590321840,3590321855,US -3590321856,3590321887,IQ -3590321888,3590321919,CY -3590321920,3590321927,GB -3590321928,3590321935,IQ -3590321936,3590321943,LY -3590321944,3590321959,IQ -3590321960,3590321967,GB -3590321968,3590321983,TR -3590321984,3590321999,GB -3590322000,3590322007,CY -3590322008,3590322015,IQ -3590322016,3590322023,GB -3590322024,3590322031,IQ -3590322032,3590322047,GB -3590322048,3590322055,NG -3590322056,3590322063,IQ -3590322064,3590322071,GB -3590322072,3590322079,IQ -3590322080,3590322111,GB -3590322112,3590322119,BJ -3590322120,3590322127,LY -3590322128,3590322135,GH -3590322136,3590322151,GB -3590322152,3590322159,IQ -3590322160,3590322167,GB -3590322168,3590322175,IQ -3590322176,3590322303,NG -3590322304,3590322367,IQ -3590322368,3590322375,GB -3590322376,3590322383,LY -3590322384,3590322391,LB -3590322392,3590322399,GB -3590322400,3590322415,AO -3590322416,3590322423,LR -3590322424,3590322431,GB -3590322432,3590322559,LB -3590322560,3590322575,GB -3590322576,3590322687,LB -3590322688,3590323199,IQ -3590323200,3590323711,MW -3590323712,3590323903,GB -3590323904,3590323911,CD -3590323912,3590323967,GB -3590323968,3590324223,NG -3590324224,3623890943,US -3623890944,3623891199,ZA -3623891200,3623891455,US -3623891456,3623891711,ZA -3623891712,3623891967,US -3623891968,3623892479,ZA -3623892480,3624054783,US -3624054784,3624056831,ZA -3624056832,3624181759,US -3624181760,3624182783,ZA -3624182784,3624206335,US -3624206336,3624208383,ZA -3624208384,3624255487,US -3624255488,3624257535,ZA -3624257536,3624271871,US -3624271872,3624272383,SY -3624272384,3624279039,CA -3624279040,3624279087,BD -3624279088,3624288255,CA -3624288256,3624290303,IN -3624290304,3624292351,CA -3624292352,3624292607,GP -3624292608,3624297471,CA -3624297472,3624298495,CO -3624298496,3624299519,PH -3624299520,3624303743,CA -3624303744,3624303759,ZA -3624303760,3624304639,CA -3624304640,3624321023,US -3624321024,3624325119,CA -3624325120,3624359679,US -3624359680,3624360703,AN -3624360704,3624384767,US -3624384768,3624385023,CA -3624385024,3624386559,US -3624386560,3624394751,CA -3624394752,3624435711,US -3624435712,3624452095,CA -3624452096,3624480767,US -3624480768,3624484863,CA -3624484864,3624529919,US -3624529920,3624534015,CA -3624534016,3624587263,US -3624587264,3624591359,JM -3624591360,3624730623,US -3624730624,3624796159,CA -3624796160,3624798207,US -3624798208,3624798975,CA -3624798976,3624799743,US -3624799744,3624799999,CA -3624800000,3624800767,US -3624800768,3624801023,CA -3624801024,3624803071,US -3624803072,3624803583,CA -3624803584,3624804607,US -3624804608,3624804863,CA -3624804864,3624807935,US -3624807936,3624808447,CA -3624808448,3624811519,US -3624811520,3624812287,CA -3624812288,3624820735,US -3624820736,3624820799,CY -3624820800,3624821695,US -3624821696,3624821703,GB -3624821704,3624828927,US -3624828928,3624833023,CA -3624833024,3624845311,US -3624845312,3624849407,AU -3624849408,3624903167,US -3624903168,3624903423,CA -3624903424,3624903679,US -3624903680,3624904703,CA -3624904704,3624905471,US -3624905472,3624905727,CA -3624905728,3624959999,US -3624976384,3624984575,US -3624984576,3624992767,CA -3624992768,3625019135,US -3625019136,3625019391,ES -3625019392,3625058303,US -3625058304,3625091071,CA -3625091072,3625099263,US -3625115648,3625116671,US -3625116672,3625116767,CA -3625116768,3625116775,US -3625116776,3625116927,CA -3625116928,3625117775,US -3625117776,3625117783,CA -3625117784,3625117791,US -3625117792,3625117799,CA -3625117800,3625117807,US -3625117808,3625117839,CA -3625117840,3625118233,US -3625118234,3625118241,CA -3625118242,3625118271,US -3625118272,3625118287,CA -3625118288,3625118975,US -3625118976,3625119056,PL -3625119057,3625140223,US -3625140224,3625148415,CA -3625148416,3625168895,US -3625168896,3625172991,CA -3625172992,3625254911,US -3625255168,3625255423,US -3625256448,3625257983,US -3625258752,3625259007,US -3625259264,3625259519,US -3625260032,3625287679,US -3625287680,3625295871,CA -3625295872,3625346047,US -3625346048,3625346303,AR -3625346304,3625418751,US -3625418752,3625420031,CA -3625420032,3625420543,US -3625420544,3625422591,CA -3625422592,3625423103,US -3625423104,3625426943,CA -3625426944,3625508863,US -3625508864,3625512959,CA -3625512960,3625517055,PR -3625517056,3625631743,US -3625631744,3625639935,CA -3625639936,3626025919,US -3626025920,3626025951,LT -3626025952,3626060735,US -3626060736,3626060743,BM -3626060744,3626061903,US -3626061904,3626061911,BM -3626061912,3626069279,US -3626069280,3626069311,NL -3626069312,3626072959,US -3626072960,3626072991,AE -3626072992,3626073439,US -3626073440,3626073455,AE -3626073456,3626108895,US -3626108896,3626108927,AU -3626108928,3626130415,US -3626130416,3626130431,CA -3626130432,3626140479,US -3626140480,3626140671,AU -3626140672,3626142623,US -3626142624,3626142639,AU -3626142640,3626184191,US -3626184192,3626184223,LT -3626184224,3626189359,US -3626189360,3626189367,NO -3626189368,3626189375,US -3626189376,3626189383,IL -3626189384,3626189431,US -3626189432,3626189439,IL -3626189440,3626191119,US -3626191120,3626191135,GB -3626191136,3626192639,US -3626192640,3626192703,CY -3626192704,3626192767,US -3626192768,3626192799,CH -3626192800,3626213439,US -3626213440,3626213471,GB -3626213472,3626227167,US -3626227168,3626227199,AR -3626227200,3626228463,US -3626228464,3626228479,AE -3626228480,3626270719,US -3626270720,3626287103,CA -3626287104,3626332159,US -3626336256,3626369023,US -3626377216,3626508287,US -3626508288,3626512383,CA -3626512384,3626524671,US -3626524672,3626532863,CA -3626532864,3626852351,US -3626852352,3626860543,CA -3626860544,3626893311,US -3626893312,3626905599,CA -3626909696,3626926079,US -3626926080,3626934271,CA -3626934272,3626967039,US -3626971136,3627044863,US -3627044864,3627048959,CA -3627048960,3627065343,US -3627065344,3627069439,CA -3627069440,3627387903,US -3627387904,3627388415,BR -3627388416,3627400319,US -3627400320,3627400351,BR -3627400352,3627401151,US -3627401152,3627401215,BR -3627401216,3627507711,US -3627507712,3627511807,CA -3627511808,3627532287,US -3627532288,3627544575,CA -3627544576,3627659263,US -3627659264,3627663359,CA -3627663360,3627665407,US -3627665408,3627665439,CA -3627665440,3627666719,US -3627666720,3627666751,CA -3627666752,3627679743,US -3627679744,3627712511,CA -3627712512,3627761663,US -3627778048,3627802623,US -3627802624,3627810815,CA -3627810816,3628123615,US -3628123616,3628123647,CA -3628123648,3628123711,BM -3628123712,3628123903,US -3628123904,3628123935,GB -3628123936,3628128703,US -3628128704,3628128719,CA -3628128720,3628129087,US -3628129088,3628129103,CA -3628129104,3628138751,US -3628138752,3628139007,GB -3628139008,3628139311,US -3628139312,3628139327,SG -3628139328,3628143615,US -3628143616,3628143871,GB -3628143872,3628153087,US -3628153088,3628153343,KW -3628153344,3628154239,US -3628154240,3628154303,PH -3628154304,3628154463,US -3628154464,3628154495,GB -3628154496,3628155647,US -3628155648,3628155903,CA -3628155904,3628156159,US -3628156160,3628156415,GB -3628156416,3628164479,US -3628164480,3628164607,GB -3628164608,3628179455,US -3628179456,3628187647,CA -3628187648,3628208127,US -3628208128,3628208383,IT -3628208384,3628236799,US -3628236800,3628257279,CA -3628257280,3628598271,US -3628598272,3628599295,CO -3628599296,3628603391,CL -3628603392,3628604415,US -3628604416,3628605439,GT -3628605440,3628608511,IL -3628608512,3628609023,VE -3628609024,3628616191,US -3628616192,3628617215,PR -3628617216,3628617471,HN -3628617472,3628617727,US -3628617728,3628618239,CO -3628618240,3628618495,US -3628618496,3628619775,HN -3628619776,3628622847,US -3628622848,3628623871,PR -3628623872,3628625919,NG -3628625920,3628626175,US -3628626176,3628626943,HN -3628626944,3628627199,CO -3628627200,3628627455,IL -3628627456,3628627711,HN -3628627712,3628627967,US -3628627968,3628628991,SV -3628628992,3628629247,GT -3628629248,3628629759,US -3628629760,3628631807,VE -3628631808,3628634111,US -3628634112,3628636159,AR -3628636160,3628636671,VE -3628636672,3628638207,US -3628638208,3628646399,CL -3628646400,3628646911,US -3628646912,3628647423,HN -3628647424,3628647679,US -3628647680,3628649727,CO -3628649728,3628655103,US -3628655104,3628655359,VE -3628655360,3628657407,CO -3628657408,3628657663,US -3628657664,3628657919,VE -3628657920,3628679167,US -3628679168,3628683263,CA -3628683264,3628762335,US -3628762336,3628762367,IL -3628762368,3628762519,US -3628762520,3628762527,CY -3628762528,3628766143,US -3628766144,3628766151,GB -3628766152,3628767039,US -3628767040,3628767055,IE -3628767056,3628767135,US -3628767136,3628767167,GB -3628767168,3628767695,US -3628767696,3628767703,NO -3628767704,3628768223,US -3628768224,3628768239,NO -3628768240,3628770207,US -3628770208,3628770215,NO -3628770216,3628770367,US -3628770368,3628770383,CY -3628770384,3628771455,US -3628771456,3628771647,GB -3628771648,3628771839,US -3628771840,3628772095,NO -3628772096,3628772415,US -3628772416,3628772431,CA -3628772432,3628772447,GB -3628772448,3628834815,US -3628834816,3628843007,CA -3628843008,3629187071,US -3629187072,3629195263,CA -3629195264,3629199359,US -3629199360,3629203455,CA -3629203456,3629318143,US -3629318144,3629326335,CA -3629326336,3629331967,US -3629331968,3629332479,CA -3629332480,3629539327,US -3629539328,3629547519,CA -3629547520,3629662207,US -3629662208,3629662463,GB -3629662464,3629735943,US -3629735944,3629735951,CA -3629735952,3629736119,US -3629736120,3629736127,CA -3629736128,3629737215,US -3629737216,3629737471,CA -3629737472,3629761551,US -3629761552,3629761567,CA -3629761568,3629767935,US -3629767936,3629768191,CA -3629768192,3629789439,US -3629789440,3629789695,CA -3629789696,3629789951,US -3629789952,3629790207,CA -3629790208,3629808095,US -3629808096,3629808127,CA -3629808128,3629838551,US -3629838552,3629838559,CA -3629838560,3629838583,US -3629838584,3629838591,CA -3629838592,3629841951,US -3629841952,3629841983,CA -3629841984,3629859551,US -3629859552,3629859583,CA -3629859584,3629875775,US -3629875776,3629875807,CA -3629875808,3629876255,US -3629876256,3629876263,CA -3629876264,3630039039,US -3630039040,3630039295,CA -3630039296,3630040063,US -3630040064,3630040319,CA -3630040320,3630040575,US -3630040576,3630040831,CA -3630040832,3630041343,US -3630041344,3630041599,CA -3630041600,3630041863,US -3630041864,3630041871,CA -3630041872,3630041911,US -3630041912,3630041919,CA -3630041920,3630042095,US -3630042096,3630042103,CA -3630042104,3630042391,US -3630042392,3630042399,CA -3630042400,3630042463,US -3630042464,3630042471,CA -3630042472,3630042479,US -3630042480,3630042487,CA -3630042488,3630042599,US -3630042600,3630042607,CA -3630042608,3630044927,US -3630044928,3630045183,CA -3630045184,3630045695,US -3630045696,3630046207,CA -3630046208,3630046591,US -3630046592,3630047231,CA -3630047232,3630048767,US -3630048768,3630049023,CA -3630049024,3630049279,US -3630049280,3630049535,CA -3630049536,3630050479,US -3630050480,3630050487,CA -3630050488,3630050527,US -3630050528,3630050535,CA -3630050536,3630050559,US -3630050560,3630050815,CA -3630050816,3630051839,US -3630051840,3630052351,CA -3630052352,3630054655,US -3630054656,3630055167,CA -3630055168,3630055615,US -3630055616,3630055647,CA -3630055648,3630055935,US -3630055936,3630056959,CA -3630056960,3630060223,US -3630060224,3630060287,CA -3630060288,3630062847,US -3630062848,3630063103,CA -3630063104,3630066175,US -3630066176,3630066431,CA -3630066432,3630066687,US -3630066688,3630067967,CA -3630067968,3630069503,US -3630069504,3630069759,CA -3630069760,3630070783,US -3630070784,3630071039,CA -3630071040,3630073087,US -3630073088,3630073343,CA -3630073344,3630073599,US -3630073600,3630073855,CA -3630073856,3630074543,US -3630074544,3630074551,CA -3630074552,3630074607,US -3630074608,3630074615,CA -3630074616,3630074815,US -3630074816,3630074879,CA -3630074880,3630075391,US -3630075392,3630075647,CA -3630075648,3630077183,US -3630077184,3630077439,CA -3630077440,3630077951,US -3630077952,3630078015,CA -3630078016,3630078463,US -3630078464,3630078719,CA -3630078720,3630080511,US -3630080512,3630080575,CA -3630080576,3630081279,US -3630081280,3630081535,CA -3630081536,3630082047,US -3630082048,3630082303,CA -3630082304,3630085119,US -3630085120,3630085375,CA -3630085376,3630088703,US -3630088704,3630088959,CA -3630088960,3630089471,US -3630089472,3630090239,CA -3630090240,3630091263,US -3630091264,3630091519,CA -3630091520,3630092031,US -3630092032,3630092287,CA -3630092288,3630093439,US -3630093440,3630093447,CA -3630093448,3630093527,US -3630093528,3630093535,CA -3630093536,3630094591,US -3630094592,3630094847,CA -3630094848,3630095015,US -3630095016,3630095023,CA -3630095024,3630095039,US -3630095040,3630095047,CA -3630095048,3630097663,US -3630097664,3630098175,KW -3630098176,3630098687,US -3630098688,3630100223,CA -3630100224,3630100479,KW -3630100480,3630102783,US -3630102784,3630103807,CA -3630103808,3630141503,US -3630141504,3630141567,CA -3630141568,3630142463,US -3630142464,3630143231,CA -3630143232,3630143615,US -3630143616,3630143647,CA -3630143648,3630143711,US -3630143712,3630143743,CA -3630143744,3630144511,US -3630144512,3630145023,CA -3630145024,3630145535,US -3630145536,3630145791,CA -3630145792,3630146047,US -3630146048,3630146815,CA -3630146816,3630147327,US -3630147328,3630147583,CA -3630147584,3630149535,US -3630149536,3630149567,CA -3630149568,3630149631,US -3630149632,3630149887,CA -3630149888,3630150911,US -3630150912,3630151167,CA -3630151168,3630151455,US -3630151456,3630151487,CA -3630151488,3630151615,US -3630151616,3630151647,CA -3630151648,3630151679,US -3630151680,3630152191,CA -3630152192,3630152447,US -3630152448,3630152703,CA -3630152704,3630156031,US -3630156032,3630156287,CA -3630156288,3630156543,US -3630156544,3630156799,CA -3630156800,3630157055,US -3630157056,3630157311,CA -3630157312,3630157567,US -3630157568,3630158087,CA -3630158088,3630158231,US -3630158232,3630158239,CA -3630158240,3630158303,US -3630158304,3630158311,CA -3630158312,3630159007,US -3630159008,3630159071,CA -3630159072,3630159103,US -3630159104,3630159359,CA -3630159360,3630160487,US -3630160488,3630160495,CA -3630160496,3630160591,US -3630160592,3630160599,CA -3630160600,3630160607,US -3630160608,3630160895,CA -3630160896,3630161151,US -3630161152,3630161919,CA -3630161920,3630162687,US -3630162688,3630162943,CA -3630162944,3630163887,US -3630163888,3630163895,CA -3630163896,3630164223,US -3630164224,3630164735,CA -3630164736,3630164783,US -3630164784,3630164799,CA -3630164800,3630164815,US -3630164816,3630164831,CA -3630164832,3630165247,US -3630165248,3630165759,CA -3630165760,3630166015,US -3630166016,3630166527,CA -3630166528,3630166687,US -3630166688,3630166719,CA -3630166720,3630167583,US -3630167584,3630167615,CA -3630167616,3630167711,US -3630167712,3630167743,CA -3630167744,3630167807,US -3630167808,3630167823,CA -3630167824,3630167903,US -3630167904,3630167911,CA -3630167912,3630168319,US -3630168320,3630169087,CA -3630169088,3630309375,US -3630309376,3630317567,CA -3630317568,3630370815,US -3630372864,3630374911,US -3630374912,3630383103,CA -3630383104,3630391295,US -3630391296,3630395391,CA -3630395392,3630718975,US -3630718976,3630727167,CA -3630727168,3630746879,US -3630746880,3630747391,TZ -3630747392,3630772223,US -3630776320,3630780415,US -3630780416,3630784511,CA -3630784512,3630850047,US -3630850048,3630854143,CA -3630854144,3630956543,US -3630956544,3631005695,CA -3631005696,3631039439,US -3631039440,3631039455,CA -3631039456,3631039487,US -3631039488,3631039743,CA -3631039744,3631043663,US -3631043664,3631043679,CA -3631043680,3631043759,US -3631043760,3631043767,CA -3631043768,3631045631,US -3631045632,3631045759,CA -3631045760,3631045983,US -3631045984,3631045991,CA -3631045992,3631112191,US -3631112192,3631112703,VC -3631112704,3631116543,BB -3631116544,3631117567,GD -3631117568,3631117823,BB -3631117824,3631118079,GD -3631118080,3631119103,VC -3631119104,3631119615,BB -3631119616,3631120383,GD -3631120384,3631144959,US -3631144960,3631153151,CA -3631153152,3631284223,US -3631284224,3631316991,CA -3631316992,3631333375,US -3631333376,3631333679,CA -3631333680,3631333695,US -3631333696,3631341567,CA -3631341568,3631357951,US -3631366144,3631480831,US -3631480832,3631484927,CA -3631484928,3631644671,US -3631644672,3631652863,CA -3631652864,3631663151,US -3631663152,3631663159,CA -3631663160,3631665151,US -3631665152,3631669247,CA -3631669248,3631710207,US -3631722496,3631841279,US -3631841280,3631874047,CA -3631874048,3631939583,US -3631939584,3632005119,CA -3632005120,3632136191,US -3632136192,3632144383,CA -3632144384,3632152575,US -3632152576,3632168959,CA -3632168960,3632197631,US -3632197632,3632201727,CA -3632201728,3632230399,US -3632234496,3632332799,US -3632332800,3632357375,CA -3632357376,3632370559,US -3632370560,3632370575,NG -3632370576,3632373503,US -3632373504,3632373759,NG -3632373760,3632381951,US -3632381952,3632390143,CA -3632390144,3632414719,US -3632414720,3632422911,CA -3632422912,3632447487,US -3632455680,3632467967,US -3632470016,3632826495,US -3632826496,3632826511,CN -3632826512,3632833231,US -3632833232,3632833247,CN -3632833248,3632837135,US -3632837136,3632837151,IN -3632837152,3632838399,US -3632838400,3632838431,TW -3632838432,3632838583,US -3632838584,3632838591,CN -3632838592,3632847279,US -3632847280,3632847295,CN -3632847296,3632857087,US -3632857088,3632861183,BS -3632861184,3632881663,US -3632881664,3632889855,CA -3632889856,3632898047,US -3632898048,3632902143,CA -3632902144,3632971775,US -3632971776,3632988159,CA -3632988160,3633030159,US -3633030160,3633030167,ZA -3633030168,3633030175,US -3633030176,3633030183,ZA -3633030184,3633030191,US -3633030192,3633030199,ZA -3633030200,3633030207,US -3633030208,3633030215,ZA -3633030216,3633030223,NG -3633030224,3633030231,ZA -3633030232,3633030287,US -3633030288,3633030303,ZA -3633030304,3633030335,US -3633030336,3633030359,ZA -3633030360,3633030655,US -3633030656,3633030911,SN -3633030912,3633031615,US -3633031616,3633031623,ZA -3633031624,3633031647,US -3633031648,3633031655,NG -3633031656,3633031959,US -3633031960,3633031967,NL -3633031968,3633031983,US -3633031984,3633031991,PG -3633031992,3633032087,US -3633032088,3633032095,NL -3633032096,3633032167,US -3633032168,3633032175,NL -3633032176,3633032223,US -3633032224,3633032231,NG -3633032232,3633032239,US -3633032240,3633032247,ZA -3633032248,3633032271,US -3633032272,3633032279,ZA -3633032280,3633032287,US -3633032288,3633032319,GQ -3633032320,3633032415,US -3633032416,3633032431,NG -3633032432,3633032439,US -3633032440,3633032447,ZA -3633032448,3633032591,US -3633032592,3633032607,ZA -3633032608,3633033247,US -3633033248,3633033255,ZA -3633033256,3633033263,US -3633033264,3633033271,ZA -3633033272,3633033287,US -3633033288,3633033295,GH -3633033296,3633033303,NG -3633033304,3633033319,ZA -3633033320,3633033327,NG -3633033328,3633033335,US -3633033336,3633033359,ZA -3633033360,3633033367,NG -3633033368,3633033375,ZA -3633033376,3633033391,NG -3633033392,3633033399,ZA -3633033400,3633034047,US -3633034048,3633034079,ZA -3633034080,3633034519,US -3633034520,3633034527,NG -3633034528,3633034559,US -3633034560,3633034751,NG -3633034752,3633035015,US -3633035016,3633035023,NL -3633035024,3633035071,US -3633035072,3633035087,NR -3633035088,3633035095,CN -3633035096,3633035135,US -3633035136,3633035151,NR -3633035152,3633035199,US -3633035200,3633035207,ID -3633035208,3633035311,US -3633035312,3633035319,ID -3633035320,3633035439,US -3633035440,3633035447,ID -3633035448,3633035455,US -3633035456,3633035487,ID -3633035488,3633035527,US -3633035528,3633035535,NG -3633035536,3633035551,US -3633035552,3633035599,ZA -3633035600,3633036031,US -3633036032,3633036287,HT -3633036288,3633036479,US -3633036480,3633036511,TT -3633036512,3633036607,US -3633036608,3633036671,GB -3633036672,3633039503,US -3633039504,3633039519,CA -3633039520,3633336319,US -3633336320,3633340415,KY -3633340416,3633344511,US -3633344512,3633348607,CA -3633348608,3633379327,US -3633381376,3633405951,US -3633405952,3633410047,CA -3633410048,3633479679,US -3633479680,3633483775,CA -3633483776,3633504255,US -3633508352,3633545215,US -3633545216,3633545727,GA -3633545728,3633546495,US -3633546496,3633546751,GA -3633546752,3633547263,US -3633547264,3633548287,GA -3633548288,3633548543,US -3633548544,3633548799,GA -3633548800,3633548927,US -3633548928,3633549055,GA -3633549056,3633552911,US -3633552912,3633552927,GA -3633552928,3633553151,US -3633553152,3633553279,GW -3633553280,3633783295,US -3633783552,3633783807,US -3633784064,3633784319,US -3633784576,3633785087,US -3633785600,3633786367,US -3633786880,3633815551,US -3633815552,3633819647,CA -3633819648,3633823743,US -3633831936,3633848319,US -3633856512,3633881087,US -3633881088,3633885183,AN -3633885184,3633889279,US -3633889280,3633893375,CA -3633893376,3633971199,US -3633971200,3634020351,CA -3634020352,3634053119,US -3634053120,3634061311,CL -3634061312,3634511871,US -3634511872,3634515967,CA -3634515968,3634520063,US -3634528256,3634552831,US -3634552832,3634556927,CA -3634556928,3634880511,US -3634880512,3634888703,CA -3634888704,3634913279,US -3634913280,3634921471,CA -3634921472,3634925567,US -3634925568,3634929663,CA -3634929664,3635109887,US -3635109888,3635110295,CA -3635110296,3635110303,US -3635110304,3635113983,CA -3635113984,3635142655,US -3635142656,3635146751,CA -3635146752,3635150847,US -3635216384,3635253247,US -3635257344,3635314687,US -3635314688,3635322879,CA -3635322880,3635412991,US -3635425280,3635429375,CA -3635429376,3635458527,US -3635458528,3635458543,CH -3635458544,3635460031,US -3635460032,3635460095,CH -3635460096,3635460543,US -3635460544,3635460575,CH -3635460576,3635460799,US -3635460800,3635460831,CH -3635460832,3635466239,US -3635466240,3635470335,CA -3635470336,3635515391,US -3635519488,3635658751,US -3635658752,3635660799,CN -3635660800,3635847791,US -3635847792,3635847807,CA -3635847808,3635856511,US -3635856512,3635856543,CA -3635856544,3635871743,US -3635871744,3635879935,CA -3635879936,3635892223,US -3635892224,3635896319,CA -3635896320,3635904511,US -3635904512,3635912703,CA -3635912704,3635924991,US -3635929088,3635961855,US -3635961856,3635963903,SV -3635963904,3635964159,US -3635964160,3635964415,BO -3635964416,3635965951,SV -3635965952,3635966975,BO -3635966976,3635967999,PY -3635968000,3635970047,SV -3635970048,3636019199,US -3636019200,3636027391,CA -3636027392,3636064255,US -3636064256,3636068351,CA -3636068352,3636152287,US -3636152288,3636152575,CA -3636152576,3636154367,US -3636154368,3636154879,CA -3636154880,3636157055,US -3636157056,3636157063,CA -3636157064,3636158111,US -3636158112,3636158143,CA -3636158144,3636158463,US -3636158464,3636158719,CA -3636158720,3636158783,US -3636158784,3636158815,CA -3636158816,3636160511,US -3636160512,3636160767,CA -3636160768,3636161791,US -3636161792,3636161855,CA -3636161856,3636164095,US -3636164096,3636164111,VG -3636164112,3636164159,US -3636164160,3636164223,CA -3636164224,3636166143,US -3636166144,3636166655,CA -3636166656,3636206079,US -3636206080,3636206335,AU -3636206336,3636396031,US -3636396032,3636461567,CA -3636461568,3636609023,US -3636609024,3636610559,CA -3636610560,3636610815,US -3636610816,3636621311,CA -3636621312,3636822015,US -3636822016,3636854783,CA -3636854784,3636887551,US -3636887552,3636895743,CA -3636895744,3637071935,US -3637071936,3637071943,SK -3637071944,3637071951,US -3637071952,3637071967,CY -3637071968,3637072095,US -3637072096,3637072127,GB -3637072128,3637072143,US -3637072144,3637072159,CY -3637072160,3637072895,US -3637072896,3637073151,CY -3637073152,3637073215,US -3637073216,3637073231,CY -3637073232,3637075967,US -3637075968,3637080063,CA -3637080064,3637389335,US -3637389336,3637389343,CA -3637389344,3637510143,US -3637510144,3637641215,CA -3637641216,3637657599,US -3637665792,3637667439,CA -3637667440,3637667518,US -3637667519,3637669887,CA -3637669888,3637706751,US -3637706752,3637739519,CA -3637739520,3638165503,US -3638165504,3638181887,CA -3638181888,3638231039,US -3638247424,3638247439,US -3638247440,3638247455,GB -3638247456,3638247487,US -3638247488,3638247551,GB -3638247552,3638247679,DE -3638247680,3638247855,US -3638247856,3638247871,DE -3638247872,3638247935,US -3638247936,3638248703,GB -3638248704,3638249215,US -3638249216,3638249471,GB -3638249472,3638249751,US -3638249752,3638249791,GB -3638249792,3638250535,US -3638250536,3638250543,GB -3638250544,3638250559,US -3638250560,3638250623,GB -3638250624,3638250687,US -3638250688,3638250703,GB -3638250704,3638250719,US -3638250720,3638250815,GB -3638250816,3638250831,US -3638250832,3638250847,GB -3638250848,3638250863,US -3638250864,3638250871,GB -3638250872,3638250895,US -3638250896,3638250911,GB -3638250912,3638250919,CH -3638250920,3638250983,US -3638250984,3638250991,GB -3638250992,3638304767,US -3638304768,3638312959,CA -3638312960,3638370303,US -3638370304,3638386687,CA -3638386688,3638509567,US -3638509568,3638534143,CA -3638534144,3638697983,US -3638697984,3638706175,CA -3638706176,3638788095,US -3638804480,3638874111,US -3638874112,3638878207,CA -3638878208,3638898687,US -3638902784,3638915071,US -3638919168,3638960383,US -3638960384,3638960639,BR -3638960640,3638984703,US -3638984704,3638992895,GT -3638992896,3639083007,US -3639083008,3639148543,CA -3639148544,3639222271,US -3639222272,3639230463,CA -3639230464,3639255039,US -3639255040,3639258677,CA -3639258678,3639258678,IL -3639258679,3639263231,CA -3639263232,3639279615,US -3639279616,3639283711,CA -3639283712,3639308287,US -3639312384,3639390207,US -3639394304,3639396351,US -3639396352,3639396383,NE -3639396384,3639396415,US -3639396416,3639396431,PK -3639396432,3639396447,US -3639396448,3639396463,NG -3639396464,3639396471,TZ -3639396472,3639396543,US -3639396544,3639396551,TZ -3639396552,3639396671,US -3639396672,3639396735,NE -3639396736,3639396863,US -3639396864,3639396879,NE -3639396880,3639396927,US -3639396928,3639396959,FR -3639396960,3639396975,NG -3639396976,3639396991,US -3639396992,3639397023,CD -3639397024,3639397119,US -3639397120,3639397375,IN -3639397376,3639397631,US -3639397632,3639397887,NG -3639397888,3639398527,US -3639398528,3639398591,SA -3639398592,3639400447,US -3639400448,3639401471,RS -3639401472,3639401495,PK -3639401496,3639401511,US -3639401512,3639401519,ID -3639401520,3639401535,US -3639401536,3639401551,TZ -3639401552,3639401559,LK -3639401560,3639401623,US -3639401624,3639401631,TZ -3639401632,3639401647,US -3639401648,3639401655,PK -3639401656,3639401687,US -3639401688,3639401727,PK -3639401728,3639402015,US -3639402016,3639402039,PK -3639402040,3639402055,US -3639402056,3639402071,PK -3639402072,3639402079,US -3639402080,3639402095,PK -3639402096,3639402111,US -3639402112,3639402175,NG -3639402176,3639402191,PK -3639402192,3639402199,US -3639402200,3639402207,PK -3639402208,3639402239,US -3639402240,3639402495,GH -3639402496,3639558143,US -3639558144,3639566335,CA -3639566336,3639582719,US -3639590912,3639607295,US -3639607296,3639611391,CA -3639611392,3639656447,US -3639656448,3639660543,CA -3639660544,3639664639,US -3639664640,3639668735,CA -3639672832,3639675391,CL -3639675392,3639676159,CO -3639676160,3639676447,CL -3639676448,3639676479,CO -3639676480,3639676575,CL -3639676576,3639676607,CO -3639676608,3639676655,CL -3639676656,3639676679,CO -3639676680,3639676687,CL -3639676688,3639676695,CO -3639676696,3639676703,CL -3639676704,3639676799,CO -3639676800,3639676807,CL -3639676808,3639676815,CO -3639676816,3639676831,CL -3639676832,3639676943,CO -3639676944,3639677023,CL -3639677024,3639677031,CO -3639677032,3639677103,CL -3639677104,3639677111,CO -3639677112,3639677423,CL -3639677424,3639677431,CO -3639677432,3639677455,CL -3639677456,3639677487,CO -3639677488,3639677711,CL -3639677712,3639677719,CO -3639677720,3639677791,CL -3639677792,3639677823,CO -3639677824,3639677871,CL -3639677872,3639677879,CO -3639677880,3639677959,CL -3639677960,3639677967,CO -3639677968,3639677983,CL -3639677984,3639677991,CO -3639677992,3639678007,CL -3639678008,3639678023,CO -3639678024,3639678055,CL -3639678056,3639678063,CO -3639678064,3639678071,CL -3639678072,3639678087,CO -3639678088,3639678119,CL -3639678120,3639678127,CO -3639678128,3639678143,CL -3639678144,3639678159,CO -3639678160,3639678167,CL -3639678168,3639678175,CO -3639678176,3639678191,CL -3639678192,3639678199,CO -3639678200,3639678527,CL -3639678528,3639678535,CO -3639678536,3639678583,CL -3639678584,3639678591,CO -3639678592,3639678639,CL -3639678640,3639678647,CO -3639678648,3639678663,CL -3639678664,3639678671,CO -3639678672,3639678783,CL -3639678784,3639678791,CO -3639678792,3639678799,CL -3639678800,3639678815,CO -3639678816,3639678823,CL -3639678824,3639678831,CO -3639678832,3639678839,CL -3639678840,3639678855,CO -3639678856,3639678887,CL -3639678888,3639678895,CO -3639678896,3639678911,CL -3639678912,3639678919,CO -3639678920,3639678935,CL -3639678936,3639678951,CO -3639678952,3639678975,CL -3639678976,3639679231,CO -3639679232,3639679247,CL -3639679248,3639679263,CO -3639679264,3639679383,CL -3639679384,3639679391,CO -3639679392,3639679415,CL -3639679416,3639679423,CO -3639679424,3639679447,CL -3639679448,3639679455,CO -3639679456,3639679487,CL -3639679488,3639679743,CO -3639679744,3639680271,CL -3639680272,3639680311,CO -3639680312,3639680319,CL -3639680320,3639680335,CO -3639680336,3639680383,CL -3639680384,3639680415,CO -3639680416,3639680431,CL -3639680432,3639680447,CO -3639680448,3639680767,CL -3639680768,3639680799,CO -3639680800,3639680831,CL -3639680832,3639680847,CO -3639680848,3639680871,CL -3639680872,3639680879,CO -3639680880,3639680887,CL -3639680888,3639680895,CO -3639680896,3639680967,CL -3639680968,3639680991,CO -3639680992,3639681023,CL -3639681024,3639730175,US -3639730176,3639734271,CA -3639734272,3639812095,US -3639820288,3639902207,US -3639902208,3639903755,PE -3639903756,3639903759,PA -3639903760,3639904031,PE -3639904032,3639904035,CL -3639904036,3639912127,PE -3639912128,3639912143,CL -3639912144,3639914767,PE -3639914768,3639914775,PA -3639914776,3639918591,PE -3639918592,3639934975,AR -3639934976,3640057855,US -3640057856,3640066047,CA -3640066048,3640197119,US -3640197120,3640201215,CA -3640201216,3640205311,US -3640205312,3640209407,BM -3640209408,3640213503,CA -3640213504,3640287231,US -3640287232,3640291327,CA -3640291328,3640312079,US -3640312080,3640312095,ID -3640312096,3640312103,GB -3640312104,3640312159,US -3640312160,3640312191,ID -3640312192,3640312575,US -3640312576,3640312607,NG -3640312608,3640314879,US -3640314880,3640315135,ZA -3640315136,3640317327,US -3640317328,3640317343,ZA -3640317344,3640317407,US -3640317408,3640317423,ZA -3640317424,3640317559,US -3640317560,3640317567,NL -3640317568,3640318975,US -3640318976,3640319103,GQ -3640319104,3640328191,US -3640336384,3640360959,US -3640360960,3640369151,CA -3640369152,3640377343,US -3640381440,3640410111,US -3640410112,3640418303,CA -3640418304,3640557567,US -3640557568,3640582143,CA -3640582144,3640647679,US -3640647680,3640651775,JP -3640651776,3640655871,US -3640655872,3641056319,DE -3641056320,3641056327,HU -3641056328,3641056359,DE -3641056360,3641056367,AT -3641056368,3641056375,PL -3641056376,3641057655,DE -3641057656,3641057663,CZ -3641057664,3641078559,DE -3641078560,3641078567,BE -3641078568,3641085687,DE -3641085688,3641085695,CZ -3641085696,3641087695,DE -3641087696,3641087703,GB -3641087704,3641098191,DE -3641098192,3641098207,ES -3641098208,3641102607,DE -3641102608,3641102615,FR -3641102616,3641103719,DE -3641103720,3641103727,HU -3641103728,3641106951,DE -3641106952,3641106959,CH -3641106960,3641114031,DE -3641114032,3641114039,SK -3641114040,3641134367,DE -3641134368,3641134375,BE -3641134376,3641140671,DE -3641140672,3641140679,US -3641140680,3641147519,DE -3641147520,3641147527,AT -3641147528,3641150303,DE -3641150304,3641150311,US -3641150312,3641157951,DE -3641157952,3641157959,AT -3641157960,3641158031,DE -3641158032,3641158055,FR -3641158056,3641158103,DE -3641158104,3641158111,FR -3641158112,3641158127,DE -3641158128,3641158135,ES -3641158136,3641158199,DE -3641158200,3641158207,NL -3641158208,3641158335,DE -3641158336,3641158343,ES -3641158344,3641158423,DE -3641158424,3641158431,IT -3641158432,3641158519,DE -3641158520,3641158527,ES -3641158528,3641159679,DE -3641159680,3641159687,ES -3641159688,3641159727,DE -3641159728,3641159743,ES -3641159744,3641159767,DE -3641159768,3641159775,ES -3641159776,3641180159,DE -3641180160,3641188351,GB -3641188352,3641192447,TJ -3641192448,3641196543,DE -3641196544,3641200639,SA -3641200640,3641204735,RU -3641204736,3641206015,NL -3641206016,3641206271,CN -3641206272,3641208831,NL -3641208832,3641212927,JO -3641212928,3641221119,NO -3641221120,3641229311,PL -3641229312,3641237503,CH -3641237504,3641241599,RU -3641241600,3641245695,GB -3641245696,3641249791,UA -3641249792,3641262079,DE -3641262080,3641266175,IT -3641266176,3641270271,RU -3641270272,3641278463,DE -3641278464,3641282559,IS -3641282560,3641286655,RU -3641286656,3641294847,PL -3641294848,3641298943,GB -3641298944,3641303039,SE -3641303040,3641307135,BG -3641307136,3641311231,LT -3641311232,3641315327,DE -3641315328,3641319423,DK -3641319424,3641323519,RU -3641323520,3641323775,US -3641323776,3641331711,DE -3641331712,3641335807,ES -3641335808,3641343999,SE -3641344000,3641345199,GB -3641345200,3641345215,IE -3641345216,3641349383,GB -3641349384,3641349391,DE -3641349392,3641349399,FR -3641349400,3641349407,CH -3641349408,3641349415,DK -3641349416,3641349423,NO -3641349424,3641349431,SE -3641349432,3641349439,NL -3641349440,3641349511,GB -3641349512,3641349519,DE -3641349520,3641349527,IT -3641349528,3641353151,GB -3641353152,3641353183,BD -3641353184,3641353215,NG -3641353216,3641353231,GB -3641353232,3641353247,IQ -3641353248,3641353343,GB -3641353344,3641353727,BD -3641353728,3641353759,NG -3641353760,3641353775,GB -3641353776,3641353807,NG -3641353808,3641353983,GB -3641353984,3641354239,AF -3641354240,3641354383,GB -3641354384,3641354479,IT -3641354480,3641354751,GB -3641354752,3641355263,NG -3641355264,3641355519,AO -3641355520,3641355775,GB -3641355776,3641356031,LB -3641356032,3641356111,GB -3641356112,3641356119,NG -3641356120,3641356191,GB -3641356192,3641356207,NG -3641356208,3641359359,GB -3641359360,3641359615,IQ -3641359616,3641360383,GB -3641360384,3641368575,RO -3641368576,3641372671,GB -3641372672,3641376767,BG -3641376768,3641380863,IT -3641380864,3641384959,IR -3641384960,3641389055,CH -3641389056,3641391807,DE -3641391808,3641391823,AT -3641391824,3641393151,DE -3641393152,3641397247,KZ -3641397248,3641401343,IT -3641401344,3641409535,ES -3641409536,3641417727,PL -3641417728,3641421823,GE -3641421824,3641425919,TJ -3641425920,3641430015,DE -3641430016,3641434111,CH -3641434112,3641442303,CZ -3641442304,3641446399,GB -3641446400,3641450495,ES -3641450496,3641454591,RU -3641454592,3641458687,SK -3641458688,3641462783,RU -3641462784,3641466879,UZ -3641466880,3641470975,RU -3641470976,3641475071,MD -3641475072,3641479167,IT -3641479168,3641483263,GB -3641483264,3641491455,IT -3641491456,3641493503,UA -3641493504,3641494015,RU -3641494016,3641495551,UA -3641495552,3641496063,RU -3641496064,3641499647,UA -3641499648,3641503743,SA -3641503744,3641507839,RU -3641507840,3641516031,NO -3641516032,3641520127,HU -3641520128,3641524223,FR -3641524224,3641528319,DE -3641528320,3641532415,ES -3641532416,3641536511,RO -3641536512,3641540607,ES -3641540608,3641548799,GB -3641548800,3641552895,DE -3641552896,3641556991,AT -3641556992,3641559103,DE -3641559104,3641559135,NL -3641559136,3641560959,DE -3641560960,3641561087,NL -3641561088,3641565183,RU -3641565184,3641573375,SE -3641573376,3641577471,NO -3641577472,3641581567,RU -3641581568,3641585663,ES -3641585664,3641589759,RU -3641589760,3641593855,CH -3641597952,3641602047,AZ -3641602048,3641606143,DE -3641606144,3641607695,GB -3641607696,3641607711,FR -3641607712,3641610239,GB -3641610240,3641618431,DE -3641618432,3641622527,GB -3641622528,3641626623,RU -3641626624,3641630719,HR -3641630720,3641634815,AT -3641634816,3641638911,RU -3641638912,3641643007,AT -3641643008,3641647103,RU -3641647104,3641651199,ES -3641651200,3641655295,RU -3641655296,3641659391,GB -3641659392,3641663487,FR -3641663488,3641667583,MT -3641667584,3641668863,GB -3641668864,3641670655,ZW -3641670656,3641670783,SO -3641670784,3641670791,NG -3641670792,3641670911,GB -3641670912,3641671679,LS -3641671680,3641679871,RU -3641679872,3641683967,GB -3641683968,3641688063,KZ -3641688064,3641692159,RU -3641692160,3641696255,IT -3641696256,3641700351,DE -3641700352,3641704447,SE -3641704448,3641708543,FR -3641708544,3641712639,RU -3641712640,3641713447,NL -3641713448,3641713639,BE -3641713640,3641716735,NL -3641716736,3641720831,GB -3641720832,3641729023,MK -3641729024,3641733119,DK -3641733120,3641737215,AT -3641737216,3641741311,RS -3641741312,3641745407,ES -3641745408,3641749503,DE -3641749504,3641753599,RU -3641753600,3641757695,SE -3641757696,3641761791,GB -3641761792,3641761795,CY -3641761796,3641761803,GR -3641761804,3641761807,CY -3641761808,3641761851,GR -3641761852,3641761855,CY -3641761856,3641761863,GR -3641761864,3641761867,CY -3641761868,3641761895,GR -3641761896,3641761899,CY -3641761900,3641761923,GR -3641761924,3641761927,CY -3641761928,3641761935,GR -3641761936,3641761939,CY -3641761940,3641761967,GR -3641761968,3641761971,CY -3641761972,3641762007,GR -3641762008,3641762011,CY -3641762012,3641762047,GR -3641762048,3641762571,CY -3641762572,3641762575,GR -3641762576,3641762647,CY -3641762648,3641762655,GR -3641762656,3641762703,CY -3641762704,3641762711,GR -3641762712,3641762755,CY -3641762756,3641762759,GR -3641762760,3641762907,CY -3641762908,3641762947,GR -3641762948,3641762951,CY -3641762952,3641762999,GR -3641763000,3641763003,CY -3641763004,3641763023,GR -3641763024,3641763035,CY -3641763036,3641763063,GR -3641763064,3641763335,CY -3641763336,3641763339,GR -3641763340,3641763427,CY -3641763428,3641763431,GR -3641763432,3641763439,CY -3641763440,3641763443,GR -3641763444,3641763451,CY -3641763452,3641763455,GR -3641763456,3641763475,CY -3641763476,3641763479,GR -3641763480,3641763511,CY -3641763512,3641763519,GR -3641763520,3641763582,CY -3641763583,3641763583,GR -3641763584,3641764231,CY -3641764232,3641764239,GR -3641764240,3641764279,CY -3641764280,3641764283,GR -3641764284,3641764287,CY -3641764288,3641764291,GR -3641764292,3641764303,CY -3641764304,3641764307,GR -3641764308,3641764319,CY -3641764320,3641764327,GR -3641764328,3641764607,CY -3641764608,3641764631,GR -3641764632,3641764635,CY -3641764636,3641764679,GR -3641764680,3641764683,CY -3641764684,3641764699,GR -3641764700,3641764703,CY -3641764704,3641764711,GR -3641764712,3641764715,CY -3641764716,3641764775,GR -3641764776,3641764783,CY -3641764784,3641764847,GR -3641764848,3641764856,CY -3641764857,3641764863,GR -3641764864,3641764875,CY -3641764876,3641764927,GR -3641764928,3641764931,CY -3641764932,3641764943,GR -3641764944,3641764951,CY -3641764952,3641764963,GR -3641764964,3641764967,CY -3641764968,3641764975,GR -3641764976,3641764979,CY -3641764980,3641765023,GR -3641765024,3641765031,CY -3641765032,3641765083,GR -3641765084,3641765091,CY -3641765092,3641765119,GR -3641765120,3641765631,CY -3641765632,3641765887,GR -3641765888,3641769983,ES -3641769984,3641774079,NO -3641774080,3641778175,DE -3641778176,3641782271,PL -3641782272,3641784079,GB -3641784080,3641786367,BG -3641786368,3641790463,SE -3641790464,3641794559,LT -3641794560,3641796607,CS -3641796608,3641798655,RS -3641802752,3641806847,NL -3641806848,3641807871,TR -3641807872,3641808895,NL -3641808896,3641809663,TR -3641809664,3641809919,NL -3641809920,3641810315,TR -3641810316,3641810431,CY -3641810432,3641810439,NL -3641810440,3641810447,US -3641810448,3641810463,NL -3641810464,3641810479,US -3641810480,3641810559,TR -3641810560,3641810623,US -3641810624,3641810631,TR -3641810632,3641810642,US -3641810643,3641810687,TR -3641810688,3641810943,CY -3641810944,3641819135,RU -3641819136,3641823231,DE -3641823232,3641827327,NO -3641827328,3641835519,BH -3641835520,3641839615,IT -3641839616,3641843711,GB -3641843712,3641847807,ES -3641847808,3641851903,RU -3641851904,3641855999,NL -3641856000,3641860095,GB -3641860096,3641868287,IT -3641868288,3641876479,RU -3641876480,3641880575,ES -3641880576,3641881447,DE -3641881448,3641881455,CH -3641881456,3641881567,DE -3641881568,3641881583,CH -3641881584,3641884671,DE -3641884672,3641888767,NO -3641888768,3641892863,IT -3641892864,3641896959,ES -3641896960,3641901055,BG -3641901056,3641905151,RO -3641905152,3641909247,NL -3641909248,3641913343,AT -3641913344,3641917439,FR -3641917440,3641925631,GR -3641925632,3641933823,RU -3641933824,3641937919,GB -3641937920,3641942015,IT -3641942016,3641950207,DE -3641950208,3641954303,FR -3641954304,3641957887,MD -3641957888,3641957951,GB -3641957952,3641958399,MD -3641958400,3641960699,BE -3641960700,3641960703,NL -3641960704,3641961727,BE -3641961728,3641961743,NL -3641961744,3641961791,BE -3641961792,3641961799,US -3641961800,3641962495,BE -3641962496,3641966591,GB -3641966592,3641970687,IT -3641970688,3641971759,GB -3641971760,3641971775,BG -3641971776,3641978879,GB -3641978880,3641982975,DK -3641982976,3641991167,RU -3641991168,3641995263,SE -3641995264,3641999359,DE -3641999360,3642003455,HU -3642003456,3642007551,DE -3642007552,3642015743,UA -3642015744,3642019839,CH -3642019840,3642023935,RU -3642028032,3642028288,GB -3642028289,3642028295,NG -3642028296,3642028303,GB -3642028304,3642028319,NG -3642028320,3642028327,AO -3642028328,3642028503,NG -3642028504,3642028511,GH -3642028512,3642028519,SO -3642028520,3642028543,CG -3642028544,3642028599,NG -3642028600,3642028607,GB -3642028608,3642028671,NG -3642028672,3642028703,GB -3642028704,3642028735,NG -3642028736,3642028767,GH -3642028768,3642028815,GB -3642028816,3642028823,GH -3642028824,3642028863,NG -3642028864,3642028959,GB -3642028960,3642028991,NG -3642028992,3642029051,GB -3642029052,3642029055,SO -3642029056,3642029183,GB -3642029184,3642029199,SA -3642029200,3642029215,GB -3642029216,3642029247,CD -3642029248,3642029407,GB -3642029408,3642029439,SO -3642029440,3642029567,GB -3642029568,3642030623,NG -3642030624,3642030631,CY -3642030632,3642030847,NG -3642030848,3642031519,GB -3642031520,3642031551,UG -3642031552,3642032127,GB -3642032128,3642036223,PS -3642036224,3642040319,RU -3642040320,3642048511,BY -3642048512,3642053439,IL -3642053440,3642053631,TZ -3642053632,3642055935,IL -3642055936,3642056703,KE -3642056704,3642060799,RU -3642064896,3642068991,SE -3642068992,3642073087,NL -3642073088,3642077183,LV -3642077184,3642081279,BE -3642081280,3642085375,NL -3642085376,3642089471,RU -3642089472,3642093567,SE -3642093568,3642097663,NL -3642097664,3642101759,GB -3642101760,3642105855,NO -3642109952,3642114047,BE -3642114048,3642118143,NL -3642118144,3642122239,GB -3642122240,3642126335,ES -3642126336,3642130431,IL -3642130432,3642134527,DE -3642134528,3642138623,GB -3642138624,3642142719,RU -3642142720,3642146815,MT -3642146816,3642150911,DE -3642150912,3642163199,IT -3642163200,3642167295,NL -3642167296,3642171391,RU -3642171392,3642175487,JO -3642175488,3642179583,DE -3642179584,3642187775,RU -3642187776,3642190591,DK -3642190592,3642190623,NO -3642190624,3642191423,DK -3642191424,3642191455,ES -3642191456,3642191487,TR -3642191488,3642191519,CH -3642191520,3642191551,CY -3642191552,3642191583,ES -3642191584,3642191615,US -3642191616,3642191647,ZA -3642191648,3642191679,AU -3642191680,3642191711,TH -3642191712,3642191743,BR -3642191744,3642191871,DK -3642191872,3642195967,BY -3642195968,3642204159,RU -3642204160,3642208255,GB -3642208256,3642212351,RU -3642212352,3642216447,BA -3642216448,3642220543,HU -3642220544,3642224639,GB -3642224640,3642228735,SK -3642228736,3642232831,DE -3642232832,3642233855,CS -3642233856,3642234879,RS -3642234880,3642234943,CS -3642234944,3642234999,RS -3642235000,3642235007,CS -3642235008,3642235903,RS -3642235904,3642236927,CS -3642236928,3642241023,CH -3642241024,3642245119,DE -3642245120,3642249215,LV -3642249216,3642253311,FR -3642253312,3642257407,FI -3642257408,3642261503,RU -3642261504,3642265599,GB -3642265600,3642265855,IR -3642265856,3642266111,AE -3642266112,3642269695,IR -3642269696,3642273791,UA -3642273792,3642277887,RU -3642277888,3642290175,DE -3642290176,3642294271,AL -3642294272,3642298367,GB -3642298368,3642302463,AZ -3642302464,3642306559,SE -3642306560,3642310655,IR -3642310656,3642314751,DE -3642314752,3642318847,RU -3642318848,3642322943,FI -3642322944,3642327039,AT -3642327040,3642331135,DE -3642331136,3642335231,RU -3642335232,3642339327,UA -3642339328,3642343423,FR -3642343424,3642347519,UA -3642347520,3642355711,RU -3642355712,3642359807,SE -3642359808,3642363903,RU -3642368000,3642376191,CH -3642376192,3642379519,CS -3642379520,3642379711,CS -3642379712,3642380031,CS -3642380032,3642380063,CS -3642380064,3642380095,RS -3642380096,3642380287,CS -3642380288,3642384383,IT -3642384384,3642388479,NO -3642388480,3642392575,NL -3642392576,3642396671,AM -3642396672,3642404863,MD -3642404864,3642408959,RU -3642408960,3642413055,FR -3642413056,3642414591,CS -3642414592,3642415627,GB -3642415628,3642415635,MT -3642415636,3642415651,GB -3642415652,3642415655,MT -3642415656,3642417151,GB -3642417152,3642421247,IT -3642425344,3642429439,DE -3642429440,3642433535,GB -3642433536,3642435583,CY -3642435584,3642436607,RU -3642436608,3642437119,GR -3642437120,3642437631,GB -3642437632,3642439423,CY -3642439424,3642439459,RU -3642439460,3642439463,CY -3642439464,3642439471,RU -3642439472,3642439483,CY -3642439484,3642439495,RU -3642439496,3642439551,CY -3642439552,3642439567,RU -3642439568,3642440447,CY -3642440448,3642440451,RU -3642440452,3642441727,CY -3642441728,3642449919,IT -3642449920,3642454015,CH -3642454016,3642458111,IT -3642462208,3642466303,UA -3642466304,3642474495,SE -3642474496,3642478591,DE -3642478592,3642482687,HU -3642482688,3642486783,NL -3642486784,3642499071,GB -3642499072,3642503167,SE -3642503168,3642507263,LV -3642507264,3642511359,FR -3642511360,3642515455,RU -3642515456,3642519551,DE -3642519552,3642523647,IT -3642523648,3642527743,GB -3642527744,3642531839,PL -3642531840,3642532351,DK -3642532352,3642532607,GB -3642532608,3642532863,US -3642532864,3642535935,DK -3642535936,3642540031,IS -3642540032,3642544127,SE -3642544128,3642552319,RU -3642552320,3642552639,NL -3642552640,3642552655,EE -3642552656,3642552663,HU -3642552664,3642552671,NL -3642552672,3642552687,SE -3642552688,3642553103,NL -3642553104,3642553119,LV -3642553120,3642553151,NL -3642553152,3642553289,LV -3642553290,3642553291,NL -3642553292,3642553326,LV -3642553327,3642553343,NL -3642553344,3642553363,RU -3642553364,3642553375,NL -3642553376,3642553377,RU -3642553378,3642553379,NL -3642553380,3642553383,RU -3642553384,3642553387,NL -3642553388,3642553411,RU -3642553412,3642553415,NL -3642553416,3642553427,RU -3642553428,3642553431,NL -3642553432,3642553455,RU -3642553456,3642553467,NL -3642553468,3642553519,RU -3642553520,3642553523,NL -3642553524,3642553535,RU -3642553536,3642553543,DE -3642553544,3642553587,RU -3642553588,3642554111,NL -3642554112,3642554151,RU -3642554152,3642554175,NL -3642554176,3642554193,RU -3642554194,3642554195,NL -3642554196,3642554197,RU -3642554198,3642554199,NL -3642554200,3642554203,RU -3642554204,3642554205,NL -3642554206,3642554223,RU -3642554224,3642554239,NL -3642554240,3642554271,RU -3642554272,3642554367,NL -3642554368,3642554623,LT -3642554624,3642554631,NL -3642554632,3642554675,LV -3642554676,3642554679,EE -3642554680,3642554783,LV -3642554784,3642554799,NL -3642554800,3642554807,EE -3642554808,3642554879,LV -3642554880,3642554911,DE -3642554912,3642554919,NL -3642554920,3642554927,DE -3642554928,3642554931,NL -3642554932,3642554951,UA -3642554952,3642554955,NL -3642554956,3642554959,GE -3642554960,3642554963,DE -3642554964,3642554967,UA -3642554968,3642554971,LV -3642554972,3642554975,DE -3642554976,3642554977,CZ -3642554978,3642554979,FR -3642554980,3642554983,BE -3642554984,3642554987,DE -3642554988,3642554989,FR -3642554990,3642554991,UA -3642554992,3642555011,DE -3642555012,3642555017,NL -3642555018,3642555023,DE -3642555024,3642555039,NL -3642555040,3642555045,DE -3642555046,3642555047,NL -3642555048,3642555051,DE -3642555052,3642555055,UA -3642555056,3642555135,NL -3642555136,3642555223,LT -3642555224,3642555227,LV -3642555228,3642555391,LT -3642555392,3642555475,PL -3642555476,3642555647,NL -3642555648,3642555683,SE -3642555684,3642555687,NL -3642555688,3642555695,SE -3642555696,3642555703,LV -3642555704,3642555707,FI -3642555708,3642555711,SE -3642555712,3642555727,RU -3642555728,3642555735,SE -3642555736,3642555743,GB -3642555744,3642555759,SE -3642555760,3642555767,GB -3642555768,3642555935,NL -3642555936,3642555983,UA -3642555984,3642556159,NL -3642556160,3642556415,LV -3642556416,3642560511,CZ -3642560512,3642564607,KG -3642564608,3642568703,DE -3642568704,3642572799,RU -3642572800,3642576895,IT -3642576896,3642580991,RU -3642580992,3642585087,ES -3642585088,3642585855,RU -3642585856,3642586111,US -3642586112,3642589183,UZ -3642593280,3642597375,AT -3642597376,3642601471,IT -3642601472,3642605567,RU -3642605568,3642609663,GB -3642613760,3642615583,FI -3642615584,3642615615,AX -3642615616,3642617855,FI -3642617856,3642621951,JO -3642621952,3642626047,IT -3642626048,3642630143,BE -3642630144,3642634239,DK -3642634240,3642638335,DE -3642638336,3642642431,CZ -3642642432,3642646527,DK -3642646528,3642650623,MT -3642650624,3642654719,GB -3642654720,3642662911,PL -3642662912,3642667007,GR -3642667008,3642671103,FI -3642675200,3642679295,BG -3642679296,3642683391,DE -3642683392,3642687487,RU -3642687488,3642691583,GB -3642691584,3642695679,DE -3642695680,3642699775,SK -3642699776,3642703871,CZ -3642703872,3642707967,LU -3642707968,3642712063,DE -3642712064,3642716159,NO -3642716160,3642720255,IT -3642720256,3642728447,GB -3642728448,3642736639,SE -3642736640,3642740735,CZ -3642740736,3642744831,DE -3642744832,3642753023,TR -3642753024,3643801599,GB -3643801600,3644063743,DE -3644325888,3644588031,IT -3644588032,3644719103,DK -3644719104,3644809215,NL -3644809216,3644817407,AM -3644817408,3644850175,NL -3644850176,3644854271,CZ -3644854272,3644858367,AZ -3644858368,3644862463,GB -3644862464,3644866559,FR -3644866560,3644871167,DE -3644871168,3644871423,AT -3644871424,3644874751,DE -3644878848,3644882943,GB -3644882944,3644887039,RU -3644887040,3644891135,IR -3644891136,3644895231,DE -3644895232,3644899327,FI -3644899328,3644903423,IT -3644903424,3644907519,TR -3644907520,3644908983,GB -3644908984,3644908991,IT -3644908992,3644909855,GB -3644909856,3644909859,IS -3644909860,3644911615,GB -3644911616,3644915711,BE -3644915712,3644919807,RU -3644919808,3644923903,DE -3644923904,3644924927,IL -3644924928,3644925055,US -3644925056,3644925119,CI -3644925120,3644927999,US -3644928000,3644932095,GI -3644932096,3644936191,IT -3644936192,3644940287,RU -3644940288,3644948479,HU -3644948480,3644952575,DE -3644952576,3644960767,GB -3644960768,3644961311,DE -3644961312,3644961343,TR -3644961344,3644961791,DE -3644961792,3644964351,TR -3644964352,3644964383,DE -3644964384,3644964863,TR -3644964864,3644965479,RS -3644965480,3644968959,CS -3644968960,3644973055,RU -3644973056,3644977151,NO -3644977152,3644981247,UA -3644981248,3644985343,BE -3644985344,3644989439,RU -3644989440,3644997631,DE -3644997632,3645005823,RU -3645005824,3645009919,UA -3645009920,3645014015,FR -3645014016,3645018111,DE -3645018112,3645022207,RU -3645022208,3645030143,CZ -3645030144,3645030399,SK -3645030400,3645038591,IR -3645038592,3645046783,PS -3645046784,3645050879,RU -3645050880,3645054975,SK -3645054976,3645059071,DE -3645059072,3645063167,GB -3645063168,3645067263,UA -3645067264,3645071359,SE -3645071360,3645075455,DE -3645075456,3645079551,RU -3645079552,3645083647,IE -3645087744,3645091839,ES -3645091840,3645095935,RU -3645095936,3645104127,PL -3645104128,3645112319,NL -3645112320,3645116415,DE -3645116416,3645120511,GB -3645120512,3645124607,SE -3645124608,3645128703,NL -3645128704,3645132799,GB -3645132800,3645136895,HR -3645136896,3645145087,NO -3645145088,3645149183,GB -3645149184,3645149887,DE -3645149888,3645149951,HK -3645149952,3645150559,DE -3645150560,3645150591,HK -3645150592,3645150615,DE -3645150616,3645150623,US -3645150624,3645150975,DE -3645150976,3645151231,US -3645151232,3645151487,DE -3645151488,3645151615,MT -3645151616,3645152767,DE -3645152768,3645152799,HK -3645152800,3645161471,DE -3645161472,3645165567,AT -3645165568,3645169663,TR -3645169664,3645173759,CH -3645173760,3645177855,GB -3645177856,3645181951,GR -3645181952,3645183327,FR -3645183328,3645183359,GB -3645183360,3645183615,FR -3645183616,3645183679,SA -3645183680,3645183743,FR -3645183744,3645183871,GB -3645183872,3645183999,FR -3645184000,3645184255,US -3645184256,3645184256,FR -3645184257,3645184383,GB -3645184384,3645186047,FR -3645186048,3645190143,GB -3645190144,3645194239,FI -3645194240,3645202431,DE -3645202432,3645206527,CZ -3645206528,3645210623,LV -3645210624,3645214719,RU -3645214720,3645218815,NL -3645218816,3645222911,DE -3645222912,3645227007,KW -3645227008,3645235199,RU -3645235200,3645243391,DE -3645243392,3645247487,ES -3645247488,3645251583,RU -3645251584,3645255679,SE -3645255680,3645259775,PL -3645259776,3645263871,PT -3645263872,3645267967,FR -3645267968,3645276159,RU -3645276160,3645280255,DE -3645280256,3645281279,IT -3645281280,3645281535,DE -3645281536,3645281791,IT -3645281792,3645281919,HU -3645281920,3645282047,IT -3645282048,3645282303,DE -3645282304,3645284351,IT -3645284352,3645288447,DE -3645288448,3645292543,FR -3645292544,3645295103,DE -3645295104,3645295359,NL -3645295360,3645296639,DE -3645296640,3645300735,NL -3645300736,3645304831,BE -3645304832,3645308927,ES -3645308928,3645313023,DK -3645313024,3645317119,ES -3645317120,3645321215,EE -3645321216,3645325311,BA -3645325312,3645329407,IT -3645329408,3645333503,CH -3645333504,3645334031,DE -3645335040,3645336927,DE -3645336936,3645336991,DE -3645337008,3645337023,DE -3645337088,3645337599,DE -3645337600,3645337631,FR -3645337632,3645337663,BE -3645337664,3645338399,FR -3645338400,3645338431,BE -3645338432,3645339295,FR -3645339296,3645339359,BE -3645339360,3645339391,FR -3645339392,3645339647,NL -3645339648,3645339903,FR -3645339904,3645339967,BE -3645339968,3645340415,FR -3645340416,3645340447,NL -3645340448,3645340543,FR -3645340544,3645340927,BE -3645340928,3645341183,FR -3645341184,3645341439,BE -3645341440,3645341695,FR -3645341696,3645345791,RU -3645345792,3645349887,FI -3645349888,3645353983,RU -3645353984,3645358079,MT -3645358080,3645362175,ES -3645362176,3645366271,FR -3645366272,3645370367,RU -3645370368,3645374463,CH -3645374464,3645378559,RU -3645378560,3645382655,SE -3645382656,3645386751,IT -3645386752,3645390847,SE -3645390848,3645399039,SI -3645399040,3645403135,IT -3645403136,3645404671,DE -3645404672,3645405183,CH -3645405184,3645408255,DE -3645408256,3645408319,CH -3645408320,3645411327,DE -3645411328,3645415423,RU -3645415424,3645423615,GB -3645423616,3645431807,DE -3645431808,3645435903,BE -3645435904,3645439999,GB -3645440000,3645444095,SE -3645444096,3645448191,SK -3645448192,3645456383,DE -3645456384,3645456639,GB -3645456640,3645456895,DE -3645456896,3645457407,GB -3645457408,3645460479,DE -3645464576,3645468671,SE -3645468672,3645472767,RU -3645472768,3645476607,UA -3645476608,3645476863,US -3645476864,3645480959,DE -3645480960,3645485055,RO -3645485056,3645489151,MT -3645489152,3645493247,RU -3645493248,3645501439,IT -3645505536,3645506559,DE -3645506560,3645506815,AT -3645506816,3645507583,DE -3645507584,3645507587,AT -3645507588,3645507591,DE -3645507592,3645507595,AT -3645507596,3645507599,DE -3645507600,3645507607,AT -3645507608,3645509631,DE -3645509632,3645513727,GB -3645513728,3645517823,RU -3645517824,3645521919,IE -3645521920,3645526015,PL -3645526016,3645530111,SE -3645530112,3645534207,FR -3645534208,3645544959,RU -3645544960,3645544991,KZ -3645544992,3645545087,RU -3645545088,3645545215,TJ -3645545216,3645550591,RU -3645550592,3645558783,DE -3645558784,3645562879,DK -3645562880,3645563135,BW -3645563136,3645564671,LS -3645564672,3645564927,PK -3645564928,3645565055,SO -3645565056,3645565439,GB -3645565440,3645565951,NG -3645565952,3645566975,ZW -3645566976,3645571071,RU -3645571072,3645575167,IE -3645575168,3645579263,CH -3645579264,3645583359,NL -3645583360,3645587455,PL -3645587456,3645595647,SK -3645595648,3645597751,SE -3645597752,3645597759,GB -3645597760,3645601471,SE -3645601472,3645601487,NO -3645601488,3645601759,SE -3645601760,3645601775,FR -3645601776,3645603839,SE -3645603840,3645612031,BG -3645612032,3645616127,GB -3645616128,3645620223,AT -3645620224,3645624319,BA -3645624320,3645628415,CZ -3645628416,3645636607,ES -3645640704,3645644799,NL -3645644800,3645648895,RU -3645648896,3645652991,SE -3645652992,3645657087,KZ -3645657088,3645661183,SE -3645661184,3645665279,DE -3645665280,3645669375,PL -3645669376,3645669631,ES -3645669632,3645669855,FR -3645669856,3645670399,ES -3645670400,3645670911,FR -3645670912,3645673471,ES -3645673472,3645673535,FR -3645673536,3645675263,ES -3645675264,3645675519,PT -3645675520,3645675759,ES -3645675760,3645675775,FR -3645675776,3645676015,ES -3645676016,3645676031,FR -3645676032,3645677567,ES -3645677568,3645681663,AT -3645681664,3645685759,RU -3645685760,3645689855,UA -3645689856,3645693951,IT -3645693952,3645698047,BE -3645698048,3645702143,ES -3645702144,3645706239,GB -3645706240,3645710335,LT -3645710336,3645714431,NO -3645714432,3645718527,RU -3645722624,3645726719,IT -3645726720,3645734911,RU -3645734912,3645743103,NL -3645743104,3645747199,CZ -3645747200,3645751295,GB -3645751296,3645755391,FI -3645755392,3645759487,UA -3645759488,3645763583,FR -3645763584,3645763585,DE -3645763586,3645763587,IT -3645763588,3645763588,DE -3645763589,3645763589,IE -3645763590,3645763590,ES -3645763591,3645763591,IT -3645763592,3645763593,DE -3645763594,3645763594,CH -3645763595,3645763595,IT -3645763596,3645763597,DE -3645763598,3645763598,NL -3645763599,3645763600,DE -3645763601,3645763601,GR -3645763602,3645763603,FR -3645763604,3645763609,DE -3645763610,3645763610,PL -3645763611,3645763612,DE -3645763613,3645763613,HU -3645763614,3645763614,CH -3645763615,3645763615,ES -3645763616,3645763616,FR -3645763617,3645763617,DE -3645763618,3645763618,ES -3645763619,3645763619,DE -3645763620,3645763620,FR -3645763621,3645763621,CH -3645763622,3645763622,GB -3645763623,3645763623,FR -3645763624,3645763624,DE -3645763625,3645763625,FR -3645763626,3645763626,NL -3645763627,3645763627,AT -3645763628,3645763629,DE -3645763630,3645763631,NL -3645763632,3645763633,GB -3645763634,3645763634,NL -3645763635,3645763635,DE -3645763636,3645763636,AT -3645763637,3645763637,FR -3645763638,3645763638,NL -3645763639,3645763639,DE -3645763640,3645763640,HU -3645763641,3645763641,IT -3645763642,3645763642,GB -3645763643,3645763644,DE -3645763645,3645763645,NL -3645763646,3645763647,ES -3645763648,3645763648,DE -3645763649,3645763649,IL -3645763650,3645763650,DE -3645763651,3645763651,NL -3645763652,3645763653,DE -3645763654,3645763654,ES -3645763655,3645763660,DE -3645763661,3645763662,FR -3645763663,3645763663,HU -3645763664,3645763665,DE -3645763666,3645763666,NL -3645763667,3645763667,DE -3645763668,3645763668,IT -3645763669,3645763669,DK -3645763670,3645763670,DE -3645763671,3645763671,FR -3645763672,3645763672,DE -3645763673,3645763673,BE -3645763674,3645763674,DE -3645763675,3645763675,NL -3645763676,3645763676,DE -3645763677,3645763678,HU -3645763679,3645763679,IT -3645763680,3645763680,DE -3645763681,3645763681,CH -3645763682,3645763682,DE -3645763683,3645763683,NO -3645763684,3645763684,CH -3645763685,3645763685,NL -3645763686,3645763686,DE -3645763687,3645763687,ES -3645763688,3645763690,NL -3645763691,3645763691,CH -3645763692,3645763692,DE -3645763693,3645763693,NL -3645763694,3645763694,IE -3645763695,3645763696,DE -3645763697,3645763697,NL -3645763698,3645763698,LU -3645763699,3645763699,BE -3645763700,3645763700,NL -3645763701,3645763701,DE -3645763702,3645763702,IT -3645763703,3645763703,CH -3645763704,3645763705,DE -3645763706,3645763706,GB -3645763707,3645763707,NL -3645763708,3645763708,GR -3645763709,3645763709,NL -3645763710,3645763710,GB -3645763711,3645763715,NL -3645763716,3645763716,DE -3645763717,3645763717,NL -3645763718,3645763718,DE -3645763719,3645763719,NL -3645763720,3645763720,IT -3645763721,3645763721,DE -3645763722,3645763722,GR -3645763723,3645763723,NL -3645763724,3645763726,IT -3645763727,3645763727,NL -3645763728,3645763728,GR -3645763729,3645763730,IT -3645763731,3645763732,DE -3645763733,3645763733,FR -3645763734,3645763734,DE -3645763735,3645763735,GB -3645763736,3645763736,FR -3645763737,3645763737,DE -3645763738,3645763738,CH -3645763739,3645763741,ES -3645763742,3645763742,DE -3645763743,3645763743,IT -3645763744,3645763744,DE -3645763745,3645763745,FR -3645763746,3645763746,DE -3645763747,3645763752,NL -3645763753,3645763753,ES -3645763754,3645763755,NL -3645763756,3645763756,DE -3645763757,3645763757,BE -3645763758,3645763758,FR -3645763759,3645763760,NL -3645763761,3645763761,SE -3645763762,3645763762,ES -3645763763,3645763764,NL -3645763765,3645763765,DE -3645763766,3645763766,IL -3645763767,3645763768,NL -3645763769,3645763769,FR -3645763770,3645763770,NL -3645763771,3645763771,GB -3645763772,3645763772,CH -3645763773,3645763773,DE -3645763774,3645763774,NL -3645763775,3645763775,DE -3645763776,3645763776,NL -3645763777,3645763777,BE -3645763778,3645763779,DE -3645763780,3645763780,CH -3645763781,3645763781,DE -3645763782,3645763782,NL -3645763783,3645763783,DE -3645763784,3645763784,NL -3645763785,3645763785,DE -3645763786,3645763786,CH -3645763787,3645763787,NL -3645763788,3645763788,IE -3645763789,3645763789,AT -3645763790,3645763790,ES -3645763791,3645763791,IT -3645763792,3645763792,FR -3645763793,3645763793,ES -3645763794,3645763794,DE -3645763795,3645763795,IT -3645763796,3645763796,GB -3645763797,3645763797,DE -3645763798,3645763798,FR -3645763799,3645763801,DE -3645763802,3645763802,ES -3645763803,3645763803,NL -3645763804,3645763806,DE -3645763807,3645763807,IT -3645763808,3645763808,DE -3645763809,3645763809,IT -3645763810,3645763810,NL -3645763811,3645763813,DE -3645763814,3645763814,IT -3645763815,3645763816,DE -3645763817,3645763817,GR -3645763818,3645763818,ES -3645763819,3645763822,DE -3645763823,3645763823,ES -3645763824,3645763825,DE -3645763826,3645763826,IT -3645763827,3645763827,ZA -3645763828,3645763841,DE -3645763842,3645763842,CH -3645763843,3645763845,DE -3645763846,3645763846,FR -3645763847,3645763847,IT -3645763848,3645763849,DE -3645763850,3645763850,IT -3645763851,3645763851,GB -3645763852,3645763852,DE -3645763853,3645763853,CH -3645763854,3645763855,NL -3645763856,3645763858,DE -3645763859,3645763859,DK -3645763860,3645763860,IT -3645763861,3645763861,BE -3645763862,3645763862,FR -3645763863,3645763864,ES -3645763865,3645763865,CH -3645763866,3645763866,DE -3645763867,3645763868,GB -3645763869,3645763869,DE -3645763870,3645763870,HU -3645763871,3645763874,DE -3645763875,3645763875,GB -3645763876,3645763876,PL -3645763877,3645763877,FR -3645763878,3645763879,DE -3645763880,3645763881,FR -3645763882,3645763882,DE -3645763883,3645763883,NL -3645763884,3645763884,IT -3645763885,3645763886,DE -3645763887,3645763887,FR -3645763888,3645763888,DE -3645763889,3645763889,GR -3645763890,3645763890,ES -3645763891,3645763894,DE -3645763895,3645763895,ES -3645763896,3645763896,DE -3645763897,3645763897,BE -3645763898,3645763898,NL -3645763899,3645763899,ES -3645763900,3645763900,NL -3645763901,3645763902,LU -3645763903,3645763903,DE -3645763904,3645763904,BE -3645763905,3645763905,CS -3645763906,3645763906,DE -3645763907,3645763908,IT -3645763909,3645763909,DE -3645763910,3645763910,ES -3645763911,3645763911,DE -3645763912,3645763912,IE -3645763913,3645763913,PT -3645763914,3645763914,DE -3645763915,3645763915,IL -3645763916,3645763916,BE -3645763917,3645763918,IT -3645763919,3645763919,GB -3645763920,3645763920,DE -3645763921,3645763921,CH -3645763922,3645763922,ES -3645763923,3645763923,GB -3645763924,3645763924,PL -3645763925,3645763926,DE -3645763927,3645763927,HU -3645763928,3645763928,FR -3645763929,3645763929,NL -3645763930,3645763930,ES -3645763931,3645763931,FR -3645763932,3645763932,DE -3645763933,3645763933,FR -3645763934,3645763934,IT -3645763935,3645763935,FR -3645763936,3645763936,DE -3645763937,3645763937,NL -3645763938,3645763938,ES -3645763939,3645763939,NL -3645763940,3645763941,DE -3645763942,3645763942,CH -3645763943,3645763943,ES -3645763944,3645763944,CH -3645763945,3645763945,DE -3645763946,3645763947,HU -3645763948,3645763949,DE -3645763950,3645763950,ES -3645763951,3645763951,CH -3645763952,3645763952,IT -3645763953,3645763953,TR -3645763954,3645763954,IT -3645763955,3645763955,FR -3645763956,3645763956,DE -3645763957,3645763957,GB -3645763958,3645763958,AT -3645763959,3645763959,DE -3645763960,3645763960,IT -3645763961,3645763961,DE -3645763962,3645763962,ES -3645763963,3645763964,DE -3645763965,3645763965,AT -3645763966,3645763966,DE -3645763967,3645763967,IT -3645763968,3645763968,DE -3645763969,3645763969,ES -3645763970,3645763970,IT -3645763971,3645763971,ES -3645763972,3645763972,IT -3645763973,3645763973,BE -3645763974,3645763974,GB -3645763975,3645763975,AT -3645763976,3645763976,IT -3645763977,3645763977,DE -3645763978,3645763978,NL -3645763979,3645763979,IT -3645763980,3645763981,DE -3645763982,3645763982,IT -3645763983,3645763984,FR -3645763985,3645763985,NL -3645763986,3645763986,DE -3645763987,3645763987,PL -3645763988,3645763988,CH -3645763989,3645763989,FR -3645763990,3645763991,DE -3645763992,3645763993,NL -3645763994,3645763994,IT -3645763995,3645763995,ES -3645763996,3645764000,DE -3645764001,3645764001,IT -3645764002,3645764007,DE -3645764008,3645764008,PL -3645764009,3645764010,FR -3645764011,3645764012,DE -3645764013,3645764013,HU -3645764014,3645764015,GB -3645764016,3645764016,IT -3645764017,3645764017,GB -3645764018,3645764018,ES -3645764019,3645764019,NL -3645764020,3645764020,IT -3645764021,3645764021,DE -3645764022,3645764022,ES -3645764023,3645764023,FR -3645764024,3645764026,ES -3645764027,3645764027,HU -3645764028,3645764028,DE -3645764029,3645764029,ES -3645764030,3645764030,DE -3645764031,3645764031,NL -3645764032,3645764032,FR -3645764033,3645764033,ES -3645764034,3645764034,DE -3645764035,3645764035,IT -3645764036,3645764037,ES -3645764038,3645764038,IT -3645764039,3645764039,HU -3645764040,3645764040,ES -3645764041,3645764041,DE -3645764042,3645764042,CH -3645764043,3645764043,DE -3645764044,3645764044,ES -3645764045,3645764045,AE -3645764046,3645764046,ES -3645764047,3645764047,DE -3645764048,3645764048,BE -3645764049,3645764049,ES -3645764050,3645764051,DE -3645764052,3645764052,FR -3645764053,3645764055,DE -3645764056,3645764056,BE -3645764057,3645764057,DE -3645764058,3645764058,TR -3645764059,3645764059,DE -3645764060,3645764060,FR -3645764061,3645764061,IT -3645764062,3645764062,SE -3645764063,3645764063,AT -3645764064,3645764064,SI -3645764065,3645764065,DE -3645764066,3645764066,IT -3645764067,3645764067,DE -3645764068,3645764068,IT -3645764069,3645764069,CH -3645764070,3645764070,GB -3645764071,3645764074,DE -3645764075,3645764075,SE -3645764076,3645764076,GR -3645764077,3645764078,DE -3645764079,3645764079,ES -3645764080,3645764080,DE -3645764081,3645764081,GB -3645764082,3645764084,DE -3645764085,3645764085,IE -3645764086,3645764086,IT -3645764087,3645764087,CH -3645764088,3645764093,DE -3645764094,3645764094,IT -3645764095,3645764097,DE -3645764098,3645764098,IT -3645764099,3645764099,DE -3645764100,3645764100,BE -3645764101,3645764101,DE -3645764102,3645764102,PL -3645764103,3645764103,SK -3645764104,3645764105,IT -3645764106,3645764106,NL -3645764107,3645764107,GR -3645764108,3645764108,PL -3645764109,3645764109,CH -3645764110,3645764110,DK -3645764111,3645764111,DE -3645764112,3645764112,IT -3645764113,3645764114,ES -3645764115,3645764115,GB -3645764116,3645764116,GR -3645764117,3645764117,DE -3645764118,3645764118,GB -3645764119,3645764119,CH -3645764120,3645764120,FR -3645764121,3645764121,IT -3645764122,3645764122,DE -3645764123,3645764123,PL -3645764124,3645764124,DE -3645764125,3645764125,NO -3645764126,3645764126,LU -3645764127,3645764127,GB -3645764128,3645764128,GR -3645764129,3645764129,HR -3645764130,3645764130,FR -3645764131,3645764131,DE -3645764132,3645764132,ES -3645764133,3645764133,CY -3645764134,3645764134,DE -3645764135,3645764135,IT -3645764136,3645764136,BE -3645764137,3645764137,DE -3645764138,3645764138,CH -3645764139,3645764139,PL -3645764140,3645764140,NL -3645764141,3645764141,ES -3645764142,3645764142,HU -3645764143,3645764145,DE -3645764146,3645764147,NL -3645764148,3645764148,DK -3645764149,3645764149,DE -3645764150,3645764150,ES -3645764151,3645764154,DE -3645764155,3645764155,ES -3645764156,3645764156,AT -3645764157,3645764158,DE -3645764159,3645764159,IT -3645764160,3645764160,BE -3645764161,3645764161,ES -3645764162,3645764162,DE -3645764163,3645764163,NL -3645764164,3645764164,DE -3645764165,3645764165,CH -3645764166,3645764166,HU -3645764167,3645764167,DE -3645764168,3645764168,ES -3645764169,3645764169,GR -3645764170,3645764170,IT -3645764171,3645764172,DE -3645764173,3645764173,IT -3645764174,3645764174,DE -3645764175,3645764175,PL -3645764176,3645764176,DE -3645764177,3645764177,GB -3645764178,3645764178,ES -3645764179,3645764179,GR -3645764180,3645764181,DE -3645764182,3645764182,FR -3645764183,3645764184,DE -3645764185,3645764185,IT -3645764186,3645764186,FR -3645764187,3645764187,BE -3645764188,3645764188,GB -3645764189,3645764189,FR -3645764190,3645764190,IT -3645764191,3645764191,GB -3645764192,3645764192,DE -3645764193,3645764194,ES -3645764195,3645764195,DE -3645764196,3645764196,IT -3645764197,3645764197,DE -3645764198,3645764198,GR -3645764199,3645764199,DE -3645764200,3645764200,IT -3645764201,3645764201,BE -3645764202,3645764202,IT -3645764203,3645764203,DE -3645764204,3645764204,ES -3645764205,3645764205,FR -3645764206,3645764206,DE -3645764207,3645764207,IT -3645764208,3645764208,NO -3645764209,3645764210,DE -3645764211,3645764211,FR -3645764212,3645764212,NL -3645764213,3645764213,GB -3645764214,3645764214,NL -3645764215,3645764216,DE -3645764217,3645764217,IT -3645764218,3645764218,CH -3645764219,3645764219,FR -3645764220,3645764220,NL -3645764221,3645764221,IT -3645764222,3645764222,BE -3645764223,3645764224,ES -3645764225,3645764226,GB -3645764227,3645764227,CH -3645764228,3645764228,FR -3645764229,3645764229,PL -3645764230,3645764230,NL -3645764231,3645764231,CH -3645764232,3645764232,DE -3645764233,3645764233,IT -3645764234,3645764234,DE -3645764235,3645764235,FR -3645764236,3645764236,IT -3645764237,3645764238,DE -3645764239,3645764240,ES -3645764241,3645764241,DE -3645764242,3645764242,AT -3645764243,3645764243,GR -3645764244,3645764244,FR -3645764245,3645764246,NL -3645764247,3645764247,IT -3645764248,3645764249,DE -3645764250,3645764250,GB -3645764251,3645764251,FR -3645764252,3645764253,ES -3645764254,3645764254,DE -3645764255,3645764255,CH -3645764256,3645764257,DE -3645764258,3645764258,NL -3645764259,3645764259,IT -3645764260,3645764260,DE -3645764261,3645764261,GB -3645764262,3645764262,BE -3645764263,3645764264,IT -3645764265,3645764265,TR -3645764266,3645764266,NL -3645764267,3645764268,DE -3645764269,3645764270,ES -3645764271,3645764271,IT -3645764272,3645764272,DE -3645764273,3645764273,IT -3645764274,3645764274,DE -3645764275,3645764275,FR -3645764276,3645764277,DE -3645764278,3645764278,NL -3645764279,3645764279,ES -3645764280,3645764280,IT -3645764281,3645764281,DE -3645764282,3645764282,NL -3645764283,3645764284,FR -3645764285,3645764285,IT -3645764286,3645764286,NL -3645764287,3645764287,BE -3645764288,3645764288,FR -3645764289,3645764289,NL -3645764290,3645764290,DE -3645764291,3645764291,NL -3645764292,3645764292,FR -3645764293,3645764294,IT -3645764295,3645764295,ES -3645764296,3645764297,DE -3645764298,3645764298,GR -3645764299,3645764299,NL -3645764300,3645764300,PL -3645764301,3645764301,GR -3645764302,3645764302,IT -3645764303,3645764303,DE -3645764304,3645764304,ES -3645764305,3645764305,GB -3645764306,3645764306,BM -3645764307,3645764307,NL -3645764308,3645764308,DE -3645764309,3645764309,CH -3645764310,3645764310,ZA -3645764311,3645764313,ES -3645764314,3645764315,DE -3645764316,3645764316,IT -3645764317,3645764317,ES -3645764318,3645764318,HU -3645764319,3645764319,FR -3645764320,3645764320,IT -3645764321,3645764321,DE -3645764322,3645764322,CH -3645764323,3645764323,DE -3645764324,3645764324,FR -3645764325,3645764325,DE -3645764326,3645764326,ES -3645764327,3645764327,DK -3645764328,3645764328,CH -3645764329,3645764329,ES -3645764330,3645764330,DE -3645764331,3645764331,RU -3645764332,3645764332,NL -3645764333,3645764333,GR -3645764334,3645764334,ES -3645764335,3645764335,DE -3645764336,3645764336,MY -3645764337,3645764337,HU -3645764338,3645764338,NL -3645764339,3645764340,DE -3645764341,3645764341,IE -3645764342,3645764342,IT -3645764343,3645764343,ES -3645764344,3645764345,DE -3645764346,3645764346,IT -3645764347,3645764347,IE -3645764348,3645764348,NL -3645764349,3645764349,BE -3645764350,3645764350,IT -3645764351,3645764356,DE -3645764357,3645764357,RU -3645764358,3645764358,FR -3645764359,3645764359,IT -3645764360,3645764360,DE -3645764361,3645764361,CH -3645764362,3645764362,GB -3645764363,3645764364,NL -3645764365,3645764365,BE -3645764366,3645764367,DE -3645764368,3645764368,IT -3645764369,3645764369,DE -3645764370,3645764370,GB -3645764371,3645764371,ES -3645764372,3645764373,FR -3645764374,3645764375,DE -3645764376,3645764377,NL -3645764378,3645764378,DE -3645764379,3645764380,GB -3645764381,3645764381,DE -3645764382,3645764382,NL -3645764383,3645764383,FR -3645764384,3645764384,AT -3645764385,3645764388,DE -3645764389,3645764389,NL -3645764390,3645764390,DE -3645764391,3645764391,NL -3645764392,3645764392,GR -3645764393,3645764393,DE -3645764394,3645764394,FR -3645764395,3645764396,NL -3645764397,3645764397,DE -3645764398,3645764398,NL -3645764399,3645764399,DE -3645764400,3645764401,NL -3645764402,3645764403,FR -3645764404,3645764406,NL -3645764407,3645764408,DE -3645764409,3645764409,FR -3645764410,3645764410,DE -3645764411,3645764411,FR -3645764412,3645764412,NL -3645764413,3645764413,FR -3645764414,3645764417,NL -3645764418,3645764418,DE -3645764419,3645764419,NL -3645764420,3645764420,GB -3645764421,3645764421,DE -3645764422,3645764422,IT -3645764423,3645764423,HU -3645764424,3645764424,DE -3645764425,3645764425,GB -3645764426,3645764433,DE -3645764434,3645764434,NL -3645764435,3645764435,AT -3645764436,3645764436,NL -3645764437,3645764437,FR -3645764438,3645764439,DE -3645764440,3645764440,CH -3645764441,3645764441,DE -3645764442,3645764442,IT -3645764443,3645764444,DE -3645764445,3645764445,GB -3645764446,3645764446,NL -3645764447,3645764456,DE -3645764457,3645764457,IT -3645764458,3645764458,AT -3645764459,3645764459,IT -3645764460,3645764462,DE -3645764463,3645764463,NL -3645764464,3645764464,BE -3645764465,3645764465,DE -3645764466,3645764466,GR -3645764467,3645764467,DE -3645764468,3645764468,IT -3645764469,3645764470,DE -3645764471,3645764471,IT -3645764472,3645764472,GR -3645764473,3645764473,NL -3645764474,3645764474,DE -3645764475,3645764475,GR -3645764476,3645764476,DE -3645764477,3645764477,NL -3645764478,3645764478,GB -3645764479,3645764479,DE -3645764480,3645764481,NL -3645764482,3645764482,DE -3645764483,3645764483,NL -3645764484,3645764484,FR -3645764485,3645764485,NL -3645764486,3645764486,IE -3645764487,3645764487,DE -3645764488,3645764490,NL -3645764491,3645764491,DE -3645764492,3645764492,NL -3645764493,3645764493,ES -3645764494,3645764494,FR -3645764495,3645764495,NL -3645764496,3645764496,DE -3645764497,3645764497,NL -3645764498,3645764498,FR -3645764499,3645764500,NL -3645764501,3645764501,DE -3645764502,3645764505,NL -3645764506,3645764506,DE -3645764507,3645764507,ES -3645764508,3645764508,IT -3645764509,3645764511,NL -3645764512,3645764512,DE -3645764513,3645764513,NL -3645764514,3645764514,ES -3645764515,3645764515,DE -3645764516,3645764516,NL -3645764517,3645764518,DE -3645764519,3645764522,NL -3645764523,3645764523,DE -3645764524,3645764531,NL -3645764532,3645764532,DE -3645764533,3645764535,NL -3645764536,3645764536,IT -3645764537,3645764539,NL -3645764540,3645764540,DE -3645764541,3645764541,IT -3645764542,3645764549,NL -3645764550,3645764550,DE -3645764551,3645764551,GR -3645764552,3645764553,DE -3645764554,3645764554,NL -3645764555,3645764555,DE -3645764556,3645764556,CH -3645764557,3645764557,NL -3645764558,3645764561,DE -3645764562,3645764562,FR -3645764563,3645764563,ES -3645764564,3645764565,NL -3645764566,3645764566,DE -3645764567,3645764568,NL -3645764569,3645764569,DE -3645764570,3645764570,MA -3645764571,3645765127,DE -3645765128,3645765131,GR -3645765132,3645765135,DE -3645765136,3645765139,BE -3645765140,3645765143,IT -3645765144,3645765147,DE -3645765148,3645765151,IT -3645765152,3645765155,BE -3645765156,3645765171,IT -3645765172,3645765175,NO -3645765176,3645765179,DE -3645765180,3645765183,FR -3645765184,3645765187,GR -3645765188,3645765195,DE -3645765196,3645765199,CH -3645765200,3645765207,GB -3645765208,3645765211,FR -3645765212,3645765219,ES -3645765220,3645765223,PL -3645765224,3645765227,BE -3645765228,3645765231,GB -3645765232,3645765235,IT -3645765236,3645765239,FR -3645765240,3645765243,GB -3645765244,3645765247,IT -3645765248,3645765251,ES -3645765252,3645765255,DE -3645765256,3645765259,GR -3645765260,3645765263,PL -3645765264,3645765267,IT -3645765268,3645765271,PL -3645765272,3645765275,IT -3645765276,3645765279,FR -3645765280,3645765283,GB -3645765284,3645765287,ES -3645765288,3645765291,IT -3645765292,3645765295,DE -3645765296,3645765299,ES -3645765300,3645765303,FR -3645765304,3645765311,IT -3645765312,3645765315,TR -3645765316,3645765319,IT -3645765320,3645765323,FR -3645765324,3645765331,ES -3645765332,3645765335,FR -3645765336,3645765339,IT -3645765340,3645765343,FR -3645765344,3645765347,PL -3645765348,3645765351,GR -3645765352,3645765355,IT -3645765356,3645765359,ES -3645765360,3645765363,FR -3645765364,3645765367,ES -3645765368,3645765371,IT -3645765372,3645765375,CH -3645765376,3645765379,DE -3645765380,3645765383,BM -3645765384,3645765387,NL -3645765388,3645765391,DE -3645765392,3645765403,ES -3645765404,3645765407,GR -3645765408,3645765411,DK -3645765412,3645765415,IT -3645765416,3645765419,FR -3645765420,3645765423,DE -3645765424,3645765427,IT -3645765428,3645765443,DE -3645765444,3645765447,FR -3645765448,3645765451,ES -3645765452,3645765455,FR -3645765456,3645765459,AT -3645765460,3645765463,FR -3645765464,3645765467,GB -3645765468,3645765471,DE -3645765472,3645765475,NL -3645765476,3645765487,DE -3645765488,3645765491,HU -3645765492,3645765495,DE -3645765496,3645765499,GB -3645765500,3645765503,NL -3645765504,3645765507,CH -3645765508,3645765511,IT -3645765512,3645765519,GB -3645765520,3645765523,FR -3645765524,3645765527,IT -3645765528,3645765535,FR -3645765536,3645765539,SE -3645765540,3645765543,IL -3645765544,3645765547,BE -3645765548,3645765555,DE -3645765556,3645765559,IT -3645765560,3645765563,IE -3645765564,3645765567,ES -3645765568,3645765571,FR -3645765572,3645765575,DE -3645765576,3645765579,IT -3645765580,3645765583,GB -3645765584,3645765591,DE -3645765592,3645765595,IE -3645765596,3645765611,DE -3645765612,3645765615,IT -3645765616,3645765619,GB -3645765620,3645765623,CH -3645765624,3645765627,FR -3645765628,3645765639,DE -3645765640,3645765643,DK -3645765644,3645765647,GB -3645765648,3645765651,NL -3645765652,3645765667,DE -3645765668,3645765675,FR -3645765676,3645765679,DE -3645765680,3645765683,FR -3645765684,3645765687,NL -3645765688,3645765691,FR -3645765692,3645765695,CH -3645765696,3645765703,IT -3645765704,3645765707,DE -3645765708,3645765711,FR -3645765712,3645765715,DE -3645765716,3645765719,FR -3645765720,3645766401,DE -3645766402,3645766407,US -3645766408,3645767187,DE -3645767188,3645767188,US -3645767189,3645767193,DE -3645767194,3645767194,US -3645767195,3645767195,DE -3645767196,3645767196,US -3645767197,3645767197,DE -3645767198,3645767198,US -3645767199,3645767208,DE -3645767209,3645767209,US -3645767210,3645767222,DE -3645767223,3645767223,US -3645767224,3645767240,DE -3645767241,3645767241,US -3645767242,3645767426,DE -3645767427,3645767427,US -3645767428,3645767428,DE -3645767429,3645767429,US -3645767430,3645767431,DE -3645767432,3645767433,US -3645767434,3645767434,CA -3645767435,3645767448,US -3645767449,3645767449,DE -3645767450,3645767455,US -3645767456,3645767502,DE -3645767503,3645767503,US -3645767504,3645767679,DE -3645767680,3645771775,IE -3645771776,3645779967,SE -3645779968,3645784063,PS -3645788160,3645792255,GB -3645792256,3645796351,NO -3645796352,3645800447,CH -3645800448,3645804543,DE -3645804544,3645808639,GB -3645808640,3645812735,DE -3645812736,3645816831,RU -3645816832,3645825023,FI -3645825024,3645829119,GR -3645829120,3645833215,NL -3645833216,3645841407,RU -3645841408,3645845503,BG -3645845504,3645849599,RU -3645849600,3645857791,BG -3645857792,3645865983,GB -3645865984,3645870079,HU -3645870080,3645874175,PL -3645874176,3645878271,GB -3645878272,3645882367,DE -3645882368,3645886463,CH -3645886464,3645886991,DE -3645886992,3645886995,GB -3645886996,3645888127,DE -3645888128,3645888143,AT -3645888144,3645888159,DE -3645888160,3645888191,AT -3645888192,3645890559,DE -3645890560,3645894655,RU -3645894656,3645898751,NL -3645898752,3646501711,DE -3646501712,3646501719,US -3646501720,3646513103,DE -3646513104,3646513111,CA -3646513112,3646519103,DE -3646519104,3646519135,GB -3646519136,3646947327,DE -3646947328,3647209471,PL -3647209472,3647602687,NL -3647602688,3647658751,RU -3647658752,3647659007,GE -3647659008,3647665151,RU -3647665152,3647665407,GE -3647665408,3647722751,RU -3647722752,3647722879,BY -3647722880,3647733759,RU -3647733760,3647864831,FR -3647864832,3647864863,GB -3647864864,3647864879,DE -3647864880,3647864887,GB -3647864888,3647864935,DE -3647864936,3647864943,GB -3647864944,3647865071,DE -3647865072,3647865087,GB -3647865088,3647865127,DE -3647865128,3647865135,GB -3647865136,3647865143,DE -3647865144,3647865167,GB -3647865168,3647865175,DE -3647865176,3647865183,GB -3647865184,3647865191,DE -3647865192,3647865199,GB -3647865200,3647865223,DE -3647865224,3647865231,GB -3647865232,3647865271,DE -3647865272,3647865279,GB -3647865280,3647865295,DE -3647865296,3647865303,GB -3647865304,3647865311,DE -3647865312,3647865343,GB -3647865344,3647865351,DE -3647865352,3647865359,GB -3647865360,3647865391,DE -3647865392,3647865399,GB -3647865400,3647865551,DE -3647865552,3647865559,GB -3647865560,3647865567,DE -3647865568,3647865575,GB -3647865576,3647865631,DE -3647865632,3647865639,GB -3647865640,3647865687,DE -3647865688,3647865703,GB -3647865704,3647865735,DE -3647865736,3647865743,GB -3647865744,3647865783,DE -3647865784,3647865791,GB -3647865792,3647865895,DE -3647865896,3647865903,GB -3647865904,3647865935,DE -3647865936,3647865951,GB -3647865952,3647865959,DE -3647865960,3647865967,GB -3647865968,3647866039,DE -3647866040,3647866047,GB -3647866048,3647866079,DE -3647866080,3647866111,GB -3647866112,3647866151,DE -3647866152,3647866159,GB -3647866160,3647866175,DE -3647866176,3647866191,GB -3647866192,3647866279,DE -3647866280,3647866287,GB -3647866288,3647866311,DE -3647866312,3647866319,GB -3647866320,3647866327,DE -3647866328,3647866367,GB -3647866368,3647866391,DE -3647866392,3647866399,GB -3647866400,3647866463,DE -3647866464,3647866479,GB -3647866480,3647866535,DE -3647866536,3647866551,GB -3647866552,3647866559,DE -3647866560,3647866567,GB -3647866568,3647866591,DE -3647866592,3647866599,GB -3647866600,3647866663,DE -3647866664,3647866679,GB -3647866680,3647866727,DE -3647866728,3647866735,GB -3647866736,3647866743,DE -3647866744,3647866751,GB -3647866752,3647866759,DE -3647866760,3647866775,GB -3647866776,3647866815,DE -3647866816,3647866823,GB -3647866824,3647866863,DE -3647866864,3647866871,GB -3647866872,3647866975,DE -3647866976,3647866983,GB -3647866984,3647867127,DE -3647867128,3647867135,GB -3647867136,3647867167,DE -3647867168,3647867175,GB -3647867176,3647867199,DE -3647867200,3647867207,GB -3647867208,3647867255,DE -3647867256,3647867263,GB -3647867264,3647867343,DE -3647867344,3647867351,GB -3647867352,3647867383,DE -3647867384,3647867423,GB -3647867424,3647867463,DE -3647867464,3647867471,GB -3647867472,3647867599,DE -3647867600,3647867607,GB -3647867608,3647867679,DE -3647867680,3647867687,GB -3647867688,3647867695,DE -3647867696,3647867703,GB -3647867704,3647867727,DE -3647867728,3647867735,GB -3647867736,3647868063,DE -3647868064,3647868071,GB -3647868072,3647868135,DE -3647868136,3647868159,GB -3647868160,3647868231,DE -3647868232,3647868239,GB -3647868240,3647868263,DE -3647868264,3647868271,GB -3647868272,3647868287,DE -3647868288,3647868295,GB -3647868296,3647868367,DE -3647868368,3647868375,GB -3647868376,3647868383,DE -3647868384,3647868391,GB -3647868392,3647868399,DE -3647868400,3647868415,GB -3647868416,3647868431,DE -3647868432,3647868447,GB -3647868448,3647868479,DE -3647868480,3647868487,GB -3647868488,3647868639,DE -3647868640,3647868647,GB -3647868648,3647868663,DE -3647868664,3647868703,GB -3647868704,3647868711,DE -3647868712,3647868719,GB -3647868720,3647868727,DE -3647868728,3647868735,GB -3647868736,3647868831,DE -3647868832,3647868839,GB -3647868840,3647868887,DE -3647868888,3647868895,GB -3647868896,3647868959,DE -3647868960,3647868967,GB -3647868968,3647869071,DE -3647869072,3647869087,GB -3647869088,3647869279,DE -3647869280,3647869287,GB -3647869288,3647869375,DE -3647869376,3647869383,GB -3647869384,3647869407,DE -3647869408,3647869415,GB -3647869416,3647869423,DE -3647869424,3647869439,GB -3647869440,3647869455,DE -3647869456,3647869463,GB -3647869464,3647869567,DE -3647869568,3647869575,GB -3647869576,3647869583,DE -3647869584,3647869591,GB -3647869592,3647869775,DE -3647869776,3647869783,GB -3647869784,3647869791,DE -3647869792,3647869799,GB -3647869800,3647869863,DE -3647869864,3647869871,GB -3647869872,3647869991,DE -3647869992,3647869999,GB -3647870000,3647870127,DE -3647870128,3647870135,GB -3647870136,3647870191,DE -3647870192,3647870207,GB -3647870208,3647870447,DE -3647870448,3647870463,GB -3647870464,3647870503,DE -3647870504,3647870519,GB -3647870520,3647870535,DE -3647870536,3647870543,GB -3647870544,3647870583,DE -3647870584,3647870591,GB -3647870592,3647870639,DE -3647870640,3647870647,GB -3647870648,3647870719,DE -3647870720,3647870751,GB -3647870752,3647870815,DE -3647870816,3647870831,GB -3647870832,3647871039,DE -3647871040,3647871047,GB -3647871048,3647871055,DE -3647871056,3647871071,GB -3647871072,3647871103,DE -3647871104,3647871119,GB -3647871120,3647871127,DE -3647871128,3647871135,GB -3647871136,3647871151,DE -3647871152,3647871167,GB -3647871168,3647871191,DE -3647871192,3647871199,GB -3647871200,3647871215,DE -3647871216,3647871231,GB -3647871232,3647871287,DE -3647871288,3647871295,GB -3647871296,3647871303,DE -3647871304,3647871311,GB -3647871312,3647871351,DE -3647871352,3647871367,GB -3647871368,3647871407,DE -3647871408,3647871431,GB -3647871432,3647871447,DE -3647871448,3647871455,GB -3647871456,3647871471,DE -3647871472,3647871487,GB -3647871488,3647871631,DE -3647871632,3647871999,GB -3647872000,3647872239,DE -3647872240,3647872247,GB -3647872248,3647872311,DE -3647872312,3647872335,GB -3647872336,3647872359,DE -3647872360,3647872367,GB -3647872368,3647872407,DE -3647872408,3647872415,GB -3647872416,3647872471,DE -3647872472,3647872479,GB -3647872480,3647872495,DE -3647872496,3647872511,GB -3647872512,3647872679,DE -3647872680,3647872687,GB -3647872688,3647872759,DE -3647872760,3647872767,GB -3647872768,3647872783,DE -3647872784,3647872927,GB -3647872928,3647872959,DE -3647872960,3647872967,GB -3647872968,3647872975,DE -3647872976,3647872983,GB -3647872984,3647873039,DE -3647873040,3647873047,GB -3647873048,3647873075,DE -3647873076,3647873079,GB -3647873080,3647873095,DE -3647873096,3647873103,GB -3647873104,3647873279,DE -3647873280,3647873343,GB -3647873344,3647873535,DE -3647873536,3647873663,GB -3647873664,3647874958,DE -3647874959,3647874959,GB -3647874960,3647875039,DE -3647875040,3647875063,GB -3647875064,3647875095,DE -3647875096,3647875103,GB -3647875104,3647875111,DE -3647875112,3647875119,GB -3647875120,3647875127,DE -3647875128,3647875135,GB -3647875136,3647875175,DE -3647875176,3647875183,GB -3647875184,3647875199,DE -3647875200,3647875231,GB -3647875232,3647875239,DE -3647875240,3647875247,GB -3647875248,3647875327,DE -3647875328,3647875343,GB -3647875344,3647875367,DE -3647875368,3647875375,GB -3647875376,3647875379,DE -3647875380,3647875383,GB -3647875384,3647875455,DE -3647875456,3647875487,GB -3647875488,3647875527,DE -3647875528,3647875839,GB -3647875840,3647876095,DE -3647876096,3647876359,GB -3647876360,3647876375,DE -3647876376,3647876383,GB -3647876384,3647876439,DE -3647876440,3647876447,GB -3647876448,3647876455,DE -3647876456,3647876471,GB -3647876472,3647876639,DE -3647876640,3647876655,GB -3647876656,3647876663,DE -3647876664,3647876671,GB -3647876672,3647876703,DE -3647876704,3647876711,GB -3647876712,3647876767,DE -3647876768,3647876783,GB -3647876784,3647876839,DE -3647876840,3647876847,GB -3647876848,3647877447,DE -3647877448,3647877463,GB -3647877464,3647877495,DE -3647877496,3647877503,GB -3647877504,3647877567,DE -3647877568,3647877599,GB -3647877600,3647877615,DE -3647877616,3647877631,GB -3647877632,3647877635,DE -3647877636,3647877639,GB -3647877640,3647877643,DE -3647877644,3647877671,GB -3647877672,3647877675,DE -3647877676,3647877771,GB -3647877772,3647877775,DE -3647877776,3647877875,GB -3647877876,3647877879,DE -3647877880,3647877895,GB -3647877896,3647877927,DE -3647877928,3647877951,GB -3647877952,3647878103,DE -3647878104,3647878111,GB -3647878112,3647878447,DE -3647878448,3647878463,GB -3647878464,3647878487,DE -3647878488,3647878495,GB -3647878496,3647878503,DE -3647878504,3647878527,GB -3647878528,3647878591,DE -3647878592,3647878607,GB -3647878608,3647879231,DE -3647879232,3647879295,GB -3647879296,3647879695,DE -3647879696,3647879703,GB -3647879704,3647879735,DE -3647879736,3647879807,GB -3647879808,3647879839,DE -3647879840,3647879867,GB -3647879868,3647879879,DE -3647879880,3647879887,GB -3647879888,3647879895,DE -3647879896,3647879903,GB -3647879904,3647879935,DE -3647879936,3647879999,GB -3647880000,3647880047,DE -3647880048,3647880063,GB -3647880064,3647880183,DE -3647880184,3647880447,GB -3647880448,3647880959,DE -3647880960,3647880991,GB -3647880992,3647881015,DE -3647881016,3647881023,GB -3647881024,3647881135,DE -3647881136,3647881183,GB -3647881184,3647881199,DE -3647881200,3647881215,GB -3647881216,3647881243,DE -3647881244,3647881247,GB -3647881248,3647881271,DE -3647881272,3647881279,GB -3647881280,3647881375,DE -3647881376,3647881399,GB -3647881400,3647881471,DE -3647881472,3647881727,GB -3647881728,3647881991,DE -3647881992,3647881995,GB -3647881996,3647882343,DE -3647882344,3647882351,GB -3647882352,3647882359,DE -3647882360,3647882367,GB -3647882368,3647882415,DE -3647882416,3647882423,GB -3647882424,3647882431,DE -3647882432,3647882503,GB -3647882504,3647882511,DE -3647882512,3647882575,GB -3647882576,3647882623,DE -3647882624,3647882751,GB -3647882752,3647883071,DE -3647883072,3647883095,GB -3647883096,3647883135,DE -3647883136,3647883199,GB -3647883200,3647883207,DE -3647883208,3647883215,GB -3647883216,3647883231,DE -3647883232,3647883239,GB -3647883240,3647884287,DE -3647884288,3647884799,GB -3647884800,3647884847,DE -3647884848,3647884855,GB -3647884856,3647884915,DE -3647884916,3647884919,GB -3647884920,3647885191,DE -3647885192,3647885215,GB -3647885216,3647885247,DE -3647885248,3647885311,GB -3647885312,3647885575,DE -3647885576,3647885583,GB -3647885584,3647885599,DE -3647885600,3647885607,GB -3647885608,3647885663,DE -3647885664,3647885695,GB -3647885696,3647886187,DE -3647886188,3647886191,GB -3647886192,3647886271,DE -3647886272,3647886303,GB -3647886304,3647886727,DE -3647886728,3647886847,GB -3647886848,3647887427,DE -3647887428,3647887431,GB -3647887432,3647887479,DE -3647887480,3647887483,GB -3647887484,3647887519,DE -3647887520,3647887527,GB -3647887528,3647887543,DE -3647887544,3647887551,GB -3647887552,3647887599,DE -3647887600,3647887615,GB -3647887616,3647887871,DE -3647887872,3647887903,GB -3647887904,3647887911,DE -3647887912,3647887919,GB -3647887920,3647887951,DE -3647887952,3647887959,GB -3647887960,3647888895,DE -3647888896,3647888959,GB -3647888960,3647889023,DE -3647889024,3647889055,GB -3647889056,3647889215,DE -3647889216,3647889231,GB -3647889232,3647889279,DE -3647889280,3647889343,GB -3647889344,3647889359,DE -3647889360,3647889367,GB -3647889368,3647889375,DE -3647889376,3647889383,GB -3647889384,3647889407,DE -3647889408,3647889471,GB -3647889472,3647889535,DE -3647889536,3647889671,GB -3647889672,3647889687,DE -3647889688,3647889695,GB -3647889696,3647889727,DE -3647889728,3647889735,GB -3647889736,3647889775,DE -3647889776,3647889783,GB -3647889784,3647890247,DE -3647890248,3647890255,GB -3647890256,3647890271,DE -3647890272,3647890295,GB -3647890296,3647890375,DE -3647890376,3647890447,GB -3647890448,3647890471,DE -3647890472,3647890479,GB -3647890480,3647890487,DE -3647890488,3647890527,GB -3647890528,3647890543,DE -3647890544,3647891199,GB -3647891200,3647891463,DE -3647891464,3647891471,GB -3647891472,3647891487,DE -3647891488,3647891503,GB -3647891504,3647891791,DE -3647891792,3647891807,GB -3647891808,3647892239,DE -3647892240,3647892247,GB -3647892248,3647892799,DE -3647892800,3647892815,GB -3647892816,3647892991,DE -3647892992,3647893135,GB -3647893136,3647893183,DE -3647893184,3647893199,GB -3647893200,3647893503,DE -3647893504,3647893511,GB -3647893512,3647893519,DE -3647893520,3647893527,GB -3647893528,3647893535,DE -3647893536,3647893551,GB -3647893552,3647894335,DE -3647894336,3647894351,GB -3647894352,3647894719,DE -3647894720,3647894783,GB -3647894784,3647894911,DE -3647894912,3647894975,GB -3647894976,3647894991,DE -3647894992,3647895007,GB -3647895008,3647895023,DE -3647895024,3647895039,GB -3647895040,3647895311,DE -3647895312,3647895327,GB -3647895328,3647895359,DE -3647895360,3647895399,GB -3647895400,3647895687,DE -3647895688,3647895711,GB -3647895712,3647895799,DE -3647895800,3647895807,GB -3647895808,3647896095,DE -3647896096,3647896127,GB -3647896128,3647896159,DE -3647896160,3647896351,GB -3647896352,3647896399,DE -3647896400,3647896407,GB -3647896408,3647896415,DE -3647896416,3647896423,GB -3647896424,3647896511,DE -3647896512,3647896519,GB -3647896520,3647896527,DE -3647896528,3647896543,GB -3647896544,3647896559,DE -3647896560,3647896567,GB -3647896568,3647896631,DE -3647896632,3647896647,GB -3647896648,3647896671,DE -3647896672,3647896679,GB -3647896680,3647896687,DE -3647896688,3647896695,GB -3647896696,3647897039,DE -3647897040,3647897047,GB -3647897048,3647897087,DE -3647897088,3647897095,GB -3647897096,3647897111,DE -3647897112,3647897135,GB -3647897136,3647897215,DE -3647897216,3647897343,GB -3647897344,3647897359,DE -3647897360,3647897375,GB -3647897376,3647897415,DE -3647897416,3647897423,GB -3647897424,3647901247,DE -3647901248,3647901255,GB -3647901256,3647901259,DE -3647901260,3647901263,GB -3647901264,3647901439,DE -3647901440,3647901519,GB -3647901520,3647901535,DE -3647901536,3647901695,GB -3647901696,3647901735,DE -3647901736,3647901743,GB -3647901744,3647901751,DE -3647901752,3647901759,GB -3647901760,3647901863,DE -3647901864,3647901871,GB -3647901872,3647901895,DE -3647901896,3647901911,GB -3647901912,3647901935,DE -3647901936,3647901951,GB -3647901952,3647902063,DE -3647902064,3647902071,GB -3647902072,3647902079,DE -3647902080,3647902087,GB -3647902088,3647902095,DE -3647902096,3647902111,GB -3647902112,3647902159,DE -3647902160,3647902167,GB -3647902168,3647902183,DE -3647902184,3647902207,GB -3647902208,3647902263,DE -3647902264,3647902463,GB -3647902464,3647902495,DE -3647902496,3647902511,GB -3647902512,3647902559,DE -3647902560,3647902719,GB -3647902720,3647902807,DE -3647902808,3647903007,GB -3647903008,3647903039,DE -3647903040,3647903047,GB -3647903048,3647903055,DE -3647903056,3647903063,GB -3647903064,3647903119,DE -3647903120,3647903743,GB -3647903744,3647903919,DE -3647903920,3647903927,GB -3647903928,3647903935,DE -3647903936,3647903943,GB -3647903944,3647903967,DE -3647903968,3647903975,GB -3647903976,3647904023,DE -3647904024,3647904031,GB -3647904032,3647904103,DE -3647904104,3647904111,GB -3647904112,3647904119,DE -3647904120,3647904127,GB -3647904128,3647904207,DE -3647904208,3647904215,GB -3647904216,3647904391,DE -3647904392,3647904398,GB -3647904399,3647904399,DE -3647904400,3647904447,GB -3647904448,3647904639,DE -3647904640,3647904671,GB -3647904672,3647904735,DE -3647904736,3647904751,GB -3647904752,3647904799,DE -3647904800,3647904807,GB -3647904808,3647904967,DE -3647904968,3647904999,GB -3647905000,3647905007,DE -3647905008,3647905023,GB -3647905024,3647905055,DE -3647905056,3647905063,GB -3647905064,3647905071,DE -3647905072,3647905079,GB -3647905080,3647905191,DE -3647905192,3647905279,GB -3647905280,3647905311,DE -3647905312,3647905535,GB -3647905536,3647905567,DE -3647905568,3647905791,GB -3647905792,3647905839,DE -3647905840,3647905847,GB -3647905848,3647905863,DE -3647905864,3647906047,GB -3647906048,3647906079,DE -3647906080,3647906087,GB -3647906088,3647906095,DE -3647906096,3647906103,GB -3647906104,3647906119,DE -3647906120,3647906127,GB -3647906128,3647906151,DE -3647906152,3647906159,GB -3647906160,3647906175,DE -3647906176,3647906303,GB -3647906304,3647906335,DE -3647906336,3647906559,GB -3647906560,3647906591,DE -3647906592,3647907839,GB -3647907840,3647907879,DE -3647907880,3647907887,GB -3647907888,3647907967,DE -3647907968,3647907975,GB -3647907976,3647908007,DE -3647908008,3647908015,GB -3647908016,3647908071,DE -3647908072,3647908079,GB -3647908080,3647908127,DE -3647908128,3647908135,GB -3647908136,3647908151,DE -3647908152,3647908159,GB -3647908160,3647908207,DE -3647908208,3647908215,GB -3647908216,3647908255,DE -3647908256,3647908263,GB -3647908264,3647908271,DE -3647908272,3647908279,GB -3647908280,3647908343,DE -3647908344,3647908351,GB -3647908352,3647908479,DE -3647908480,3647908487,GB -3647908488,3647908495,DE -3647908496,3647908503,GB -3647908504,3647908687,DE -3647908688,3647908695,GB -3647908696,3647908735,DE -3647908736,3647908751,GB -3647908752,3647908775,DE -3647908776,3647908783,GB -3647908784,3647908815,DE -3647908816,3647908831,GB -3647908832,3647908847,DE -3647908848,3647908855,GB -3647908856,3647908967,DE -3647908968,3647908975,GB -3647908976,3647909095,DE -3647909096,3647909111,GB -3647909112,3647909119,DE -3647909120,3647909151,GB -3647909152,3647909159,DE -3647909160,3647909175,GB -3647909176,3647909207,DE -3647909208,3647909215,GB -3647909216,3647909303,DE -3647909304,3647909311,GB -3647909312,3647909327,DE -3647909328,3647909335,GB -3647909336,3647909631,DE -3647909632,3647909671,GB -3647909672,3647909695,DE -3647909696,3647909703,GB -3647909704,3647909711,DE -3647909712,3647909727,GB -3647909728,3647909735,DE -3647909736,3647909743,GB -3647909744,3647909775,DE -3647909776,3647909791,GB -3647909792,3647909815,DE -3647909816,3647909839,GB -3647909840,3647909879,DE -3647909880,3647911423,GB -3647911424,3647911439,DE -3647911440,3647911455,GB -3647911456,3647911519,DE -3647911520,3647911535,GB -3647911536,3647911551,DE -3647911552,3647911583,GB -3647911584,3647911631,DE -3647911632,3647911647,GB -3647911648,3647912615,DE -3647912616,3647912623,GB -3647912624,3647912671,DE -3647912672,3647912679,GB -3647912680,3647912687,DE -3647912688,3647912695,GB -3647912696,3647912959,DE -3647912960,3647913471,GB -3647913472,3647913727,DE -3647913728,3647913983,GB -3647913984,3647914039,DE -3647914040,3647914055,GB -3647914056,3647914223,DE -3647914224,3647914231,GB -3647914232,3647914239,DE -3647914240,3647914271,GB -3647914272,3647914319,DE -3647914320,3647914327,GB -3647914328,3647914399,DE -3647914400,3647914415,GB -3647914416,3647914463,DE -3647914464,3647914471,GB -3647914472,3647914487,DE -3647914488,3647914751,GB -3647914752,3647915055,DE -3647915056,3647915063,GB -3647915064,3647915111,DE -3647915112,3647915135,GB -3647915136,3647915175,DE -3647915176,3647915183,GB -3647915184,3647915223,DE -3647915224,3647915231,GB -3647915232,3647915295,DE -3647915296,3647915311,GB -3647915312,3647915327,DE -3647915328,3647915335,GB -3647915336,3647915359,DE -3647915360,3647915367,GB -3647915368,3647915495,DE -3647915496,3647915519,GB -3647915520,3647915527,DE -3647915528,3647915535,GB -3647915536,3647915583,DE -3647915584,3647915591,GB -3647915592,3647915671,DE -3647915672,3647915687,GB -3647915688,3647915775,DE -3647915776,3647915807,GB -3647915808,3647915823,DE -3647915824,3647915831,GB -3647915832,3647915855,DE -3647915856,3647915871,GB -3647915872,3647915911,DE -3647915912,3647915919,GB -3647915920,3647915927,DE -3647915928,3647915935,GB -3647915936,3647915943,DE -3647915944,3647915951,GB -3647915952,3647915967,DE -3647915968,3647915975,GB -3647915976,3647916023,DE -3647916024,3647916095,GB -3647916096,3647916223,DE -3647916224,3647916303,GB -3647916304,3647916351,DE -3647916352,3647916367,GB -3647916368,3647916415,DE -3647916416,3647916543,GB -3647916544,3647916575,DE -3647916576,3647916607,GB -3647916608,3647916623,DE -3647916624,3647916663,GB -3647916664,3647916767,DE -3647916768,3647916783,GB -3647916784,3647916799,DE -3647916800,3647917055,SE -3647917056,3647917599,DE -3647917600,3647917615,US -3647917616,3647917647,DE -3647917648,3647917663,GB -3647917664,3647917791,DE -3647917792,3647917823,GB -3647917824,3647917839,DE -3647917840,3647917871,GB -3647917872,3647918151,DE -3647918152,3647918159,GB -3647918160,3647918367,DE -3647918368,3647918383,GB -3647918384,3647918423,DE -3647918424,3647918431,GB -3647918432,3647918463,DE -3647918464,3647918479,GB -3647918480,3647918487,DE -3647918488,3647918495,GB -3647918496,3647918503,DE -3647918504,3647918527,GB -3647918528,3647918543,DE -3647918544,3647918559,GB -3647918560,3647918615,DE -3647918616,3647918623,GB -3647918624,3647918671,DE -3647918672,3647918679,GB -3647918680,3647918703,DE -3647918704,3647918711,GB -3647918712,3647918751,DE -3647918752,3647918759,GB -3647918760,3647918927,DE -3647918928,3647918935,GB -3647918936,3647918959,DE -3647918960,3647918967,GB -3647918968,3647919015,DE -3647919016,3647919023,GB -3647919024,3647919031,DE -3647919032,3647919039,GB -3647919040,3647919055,DE -3647919056,3647919063,GB -3647919064,3647919079,DE -3647919080,3647919135,GB -3647919136,3647919175,DE -3647919176,3647919391,GB -3647919392,3647919431,DE -3647919432,3647919439,GB -3647919440,3647919447,DE -3647919448,3647920159,GB -3647920160,3647920223,DE -3647920224,3647920415,GB -3647920416,3647920439,DE -3647920440,3647920479,GB -3647920480,3647920495,DE -3647920496,3647920503,GB -3647920504,3647920519,DE -3647920520,3647920527,GB -3647920528,3647920535,DE -3647920536,3647920679,GB -3647920680,3647920695,DE -3647920696,3647921151,GB -3647921152,3647921391,DE -3647921392,3647921407,GB -3647921408,3647921559,DE -3647921560,3647921567,GB -3647921568,3647921615,DE -3647921616,3647921631,GB -3647921632,3647921647,DE -3647921648,3647921663,GB -3647921664,3647921911,DE -3647921912,3647921919,GB -3647921920,3647921967,DE -3647921968,3647921983,GB -3647921984,3647922095,DE -3647922096,3647922103,GB -3647922104,3647922167,DE -3647922168,3647922207,GB -3647922208,3647922219,DE -3647922220,3647922223,GB -3647922224,3647922231,DE -3647922232,3647922239,GB -3647922240,3647922271,DE -3647922272,3647922287,GB -3647922288,3647922303,DE -3647922304,3647922367,GB -3647922368,3647922687,DE -3647922688,3647922811,GB -3647922812,3647922815,DE -3647922816,3647922831,GB -3647922832,3647922835,DE -3647922836,3647922843,GB -3647922844,3647922847,DE -3647922848,3647922943,GB -3647922944,3647922951,DE -3647922952,3647922959,FR -3647922960,3647922967,GB -3647922968,3647922975,DE -3647922976,3647922991,GB -3647922992,3647923327,DE -3647923328,3647923331,GB -3647923332,3647923343,DE -3647923344,3647923351,GB -3647923352,3647923399,DE -3647923400,3647923407,GB -3647923408,3647923775,DE -3647923776,3647923839,GB -3647923840,3647924199,DE -3647924200,3647924207,GB -3647924208,3647924287,DE -3647924288,3647924383,GB -3647924384,3647924399,DE -3647924400,3647924415,GB -3647924416,3647924447,DE -3647924448,3647924463,GB -3647924464,3647924479,DE -3647924480,3647925247,GB -3647925248,3647925255,DE -3647925256,3647925263,GB -3647925264,3647925335,DE -3647925336,3647925343,GB -3647925344,3647925543,DE -3647925544,3647925559,GB -3647925560,3647925575,DE -3647925576,3647925583,GB -3647925584,3647925591,DE -3647925592,3647925599,GB -3647925600,3647925639,DE -3647925640,3647925655,GB -3647925656,3647925671,DE -3647925672,3647925679,GB -3647925680,3647925751,DE -3647925752,3647925759,GB -3647925760,3647925911,DE -3647925912,3647925919,GB -3647925920,3647926055,DE -3647926056,3647926063,GB -3647926064,3647926095,DE -3647926096,3647926103,GB -3647926104,3647926159,DE -3647926160,3647926175,GB -3647926176,3647926183,DE -3647926184,3647926191,GB -3647926192,3647926223,DE -3647926224,3647926239,GB -3647926240,3647926255,DE -3647926256,3647926271,GB -3647926272,3647926343,DE -3647926344,3647926375,GB -3647926376,3647926407,DE -3647926408,3647926423,GB -3647926424,3647926463,DE -3647926464,3647926471,GB -3647926472,3647926591,DE -3647926592,3647926615,GB -3647926616,3647926623,DE -3647926624,3647926631,GB -3647926632,3647926655,DE -3647926656,3647926663,GB -3647926664,3647926679,DE -3647926680,3647926687,GB -3647926688,3647926695,DE -3647926696,3647926703,GB -3647926704,3647926711,DE -3647926712,3647926719,GB -3647926720,3647926759,DE -3647926760,3647926767,GB -3647926768,3647926775,DE -3647926776,3647926791,GB -3647926792,3647926807,DE -3647926808,3647926815,GB -3647926816,3647926823,DE -3647926824,3647926831,GB -3647926832,3647926839,DE -3647926840,3647926847,GB -3647926848,3647926863,DE -3647926864,3647926871,GB -3647926872,3647926879,DE -3647926880,3647926895,GB -3647926896,3647926903,DE -3647926904,3647927047,GB -3647927048,3647927055,DE -3647927056,3647927079,GB -3647927080,3647927087,DE -3647927088,3647927095,GB -3647927096,3647927119,DE -3647927120,3647927127,GB -3647927128,3647927135,DE -3647927136,3647927159,GB -3647927160,3647927167,DE -3647927168,3647927175,GB -3647927176,3647927191,DE -3647927192,3647927215,GB -3647927216,3647927239,DE -3647927240,3647927279,GB -3647927280,3647927295,DE -3647927296,3647927551,GB -3647927552,3647927591,DE -3647927592,3647927599,GB -3647927600,3647927615,DE -3647927616,3647927623,GB -3647927624,3647927647,DE -3647927648,3647927695,GB -3647927696,3647927703,DE -3647927704,3647927735,GB -3647927736,3647927759,DE -3647927760,3647927783,GB -3647927784,3647927791,DE -3647927792,3647928063,GB -3647928064,3647928119,DE -3647928120,3647928151,GB -3647928152,3647928175,DE -3647928176,3647928183,GB -3647928184,3647928199,DE -3647928200,3647928215,GB -3647928216,3647928223,DE -3647928224,3647928231,GB -3647928232,3647928247,DE -3647928248,3647928319,GB -3647928320,3647928639,DE -3647928640,3647928655,GB -3647928656,3647928671,DE -3647928672,3647929343,GB -3647929344,3647929599,DE -3647929600,3647929727,GB -3647929728,3647929791,DE -3647929792,3647929855,GB -3647929856,3647930383,DE -3647930384,3647930399,GB -3647930400,3647930471,DE -3647930472,3647930479,GB -3647930480,3647930487,DE -3647930488,3647930495,GB -3647930496,3647930623,DE -3647930624,3647930879,GB -3647930880,3647931159,DE -3647931160,3647931199,GB -3647931200,3647931279,DE -3647931280,3647931287,GB -3647931288,3647931311,DE -3647931312,3647931327,GB -3647931328,3647931391,DE -3647931392,3647931611,GB -3647931612,3647931615,DE -3647931616,3647931647,GB -3647931648,3647931775,DE -3647931776,3647931783,GB -3647931784,3647931799,DE -3647931800,3647931807,GB -3647931808,3647931855,DE -3647931856,3647931863,GB -3647931864,3647932199,DE -3647932200,3647932223,GB -3647932224,3647932287,DE -3647932288,3647932671,GB -3647932672,3647932975,DE -3647932976,3647932991,GB -3647932992,3647933063,DE -3647933064,3647933071,GB -3647933072,3647933103,DE -3647933104,3647933119,GB -3647933120,3647933375,DE -3647933376,3647933695,GB -3647933696,3647933791,DE -3647933792,3647933951,GB -3647933952,3647934463,DE -3647934464,3647934719,GB -3647934720,3647934783,DE -3647934784,3647934815,GB -3647934816,3647934847,DE -3647934848,3647935103,GB -3647935104,3647935199,DE -3647935200,3647935359,GB -3647935360,3647935423,DE -3647935424,3647935487,GB -3647935488,3647935743,DE -3647935744,3647936511,GB -3647936512,3647936539,DE -3647936540,3647936543,GB -3647936544,3647936555,DE -3647936556,3647936559,GB -3647936560,3647936563,DE -3647936564,3647936567,GB -3647936568,3647936575,DE -3647936576,3647936579,GB -3647936580,3647936603,DE -3647936604,3647936607,GB -3647936608,3647936623,DE -3647936624,3647936635,GB -3647936636,3647936639,DE -3647936640,3647936655,GB -3647936656,3647936659,DE -3647936660,3647936767,GB -3647936768,3647936943,DE -3647936944,3647936959,GB -3647936960,3647937535,DE -3647937536,3647937595,GB -3647937596,3647937599,DE -3647937600,3647937611,GB -3647937612,3647937615,DE -3647937616,3647937791,GB -3647937792,3647938559,DE -3647938560,3647938575,GB -3647938576,3647938583,DE -3647938584,3647938591,GB -3647938592,3647938615,DE -3647938616,3647938623,GB -3647938624,3647938631,DE -3647938632,3647938655,GB -3647938656,3647938671,DE -3647938672,3647938727,GB -3647938728,3647938735,DE -3647938736,3647938751,GB -3647938752,3647938759,DE -3647938760,3647938783,GB -3647938784,3647938807,DE -3647938808,3647938879,GB -3647938880,3647938887,DE -3647938888,3647938911,GB -3647938912,3647938927,DE -3647938928,3647938935,GB -3647938936,3647938943,DE -3647938944,3647938975,GB -3647938976,3647938983,DE -3647938984,3647939103,GB -3647939104,3647939143,DE -3647939144,3647939151,GB -3647939152,3647939167,DE -3647939168,3647939175,GB -3647939176,3647939239,DE -3647939240,3647939247,GB -3647939248,3647939583,DE -3647939584,3647939591,GB -3647939592,3647939615,DE -3647939616,3647939623,GB -3647939624,3647939639,DE -3647939640,3647939647,GB -3647939648,3647939703,DE -3647939704,3647939711,GB -3647939712,3647939751,DE -3647939752,3647939759,GB -3647939760,3647939807,DE -3647939808,3647939839,GB -3647939840,3647939927,DE -3647939928,3647939935,GB -3647939936,3647940047,DE -3647940048,3647940055,GB -3647940056,3647940415,DE -3647940416,3647940607,GB -3647940608,3647941119,DE -3647941120,3647941127,GB -3647941128,3647941135,DE -3647941136,3647941151,GB -3647941152,3647941167,DE -3647941168,3647941375,GB -3647941376,3647941559,DE -3647941560,3647941567,GB -3647941568,3647941887,DE -3647941888,3647941935,GB -3647941936,3647941939,DE -3647941940,3647941943,GB -3647941944,3647941955,DE -3647941956,3647941959,GB -3647941960,3647941967,DE -3647941968,3647941971,GB -3647941972,3647941983,DE -3647941984,3647941987,GB -3647941988,3647941991,DE -3647941992,3647941999,GB -3647942000,3647942007,DE -3647942008,3647942015,GB -3647942016,3647942023,DE -3647942024,3647942031,GB -3647942032,3647942047,DE -3647942048,3647942399,GB -3647942400,3647942711,DE -3647942712,3647942719,GB -3647942720,3647942815,DE -3647942816,3647942847,GB -3647942848,3647942903,DE -3647942904,3647942911,GB -3647942912,3647943207,DE -3647943208,3647943215,GB -3647943216,3647943423,DE -3647943424,3647943431,GB -3647943432,3647943435,DE -3647943436,3647943499,GB -3647943500,3647943503,DE -3647943504,3647943527,GB -3647943528,3647943543,DE -3647943544,3647943547,GB -3647943548,3647943559,DE -3647943560,3647943679,GB -3647943680,3647944591,DE -3647944592,3647944599,GB -3647944600,3647944623,DE -3647944624,3647944671,GB -3647944672,3647944687,DE -3647944688,3647944703,GB -3647944704,3647945475,DE -3647945476,3647945531,GB -3647945532,3647945535,DE -3647945536,3647945635,GB -3647945636,3647945643,DE -3647945644,3647945727,GB -3647945728,3647945983,DE -3647945984,3647946239,GB -3647946240,3647946499,DE -3647946500,3647946503,GB -3647946504,3647946527,DE -3647946528,3647946559,GB -3647946560,3647947391,DE -3647947392,3647947399,GB -3647947400,3647947407,DE -3647947408,3647947415,GB -3647947416,3647947423,DE -3647947424,3647947431,GB -3647947432,3647947447,DE -3647947448,3647947455,GB -3647947456,3647947647,DE -3647947648,3647947711,GB -3647947712,3647947735,DE -3647947736,3647947775,GB -3647947776,3647947919,DE -3647947920,3647947935,GB -3647947936,3647948191,DE -3647948192,3647948287,GB -3647948288,3647948543,DE -3647948544,3647948807,GB -3647948808,3647948815,DE -3647948816,3647949063,GB -3647949064,3647949079,DE -3647949080,3647949119,GB -3647949120,3647949151,DE -3647949152,3647949183,GB -3647949184,3647949887,DE -3647949888,3647949951,GB -3647949952,3647950015,DE -3647950016,3647950847,GB -3647950848,3647953023,DE -3647953024,3647953039,GB -3647953040,3647953055,DE -3647953056,3647953079,GB -3647953080,3647953407,DE -3647953408,3647953663,GB -3647953664,3647953791,DE -3647953792,3647953823,GB -3647953824,3647953919,DE -3647953920,3647954175,GB -3647954176,3647954207,DE -3647954208,3647954215,GB -3647954216,3647954231,DE -3647954232,3647954239,GB -3647954240,3647954263,DE -3647954264,3647954271,GB -3647954272,3647954719,DE -3647954720,3647954815,GB -3647954816,3647954879,DE -3647954880,3647955199,GB -3647955200,3647955207,DE -3647955208,3647955215,GB -3647955216,3647955287,DE -3647955288,3647955295,GB -3647955296,3647955303,DE -3647955304,3647955335,GB -3647955336,3647955391,DE -3647955392,3647955399,GB -3647955400,3647955423,DE -3647955424,3647955431,GB -3647955432,3647956615,DE -3647956616,3647956671,GB -3647956672,3647956991,DE -3647956992,3647957503,GB -3647957504,3647957543,DE -3647957544,3647957551,GB -3647957552,3647957559,DE -3647957560,3647957599,GB -3647957600,3647957623,DE -3647957624,3647957727,GB -3647957728,3647957735,DE -3647957736,3647959567,GB -3647959568,3647959575,ES -3647959576,3647959679,GB -3647959680,3647959687,DE -3647959688,3647962143,GB -3647962144,3647962151,DE -3647962152,3647963231,GB -3647963232,3647963263,BE -3647963264,3647963647,GB -3647963648,3647963711,BE -3647963712,3647995903,GB -3648000000,3648004095,RU -3648004096,3648004607,GB -3648004608,3648004863,RU -3648004864,3648005119,GB -3648005120,3648006271,RU -3648006272,3648006399,GB -3648006400,3648007167,RU -3648007168,3648008191,GB -3648008192,3648016383,FR -3648016384,3648020479,GB -3648020480,3648024575,IT -3648024576,3648028671,NL -3648028672,3648032767,HU -3648032768,3648033023,IE -3648033024,3648033039,DE -3648033040,3648033087,IE -3648033088,3648033103,DE -3648033104,3648033119,IE -3648033120,3648033535,DE -3648033536,3648033791,IE -3648033792,3648034063,DE -3648034064,3648034079,IE -3648034080,3648036863,DE -3648036864,3648040959,CZ -3648040960,3648041020,BE -3648041021,3648041021,FR -3648041022,3648045055,BE -3648045056,3648049151,FI -3648049152,3648053247,UA -3648053248,3648057343,FR -3648057344,3648061439,FI -3648061440,3648069631,AM -3648069632,3648073727,DE -3648073728,3648077823,HU -3648077824,3648078079,BE -3648078080,3648078335,CG -3648078336,3648078463,BE -3648078464,3648078495,BF -3648078496,3648078527,BE -3648078528,3648078591,BF -3648078592,3648078847,CG -3648078848,3648079103,BE -3648079104,3648080383,UG -3648080384,3648080511,TZ -3648080512,3648080543,BF -3648080544,3648080639,TZ -3648080640,3648080895,BE -3648080896,3648080903,NE -3648080904,3648080919,CD -3648080920,3648080927,GA -3648080928,3648080959,CD -3648080960,3648080991,TD -3648080992,3648081007,SL -3648081008,3648081023,BE -3648081024,3648081055,GB -3648081056,3648081407,BE -3648081408,3648082175,MW -3648082176,3648082239,BE -3648082240,3648082687,LR -3648082688,3648085759,BE -3648085760,3648086015,LR -3648086016,3648090111,AT -3648090112,3648094207,RU -3648094208,3648102399,PL -3648102400,3648106495,GB -3648106496,3648110591,DE -3648110592,3648114687,FR -3648114688,3648118783,IT -3648118784,3648122879,PL -3648122880,3648126975,ES -3648126976,3648139263,RU -3648139264,3648143359,GB -3648143360,3648147455,DE -3648147456,3648149503,SE -3648149504,3648150015,GB -3648150016,3648150271,SE -3648150272,3648150527,FI -3648150528,3648150783,DK -3648150784,3648151039,NO -3648151040,3648151551,SE -3648151552,3648155647,NL -3648155648,3648159743,CH -3648159744,3648163839,ES -3648163840,3648167935,RU -3648167936,3648172031,IE -3648172032,3648176127,RU -3648176128,3648180223,FR -3648180224,3648180767,DE -3648180768,3648180799,AT -3648180800,3648180863,DE -3648180864,3648180991,IE -3648180992,3648181023,DE -3648181024,3648181055,AT -3648181056,3648181119,DE -3648181120,3648181247,IE -3648181248,3648181311,DE -3648181312,3648181343,AT -3648181344,3648182143,DE -3648182144,3648182159,NL -3648182160,3648182175,DE -3648182176,3648182207,RU -3648182208,3648182271,GB -3648182272,3648182783,DE -3648182784,3648182799,IT -3648182800,3648182815,AT -3648182816,3648182823,DE -3648182824,3648182831,RU -3648182832,3648182847,DE -3648182848,3648182911,IT -3648182912,3648184319,DE -3648184320,3648192511,RU -3648192512,3648196607,ES -3648196608,3648200703,IT -3648200704,3648208895,SE -3648208896,3648212991,DE -3648212992,3648217087,RU -3648217088,3648221183,GB -3648221184,3648225279,IE -3648225280,3648231263,DE -3648231264,3648231295,NL -3648231296,3648233471,DE -3648233472,3648237567,FR -3648237568,3648241663,RU -3648241664,3648245759,NL -3648245760,3648249855,RO -3648249856,3648253951,NL -3648253952,3648258047,CZ -3648258048,3648266239,ES -3648266240,3648270335,HU -3648270336,3648274431,RU -3648274432,3648278527,AT -3648278528,3648282623,NO -3648282624,3648286719,PL -3648286720,3648290815,DE -3648290816,3648299007,RU -3648299008,3648303103,FI -3648303104,3648307199,AT -3648307200,3648311295,GB -3648311296,3648315615,DK -3648315616,3648315631,CA -3648315632,3648316079,DK -3648316080,3648316087,SE -3648316088,3648316127,DK -3648316128,3648316143,CA -3648316144,3648316415,DK -3648316416,3648316671,NL -3648316672,3648316927,AT -3648316928,3648317247,DK -3648317248,3648317263,CA -3648317264,3648319527,DK -3648319528,3648319535,CH -3648319536,3648321631,DK -3648321632,3648321639,CA -3648321640,3648321823,DK -3648321824,3648321839,GB -3648321840,3648323583,DK -3648327680,3648331775,LT -3648331776,3648339967,BE -3648339968,3648344063,UA -3648344064,3648348159,RU -3648348160,3648352255,DE -3648352256,3648356351,RU -3648356352,3648360447,PL -3648360448,3648364543,FR -3648364544,3648368639,CH -3648368640,3648372735,RU -3648372736,3648376831,LU -3648376832,3648380927,CZ -3648380928,3648385023,NL -3648385024,3648389119,GR -3648389120,3648393215,IT -3648393216,3648397311,DE -3648397312,3648405503,NO -3648405504,3648413695,RU -3648413696,3648417791,SK -3648417792,3648417879,AT -3648417880,3648417919,GB -3648417920,3648418047,AT -3648418048,3648418079,GB -3648418080,3648418247,ES -3648418248,3648418255,CH -3648418256,3648418303,ES -3648418304,3648419327,GB -3648419328,3648419455,FR -3648419456,3648419519,IT -3648419520,3648419583,ES -3648419584,3648420095,GB -3648420096,3648420351,NL -3648420352,3648420863,GB -3648420864,3648421119,US -3648421120,3648421375,GB -3648421376,3648421631,DE -3648421632,3648421887,CH -3648421888,3648425983,GB -3648425984,3648430079,IT -3648430080,3648434175,NL -3648434176,3648438271,RU -3648438272,3648442367,CH -3648442368,3648443743,SE -3648443744,3648443759,PA -3648443760,3648446463,SE -3648446464,3648447055,FR -3648447056,3648447063,ES -3648447064,3648449119,FR -3648449120,3648449135,ES -3648449136,3648450559,FR -3648450560,3648454655,IT -3648454656,3648458751,NL -3648458752,3648462847,RU -3648462848,3648466943,FI -3648466944,3648469263,DE -3648469264,3648469271,NL -3648469272,3648469295,DE -3648469296,3648469311,AT -3648469312,3648471039,DE -3648471040,3648475135,PL -3648475136,3648479231,RU -3648479232,3648483327,CH -3648483328,3648487423,SK -3648491520,3648495615,CH -3648495616,3648499711,SE -3648499712,3648503807,FR -3648503808,3648511999,DE -3648512000,3648516095,NL -3648516096,3648520191,CS -3648520192,3648782335,NL -3648782336,3649044479,ES -3649044480,3649110015,FR -3649110016,3649175551,PT -3649175552,3649241087,ES -3649241088,3649306623,TR -3649306624,3649372159,IL -3649372160,3649437695,IT -3649437696,3649568767,GB -3649568768,3649634303,BE -3649634304,3649700159,GB -3649700160,3649700247,US -3649700248,3649700251,BB -3649700252,3649700287,US -3649700288,3649700863,GB -3649700864,3649701119,US -3649701120,3649708791,GB -3649708792,3649709055,GD -3649709056,3649709287,GB -3649709288,3649709295,BB -3649709296,3649709311,AG -3649709312,3649709815,GB -3649709816,3649709823,TT -3649709824,3649765375,GB -3649830912,3649835007,NL -3649835008,3649839103,ES -3649839104,3649847295,GB -3649847296,3649855487,DE -3649855488,3649856511,GB -3649856512,3649857023,US -3649857024,3649857535,GB -3649857536,3649858047,JP -3649858048,3649859071,GB -3649859072,3649859583,US -3649859584,3649863679,SE -3649863680,3649896447,FI -3649896448,3649961983,IT -3649961984,3650093055,SE -3650093056,3650097151,JO -3650097152,3650101247,SK -3650101248,3650105343,DE -3650105344,3650109439,CH -3650109440,3650113535,UA -3650113536,3650117631,GB -3650117632,3650121727,RU -3650121728,3650125823,FR -3650125824,3650129919,DE -3650129920,3650134015,GB -3650134016,3650142207,RU -3650142208,3650150399,PL -3650150400,3650158591,NO -3650158592,3650159135,MT -3650159136,3650159151,SC -3650159152,3650162687,MT -3650162688,3650166783,RU -3650166784,3650167807,BE -3650167808,3650168063,LU -3650168064,3650170879,BE -3650170880,3650174975,DK -3650174976,3650179071,GB -3650179072,3650183167,BG -3650183168,3650187263,DE -3650187264,3650195455,GB -3650195456,3650199551,RU -3650199552,3650203647,BG -3650203648,3650207743,ES -3650207744,3650211839,SK -3650211840,3650215935,LV -3650215936,3650220031,GB -3650220032,3650224127,SA -3650224128,3650225027,US -3650225028,3650228223,GB -3650228224,3650232319,US -3650232320,3650236415,RU -3650236416,3650236671,GB -3650236672,3650236692,CH -3650236693,3650236911,GB -3650236912,3650236926,CH -3650236927,3650240511,GB -3650244608,3650256895,GB -3650256896,3650265087,DE -3650269184,3650273279,GB -3650273280,3650277375,IT -3650277376,3650281471,IR -3650281472,3650285567,FR -3650285568,3650289663,UA -3650289664,3650297855,RU -3650297856,3650301951,LT -3650301952,3650306047,RU -3650306048,3650306623,DE -3650306624,3650306639,GE -3650306640,3650306775,DE -3650306776,3650306779,GE -3650306780,3650306783,DE -3650306784,3650306791,AT -3650306792,3650306799,DE -3650306800,3650306807,AT -3650306808,3650306943,DE -3650306944,3650306959,GB -3650306960,3650307007,DE -3650307008,3650307010,GB -3650307011,3650310143,DE -3650310144,3650314239,GB -3650314240,3650315271,DE -3650315272,3650315272,BE -3650315273,3650316711,DE -3650316712,3650316715,FR -3650316716,3650318335,DE -3650318336,3650322431,GI -3650322432,3650330623,IT -3650330624,3650334719,UA -3650334720,3650338815,GB -3650338816,3650342911,FR -3650342912,3650344879,CH -3650344880,3650344911,PT -3650344912,3650345879,CH -3650345880,3650345887,IM -3650345888,3650345903,AT -3650345904,3650345935,CH -3650345936,3650345951,PT -3650345952,3650346207,CH -3650346208,3650346239,IM -3650346240,3650347007,CH -3650347008,3650351103,GE -3650351104,3650351871,GB -3650351872,3650351879,NL -3650351880,3650351887,IT -3650351888,3650351903,GB -3650351904,3650351911,FR -3650351912,3650351919,SE -3650351920,3650351927,DK -3650351928,3650351935,DE -3650351936,3650351943,PL -3650351944,3650351951,ES -3650351952,3650351959,BE -3650351960,3650351967,ZA -3650351968,3650351975,PT -3650351976,3650351983,FI -3650351984,3650351991,NO -3650351992,3650352007,GB -3650352008,3650352015,IE -3650352016,3650355199,GB -3650355200,3650359295,CH -3650359296,3650363391,NL -3650363392,3650367487,GB -3650367488,3650371583,RU -3650371584,3650375679,ES -3650375680,3650379775,NL -3650379776,3650387967,IT -3650387968,3650392063,DE -3650392064,3650396159,NO -3650396160,3650404351,NL -3650404352,3650412543,RU -3650416640,3650420735,BE -3650420736,3650424831,ES -3650424832,3650428927,RU -3650428928,3650433023,NL -3650433024,3650437119,FI -3650437120,3650441215,NL -3650441216,3650445311,IT -3650445312,3650449407,GB -3650449408,3650453503,NO -3650457600,3650461695,ES -3650461696,3650465791,AT -3650465792,3650469887,RU -3650469888,3650478079,NL -3650478080,3650482175,AT -3650482176,3650486271,PL -3650486272,3650502655,RU -3650502656,3650510847,SE -3650510848,3650519039,GB -3650519040,3650523135,HU -3650523136,3650527231,DE -3650527232,3650535423,SE -3650535424,3650539519,RU -3650539520,3650543615,ES -3650543616,3650551807,CH -3650551808,3650555903,FR -3650555904,3650559999,RU -3650560000,3650564095,GB -3650564096,3650568191,SE -3650568192,3650572287,RU -3650572288,3650576383,DE -3650576384,3650580479,GB -3650580480,3650584575,CH -3650584576,3650588671,RU -3650588672,3650592767,DE -3650592768,3650600959,IS -3650600960,3650605055,SE -3650605056,3650609279,DE -3650609280,3650609311,CY -3650609312,3650609407,DE -3650609408,3650609439,IQ -3650609440,3650609447,KZ -3650609448,3650609455,RU -3650609456,3650609663,DE -3650609664,3650609919,KZ -3650609920,3650610175,RU -3650610176,3650610687,KZ -3650610688,3650610943,RU -3650610944,3650611711,DE -3650611712,3650612735,KZ -3650612736,3650617343,DE -3650617344,3650682879,FI -3650682880,3650748415,PL -3650748416,3650789375,GB -3650789376,3650790143,NL -3650790144,3650879487,GB -3650879488,3650912255,RO -3650912256,3650945023,GB -3650945024,3651010559,DK -3651010560,3651076095,GB -3651076096,3651077375,DE -3651077376,3651077887,GB -3651077888,3651078143,IE -3651078144,3651078399,ES -3651078400,3651078655,IE -3651078656,3651078783,ES -3651078784,3651078911,DE -3651078912,3651079807,GB -3651079808,3651079935,ES -3651079936,3651080191,DE -3651080192,3651080831,GB -3651080832,3651081215,DE -3651081216,3651081727,GB -3651081728,3651081983,AT -3651081984,3651082751,GB -3651082752,3651083007,IE -3651083008,3651083519,GB -3651083520,3651083775,DE -3651083776,3651084031,IE -3651084032,3651084543,FR -3651084544,3651084799,IE -3651084800,3651085311,ES -3651085312,3651085567,FR -3651085568,3651086079,DE -3651086080,3651086335,IE -3651086336,3651086463,DE -3651086464,3651086591,IE -3651086592,3651086719,GR -3651086720,3651086847,DE -3651086848,3651087103,FR -3651087104,3651087615,ES -3651087616,3651087871,GB -3651087872,3651088127,DE -3651088128,3651088383,IE -3651088384,3651088639,GR -3651088640,3651088895,SG -3651088896,3651098111,DE -3651098112,3651098367,IE -3651098368,3651098623,FR -3651098624,3651101439,DE -3651101440,3651101695,FR -3651101696,3651101951,CH -3651101952,3651102207,FR -3651102208,3651102719,DE -3651102720,3651102975,GB -3651102976,3651103231,SL -3651103232,3651103487,IT -3651103488,3651103743,FR -3651103744,3651103999,IT -3651104000,3651104511,DE -3651104512,3651104767,PL -3651104768,3651105535,DE -3651105536,3651105791,IT -3651105792,3651106047,ES -3651106048,3651106559,GB -3651106560,3651106815,IE -3651106816,3651107327,DE -3651107328,3651107583,GB -3651107584,3651107839,NL -3651107840,3651107967,GB -3651107968,3651108351,IE -3651108352,3651108479,NL -3651108480,3651108543,ES -3651108544,3651108863,DE -3651108864,3651141631,EE -3651141632,3651198975,DE -3651198976,3651207167,US -3651207168,3651207199,GB -3651207224,3651207295,GB -3651207424,3651207615,GB -3651207648,3651208959,GB -3651209216,3651209231,US -3651209232,3651209239,GB -3651209240,3651209243,DE -3651209472,3651210751,GB -3651211264,3651211775,IR -3651213824,3651214207,US -3651215360,3651215395,GB -3651215616,3651215871,GB -3651217408,3651217535,GI -3651219456,3651219967,US -3651220384,3651220479,GB -3651221504,3651221695,GB -3651223552,3651223567,GB -3651223584,3651223607,GB -3651223648,3651223663,ES -3651227136,3651227391,GB -3651230720,3651231743,MU -3651232256,3651232287,GB -3651232320,3651232383,GB -3651232448,3651232511,GB -3651233792,3651233855,GB -3651236032,3651236063,GB -3651236864,3651237631,SC -3651237888,3651238399,SC -3651239936,3651272703,GB -3651272704,3651338239,CH -3651338240,3651403775,GB -3651403776,3651534847,AE -3651534848,3651600383,NL -3651600384,3651636696,FR -3651636697,3651636697,GB -3651636698,3651665919,FR -3651665920,3651670015,ES -3651670016,3651674111,GB -3651674112,3651682303,CH -3651682304,3651686399,RU -3651686400,3651690495,NO -3651690496,3651694591,FR -3651694592,3651694719,GH -3651694720,3651694847,PT -3651694848,3651694975,NG -3651694976,3651695103,PT -3651695104,3651695359,CV -3651695360,3651696639,PT -3651696640,3651698687,AO -3651698688,3651702783,PL -3651702784,3651706879,GB -3651706880,3651710975,MT -3651710976,3651715071,AZ -3651715072,3651719167,PL -3651719168,3651723263,CZ -3651723264,3651727359,IT -3651727360,3651731455,RU -3651731456,3651747839,GB -3651747840,3651751935,FI -3651751936,3651756031,RU -3651756032,3651764223,IT -3651764224,3651772415,CH -3651772416,3651776511,GB -3651776512,3651780607,CZ -3651780608,3651784703,TR -3651784704,3651785215,RS -3651785216,3651785227,CS -3651785228,3651785231,RS -3651785232,3651785271,CS -3651785272,3651785279,RS -3651785280,3651785295,CS -3651785296,3651785303,RS -3651785304,3651785311,CS -3651785312,3651785319,RS -3651785320,3651785327,CS -3651785328,3651785335,RS -3651785336,3651785351,CS -3651785352,3651785359,RS -3651785360,3651785391,CS -3651785392,3651785395,RS -3651785396,3651785415,CS -3651785416,3651785419,RS -3651785420,3651785455,CS -3651785456,3651785483,RS -3651785484,3651785487,CS -3651785488,3651785499,RS -3651785500,3651785503,CS -3651785504,3651785527,RS -3651785528,3651785539,CS -3651785540,3651785547,RS -3651785548,3651785559,CS -3651785560,3651785563,RS -3651785564,3651785591,CS -3651785592,3651785603,RS -3651785604,3651785611,CS -3651785612,3651785615,RS -3651785616,3651785631,CS -3651785632,3651785635,RS -3651785636,3651785647,CS -3651785648,3651785655,RS -3651785656,3651785659,CS -3651785660,3651785663,RS -3651785664,3651785699,CS -3651785700,3651785703,RS -3651785704,3651785727,CS -3651785728,3651787519,RS -3651787520,3651787591,CS -3651787592,3651787615,RS -3651787616,3651787759,CS -3651787760,3651787791,RS -3651787792,3651787799,CS -3651787800,3651787839,RS -3651787840,3651787863,CS -3651787864,3651787875,RS -3651787876,3651787883,CS -3651787884,3651787887,RS -3651787888,3651787891,CS -3651787892,3651787895,RS -3651787896,3651787903,CS -3651787904,3651787911,RS -3651787912,3651787939,CS -3651787940,3651787943,RS -3651787944,3651788039,CS -3651788040,3651788043,RS -3651788044,3651788059,CS -3651788060,3651788063,RS -3651788064,3651788159,CS -3651788160,3651788175,RS -3651788176,3651788183,CS -3651788184,3651788207,RS -3651788208,3651788239,CS -3651788240,3651788251,RS -3651788252,3651788255,CS -3651788256,3651788263,RS -3651788264,3651788279,CS -3651788280,3651788287,RS -3651788288,3651788799,CS -3651788800,3651792895,NL -3651792896,3651796991,FR -3651796992,3651813375,NL -3651813376,3651821567,RU -3651821568,3651825663,CZ -3651825664,3651829759,RU -3651829760,3651833855,NO -3651842048,3651846143,DE -3651846144,3651850239,NO -3651850240,3651854335,RU -3651854336,3651858431,IT -3651858432,3651858687,CS -3651858688,3651858943,SC -3651858944,3651862527,CS -3651862528,3651866623,RU -3651866624,3651870719,FR -3651870720,3651874815,IT -3651874816,3651878911,PL -3651878912,3651883007,RU -3651883008,3651887103,BE -3651887104,3651891199,GB -3651891200,3651895295,DE -3651895296,3651899391,GB -3651899392,3651903487,RU -3651903488,3651907583,IT -3651907584,3651908991,IQ -3651908992,3651909311,DE -3651909312,3651909375,IQ -3651909376,3651909631,DE -3651909632,3651910655,IQ -3651910656,3651910783,DE -3651910784,3651911167,IQ -3651911168,3651911623,DE -3651911624,3651911631,IQ -3651911632,3651911643,DE -3651911644,3651911647,IR -3651911648,3651915775,DE -3651915776,3651919871,IS -3651919872,3651923967,RU -3651923968,3651928063,GB -3651928064,3651932159,IT -3651932160,3651936255,RU -3651936256,3651938175,DE -3651938176,3651938207,GB -3651938208,3651938255,DE -3651938256,3651938271,PL -3651938272,3651938943,DE -3651938944,3651938959,NL -3651938960,3651938975,DE -3651938976,3651939007,TR -3651939008,3651939071,DE -3651939072,3651939087,SE -3651939088,3651939135,DE -3651939136,3651939151,PL -3651939152,3651939167,DE -3651939168,3651939231,GB -3651939232,3651939263,DE -3651939264,3651939295,IT -3651939296,3651939327,PL -3651939328,3651939391,IT -3651939392,3651939503,DE -3651939504,3651939511,GB -3651939512,3651939519,DE -3651939520,3651939527,RU -3651939528,3651939583,PL -3651939584,3651939647,DE -3651939648,3651939711,ES -3651939712,3651939727,DE -3651939728,3651939743,PL -3651939744,3651939791,DE -3651939792,3651939799,RU -3651939800,3651940351,DE -3651940352,3651940383,TR -3651940384,3651940415,US -3651940416,3651940479,IT -3651940480,3651940543,GB -3651940544,3651940639,DE -3651940640,3651940671,BS -3651940672,3651940735,DE -3651940736,3651940743,AU -3651940744,3651940751,RU -3651940752,3651940799,DE -3651940800,3651940863,ES -3651940864,3651940927,GB -3651940928,3651940991,IT -3651940992,3651941027,DE -3651941028,3651941055,TR -3651941056,3651941087,DE -3651941088,3651941119,GB -3651941120,3651941183,DE -3651941184,3651941215,IT -3651941216,3651941249,TR -3651941250,3651941695,DE -3651941696,3651941759,IT -3651941760,3651942655,DE -3651942656,3651942719,GB -3651942720,3651942735,SE -3651942736,3651942751,US -3651942752,3651942783,DE -3651942784,3651942815,GB -3651942816,3651944447,DE -3651944448,3651948543,ES -3651948544,3651952639,FO -3651952640,3651954175,IR -3651954176,3651954431,AE -3651954432,3651958271,IR -3651958272,3651958783,UA -3651958784,3651960831,IR -3651964928,3651969023,SK -3651969024,3651977215,DE -3651977216,3651985407,IT -3651985408,3651993599,PL -3651993600,3652001791,RU -3652001792,3652005887,HU -3652005888,3652009983,GB -3652009984,3652014079,RU -3652014080,3652018175,SA -3652018176,3652018239,IE -3652018240,3652018943,GB -3652018944,3652019167,IE -3652019168,3652019199,GB -3652019200,3652019423,IE -3652019424,3652019583,GB -3652019584,3652019599,IE -3652019600,3652019615,GB -3652019616,3652019663,IE -3652019664,3652019775,GB -3652019776,3652019791,IE -3652019792,3652019807,GB -3652019808,3652019815,IE -3652019816,3652019887,GB -3652019888,3652019903,IE -3652019904,3652019951,GB -3652019952,3652019967,IE -3652019968,3652020479,GB -3652020480,3652020735,IE -3652020736,3652020767,GB -3652020768,3652020799,IE -3652020800,3652020863,DE -3652020864,3652020991,IE -3652020992,3652021791,GB -3652021792,3652021887,IE -3652021888,3652022271,GB -3652022272,3652026367,ES -3652026368,3652028031,DE -3652028032,3652028063,US -3652028064,3652028095,CH -3652028096,3652028223,DE -3652028224,3652028255,ES -3652028256,3652031743,DE -3652031744,3652031999,US -3652032000,3652032767,DE -3652032768,3652033791,NL -3652033792,3652033855,GD -3652033856,3652033887,NL -3652033888,3652033919,VG -3652033920,3652033935,TR -3652033936,3652033951,DE -3652033952,3652033967,CH -3652033968,3652033983,NL -3652033984,3652034015,TR -3652034016,3652034047,NL -3652034048,3652034111,GD -3652034112,3652034143,TR -3652034144,3652034175,CH -3652034176,3652034207,NL -3652034208,3652034239,ES -3652034240,3652034271,VG -3652034272,3652034367,GD -3652034368,3652034383,ES -3652034384,3652034399,VG -3652034400,3652034559,GD -3652034560,3652046847,PL -3652046848,3652050499,IE -3652050500,3652050503,GB -3652050504,3652050527,IE -3652050528,3652050535,GB -3652050536,3652050567,IE -3652050568,3652050615,GB -3652050616,3652050619,IE -3652050620,3652050671,GB -3652050672,3652050679,IE -3652050680,3652050687,GB -3652050688,3652050787,IE -3652050788,3652050791,GB -3652050792,3652050943,IE -3652050944,3652055039,LI -3652055040,3652059135,NO -3652059136,3652063231,RU -3652063232,3652067327,IR -3652067328,3652071423,TR -3652075520,3652083711,SE -3652083712,3652087807,RU -3652087808,3652095999,IT -3652096000,3652100095,BG -3652100096,3652105471,RU -3652105472,3652105535,US -3652105536,3652108287,RU -3652108288,3652116479,FR -3652116480,3652120575,TM -3652120576,3652124671,GB -3652124672,3652128767,UA -3652128768,3652136959,RU -3652136960,3652141055,IT -3652141056,3652145151,GB -3652145152,3652149247,UA -3652149248,3652153343,DE -3652153344,3652157439,SE -3652157440,3652165631,RU -3652165632,3652173823,FR -3652173824,3652177919,AT -3652177920,3652182015,CY -3652182016,3652182527,DE -3652182528,3652182783,AT -3652182784,3652186591,DE -3652186592,3652186623,CH -3652186624,3652186879,DE -3652186880,3652187007,AT -3652187008,3652190207,DE -3652190208,3652714495,GB -3652714496,3652984927,DE -3652984928,3652984935,NL -3652984936,3652985039,DE -3652985040,3652985047,FR -3652985048,3653039103,DE -3653039104,3653039359,IT -3653039360,3653238783,DE -3653238784,3653369855,CH -3653369856,3653373951,IT -3653373952,3653378047,NL -3653378048,3653382143,DE -3653382144,3653386239,CH -3653386240,3653390335,DE -3653390336,3653394431,FR -3653394432,3653402623,NL -3653402624,3653403135,AT -3653403136,3653403647,CD -3653403648,3653403903,GH -3653403904,3653403911,UA -3653403912,3653403919,IQ -3653403920,3653403931,UA -3653403932,3653403935,GB -3653403936,3653403943,IQ -3653403944,3653403951,LB -3653403952,3653403959,IQ -3653403960,3653403967,MW -3653403968,3653403983,NG -3653403984,3653403999,UA -3653404000,3653404015,LB -3653404016,3653404023,IQ -3653404024,3653404031,GB -3653404032,3653404039,NA -3653404040,3653404047,GB -3653404048,3653404055,LB -3653404056,3653404063,GB -3653404064,3653404071,LB -3653404072,3653404079,AO -3653404080,3653404087,UA -3653404088,3653404095,LB -3653404096,3653404103,IQ -3653404104,3653404111,GB -3653404112,3653404119,MD -3653404120,3653404127,GB -3653404128,3653404135,CS -3653404136,3653404143,AM -3653404144,3653404159,GB -3653404160,3653404415,AT -3653404416,3653404543,IQ -3653404544,3653404559,NG -3653404560,3653404567,CM -3653404568,3653404575,LY -3653404576,3653404591,TR -3653404592,3653404599,GH -3653404600,3653404607,GB -3653404608,3653404655,UA -3653404656,3653404671,GB -3653404672,3653404679,TR -3653404680,3653404687,IQ -3653404688,3653404707,GB -3653404708,3653404713,IQ -3653404714,3653404719,GB -3653404720,3653404735,LB -3653404736,3653404751,GB -3653404752,3653404759,AM -3653404760,3653404799,GB -3653404800,3653404815,IQ -3653404816,3653404831,LB -3653404832,3653404847,NG -3653404848,3653404855,GB -3653404856,3653404863,SL -3653404864,3653404871,LY -3653404872,3653404879,GB -3653404880,3653404887,UA -3653404888,3653404903,GB -3653404904,3653404911,IQ -3653404912,3653404919,LY -3653404920,3653404935,GB -3653404936,3653404943,TR -3653404944,3653404959,IQ -3653404960,3653404975,UA -3653404976,3653404983,GB -3653404984,3653404991,AM -3653404992,3653405007,IQ -3653405008,3653405031,LB -3653405032,3653405039,GB -3653405040,3653405047,LB -3653405048,3653405071,IQ -3653405072,3653405087,GB -3653405088,3653405095,LY -3653405096,3653405103,NG -3653405104,3653405119,CY -3653405120,3653405135,AM -3653405136,3653405151,UA -3653405152,3653405167,GB -3653405168,3653405183,UA -3653405184,3653405439,AT -3653405440,3653405695,IQ -3653405696,3653406975,NG -3653406976,3653407007,GB -3653407008,3653407015,TZ -3653407016,3653407023,UG -3653407024,3653407031,KE -3653407032,3653407071,NG -3653407072,3653407087,GB -3653407088,3653407095,NG -3653407096,3653407111,GB -3653407112,3653407119,ZM -3653407120,3653407151,GB -3653407152,3653407159,KE -3653407160,3653407167,GB -3653407168,3653407231,NG -3653407232,3653407359,GB -3653407360,3653407375,NG -3653407376,3653407383,KE -3653407384,3653407391,GB -3653407392,3653407399,KE -3653407400,3653407423,GB -3653407424,3653407487,ZW -3653407488,3653407615,RW -3653407616,3653407631,NG -3653407632,3653407647,ZM -3653407648,3653407679,GB -3653407680,3653407695,UG -3653407696,3653407703,CD -3653407704,3653407711,NG -3653407712,3653407743,GB -3653407744,3653407999,AT -3653408000,3653408023,GB -3653408024,3653408031,SO -3653408032,3653408055,GB -3653408056,3653408063,TZ -3653408064,3653408071,ZM -3653408072,3653408079,NG -3653408080,3653408087,MW -3653408088,3653408143,GB -3653408144,3653408151,NG -3653408152,3653408175,GB -3653408176,3653408183,KE -3653408184,3653408191,MW -3653408192,3653408199,NG -3653408200,3653408223,GB -3653408224,3653408231,ZM -3653408232,3653408239,GB -3653408240,3653408247,ZM -3653408248,3653409279,GB -3653409280,3653409535,TZ -3653409536,3653409559,UA -3653409560,3653409567,CM -3653409568,3653409575,UA -3653409576,3653409615,GB -3653409616,3653409623,IQ -3653409624,3653409639,NG -3653409640,3653409647,GB -3653409648,3653409663,NG -3653409664,3653409791,CM -3653409792,3653409855,ZW -3653409856,3653409919,GB -3653409920,3653410047,NG -3653410048,3653410063,YT -3653410064,3653410079,UG -3653410080,3653410087,GB -3653410088,3653410095,NG -3653410096,3653410111,ZW -3653410112,3653410127,NG -3653410128,3653410143,GB -3653410144,3653410151,ET -3653410152,3653410159,KE -3653410160,3653410175,NG -3653410176,3653410183,KE -3653410184,3653410191,MZ -3653410192,3653410199,ZW -3653410200,3653410215,GB -3653410216,3653410223,ZW -3653410224,3653410239,GB -3653410240,3653410247,SO -3653410248,3653410255,ZM -3653410256,3653410263,MW -3653410264,3653410271,NG -3653410272,3653410295,GB -3653410296,3653410303,NG -3653410304,3653410815,GB -3653414912,3653419007,IT -3653419008,3653423103,IL -3653423104,3653427199,GB -3653427200,3653431295,DE -3653431296,3653435391,RU -3653435392,3653439487,DE -3653439488,3653443583,FR -3653443584,3653444351,DE -3653444352,3653444383,IT -3653444384,3653447679,DE -3653447680,3653451775,LV -3653451776,3653464063,RU -3653464064,3653468159,NL -3653468160,3653472255,GR -3653472256,3653472279,NL -3653472280,3653472291,AF -3653472292,3653474303,NL -3653474304,3653474367,US -3653474368,3653476351,NL -3653476352,3653480447,CZ -3653480448,3653484543,DK -3653484544,3653488639,TR -3653488640,3653492735,RU -3653492736,3653500927,NL -3653500928,3653505023,GB -3653505024,3653509119,KZ -3653509120,3653513215,NL -3653513216,3653517311,NO -3653517312,3653518367,AT -3653518368,3653518399,SK -3653518400,3653518479,AT -3653518480,3653518495,SK -3653518496,3653519815,AT -3653519816,3653519871,SK -3653519872,3653520191,AT -3653520192,3653520255,SK -3653520256,3653522975,AT -3653522976,3653522991,SK -3653522992,3653523199,AT -3653523200,3653523455,SK -3653523456,3653523615,AT -3653523616,3653523647,SK -3653523648,3653524551,AT -3653524552,3653524559,GR -3653524560,3653524735,AT -3653524736,3653524863,SK -3653524864,3653524959,AT -3653524960,3653525151,SK -3653525152,3653525183,AT -3653525184,3653525215,SK -3653525216,3653525503,AT -3653525504,3653533695,RU -3653533696,3653537791,HU -3653537792,3653541887,AT -3653541888,3653544959,UA -3653544960,3653545215,AT -3653545216,3653545343,UA -3653545344,3653545471,SE -3653545472,3653545727,UA -3653545728,3653545791,SE -3653545792,3653545855,UA -3653545856,3653545983,SE -3653545984,3653550079,CH -3653550080,3653554175,GB -3653554176,3653558271,CZ -3653558272,3653566463,GB -3653566464,3653570559,RU -3653570560,3653574655,NO -3653574656,3653578751,CZ -3653578752,3653582847,SE -3653582848,3653586943,PL -3653586944,3653591039,DE -3653591040,3653595135,LU -3653595136,3653599231,RU -3653599232,3653603327,BG -3653603328,3653607423,CZ -3653607424,3653611519,PL -3653611520,3653615615,HU -3653615616,3653619711,GB -3653619712,3653623295,CH -3653623296,3653623551,JP -3653623552,3653623807,US -3653623808,3653636095,RU -3653636096,3653640191,NL -3653640192,3653644031,GB -3653644032,3653644047,BE -3653644048,3653644271,GB -3653644272,3653644275,BE -3653644276,3653648383,GB -3653648384,3653652479,SE -3653652480,3653656575,RU -3653656576,3653660671,HR -3653660672,3653664767,CZ -3653664768,3653668863,UA -3653668864,3653672959,SE -3653672960,3653681151,RU -3653681152,3653685247,NL -3653685248,3653689343,DK -3653689344,3653693439,LV -3653693440,3653697535,DE -3653697536,3653705727,IT -3653705728,3653705735,SE -3653705736,3653705863,NO -3653705864,3653705871,SE -3653705872,3653705895,NO -3653705896,3653705903,BS -3653705904,3653706175,NO -3653706176,3653706191,SE -3653706192,3653706271,NO -3653706272,3653706303,SE -3653706304,3653706495,NO -3653706496,3653706751,SE -3653706752,3653710847,NO -3653710848,3653710911,SE -3653710912,3653713919,NO -3653713920,3653718015,DE -3653718016,3653722111,AT -3653722112,3653730303,LV -3653730304,3653734399,BA -3653738496,3653740295,GB -3653740296,3653740303,US -3653740304,3653744895,GB -3653744896,3653744959,AE -3653744960,3653746687,GB -3653750784,3653754879,RU -3653754880,3653758975,UA -3653758976,3653763071,RU -3653763072,3654025215,IT -3654025216,3654034783,GB -3654034784,3654034799,LU -3654034800,3654035583,GB -3654035584,3654035591,US -3654035592,3654035607,GB -3654035608,3654035615,SE -3654035616,3654061035,GB -3654061036,3654061039,US -3654061040,3654061951,GB -3654061952,3654062079,DE -3654062080,3654066027,GB -3654066028,3654066031,MC -3654066032,3654287359,GB -3654287360,3654607871,SE -3654607872,3654608127,NO -3654608128,3654608895,SE -3654608896,3654609919,NO -3654609920,3654609927,DK -3654609928,3654612991,SE -3654612992,3654612999,RU -3654613000,3654613007,SE -3654613008,3654613015,RU -3654613016,3654613055,SE -3654613056,3654613151,RU -3654613152,3654613247,SE -3654613248,3654614015,NO -3654614016,3654614031,SE -3654614032,3654614047,US -3654614048,3654614079,SE -3654614080,3654614143,FI -3654614144,3654614527,SE -3654614528,3654614783,RU -3654614784,3654615039,NO -3654615040,3654811647,SE -3654811648,3654942719,ES -3654942720,3655073791,IR -3655073792,3655335935,IT -3655335936,3656229703,DE -3656229704,3656229711,ES -3656229712,3656233999,DE -3656234000,3656234007,NL -3656234008,3656234263,DE -3656234264,3656234271,US -3656234272,3656236527,DE -3656236528,3656236535,GB -3656236536,3656236543,US -3656236544,3656633487,DE -3656633488,3656633495,GB -3656633496,3656633503,US -3656633504,3656650583,DE -3656650584,3656650591,US -3656650592,3656650623,DE -3656650624,3656650687,CN -3656650688,3656661183,DE -3656661184,3656661199,AT -3656661200,3656661583,DE -3656661584,3656661599,AT -3656661600,3656661647,DE -3656661648,3656661679,AT -3656661680,3656662271,DE -3656662272,3656662367,AT -3656662368,3656662431,DE -3656662432,3656662463,AT -3656662464,3657433087,DE -3657433088,3659530239,CN -3659530240,3659595775,TW -3659595776,3659628543,ID -3659628544,3659661311,JP -3659661312,3659792383,TW -3659792384,3660054527,KR -3660054528,3660578815,JP -3660578816,3661103103,KR -3661103104,3663986687,CN -3663986688,3663987711,AU -3663987712,3663987967,ID -3663987968,3663989247,JP -3663989248,3663989503,VN -3663989504,3663989759,ID -3663989760,3663990271,AU -3663990272,3663990527,VN -3663990528,3663990783,JP -3663990784,3663991295,HK -3663991296,3663991551,MY -3663991552,3663991807,AU -3663991808,3663992063,JP -3663992064,3663992319,NZ -3663992320,3663992575,MY -3663992576,3663993599,NZ -3663993600,3663996159,ID -3663996160,3663996415,BD -3663996416,3663996671,TH -3663996672,3663997183,AU -3663997184,3663997439,ID -3663997440,3663997695,JP -3663997696,3663997951,AU -3663997952,3663998207,MY -3663998208,3663998463,JP -3663998464,3663998975,TH -3663998976,3663999487,IN -3663999488,3663999743,AU -3663999744,3663999999,KH -3664000000,3664000767,AU -3664000768,3664001023,ID -3664001024,3664001279,NZ -3664001280,3664001535,LK -3664001536,3664001791,MY -3664001792,3664002047,AU -3664002048,3664002303,VN -3664002304,3664002559,LK -3664002560,3664003327,ID -3664003328,3664003583,NZ -3664003584,3664003839,TH -3664003840,3664052223,AU -3664052224,3664084991,NZ -3664084992,3664117759,KR -3664117760,3664248831,HK -3664248832,3664642047,CN -3664642048,3664707583,JP -3664707584,3664773119,MY -3664773120,3666870271,JP -3666870272,3667918847,KR -3667918848,3668967423,TW -3668967424,3669491711,JP -3669491712,3669557247,TW -3669557248,3669590015,AU -3669590016,3669606399,JP -3669606400,3669614591,CN -3669614592,3669616639,NZ -3669616640,3669618687,AU -3669618688,3669620735,BD -3669620736,3669622783,JP -3669622784,3669688319,SG -3669688320,3669753855,TW -3669753856,3669822719,HK -3669822720,3669822735,US -3669822736,3670015999,HK -3670016000,3671064575,CN -3671064576,3671130111,MY -3671130112,3671195647,KR -3671195648,3671326719,TW -3671326720,3671392255,SG -3671392256,3671457791,HK -3671457792,3671588863,AU -3671588864,3672637439,JP -3672637440,3673161727,KR -3673161728,3673686015,CN -3673686016,3673751551,IN -3673751552,3673817087,CN -3673817088,3673882623,HK -3673882624,3673948159,JP -3673948160,3674210303,HK -3674210304,3674431743,JP -3674431744,3674431999,UA -3674432000,3678404607,JP -3678404608,3678535679,IN -3678535680,3678666751,JP -3678666752,3678928895,TW -3678928896,3678994431,CN -3678994432,3679027199,HK -3679027200,3679059967,JP -3679059968,3679158271,SG -3679158272,3679191039,JP -3679191040,3679453183,HK -3679453184,3679584255,TW -3679584256,3679649791,CN -3679649792,3679682559,ID -3679682560,3679715327,IN -3679715328,3679977471,TW -3679977472,3680108543,NZ -3680108544,3680124927,TW -3680124928,3680133119,PH -3680133120,3680137215,IN -3680137216,3680141311,HK -3680141312,3680174079,AU -3680174080,3680206847,TW -3680206848,3680239615,IN -3680239616,3680403455,MY -3680403456,3680436223,JP -3680436224,3680501759,MY -3680501760,3682598911,JP -3682598912,3684696063,CN -3684696064,3688366079,JP -3688366080,3689938943,CN -3689938944,3690070015,KR -3690070016,3690463231,CN -3690463232,3690987519,KR -3690987520,3695181823,JP -3695181824,3697278975,KR -3697278976,3697606655,JP -3697606656,3697655807,AU -3697655808,3697672191,CN -3697672192,3697737727,JP -3697737728,3697803263,KR -3697803264,3698327551,JP -3698327552,3698589695,CN -3698589696,3699376127,KR -3699376128,3700424703,TW -3700424704,3700752383,JP -3700752384,3700817919,KR -3700817920,3700977663,JP -3700977664,3700979711,AU -3700979712,3700981759,JP -3700981760,3701014527,CN -3701014528,3701080063,JP -3701080064,3701211135,CN -3701211136,3701252095,JP -3701252096,3701256191,AU -3701256192,3701258239,SG -3701258240,3701260287,IN -3701260288,3701293055,JP -3701293056,3701301247,AU -3701301248,3701305343,ID -3701305344,3701309439,TW -3701309440,3701473279,JP -3701473280,3704619007,CN -3704619008,3705667583,JP -3705667584,3705929727,IN -3705929728,3706060799,TW -3706060800,3706126335,KR -3706126336,3706142719,CN -3706142720,3706159103,VN -3706159104,3706191871,CN -3706191872,3706208255,SG -3706208256,3706224639,CN -3706224640,3706257407,HK -3706257408,3706322943,AU -3706322944,3706388479,CN -3706388480,3706781695,AU -3706781696,3706847231,HK -3706847232,3706978303,CN -3706978304,3707109375,AU -3707109376,3707174911,HK -3707174912,3707207679,JP -3707207680,3707208703,TW -3707208704,3707215871,AU -3707215872,3707217919,BD -3707217920,3707219967,ID -3707219968,3707222015,AU -3707222016,3707224063,JP -3707224064,3707240447,LK -3707240448,3707568127,CN -3707568128,3707633663,AU -3707633664,3707699199,JP -3707699200,3707764735,SG -3707764736,3708600319,CN -3708600320,3708616703,JP -3708616704,3708813311,CN -3708813312,3715629055,JP -3715629056,3715653631,TW -3715653632,3715655679,BD -3715655680,3715657727,IN -3715657728,3715659775,AU -3715659776,3715661823,SG -3715661824,3715674111,AU -3715674112,3715678207,HK -3715678208,3715694591,PK -3715694592,3715710975,VN -3715710976,3715719167,AU -3715719168,3715727359,PH -3715727360,3715735551,AU -3715735552,3715741695,JP -3715741696,3715743743,PH -3715743744,3715760127,JP -3715760128,3715891199,CN -3715891200,3716153343,HK -3716153344,3716169727,SG -3716169728,3716186111,TH -3716186112,3716218879,IN -3716218880,3716415487,CN -3716415488,3716431871,VN -3716431872,3716440063,KR -3716440064,3716444159,JP -3716444160,3716446207,PK -3716446208,3716448255,AU -3716448256,3716464639,JP -3716464640,3716481023,ID -3716481024,3716489215,VN -3716489216,3716493311,MY -3716493312,3716497407,KR -3716497408,3716513791,JP -3716513792,3716530175,KR -3716530176,3716536372,AU -3716536373,3716536373,AS -3716536374,3716537111,AU -3716537112,3716537119,AS -3716537120,3716537151,AU -3716537152,3716537183,AS -3716537184,3716537199,AU -3716537200,3716537215,AS -3716537216,3716537279,AU -3716537280,3716537343,AS -3716537344,3716537407,AU -3716537408,3716537471,AS -3716537472,3716537535,AU -3716537536,3716537567,HK -3716537568,3716537599,JP -3716537600,3716538367,AU -3716538368,3716546559,CN -3716546560,3716677631,IN -3716677632,3716808703,CN -3716808704,3718840319,KR -3718840320,3718905855,TW -3718905856,3719036927,JP -3719036928,3719823359,CN -3719823360,3720347647,JP -3720347648,3720859647,CN -3720859648,3720863743,AU -3720863744,3723493375,CN -3723493376,3725590527,JP -3725590528,3730833407,CN -3730833408,3732602879,KR -3732602880,3732668415,TH -3732668416,3732733951,ID -3732733952,3732799487,CN -3732799488,3732832255,PH -3732832256,3732865023,CN -3732865024,3732930559,PH -3732930560,3733979135,CN -3733979136,3734503423,JP -3734503424,3734765567,NZ -3734765568,3734896639,TW -3734896640,3735027711,JP -3735027712,3735289855,CN -3735289856,3735388159,SG -3735388160,3735404543,LK -3735404544,3735420927,ID -3735420928,3735551999,HK -3735552000,3739222015,CN -3739222016,3739570175,JP -3739570176,3739572223,ID -3739572224,3739574271,TH -3739574272,3739680767,JP -3739680768,3739697151,KR -3739697152,3739746303,JP -3739746304,3740270591,KR -3740270592,3740925951,CN -3740925952,3741024255,TW -3741024256,3741057023,KR -3741057024,3741319167,VN -3758096384,4294967295,US +35609435 \ No newline at end of file -- cgit v1.2.3 From 48bf1d97eeed9fd0812e281cbc1f08c6c5ade89c Mon Sep 17 00:00:00 2001 From: Karsten Loesing Date: Thu, 4 Jun 2009 00:47:58 +0200 Subject: Update the rest of the geoip file. --- src/config/geoip | 15267 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 15266 insertions(+), 1 deletion(-) diff --git a/src/config/geoip b/src/config/geoip index 204368bf2..31c721a9f 100644 --- a/src/config/geoip +++ b/src/config/geoip @@ -78025,4 +78025,15269 @@ 3560943551,3560943551,FR 3560943552,3560943552,IT 3560943553,3560943553,DE -35609435 \ No newline at end of file +3560943554,3560943554,IS +3560943555,3560943555,FR +3560943556,3560943556,DE +3560943557,3560943557,ES +3560943558,3560943558,DE +3560943559,3560943559,GB +3560943560,3560943562,IT +3560943563,3560943563,HU +3560943564,3560943564,DE +3560943565,3560943565,GB +3560943566,3560943566,DE +3560943567,3560943567,FR +3560943568,3560943568,GB +3560943569,3560943570,FR +3560943571,3560943572,DE +3560943573,3560943573,FR +3560943574,3560943574,NO +3560943575,3560943575,BE +3560943576,3560943576,IT +3560943577,3560943577,DK +3560943578,3560943578,ES +3560943579,3560943580,DE +3560943581,3560943581,NL +3560943582,3560943582,DE +3560943583,3560943583,ES +3560943584,3560943584,IT +3560943585,3560943585,FR +3560943586,3560943586,ES +3560943587,3560943587,DE +3560943588,3560943588,IT +3560943589,3560943589,NL +3560943590,3560943590,HU +3560943591,3560943591,AT +3560943592,3560943592,SK +3560943593,3560943593,PL +3560943594,3560943594,FR +3560943595,3560943596,ES +3560943597,3560943599,DE +3560943600,3560943600,AT +3560943601,3560943602,IT +3560943603,3560943603,CH +3560943604,3560943604,ES +3560943605,3560943605,GB +3560943606,3560943607,DE +3560943608,3560943608,IT +3560943609,3560943610,DE +3560943611,3560943611,FR +3560943612,3560943612,DE +3560943613,3560943613,ES +3560943614,3560943617,DE +3560943618,3560943618,FR +3560943619,3560943620,ES +3560943621,3560943621,SE +3560943622,3560943622,BE +3560943623,3560943623,DE +3560943624,3560943624,ES +3560943625,3560943625,AT +3560943626,3560943626,ES +3560943627,3560943627,DK +3560943628,3560943628,DE +3560943629,3560943629,IT +3560943630,3560943630,DE +3560943631,3560943631,HU +3560943632,3560943632,CH +3560943633,3560943633,ES +3560943634,3560943634,FR +3560943635,3560943635,ES +3560943636,3560943636,DE +3560943637,3560943637,PL +3560943638,3560943638,IT +3560943639,3560943639,ES +3560943640,3560943640,FR +3560943641,3560943643,IT +3560943644,3560943644,DE +3560943645,3560943645,GB +3560943646,3560943646,DE +3560943647,3560943647,ES +3560943648,3560943648,DE +3560943649,3560943649,NL +3560943650,3560943651,DE +3560943652,3560943652,AT +3560943653,3560943653,DE +3560943654,3560943654,IT +3560943655,3560943655,DE +3560943656,3560943656,IT +3560943657,3560943657,DE +3560943658,3560943658,GB +3560943659,3560943659,DE +3560943660,3560943660,PT +3560943661,3560943661,DK +3560943662,3560943662,DE +3560943663,3560943664,NL +3560943665,3560943666,DE +3560943667,3560943667,PL +3560943668,3560943668,DK +3560943669,3560943669,FR +3560943670,3560943671,DE +3560943672,3560943672,BH +3560943673,3560943673,SE +3560943674,3560943674,MA +3560943675,3560943675,FR +3560943676,3560943677,DE +3560943678,3560943680,ES +3560943681,3560943682,DE +3560943683,3560943683,GR +3560943684,3560943684,NL +3560943685,3560943685,IT +3560943686,3560943686,FR +3560943687,3560943687,PT +3560943688,3560943688,DE +3560943689,3560943689,PT +3560943690,3560943690,IT +3560943691,3560943691,DE +3560943692,3560943692,SE +3560943693,3560943693,DE +3560943694,3560943694,FR +3560943695,3560943695,GR +3560943696,3560943697,CH +3560943698,3560943698,DE +3560943699,3560943699,IT +3560943700,3560943700,DE +3560943701,3560943701,AT +3560943702,3560943702,DE +3560943703,3560943703,FR +3560943704,3560943704,DE +3560943705,3560943705,CH +3560943706,3560943706,LI +3560943707,3560943709,DE +3560943710,3560943710,NL +3560943711,3560943711,DE +3560943712,3560943712,IT +3560943713,3560943713,PL +3560943714,3560943714,NL +3560943715,3560943715,DE +3560943716,3560943716,GB +3560943717,3560943717,FR +3560943718,3560943719,DE +3560943720,3560943721,IT +3560943722,3560943726,DE +3560943727,3560943727,ES +3560943728,3560943728,GB +3560943729,3560943729,DE +3560943730,3560943730,NL +3560943731,3560943731,IT +3560943732,3560943732,FR +3560943733,3560943733,NO +3560943734,3560943736,DE +3560943737,3560943737,GR +3560943738,3560943738,PT +3560943739,3560943740,DE +3560943741,3560943741,FR +3560943742,3560943742,DE +3560943743,3560943743,PL +3560943744,3560943744,DE +3560943745,3560943745,PL +3560943746,3560943748,DE +3560943749,3560943749,GB +3560943750,3560943750,DE +3560943751,3560943751,IT +3560943752,3560943752,DE +3560943753,3560943753,ES +3560943754,3560943754,HU +3560943755,3560943755,BE +3560943756,3560943756,IT +3560943757,3560943757,DE +3560943758,3560943758,CZ +3560943759,3560943759,IE +3560943760,3560943760,NO +3560943761,3560943761,GB +3560943762,3560943762,IT +3560943763,3560943763,FR +3560943764,3560943764,PL +3560943765,3560943765,SE +3560943766,3560943766,CY +3560943767,3560943768,DE +3560943769,3560943769,FR +3560943770,3560943770,NL +3560943771,3560943771,IT +3560943772,3560943774,DE +3560943775,3560943775,FR +3560943776,3560943780,DE +3560943781,3560943781,ES +3560943782,3560943782,DE +3560943783,3560943783,BE +3560943784,3560943786,DE +3560943787,3560943787,ES +3560943788,3560943788,DK +3560943789,3560943789,IT +3560943790,3560943790,DE +3560943791,3560943791,IT +3560943792,3560943793,DE +3560943794,3560943794,FR +3560943795,3560943795,DE +3560943796,3560943796,IT +3560943797,3560943797,DE +3560943798,3560943798,DK +3560943799,3560943799,DE +3560943800,3560943800,CH +3560943801,3560943801,FR +3560943802,3560943802,IT +3560943803,3560943803,HU +3560943804,3560943804,ES +3560943805,3560943805,DE +3560943806,3560943806,ES +3560943807,3560943807,DK +3560943808,3560943810,DE +3560943811,3560943811,ES +3560943812,3560943812,IT +3560943813,3560943813,CH +3560943814,3560943814,DE +3560943815,3560943815,IT +3560943816,3560943817,FR +3560943818,3560943818,PT +3560943819,3560943819,DE +3560943820,3560943820,FR +3560943821,3560943821,IT +3560943822,3560943822,DE +3560943823,3560943823,GR +3560943824,3560943827,DE +3560943828,3560943828,ES +3560943829,3560943829,NL +3560943830,3560943830,DK +3560943831,3560943833,FR +3560943834,3560943835,DE +3560943836,3560943836,BE +3560943837,3560943837,CH +3560943838,3560943838,DE +3560943839,3560943839,NO +3560943840,3560943840,LU +3560943841,3560943841,GB +3560943842,3560943842,DE +3560943843,3560943843,GB +3560943844,3560943844,BE +3560943845,3560943845,CZ +3560943846,3560943846,LU +3560943847,3560943847,CZ +3560943848,3560943848,FR +3560943849,3560943849,DE +3560943850,3560943850,NL +3560943851,3560943857,DE +3560943858,3560943858,GB +3560943859,3560943859,DE +3560943860,3560943860,GB +3560943861,3560943865,DE +3560943866,3560943866,BE +3560943867,3560943867,ES +3560943868,3560943868,FR +3560943869,3560943869,LU +3560943870,3560943871,DE +3560943872,3560943875,BR +3560943876,3560943879,DE +3560943880,3560943887,US +3560943888,3560943891,CA +3560943892,3560943895,DE +3560943896,3560943899,CL +3560943900,3560943903,MX +3560943904,3560943915,US +3560943916,3560943919,CA +3560943920,3560943923,US +3560943924,3560943927,MX +3560943928,3560943935,US +3560943936,3560943939,PE +3560943940,3560943943,DE +3560943944,3560943947,US +3560943948,3560943975,DE +3560943976,3560943979,US +3560943980,3560943983,DE +3560943984,3560943987,US +3560943988,3560943991,DE +3560943992,3560943999,US +3560944000,3560944023,DE +3560944024,3560944031,US +3560944032,3560944035,MX +3560944036,3560944039,US +3560944040,3560944043,MX +3560944044,3560944059,DE +3560944060,3560944063,US +3560944064,3560944067,DE +3560944068,3560944071,US +3560944072,3560944079,DE +3560944080,3560944083,US +3560944084,3560944087,CL +3560944088,3560944103,DE +3560944104,3560944107,US +3560944108,3560944119,DE +3560944120,3560944135,US +3560944136,3560944139,DE +3560944140,3560944159,US +3560944160,3560944163,MX +3560944164,3560944167,AR +3560944168,3560944175,US +3560944176,3560944179,BR +3560944180,3560944183,PA +3560944184,3560944187,US +3560944188,3560944191,CA +3560944192,3560944195,US +3560944196,3560944199,DE +3560944200,3560944203,BO +3560944204,3560944207,DE +3560944208,3560944211,CA +3560944212,3560944215,DE +3560944216,3560944219,BR +3560944220,3560944227,US +3560944228,3560944231,IT +3560944232,3560944235,US +3560944236,3560944239,CA +3560944240,3560944243,US +3560944244,3560944247,MX +3560944248,3560944267,US +3560944268,3560944271,CO +3560944272,3560944275,BR +3560944276,3560944279,PE +3560944280,3560944283,DE +3560944284,3560944295,US +3560944296,3560944299,CO +3560944300,3560944307,US +3560944308,3560944311,MX +3560944312,3560944315,US +3560944316,3560944323,AR +3560944324,3560944339,US +3560944340,3560944343,CO +3560944344,3560944351,US +3560944352,3560944355,GT +3560944356,3560944359,CA +3560944360,3560944363,DO +3560944364,3560944367,AR +3560944368,3560944371,BR +3560944372,3560944375,DE +3560944376,3560944379,AR +3560944380,3560944383,DE +3560944384,3560944395,US +3560944396,3560944399,PR +3560944400,3560944403,CA +3560944404,3560944411,DE +3560944412,3560944415,US +3560944416,3560944419,SG +3560944420,3560944431,US +3560944432,3560944435,DE +3560944436,3560944447,US +3560944448,3560944451,DE +3560944452,3560944459,US +3560944460,3560944460,AR +3560944461,3560944463,DE +3560944464,3560944467,CA +3560944468,3560944471,BR +3560944472,3560944475,US +3560944476,3560944479,AR +3560944480,3560944487,US +3560944488,3560944491,CA +3560944492,3560944519,US +3560944520,3560944523,DE +3560944524,3560944531,US +3560944532,3560944535,MX +3560944536,3560944551,US +3560944552,3560944555,BR +3560944556,3560944559,MX +3560944560,3560944563,US +3560944564,3560944567,ES +3560944568,3560944575,US +3560944576,3560944579,BR +3560944580,3560944603,US +3560944604,3560944607,CA +3560944608,3560944615,US +3560944616,3560944619,EC +3560944620,3560944623,US +3560944624,3560944627,CL +3560944628,3560944631,DE +3560944632,3560944635,CA +3560944636,3560944639,DE +3560944640,3560944643,TR +3560944644,3560944647,ES +3560944648,3560944651,TR +3560944652,3560944655,HU +3560944656,3560944659,TR +3560944660,3560944663,MZ +3560944664,3560944667,FR +3560944668,3560944671,TR +3560944672,3560944675,KZ +3560944676,3560944679,GR +3560944680,3560944687,TR +3560944688,3560944691,FR +3560944692,3560944695,SA +3560944696,3560944699,TR +3560944700,3560944703,CU +3560944704,3560944707,ZW +3560944708,3560944711,TR +3560944712,3560944715,IL +3560944716,3560944719,ZW +3560944720,3560944723,SK +3560944724,3560944727,TR +3560944728,3560944731,KZ +3560944732,3560944735,TR +3560944736,3560944743,FR +3560944744,3560944747,GR +3560944748,3560944755,TR +3560944756,3560944759,MZ +3560944760,3560944767,TR +3560944768,3560944771,MZ +3560944772,3560944779,DE +3560944780,3560944783,ES +3560944784,3560944787,FR +3560944788,3560944791,NL +3560944792,3560944795,ES +3560944796,3560944799,GB +3560944800,3560944803,ES +3560944804,3560944807,FR +3560944808,3560944811,DE +3560944812,3560944815,ES +3560944816,3560944823,IT +3560944824,3560944827,DE +3560944828,3560944831,IE +3560944832,3560944835,DE +3560944836,3560944839,IT +3560944840,3560944843,TR +3560944844,3560944847,DE +3560944848,3560944855,FR +3560944856,3560944859,NL +3560944860,3560944863,DK +3560944864,3560944871,FR +3560944872,3560944875,DE +3560944876,3560944879,ES +3560944880,3560944883,SA +3560944884,3560944887,ES +3560944888,3560944891,CH +3560944892,3560944895,DE +3560944896,3560944899,TW +3560944900,3560944903,SG +3560944904,3560944907,MY +3560944908,3560944919,SG +3560944920,3560944923,MY +3560944924,3560944927,CN +3560944928,3560944931,MY +3560944932,3560944935,SG +3560944936,3560944943,CN +3560944944,3560944947,MY +3560944948,3560944951,SG +3560944952,3560944955,TW +3560944956,3560944959,SG +3560944960,3560944963,IN +3560944964,3560944967,MY +3560944968,3560944971,SG +3560944972,3560944975,CN +3560944976,3560944987,IN +3560944988,3560944991,SG +3560944992,3560944995,MY +3560944996,3560944999,SG +3560945000,3560945003,MY +3560945004,3560945007,IN +3560945008,3560945011,SG +3560945012,3560945015,DE +3560945016,3560945027,IN +3560945028,3560945031,MY +3560945032,3560945035,IN +3560945036,3560945039,CN +3560945040,3560945043,SG +3560945044,3560945047,TW +3560945048,3560945059,IN +3560945060,3560945063,SG +3560945064,3560945067,MY +3560945068,3560945075,IN +3560945076,3560945083,CN +3560945084,3560945091,IN +3560945092,3560945095,SG +3560945096,3560945099,CN +3560945100,3560945103,SG +3560945104,3560945107,MY +3560945108,3560945111,TW +3560945112,3560945115,SG +3560945116,3560945119,IN +3560945120,3560945123,CN +3560945124,3560945131,SG +3560945132,3560945135,TW +3560945136,3560945139,MY +3560945140,3560945143,SG +3560945144,3560945147,IN +3560945148,3560945151,SG +3560945152,3560945153,DE +3560945154,3560945156,AU +3560945157,3560945157,NZ +3560945158,3560945167,AU +3560945168,3560945168,DE +3560945169,3560945169,AU +3560945170,3560945191,DE +3560945192,3560945192,AU +3560945193,3560945194,DE +3560945195,3560945195,AU +3560945196,3560945204,DE +3560945205,3560945205,AU +3560945206,3560945206,IN +3560945207,3560945209,AU +3560945210,3560945227,DE +3560945228,3560945231,IN +3560945232,3560945267,DE +3560945268,3560945271,AU +3560945272,3560945275,DE +3560945276,3560945279,AU +3560945280,3560945355,JP +3560945356,3560945359,TH +3560945360,3560945403,JP +3560945404,3560945407,TH +3560945408,3560945409,DE +3560945410,3560945410,MY +3560945411,3560945411,TW +3560945412,3560945412,CN +3560945413,3560945413,SG +3560945414,3560945414,IN +3560945415,3560945416,SG +3560945417,3560945418,CN +3560945419,3560945419,MY +3560945420,3560945420,IN +3560945421,3560945422,SG +3560945423,3560945423,CN +3560945424,3560945424,MY +3560945425,3560945425,IN +3560945426,3560945426,MY +3560945427,3560945427,CN +3560945428,3560945428,SG +3560945429,3560945429,TW +3560945430,3560945430,MY +3560945431,3560945431,CN +3560945432,3560945433,IN +3560945434,3560945434,TW +3560945435,3560945435,MY +3560945436,3560945436,CN +3560945437,3560945437,SG +3560945438,3560945438,TW +3560945439,3560945439,SG +3560945440,3560945440,ID +3560945441,3560945441,SG +3560945442,3560945443,IN +3560945444,3560945448,SG +3560945449,3560945449,IN +3560945450,3560945450,SG +3560945451,3560945451,IN +3560945452,3560945452,SG +3560945453,3560945453,IN +3560945454,3560945458,SG +3560945459,3560945459,TW +3560945460,3560945461,SG +3560945462,3560945462,IN +3560945463,3560945465,SG +3560945466,3560945466,CN +3560945467,3560945467,MY +3560945468,3560945469,SG +3560945470,3560945470,CN +3560945471,3560945471,SG +3560945472,3560945472,CN +3560945473,3560945473,TW +3560945474,3560945475,SG +3560945476,3560945476,CN +3560945477,3560945477,TW +3560945478,3560945478,IN +3560945479,3560945479,SG +3560945480,3560945481,IN +3560945482,3560945482,DE +3560945483,3560945485,MY +3560945486,3560945487,IN +3560945488,3560945488,DE +3560945489,3560945489,MY +3560945490,3560945490,TH +3560945491,3560945492,IN +3560945493,3560945495,DE +3560945496,3560945496,IN +3560945497,3560945497,DE +3560945498,3560945499,IN +3560945500,3560945500,SG +3560945501,3560945501,US +3560945502,3560945502,IN +3560945503,3560945535,DE +3560945536,3560945539,IN +3560945540,3560945543,SG +3560945544,3560945559,IN +3560945560,3560945563,DE +3560945564,3560945567,SG +3560945568,3560945575,IN +3560945576,3560945579,SG +3560945580,3560945583,MY +3560945584,3560945587,SG +3560945588,3560945591,TW +3560945592,3560945603,SG +3560945604,3560945607,US +3560945608,3560945611,IN +3560945612,3560945619,SG +3560945620,3560945627,CN +3560945628,3560945635,SG +3560945636,3560945639,CN +3560945640,3560945643,IN +3560945644,3560945647,MY +3560945648,3560945651,IN +3560945652,3560945659,DE +3560945660,3560945663,IN +3560945664,3560945667,US +3560945668,3560945671,BR +3560945672,3560945675,US +3560945676,3560945679,PE +3560945680,3560945683,BR +3560945684,3560945691,CO +3560945692,3560945699,US +3560945700,3560945703,CO +3560945704,3560945707,US +3560945708,3560945711,CO +3560945712,3560945727,US +3560945728,3560945731,AR +3560945732,3560945739,US +3560945740,3560945743,BR +3560945744,3560945747,US +3560945748,3560945751,AR +3560945752,3560945763,US +3560945764,3560945767,AR +3560945768,3560945771,BR +3560945772,3560945775,CA +3560945776,3560945787,US +3560945788,3560945791,CO +3560945792,3560945795,AR +3560945796,3560945799,US +3560945800,3560945803,BR +3560945804,3560945807,US +3560945808,3560945811,CO +3560945812,3560945815,US +3560945816,3560945819,AR +3560945820,3560945823,US +3560945824,3560945827,BR +3560945828,3560945835,US +3560945836,3560945839,CL +3560945840,3560945843,BR +3560945844,3560945851,US +3560945852,3560945855,DE +3560945856,3560945859,US +3560945860,3560945863,DE +3560945864,3560945867,US +3560945868,3560945871,DE +3560945872,3560945875,CA +3560945876,3560945911,US +3560945912,3560945915,CA +3560945916,3560945919,US +3560945920,3560946017,DE +3560946018,3560946018,FI +3560946019,3560946019,CZ +3560946020,3560946176,DE +3560946177,3560946189,US +3560946190,3560946190,AR +3560946191,3560946194,US +3560946195,3560946195,PE +3560946196,3560946196,CA +3560946197,3560946197,US +3560946198,3560946198,CA +3560946199,3560946199,AR +3560946200,3560946200,US +3560946201,3560946201,CA +3560946202,3560946202,DE +3560946203,3560946203,CA +3560946204,3560946204,US +3560946205,3560946205,PE +3560946206,3560946208,US +3560946209,3560946209,CA +3560946210,3560946212,US +3560946213,3560946213,CO +3560946214,3560946214,CA +3560946215,3560946215,PE +3560946216,3560946229,US +3560946230,3560946230,AR +3560946231,3560946231,US +3560946232,3560946232,CA +3560946233,3560946234,US +3560946235,3560946235,CL +3560946236,3560946237,US +3560946238,3560946238,AR +3560946239,3560946253,US +3560946254,3560946254,SG +3560946255,3560946256,US +3560946257,3560946257,MX +3560946258,3560946259,US +3560946260,3560946260,AR +3560946261,3560946262,US +3560946263,3560946263,AR +3560946264,3560946266,US +3560946267,3560946267,CA +3560946268,3560946271,US +3560946272,3560946272,DE +3560946273,3560946273,CA +3560946274,3560946279,US +3560946280,3560946280,ES +3560946281,3560946282,US +3560946283,3560946283,CL +3560946284,3560946284,US +3560946285,3560946285,CO +3560946286,3560946290,US +3560946291,3560946291,CA +3560946292,3560946295,US +3560946296,3560946296,CL +3560946297,3560946297,DE +3560946298,3560946298,US +3560946299,3560946299,DE +3560946300,3560946300,CL +3560946301,3560946311,DE +3560946312,3560946312,US +3560946313,3560946317,DE +3560946318,3560946319,US +3560946320,3560946320,DE +3560946321,3560946326,US +3560946327,3560946327,CA +3560946328,3560946328,US +3560946329,3560946329,DO +3560946330,3560946330,US +3560946331,3560946331,DO +3560946332,3560946333,CA +3560946334,3560946335,US +3560946336,3560946336,CA +3560946337,3560946337,DE +3560946338,3560946338,CA +3560946339,3560946339,US +3560946340,3560946340,CL +3560946341,3560946342,CA +3560946343,3560946343,DO +3560946344,3560946344,AR +3560946345,3560946345,US +3560946346,3560946346,PE +3560946347,3560946347,US +3560946348,3560946361,DE +3560946362,3560946363,US +3560946364,3560946367,DE +3560946368,3560946368,US +3560946369,3560946372,DE +3560946373,3560946373,US +3560946374,3560946374,DE +3560946375,3560946375,US +3560946376,3560946398,DE +3560946399,3560946399,US +3560946400,3560946408,DE +3560946409,3560946409,US +3560946410,3560946419,DE +3560946420,3560946420,US +3560946421,3560946431,DE +3560946432,3560946443,US +3560946444,3560946447,BR +3560946448,3560946451,DE +3560946452,3560946455,BO +3560946456,3560946467,US +3560946468,3560946471,BR +3560946472,3560946483,US +3560946484,3560946487,MX +3560946488,3560946491,US +3560946492,3560946495,BR +3560946496,3560946499,VE +3560946500,3560946503,AR +3560946504,3560946507,US +3560946508,3560946511,MX +3560946512,3560946523,US +3560946524,3560946527,MX +3560946528,3560946531,US +3560946532,3560946535,CA +3560946536,3560946539,PE +3560946540,3560946543,US +3560946544,3560946547,CA +3560946548,3560946551,US +3560946552,3560946555,PE +3560946556,3560946559,US +3560946560,3560946563,BR +3560946564,3560946567,US +3560946568,3560946571,BR +3560946572,3560946579,US +3560946580,3560946583,CA +3560946584,3560946587,US +3560946588,3560946591,AR +3560946592,3560946603,US +3560946604,3560946607,AR +3560946608,3560946611,BR +3560946612,3560946623,US +3560946624,3560946635,MX +3560946636,3560946643,US +3560946644,3560946647,AR +3560946648,3560946651,MX +3560946652,3560946655,CL +3560946656,3560946659,BR +3560946660,3560946663,MX +3560946664,3560946667,US +3560946668,3560946671,MX +3560946672,3560946679,BR +3560946680,3560946687,US +3560946688,3560946689,DE +3560946690,3560946695,US +3560946696,3560946696,BR +3560946697,3560946698,US +3560946699,3560946700,DE +3560946701,3560946701,CO +3560946702,3560946706,US +3560946707,3560946707,VE +3560946708,3560946708,BR +3560946709,3560946710,VE +3560946711,3560946711,US +3560946712,3560946712,VE +3560946713,3560946714,US +3560946715,3560946715,CO +3560946716,3560946716,US +3560946717,3560946717,AR +3560946718,3560946718,US +3560946719,3560946720,BR +3560946721,3560946723,CO +3560946724,3560946724,MX +3560946725,3560946729,US +3560946730,3560946730,MX +3560946731,3560946733,US +3560946734,3560946734,PR +3560946735,3560946747,US +3560946748,3560946748,DE +3560946749,3560946760,US +3560946761,3560946761,DE +3560946762,3560946767,US +3560946768,3560946768,CA +3560946769,3560946769,US +3560946770,3560946825,DE +3560946826,3560946826,US +3560946827,3560946835,DE +3560946836,3560946836,US +3560946837,3560946839,DE +3560946840,3560946840,US +3560946841,3560946943,DE +3560946944,3560946947,US +3560946948,3560946951,BR +3560946952,3560946955,MX +3560946956,3560946959,CO +3560946960,3560946963,MX +3560946964,3560946967,AR +3560946968,3560946979,US +3560946980,3560946987,DE +3560946988,3560946991,US +3560946992,3560946995,DE +3560946996,3560946999,UY +3560947000,3560947015,US +3560947016,3560947019,AR +3560947020,3560947027,US +3560947028,3560947031,CO +3560947032,3560947039,US +3560947040,3560947043,BR +3560947044,3560947067,US +3560947068,3560947071,AR +3560947072,3560947075,BR +3560947076,3560947095,US +3560947096,3560947099,MX +3560947100,3560947107,US +3560947108,3560947111,DE +3560947112,3560947123,US +3560947124,3560947127,CO +3560947128,3560947143,US +3560947144,3560947147,DE +3560947148,3560947191,US +3560947192,3560947195,VE +3560947196,3560947199,DE +3560947200,3560947203,CA +3560947204,3560947207,US +3560947208,3560947211,DE +3560947212,3560947231,US +3560947232,3560947235,CA +3560947236,3560947239,CO +3560947240,3560947247,US +3560947248,3560947251,CA +3560947252,3560947267,US +3560947268,3560947271,CO +3560947272,3560947275,US +3560947276,3560947279,AR +3560947280,3560947283,MX +3560947284,3560947287,US +3560947288,3560947291,BR +3560947292,3560947331,US +3560947332,3560947335,MX +3560947336,3560947343,US +3560947344,3560947347,MX +3560947348,3560947351,CO +3560947352,3560947355,US +3560947356,3560947359,AN +3560947360,3560947363,US +3560947364,3560947367,HN +3560947368,3560947371,BR +3560947372,3560947375,CA +3560947376,3560947383,US +3560947384,3560947391,CO +3560947392,3560947395,MX +3560947396,3560947399,US +3560947400,3560947407,AR +3560947408,3560947411,US +3560947412,3560947415,AR +3560947416,3560947431,US +3560947432,3560947435,MX +3560947436,3560947439,DE +3560947440,3560947443,BR +3560947444,3560947455,US +3560947456,3560947495,JP +3560947496,3560947499,KR +3560947500,3560947686,JP +3560947687,3560947687,DE +3560947688,3560947711,JP +3560947712,3560950863,SE +3560950864,3560950867,DK +3560950868,3560951039,SE +3560951040,3560951043,NO +3560951044,3560951195,SE +3560951196,3560951199,DK +3560951200,3560951207,SE +3560951208,3560951211,DK +3560951212,3560951383,SE +3560951384,3560951387,NO +3560951388,3560951391,SE +3560951392,3560951395,IT +3560951396,3560951423,SE +3560951424,3560951427,NL +3560951428,3560951447,SE +3560951448,3560951451,FR +3560951452,3560951551,SE +3560951552,3560951555,ES +3560951556,3560951559,NO +3560951560,3560951583,SE +3560951584,3560951587,FI +3560951588,3560955903,SE +3560955904,3560964095,BE +3560964096,3560996863,NL +3560996864,3561005055,SA +3561005056,3561013247,ES +3561013248,3561021439,TR +3561021440,3561022719,DE +3561022720,3561022975,AT +3561022976,3561037823,DE +3561037824,3561046015,BE +3561046016,3561054207,RU +3561054208,3561062399,MT +3561062400,3561070591,TR +3561070592,3561070847,DE +3561070848,3561078783,CH +3561078784,3561095167,CZ +3561095168,3561103359,DE +3561103360,3561111551,UA +3561111552,3561119743,LU +3561119744,3561127935,IT +3561127936,3561136127,DE +3561136128,3561144319,ES +3561144320,3561152511,FI +3561152512,3561160703,IT +3561160704,3561168895,RU +3561168896,3561177087,FR +3561177088,3561185279,CZ +3561185280,3561193471,GB +3561193472,3561201663,PL +3561201664,3561206655,NL +3561206656,3561206663,BE +3561206664,3561209855,NL +3561209856,3561218047,GB +3561218048,3561226239,AT +3561226240,3561234431,FI +3561234432,3561242623,TR +3561242624,3561259007,DE +3561259008,3561267199,IL +3561267200,3561275391,UA +3561275392,3561291775,BE +3561291776,3561299967,CS +3561299968,3561308159,GB +3561308160,3561316351,PL +3561316352,3561324543,RU +3561324544,3561332735,IT +3561332736,3561340927,AT +3561340928,3561357311,GB +3561357312,3561365503,DK +3561365504,3561373695,SA +3561373696,3561381887,GB +3561381888,3561382479,AT +3561382480,3561382495,DE +3561382496,3561390079,AT +3561390080,3561398271,BG +3561398272,3561406463,LV +3561406464,3561414655,GR +3561414656,3561422847,IT +3561422848,3561427207,BE +3561427208,3561427211,NL +3561427212,3561428135,BE +3561428136,3561428143,NL +3561428144,3561429279,BE +3561429280,3561429287,NL +3561429288,3561431039,BE +3561431040,3561439231,SA +3561439232,3561447423,NO +3561447424,3561455615,CH +3561455616,3561471999,CZ +3561472000,3561480191,DE +3561480192,3561488383,GB +3561488384,3561496575,OM +3561496576,3561496735,NL +3561496736,3561497215,GB +3561497216,3561497423,NL +3561497424,3561497471,GB +3561497472,3561498367,NL +3561498368,3561498399,GB +3561498400,3561498431,NL +3561498432,3561498487,GB +3561498488,3561498491,NL +3561498492,3561498495,GB +3561498496,3561498559,NL +3561498560,3561498607,GB +3561498608,3561498615,NL +3561498616,3561498623,GB +3561498624,3561500415,NL +3561500416,3561500671,GB +3561500672,3561500751,NL +3561500752,3561500763,GB +3561500764,3561500767,NL +3561500768,3561500775,GB +3561500776,3561500807,NL +3561500808,3561500815,GB +3561500816,3561500991,NL +3561500992,3561501055,GB +3561501056,3561501375,NL +3561501376,3561501407,GB +3561501408,3561501455,NL +3561501456,3561501487,GB +3561501488,3561501631,NL +3561501632,3561501695,GB +3561501696,3561502047,NL +3561502048,3561502079,GB +3561502080,3561502143,NL +3561502144,3561502207,GB +3561502208,3561502631,NL +3561502632,3561502655,GB +3561502656,3561504319,NL +3561504320,3561504383,GB +3561504384,3561504767,NL +3561504768,3561512959,DE +3561512960,3561521151,SI +3561521152,3561529343,GE +3561529344,3561534559,DE +3561534560,3561534575,US +3561534576,3561537535,DE +3561537536,3561545727,BG +3561545728,3561553919,NL +3561553920,3561562111,SE +3561562112,3561570303,ES +3561570304,3561578495,AM +3561578496,3561586687,RU +3561586688,3561594879,BG +3561594880,3561594935,SE +3561594936,3561594939,DK +3561594940,3561594975,SE +3561594976,3561595007,DK +3561595008,3561603071,SE +3561603072,3561603263,FR +3561603264,3561603295,GB +3561603296,3561603455,FR +3561603456,3561603487,GB +3561603488,3561604351,FR +3561604352,3561604895,GB +3561604896,3561604911,FR +3561604912,3561605119,GB +3561605120,3561607231,FR +3561607232,3561607235,GB +3561607236,3561607239,FR +3561607240,3561607247,GB +3561607248,3561607343,FR +3561607344,3561607359,GB +3561607360,3561607679,FR +3561607680,3561607711,GB +3561607712,3561610239,FR +3561610240,3561610495,US +3561610496,3561610511,FR +3561610512,3561610719,GB +3561610720,3561611295,FR +3561611296,3561611559,GB +3561611560,3561611567,FR +3561611568,3561614175,GB +3561614176,3561614199,FR +3561614200,3561614335,GB +3561614336,3561614591,FR +3561614592,3561615359,GB +3561615360,3561615615,FR +3561615616,3561615871,IT +3561615872,3561616383,FR +3561616384,3561616511,GB +3561616512,3561616543,FR +3561616544,3561616559,GB +3561616560,3561616575,FR +3561616576,3561616895,GB +3561616896,3561616959,FR +3561616960,3561617151,GB +3561617152,3561617407,FR +3561617408,3561617919,CH +3561617920,3561618175,SE +3561618176,3561618431,IE +3561618432,3561618687,DK +3561618688,3561618815,FR +3561618816,3561618943,PL +3561618944,3561619455,FR +3561619456,3561636863,GB +3561636864,3561637119,BE +3561637120,3561637375,ES +3561637376,3561637631,CH +3561637632,3561637887,IT +3561637888,3561638143,AT +3561638144,3561638399,SE +3561638400,3561638655,US +3561638656,3561638911,DK +3561638912,3561639423,GB +3561639424,3561639679,DE +3561639680,3561640575,GB +3561640576,3561640831,FR +3561640832,3561641983,GB +3561641984,3561642239,DE +3561642240,3561652223,GB +3561652224,3561668607,CH +3561668608,3561679359,RU +3561679360,3561679615,UA +3561679616,3561684991,RU +3561684992,3561693183,BG +3561693184,3561694487,DE +3561694488,3561694495,CH +3561694496,3561701375,DE +3561701376,3561706031,SE +3561706032,3561706047,DK +3561706048,3561709567,SE +3561709568,3561717759,PL +3561717760,3561725951,RU +3561725952,3561734143,ES +3561734144,3561742335,RU +3561742336,3561750527,KW +3561750528,3561758719,KZ +3561758720,3561766911,PL +3561766912,3561775103,SA +3561775104,3561783295,IL +3561783296,3561791487,DE +3561791488,3561799679,RU +3561799680,3561807871,DE +3561807872,3561816063,BE +3561816064,3561824255,VA +3561824256,3561832447,LI +3561832448,3561840639,IT +3561840640,3561848831,PL +3561848832,3561857023,RU +3561857024,3561865215,DE +3561865216,3561873407,QA +3561873408,3561881599,DE +3561881600,3561889791,IT +3561889792,3561897983,FR +3561897984,3561906175,GB +3561906176,3561907759,DE +3561907760,3561907763,GB +3561907764,3561910207,DE +3561910208,3561910223,GB +3561910224,3561914367,DE +3561914368,3561922559,ES +3561922560,3561922855,NL +3561922856,3561922911,GB +3561922912,3561922975,NL +3561922976,3561922991,GB +3561922992,3561923015,NL +3561923016,3561923063,GB +3561923064,3561923067,NL +3561923068,3561923071,GB +3561923072,3561923551,NL +3561923552,3561923583,GB +3561923584,3561923679,NL +3561923680,3561923871,GB +3561923872,3561924159,NL +3561924160,3561924199,GB +3561924200,3561924215,NL +3561924216,3561924223,GB +3561924224,3561924351,NL +3561924352,3561924639,GB +3561924640,3561924647,NL +3561924648,3561924663,GB +3561924664,3561924671,NL +3561924672,3561924679,GB +3561924680,3561924687,NL +3561924688,3561924703,GB +3561924704,3561924719,NL +3561924720,3561924911,GB +3561924912,3561924943,NL +3561924944,3561924975,GB +3561924976,3561924991,NL +3561924992,3561925007,GB +3561925008,3561925039,NL +3561925040,3561925087,GB +3561925088,3561925103,NL +3561925104,3561926943,GB +3561926944,3561926975,NL +3561926976,3561927167,GB +3561927168,3561927423,NL +3561927424,3561927551,GB +3561927552,3561927647,NL +3561927648,3561927663,GB +3561927664,3561927679,NL +3561927680,3561928191,GB +3561928192,3561929727,NL +3561929728,3561929743,GB +3561929744,3561929791,NL +3561929792,3561929879,GB +3561929880,3561929919,NL +3561929920,3561929967,GB +3561929968,3561930335,NL +3561930336,3561930503,GB +3561930504,3561930511,NL +3561930512,3561930751,GB +3561930752,3561931647,DE +3561931648,3561931711,SE +3561931712,3561931791,DE +3561931792,3561932031,SE +3561932032,3561934847,DE +3561934848,3561935359,SE +3561935360,3561935871,DE +3561935872,3561936127,SE +3561936128,3561938175,DE +3561938176,3561938431,SE +3561938432,3561938687,DE +3561938688,3561938943,SE +3561938944,3561940991,IE +3561940992,3561942015,GB +3561942016,3561947135,IE +3561947136,3561963519,DE +3561963520,3561971711,BE +3561971712,3561976831,TR +3561976832,3561977343,DE +3561977344,3561977855,US +3561977856,3561978367,PK +3561978368,3561979903,TR +3561979904,3561988095,ES +3561988096,3562004479,DE +3562004480,3562006159,NL +3562006160,3562006175,DE +3562006176,3562006819,NL +3562006820,3562006823,VG +3562006824,3562007839,NL +3562007840,3562007871,VG +3562007872,3562007903,KN +3562007904,3562010399,NL +3562010400,3562010431,KN +3562010432,3562010943,NL +3562010944,3562010975,VG +3562010976,3562012031,NL +3562012032,3562012063,VG +3562012064,3562012479,NL +3562012480,3562012483,KN +3562012484,3562012671,NL +3562012672,3562020863,IR +3562020864,3562029055,UA +3562029056,3562037247,CZ +3562037248,3562045439,CH +3562045440,3562056711,ES +3562056712,3562056719,NL +3562056720,3562056911,ES +3562056912,3562056927,FR +3562056928,3562057215,ES +3562057216,3562057247,NL +3562057248,3562057263,BE +3562057264,3562057471,ES +3562057472,3562057727,DE +3562057728,3562057975,ES +3562057976,3562057983,FR +3562057984,3562058303,ES +3562058304,3562058367,IT +3562058368,3562059327,ES +3562059328,3562059335,CH +3562059336,3562059391,ES +3562059392,3562059775,CH +3562059776,3562061823,ES +3562061824,3562070015,IT +3562070016,3562078207,DE +3562078208,3562086399,SK +3562086400,3562087423,SE +3562087424,3562088447,GB +3562088448,3562094591,SE +3562094592,3562098879,FR +3562098880,3562098895,BE +3562098896,3562102415,FR +3562102416,3562102431,NL +3562102432,3562105503,FR +3562105504,3562105535,DE +3562105536,3562110975,FR +3562110976,3562143743,ES +3562143744,3562151935,GB +3562151936,3562160127,DE +3562160128,3562161151,GB +3562161152,3562161183,NL +3562161184,3562170367,GB +3562170368,3562172415,IE +3562172416,3562173951,CH +3562173952,3562174463,GB +3562174464,3562176511,CH +3562176512,3562184703,FR +3562184704,3562192895,DE +3562192896,3562201087,UA +3562201088,3562209279,DE +3562209280,3562217471,RU +3562217472,3562220287,DE +3562220288,3562220799,CH +3562220800,3562225663,DE +3562225664,3562233855,NL +3562233856,3562242047,FI +3562242048,3562258431,FR +3562258432,3562283007,NL +3562283008,3562291199,IT +3562291200,3562307583,GB +3562307584,3562315775,NL +3562315776,3562323967,GB +3562323968,3562340351,DE +3562340352,3562348543,GB +3562348544,3562356735,ES +3562356736,3562364927,SE +3562364928,3562373119,PL +3562373120,3562381311,FR +3562381312,3562389503,IT +3562397696,3562405887,GB +3562405888,3562414079,FI +3562414080,3562422271,DE +3562422272,3562430463,GB +3562430464,3562438655,UA +3562438656,3562463231,DE +3562463232,3562471423,UA +3562471424,3562479615,PL +3562479616,3562487807,DE +3562487808,3562495999,GB +3562496000,3562504191,BE +3562504192,3562512383,DE +3562512384,3562520575,UA +3562520576,3562528767,ES +3562528768,3562536959,PL +3562536960,3562545151,AT +3562545152,3562553343,GB +3562553344,3562561535,DK +3562569728,3562572143,DE +3562572144,3562572159,LU +3562572160,3562572223,DE +3562572224,3562572239,US +3562572240,3562572543,DE +3562572544,3562572799,LU +3562572800,3562577919,DE +3562577920,3562586111,AT +3562586112,3562594303,DE +3562594304,3562595423,BE +3562595424,3562595455,LU +3562595456,3562598207,BE +3562598208,3562598223,LU +3562598224,3562602495,BE +3562602496,3562610687,ES +3562610688,3562618879,NO +3562618880,3562627071,GB +3562627072,3562643455,DE +3562643456,3562651647,GR +3562651648,3562659839,DE +3562659840,3562668031,SK +3562668032,3562676223,IT +3562676224,3562684415,GB +3562684416,3562692607,FI +3562692608,3562695375,UA +3562695376,3562695379,CZ +3562695380,3562700799,UA +3562700800,3562708991,DE +3562708992,3562717183,UA +3562717184,3562725375,CH +3562725376,3562733567,CZ +3562733568,3562741759,PL +3562741760,3562758143,IT +3562758144,3562766335,HR +3562766336,3562774527,SE +3562774528,3562782719,BG +3562782720,3562790911,RU +3562790912,3562799103,DE +3562799104,3562803471,HU +3562803472,3562803479,UA +3562803480,3562807295,HU +3562807296,3562815487,ES +3562815488,3562823679,NL +3562823680,3562848255,RU +3562848256,3562856447,HR +3562856448,3562864639,UA +3562864640,3562872831,DE +3562872832,3562881023,DK +3562881024,3562889215,GB +3562889216,3562897407,LV +3562897408,3562905599,RO +3562905600,3562921983,SA +3562921984,3562930175,SI +3562930176,3562938367,RU +3562938368,3562946559,CH +3562946560,3562954751,FI +3562954752,3562962943,RU +3562962944,3562971135,IT +3562971136,3562987519,FR +3562987520,3562995711,DE +3562995712,3563003903,AT +3563003904,3563005183,DE +3563005184,3563005311,KZ +3563005312,3563005439,DE +3563005440,3563005695,TR +3563005696,3563005951,DE +3563005952,3563006463,TR +3563006464,3563006591,DE +3563006592,3563006719,CA +3563006720,3563006729,DE +3563006730,3563006847,CN +3563006848,3563006975,CA +3563006976,3563007487,DE +3563007488,3563007999,TR +3563008000,3563008255,PA +3563008256,3563008511,PL +3563008512,3563009279,DE +3563009280,3563009535,LT +3563009536,3563009791,BY +3563009792,3563010047,CN +3563010048,3563010063,DE +3563010064,3563010079,KZ +3563010080,3563010303,DE +3563010304,3563010559,NL +3563010560,3563010815,BY +3563010816,3563011071,PL +3563011072,3563011583,DE +3563011584,3563011839,ES +3563011840,3563012095,BY +3563012096,3563020287,FR +3563020288,3563028479,DE +3563028480,3563036671,IR +3563036672,3563044863,BG +3563044864,3563053055,ES +3563053056,3563053503,GB +3563053504,3563053527,US +3563053528,3563061247,GB +3563069440,3563077631,HU +3563077632,3563085823,FR +3563085824,3563094015,RU +3563094016,3563096255,DE +3563096256,3563096287,GB +3563096288,3563097087,DE +3563097088,3563097119,GB +3563097120,3563097151,DE +3563097152,3563097183,GB +3563097184,3563097215,DE +3563097216,3563097247,GB +3563097248,3563097311,DE +3563097312,3563097343,GB +3563097344,3563102207,DE +3563102208,3563110399,CZ +3563110400,3563118591,RU +3563118592,3563126783,DE +3563126784,3563134975,KG +3563134976,3563143167,IT +3563143168,3563151359,GB +3563151360,3563159551,DE +3563159552,3563163647,DK +3563163648,3563164159,SE +3563164160,3563167743,DK +3563167744,3563175935,ES +3563175936,3563192319,DK +3563192320,3563200511,TR +3563200512,3563208703,CH +3563208704,3563225087,DK +3563225088,3563233279,LB +3563233280,3563241471,BY +3563241472,3563257855,TR +3563257856,3563290623,FR +3563290624,3563315199,DE +3563315200,3563323391,DK +3563323392,3563329791,GB +3563331584,3563339775,DE +3563347968,3563356159,GB +3563356160,3563364351,RU +3563364352,3563372543,BE +3563372544,3563380735,SA +3563380736,3563381951,GB +3563381952,3563381959,IT +3563381960,3563382383,GB +3563382384,3563382391,AU +3563382392,3563382495,GB +3563382496,3563382503,AT +3563382504,3563382583,GB +3563382584,3563382587,AT +3563382588,3563382589,DE +3563382590,3563382767,GB +3563382768,3563382775,IE +3563382776,3563388927,GB +3563388928,3563397119,CH +3563397120,3563405311,DE +3563405312,3563407871,ES +3563407872,3563407903,US +3563407904,3563413503,ES +3563413504,3563421695,TR +3563421696,3563438079,CH +3563438080,3563446271,DE +3563446272,3563454463,LB +3563454464,3563462655,SA +3563462656,3563479039,IT +3563479040,3563487231,GB +3563487232,3563488255,RS +3563488256,3563488351,CS +3563488352,3563488383,CS +3563488384,3563488447,RS +3563488448,3563488511,CS +3563488512,3563489535,RS +3563489536,3563491323,CS +3563491324,3563491327,RS +3563491328,3563495423,CS +3563495424,3563503615,DE +3563503616,3563511807,GB +3563511808,3563519999,DE +3563520000,3563528191,FR +3563528192,3563536383,DE +3563536384,3563539087,CH +3563539088,3563539095,US +3563539096,3563539119,CH +3563539120,3563539135,DE +3563539136,3563540191,CH +3563540192,3563540199,DE +3563540200,3563544575,CH +3563544576,3563552767,DE +3563552768,3563560959,SI +3563569152,3563577343,IT +3563577344,3563585535,GB +3563585536,3563601919,IT +3563601920,3563610111,GR +3563610112,3563618303,BG +3563618304,3563626495,GB +3563626496,3563634687,ES +3563634688,3563651071,NL +3563651072,3563683839,SE +3563683840,3563692031,BE +3563692032,3563700223,GB +3563700224,3563708415,DE +3563708416,3563716607,HU +3563716608,3563724799,PL +3563724800,3563732991,RU +3563732992,3563741183,PS +3563741184,3563749375,GB +3563749376,3563765759,PL +3563765760,3563782143,ES +3563782144,3563790335,GR +3563790336,3563798527,EE +3563798528,3563800447,FR +3563800448,3563800463,GB +3563800464,3563800495,FR +3563800496,3563800511,GB +3563800512,3563800607,FR +3563800608,3563800623,GB +3563800624,3563800767,FR +3563800768,3563800783,GB +3563800784,3563800911,FR +3563800912,3563800927,GB +3563800928,3563800943,FR +3563800944,3563800991,GB +3563800992,3563801135,FR +3563801136,3563801151,DE +3563801152,3563801183,FR +3563801184,3563801199,DE +3563801200,3563801279,FR +3563801280,3563801295,NL +3563801296,3563801375,FR +3563801376,3563801391,GB +3563801392,3563801407,IT +3563801408,3563801423,DE +3563801424,3563801455,FR +3563801456,3563801519,GB +3563801520,3563801551,FR +3563801552,3563801567,GB +3563801568,3563801599,FR +3563801600,3563801631,GB +3563801632,3563801647,FR +3563801648,3563801743,GB +3563801744,3563801775,FR +3563801776,3563801791,BE +3563801792,3563801839,FR +3563801840,3563801855,GB +3563801856,3563801871,FR +3563801872,3563801887,GB +3563801888,3563801922,FR +3563801923,3563801935,GB +3563801936,3563802015,FR +3563802016,3563802031,BE +3563802032,3563802047,FR +3563802048,3563802063,IT +3563802064,3563802207,FR +3563802208,3563802223,GB +3563802224,3563802255,FR +3563802256,3563802271,GB +3563802272,3563802303,FR +3563802304,3563802319,IT +3563802320,3563802447,FR +3563802448,3563802463,GB +3563802464,3563802623,FR +3563802624,3563802655,GB +3563802656,3563802735,FR +3563802736,3563802751,US +3563802752,3563802783,GB +3563802784,3563803007,FR +3563803008,3563803023,GB +3563803024,3563803039,FR +3563803040,3563803055,GB +3563803056,3563803119,FR +3563803120,3563803135,NL +3563803136,3563803151,FR +3563803152,3563803167,GB +3563803168,3563803183,FR +3563803184,3563803215,GB +3563803216,3563803247,FR +3563803248,3563803263,GB +3563803264,3563803279,FR +3563803280,3563803295,GB +3563803296,3563803311,FR +3563803312,3563803327,GB +3563803328,3563803359,FR +3563803360,3563803423,GB +3563803424,3563803439,FR +3563803440,3563803455,DE +3563803456,3563803487,GB +3563803488,3563803503,US +3563803504,3563803519,GB +3563803520,3563803631,FR +3563803632,3563803647,GB +3563803648,3563803967,FR +3563803968,3563803983,BE +3563803984,3563804695,FR +3563804696,3563804703,GB +3563804704,3563804719,FR +3563804720,3563804727,GB +3563804728,3563806543,FR +3563806544,3563806559,DE +3563806560,3563806687,FR +3563806688,3563806703,DE +3563806704,3563806719,FR +3563806720,3563814911,SA +3563814912,3563823103,SE +3563823104,3563831295,DE +3563831296,3563847679,RU +3563847680,3563848383,NL +3563848384,3563848447,ES +3563848448,3563848575,NL +3563848576,3563848583,ES +3563848584,3563848671,NL +3563848672,3563848703,ES +3563848704,3563848959,US +3563848960,3563848967,NL +3563848968,3563848983,ES +3563848984,3563849015,NL +3563849016,3563849023,ES +3563849024,3563849151,NL +3563849152,3563849183,ES +3563849184,3563849197,NL +3563849198,3563849199,ES +3563849200,3563849211,NL +3563849212,3563849215,ES +3563849216,3563849727,GB +3563849728,3563849991,NL +3563849992,3563849999,SA +3563850000,3563850007,FI +3563850008,3563850239,NL +3563850240,3563850751,GB +3563850752,3563850815,NL +3563850816,3563850831,ES +3563850832,3563850847,NL +3563850848,3563850879,ES +3563850880,3563851839,NL +3563851840,3563852095,ES +3563852096,3563852191,NL +3563852192,3563852207,GB +3563852208,3563852216,NL +3563852217,3563852223,ES +3563852224,3563852543,NL +3563852544,3563852799,ES +3563852800,3563853375,NL +3563853376,3563853439,ES +3563853440,3563853567,NL +3563853568,3563854079,ES +3563854080,3563854095,NL +3563854096,3563854103,ES +3563854104,3563854175,NL +3563854176,3563854239,ES +3563854240,3563854259,NL +3563854260,3563854591,ES +3563854592,3563854847,NL +3563854848,3563855359,ES +3563855360,3563855487,NL +3563855488,3563855551,ES +3563855552,3563855583,NL +3563855584,3563855615,ES +3563855616,3563855871,US +3563855872,3563864063,AT +3563864064,3563872255,GB +3563872256,3563880447,RU +3563880448,3563888639,TR +3563888640,3563896831,DE +3563896832,3563899391,HU +3563899392,3563899647,SK +3563899648,3563899903,HU +3563899904,3563900159,SK +3563900160,3563900415,HU +3563900416,3563900671,SK +3563900672,3563902975,HU +3563902976,3563903231,SK +3563903232,3563913215,HU +3563913216,3563921407,SE +3563921408,3563929599,UA +3563929600,3563937791,CH +3563937792,3563945983,TR +3563945984,3563954175,PL +3563954176,3563962367,IT +3563962368,3563970559,RU +3563970560,3563978751,TR +3563978752,3563995135,IT +3563995136,3564003327,MK +3564003328,3564008191,DE +3564008192,3564008223,CH +3564008224,3564011519,DE +3564011520,3564019711,UA +3564019712,3564027903,GB +3564027904,3564036351,DE +3564036352,3564037631,RU +3564037632,3564038143,KZ +3564038144,3564039167,RU +3564039168,3564039679,AZ +3564039680,3564039935,RU +3564039936,3564040191,KZ +3564040192,3564040447,RU +3564040448,3564040703,UZ +3564040704,3564042239,RU +3564042240,3564042495,TJ +3564042496,3564043007,RU +3564043008,3564044287,DE +3564044288,3564052479,CZ +3564052480,3564060671,GB +3564060672,3564068863,RU +3564068864,3564077055,ES +3564077056,3564093439,GB +3564093440,3564101631,UA +3564101632,3564109823,DE +3564109824,3564126207,SE +3564126208,3564134399,IT +3564134400,3564142591,KG +3564142592,3564146175,DE +3564146176,3564150783,DK +3564150784,3564152607,SE +3564152608,3564152639,NO +3564152640,3564157207,SE +3564157208,3564157215,NO +3564157216,3564158975,SE +3564158976,3564161855,DE +3564161856,3564161891,NL +3564161892,3564165119,DE +3564165120,3564165439,NL +3564165440,3564175359,DE +3564175360,3564183551,GB +3564183552,3564191743,UA +3564191744,3564199935,BE +3564199936,3564208127,RU +3564208128,3564216319,GB +3564216320,3564224511,PT +3564224512,3564232703,GB +3564232704,3564240895,RU +3564240896,3564241407,TJ +3564241408,3564249087,RU +3564249088,3564260735,DE +3564260736,3564260863,NL +3564260864,3564265471,DE +3564265472,3564273663,GR +3564273664,3564302655,DE +3564302656,3564302687,BE +3564302688,3564306431,DE +3564306432,3564314623,TR +3564314624,3564322815,GB +3564322816,3564331007,IT +3564331008,3564339199,ES +3564339200,3564339967,GB +3564339968,3564339999,NL +3564340000,3564340351,GB +3564340352,3564340415,NL +3564340416,3564340479,GB +3564340480,3564340735,NL +3564340736,3564340991,GB +3564340992,3564341119,NL +3564341120,3564341183,GB +3564341184,3564341247,NL +3564341248,3564341759,GB +3564341760,3564342063,NL +3564342064,3564342207,GB +3564342208,3564342271,NL +3564342272,3564342335,GB +3564342336,3564342431,NL +3564342432,3564342527,GB +3564342528,3564342783,NL +3564342784,3564343583,GB +3564343584,3564343615,NL +3564343616,3564343679,GB +3564343680,3564343743,NL +3564343744,3564343775,GB +3564343776,3564343807,NL +3564343808,3564343839,GB +3564343840,3564343871,NL +3564343872,3564343967,GB +3564343968,3564343999,NL +3564344000,3564344031,GB +3564344032,3564344231,NL +3564344232,3564344239,GB +3564344240,3564344247,NL +3564344248,3564344575,GB +3564344576,3564344831,NL +3564344832,3564344895,GB +3564344896,3564344959,NL +3564344960,3564345023,GB +3564345024,3564345087,NL +3564345088,3564345127,GB +3564345128,3564345151,NL +3564345152,3564345215,GB +3564345216,3564345343,NL +3564345344,3564346143,GB +3564346144,3564346175,NL +3564346176,3564346207,GB +3564346208,3564346239,NL +3564346240,3564346271,GB +3564346272,3564346303,NL +3564346304,3564347391,GB +3564347392,3564347583,NL +3564347584,3564347647,GB +3564347648,3564348159,NL +3564348160,3564348191,GB +3564348192,3564348239,NL +3564348240,3564348255,GB +3564348256,3564348287,NL +3564348288,3564348399,GB +3564348400,3564348415,NL +3564348416,3564348479,GB +3564348480,3564348495,NL +3564348496,3564348527,GB +3564348528,3564348543,NL +3564348544,3564348559,GB +3564348560,3564348639,NL +3564348640,3564348671,GB +3564348672,3564348991,NL +3564348992,3564349183,GB +3564349184,3564349311,NL +3564349312,3564349375,GB +3564349376,3564349407,NL +3564349408,3564349503,GB +3564349504,3564349583,NL +3564349584,3564349615,GB +3564349616,3564349695,NL +3564349696,3564350335,GB +3564350336,3564350351,NL +3564350352,3564350367,GB +3564350368,3564350719,NL +3564350720,3564351231,GB +3564351232,3564351295,NL +3564351296,3564351375,GB +3564351376,3564351391,NL +3564351392,3564351439,GB +3564351440,3564351455,NL +3564351456,3564351471,GB +3564351472,3564351487,NL +3564351488,3564351503,GB +3564351504,3564351679,NL +3564351680,3564351999,GB +3564352000,3564352079,NL +3564352080,3564352095,GB +3564352096,3564352127,NL +3564352128,3564352191,GB +3564352192,3564352511,NL +3564352512,3564352543,GB +3564352544,3564352575,NL +3564352576,3564352735,GB +3564352736,3564352767,NL +3564352768,3564353023,GB +3564353024,3564353087,NL +3564353088,3564353111,GB +3564353112,3564353167,NL +3564353168,3564353199,GB +3564353200,3564353215,NL +3564353216,3564353223,GB +3564353224,3564353263,NL +3564353264,3564353295,GB +3564353296,3564353311,NL +3564353312,3564353343,GB +3564353344,3564353359,NL +3564353360,3564353407,GB +3564353408,3564353487,NL +3564353488,3564353503,GB +3564353504,3564353535,NL +3564353536,3564353791,GB +3564353792,3564353919,NL +3564353920,3564354063,GB +3564354064,3564354079,NL +3564354080,3564354303,GB +3564354304,3564354335,NL +3564354336,3564354367,GB +3564354368,3564354559,NL +3564354560,3564354943,GB +3564354944,3564355039,NL +3564355040,3564355135,GB +3564355136,3564355199,NL +3564355200,3564355295,GB +3564355296,3564355311,NL +3564355312,3564355583,GB +3564355584,3564363775,NL +3564363776,3564371967,UA +3564371968,3564380159,DE +3564380160,3564388351,FI +3564388352,3564392959,SE +3564392960,3564393087,NO +3564393088,3564396543,SE +3564396544,3564404735,RU +3564404736,3564412927,BG +3564412928,3564421119,IL +3564421120,3564429311,SA +3564429312,3564431567,KZ +3564431568,3564431583,AF +3564431584,3564437503,KZ +3564437504,3564445695,LT +3564445696,3564453887,BG +3564453888,3564462079,DE +3564462080,3564470271,CH +3564470272,3564478463,IL +3564478464,3564486655,LU +3564486656,3564494847,CH +3564494848,3564494907,GB +3564494908,3564494911,FR +3564494912,3564494975,GB +3564494976,3564494983,CH +3564494984,3564495103,GB +3564495104,3564495167,DE +3564495168,3564495203,GB +3564495616,3564495743,GB +3564495872,3564495927,GB +3564495936,3564496111,GB +3564496128,3564496175,GB +3564496184,3564496199,GB +3564496208,3564496215,GB +3564496224,3564496263,GB +3564496272,3564496319,GB +3564496320,3564496327,FR +3564496336,3564496607,GB +3564496640,3564496655,GB +3564496672,3564496847,GB +3564496848,3564496863,FR +3564496864,3564496895,GB +3564498944,3564499007,NL +3564499008,3564499055,GB +3564499200,3564499215,NL +3564499216,3564499231,DK +3564499232,3564499239,NL +3564499248,3564499335,GB +3564499456,3564499551,NL +3564499552,3564499711,GB +3564500992,3564500999,SE +3564501248,3564501263,DE +3564501264,3564501279,SE +3564501280,3564501311,GB +3564501504,3564501507,SE +3564501508,3564501511,DE +3564501760,3564501887,DE +3564502528,3564502559,DE +3564502560,3564502591,GB +3564503040,3564511231,JO +3564511232,3564519423,RU +3564519424,3564527615,SI +3564527616,3564543999,SA +3564544000,3564560383,DE +3564560384,3564560391,US +3564560392,3564560399,CA +3564560400,3564560415,US +3564560416,3564560511,GB +3564560512,3564560639,US +3564560640,3564560927,GB +3564560928,3564560959,US +3564560960,3564561039,GB +3564561040,3564561055,US +3564561056,3564561151,GB +3564561152,3564561407,US +3564561408,3564561663,GB +3564561664,3564561791,US +3564561792,3564561919,GB +3564561920,3564562431,CH +3564562432,3564562687,GB +3564562688,3564562815,US +3564562816,3564562879,GB +3564562880,3564562943,US +3564562944,3564563711,GB +3564563712,3564563967,US +3564563968,3564564223,GB +3564564224,3564564239,US +3564564240,3564565247,GB +3564565248,3564565279,US +3564565280,3564565327,GB +3564565328,3564565407,US +3564565408,3564566271,GB +3564566272,3564566527,US +3564566528,3564567143,GB +3564567144,3564567151,US +3564567152,3564567247,GB +3564567248,3564567255,US +3564567256,3564567295,GB +3564567296,3564567423,US +3564567424,3564567807,GB +3564567808,3564567935,US +3564567936,3564568039,GB +3564568040,3564568183,US +3564568184,3564568223,GB +3564568224,3564568231,US +3564568232,3564568255,GB +3564568256,3564568319,US +3564568320,3564571055,GB +3564571056,3564571071,DE +3564571072,3564571135,GB +3564571136,3564571455,FR +3564571456,3564571479,GB +3564571480,3564571487,FR +3564571488,3564571511,GB +3564571512,3564571519,FR +3564571520,3564571567,GB +3564571568,3564571583,FR +3564571584,3564571591,GB +3564571592,3564571599,FR +3564571600,3564572271,GB +3564572272,3564572287,DE +3564572288,3564576767,GB +3564576768,3564584959,RU +3564584960,3564593151,SA +3564593152,3564601343,RU +3564601344,3564609535,AT +3564609536,3564634111,RU +3564634112,3564642303,MK +3564642304,3564650495,CH +3564650496,3564666879,NL +3564666880,3564668943,IE +3564668944,3564668991,GB +3564668992,3564669103,IE +3564669104,3564669119,GB +3564669120,3564669343,IE +3564669344,3564669359,GB +3564669360,3564669407,IE +3564669408,3564669439,GB +3564669440,3564670207,IE +3564670208,3564670239,GB +3564670240,3564673023,IE +3564673024,3564673055,GB +3564673056,3564673135,IE +3564673136,3564673215,GB +3564673216,3564673407,IE +3564673408,3564673663,GB +3564673664,3564673791,IE +3564673792,3564673807,GB +3564673808,3564673823,IE +3564673824,3564673839,GB +3564673840,3564674047,IE +3564674048,3564674431,GB +3564674432,3564675071,IE +3564675072,3564683263,RU +3564683264,3564691455,IR +3564691456,3564699647,GI +3564699648,3564716031,GB +3564716032,3564724223,IT +3564724224,3564732415,GR +3564732416,3564733439,DE +3564733440,3564733695,GB +3564733696,3564734239,DE +3564734240,3564734271,GB +3564734272,3564734287,DE +3564734288,3564734303,GB +3564734304,3564734335,DE +3564734336,3564734431,GB +3564734432,3564734719,DE +3564734720,3564734807,GB +3564734808,3564734815,DE +3564734816,3564734819,GB +3564734820,3564736511,DE +3564736512,3564736527,GB +3564736528,3564736583,DE +3564736584,3564736603,GB +3564736604,3564736607,DE +3564736608,3564736611,GB +3564736612,3564736767,DE +3564736768,3564736887,GB +3564736888,3564736895,DE +3564736896,3564736903,GB +3564736904,3564736927,DE +3564736928,3564736959,GB +3564736960,3564736967,DE +3564736968,3564736975,GB +3564736976,3564736991,DE +3564736992,3564737023,GB +3564737024,3564737535,DE +3564737536,3564737791,GB +3564737792,3564738047,DE +3564738048,3564738303,GB +3564738304,3564739327,DE +3564739328,3564739335,GB +3564739336,3564739351,DE +3564739352,3564739391,GB +3564739392,3564739455,DE +3564739456,3564739503,GB +3564739504,3564739519,DE +3564739520,3564739807,GB +3564739808,3564739815,DE +3564739816,3564739823,GB +3564739824,3564740351,DE +3564740352,3564740383,GB +3564740384,3564740415,DE +3564740416,3564740447,GB +3564740448,3564740455,DE +3564740456,3564740459,GB +3564740460,3564740463,DE +3564740464,3564740471,GB +3564740472,3564740479,DE +3564740480,3564740495,GB +3564740496,3564740503,DE +3564740504,3564740527,GB +3564740528,3564740543,DE +3564740544,3564740575,GB +3564740576,3564740591,DE +3564740592,3564740595,GB +3564740596,3564740599,DE +3564740600,3564740603,GB +3564740604,3564740607,DE +3564740608,3564748799,FR +3564748800,3564756991,GB +3564756992,3564765183,ES +3564765184,3564773375,RU +3564773376,3564781567,DE +3564781568,3564789759,LT +3564789760,3564797951,ES +3564797952,3564806143,DE +3564806144,3564814335,BG +3564814336,3564822527,PL +3564830720,3564838911,BE +3564838912,3564847103,DE +3564847104,3564855295,IT +3564855296,3564862863,DE +3564862864,3564862871,AE +3564862872,3564863487,DE +3564863488,3564880895,NL +3564880896,3564880911,GB +3564880912,3564880935,NL +3564880936,3564880943,GB +3564880944,3564880951,NL +3564880952,3564880975,GB +3564880976,3564880991,NL +3564880992,3564881167,GB +3564881168,3564881183,NL +3564881184,3564881231,GB +3564881232,3564881263,NL +3564881264,3564881375,GB +3564881376,3564881391,NL +3564881392,3564881455,GB +3564881456,3564881471,NL +3564881472,3564881519,GB +3564881520,3564881535,NL +3564881536,3564881551,GB +3564881552,3564881567,NL +3564881568,3564881663,GB +3564881664,3564881727,NL +3564881728,3564881919,GB +3564881920,3564881939,NL +3564881940,3564881983,GB +3564881984,3564881991,NL +3564881992,3564881999,GB +3564882000,3564882079,NL +3564882080,3564882095,GB +3564882096,3564882119,NL +3564882120,3564882127,GB +3564882128,3564882239,NL +3564882240,3564882255,GB +3564882256,3564882279,NL +3564882280,3564882335,GB +3564882336,3564882367,NL +3564882368,3564882399,GB +3564882400,3564882943,NL +3564882944,3564883007,GB +3564883008,3564883039,NL +3564883040,3564883047,GB +3564883048,3564883055,NL +3564883056,3564883087,GB +3564883088,3564883095,NL +3564883096,3564883167,GB +3564883168,3564883967,NL +3564883968,3564884223,GB +3564884224,3564884235,NL +3564884236,3564884239,GB +3564884240,3564884255,NL +3564884256,3564884303,GB +3564884304,3564884319,NL +3564884320,3564884335,GB +3564884336,3564884343,NL +3564884344,3564884359,GB +3564884360,3564884367,NL +3564884368,3564884375,GB +3564884376,3564884399,NL +3564884400,3564884407,GB +3564884408,3564884415,NL +3564884416,3564884431,GB +3564884432,3564884439,NL +3564884440,3564884455,GB +3564884456,3564884463,NL +3564884464,3564884735,GB +3564884736,3564884991,NL +3564884992,3564885007,GB +3564885008,3564885023,NL +3564885024,3564885087,GB +3564885088,3564885135,NL +3564885136,3564885215,GB +3564885216,3564885231,NL +3564885232,3564885343,GB +3564885344,3564885359,NL +3564885360,3564885439,GB +3564885440,3564885455,NL +3564885456,3564885527,GB +3564885528,3564885546,NL +3564885547,3564885551,GB +3564885552,3564885583,NL +3564885584,3564885631,GB +3564885632,3564885695,NL +3564885696,3564885727,GB +3564885728,3564885743,NL +3564885744,3564885775,GB +3564885776,3564885799,NL +3564885800,3564885839,GB +3564885840,3564885903,NL +3564885904,3564885919,GB +3564885920,3564885967,NL +3564885968,3564885983,GB +3564885984,3564885999,NL +3564886000,3564886015,GB +3564886016,3564886031,NL +3564886032,3564886271,GB +3564886272,3564886279,NL +3564886280,3564886287,GB +3564886288,3564886295,NL +3564886296,3564886303,GB +3564886304,3564886367,NL +3564886368,3564886375,GB +3564886376,3564886415,NL +3564886416,3564886431,GB +3564886432,3564886527,NL +3564886528,3564886655,GB +3564886656,3564886751,NL +3564886752,3564886919,GB +3564886920,3564886927,NL +3564886928,3564886943,GB +3564886944,3564886951,NL +3564886952,3564887039,GB +3564887040,3564888207,NL +3564888208,3564888223,GB +3564888224,3564888327,NL +3564888328,3564888335,GB +3564888336,3564888367,NL +3564888368,3564888383,GB +3564888384,3564888463,NL +3564888464,3564888479,DE +3564888480,3564888503,NL +3564888504,3564888511,GB +3564888512,3564888527,DE +3564888528,3564888591,NL +3564888592,3564888607,GB +3564888608,3564888623,NL +3564888624,3564888663,GB +3564888664,3564888671,NL +3564888672,3564888799,GB +3564888800,3564888815,NL +3564888816,3564888823,GB +3564888824,3564888879,NL +3564888880,3564888895,GB +3564888896,3564888991,NL +3564888992,3564889023,FR +3564889024,3564889087,NL +3564889088,3564889151,GB +3564889152,3564889167,NL +3564889168,3564889199,GB +3564889200,3564889215,NL +3564889216,3564889295,GB +3564889296,3564889311,NL +3564889312,3564889343,GB +3564889344,3564889375,NL +3564889376,3564889407,GB +3564889408,3564889511,NL +3564889512,3564889519,GB +3564889520,3564889631,NL +3564889632,3564889647,GB +3564889648,3564889663,NL +3564889664,3564889695,GB +3564889696,3564889727,DE +3564889728,3564889887,NL +3564889888,3564890239,GB +3564890240,3564890271,NL +3564890272,3564890303,GB +3564890304,3564890367,NL +3564890368,3564890399,FR +3564890400,3564890527,NL +3564890528,3564890543,GB +3564890544,3564890579,NL +3564890580,3564890591,GB +3564890592,3564890623,NL +3564890624,3564890703,GB +3564890704,3564890719,NL +3564890720,3564890751,GB +3564890752,3564890783,NL +3564890784,3564890927,GB +3564890928,3564890943,NL +3564890944,3564892431,GB +3564892432,3564892447,NL +3564892448,3564892463,GB +3564892464,3564892479,NL +3564892480,3564892607,GB +3564892608,3564892639,NL +3564892640,3564892735,GB +3564892736,3564892751,NL +3564892752,3564894207,GB +3564894208,3564896255,NL +3564896256,3564904447,RU +3564904448,3564912639,DE +3564912640,3564920831,BG +3564920832,3564921855,ES +3564921856,3564923007,US +3564923008,3564923135,RU +3564923136,3564924671,US +3564924672,3564929023,RU +3564929024,3564937215,AT +3564937216,3564941311,CS +3564941312,3564945407,CS +3564945408,3564947175,GB +3564947176,3564947183,FR +3564947184,3564948063,GB +3564948064,3564948071,IE +3564948072,3564948319,GB +3564948320,3564948351,IE +3564948352,3564953647,GB +3564953648,3564953651,CH +3564953652,3564954111,GB +3564954112,3564954131,AT +3564954132,3564954139,GB +3564954140,3564954143,AT +3564954144,3564954155,GB +3564954156,3564954159,AT +3564954160,3564954175,DE +3564954176,3564954183,AT +3564954184,3564954191,CH +3564954192,3564954211,AT +3564954212,3564954231,GB +3564954232,3564954239,AT +3564954240,3564954303,GB +3564954304,3564954311,AT +3564954312,3564954367,GB +3564954368,3564954383,AT +3564954384,3564954415,GB +3564954416,3564954431,DE +3564954432,3564956160,GB +3564956161,3564956543,AT +3564956544,3564956671,GB +3564956672,3564956703,GR +3564956704,3564956719,AT +3564956720,3564956735,GB +3564956736,3564956751,AT +3564956752,3564956767,US +3564956768,3564956831,AT +3564956832,3564956839,GB +3564956840,3564956855,AT +3564956856,3564956903,GB +3564956904,3564956907,AT +3564956908,3564956911,CH +3564956912,3564956927,AT +3564956928,3564956967,GB +3564956968,3564956971,CH +3564956972,3564956975,US +3564956976,3564956979,GB +3564956980,3564956991,AT +3564956992,3564956999,GB +3564957000,3564957007,AT +3564957008,3564957023,GB +3564957024,3564957039,AT +3564957040,3564957087,GB +3564957088,3564957119,AT +3564957120,3564957183,GB +3564957184,3564957255,AT +3564957256,3564957263,GB +3564957264,3564957439,AT +3564957440,3564957447,GB +3564957448,3564957455,CH +3564957456,3564957459,AT +3564957460,3564957471,GB +3564957472,3564957499,AT +3564957500,3564957511,GB +3564957512,3564957519,AT +3564957520,3564957527,GB +3564957528,3564957531,AT +3564957532,3564957547,GB +3564957548,3564957551,AT +3564957552,3564957559,GB +3564957560,3564957591,AT +3564957592,3564957595,GB +3564957596,3564957599,AT +3564957600,3564957607,GB +3564957608,3564957631,AT +3564957632,3564957663,GB +3564957664,3564957671,AT +3564957672,3564957679,GB +3564957680,3564957695,AT +3564957696,3564957855,GB +3564957856,3564957859,ES +3564957860,3564957863,AT +3564957864,3564957867,IT +3564957868,3564957871,AT +3564957872,3564957891,GB +3564957892,3564957903,AT +3564957904,3564957911,GB +3564957912,3564957919,AT +3564957920,3564957951,GB +3564957952,3564957967,AT +3564957968,3564957987,GB +3564957988,3564958015,AT +3564958016,3564958111,GB +3564958112,3564958143,AT +3564958144,3564958147,GB +3564958148,3564958179,AT +3564958180,3564958183,US +3564958184,3564958191,AT +3564958192,3564958207,GB +3564958208,3564958463,AT +3564958464,3564958487,GB +3564958488,3564958495,AT +3564958496,3564958719,GB +3564958720,3564958799,AT +3564958800,3564958807,GB +3564958808,3564958815,AT +3564958816,3564958816,GB +3564958817,3564958847,AT +3564958848,3564958911,GB +3564958912,3564958943,AT +3564958944,3564958975,GB +3564958976,3564959007,NL +3564959008,3564959008,GB +3564959009,3564959039,AT +3564959040,3564959075,GB +3564959076,3564959091,AT +3564959092,3564959095,GB +3564959096,3564959103,AT +3564959104,3564959119,GB +3564959120,3564959127,AT +3564959128,3564959191,GB +3564959192,3564959195,AT +3564959196,3564959199,GB +3564959200,3564959227,AT +3564959228,3564959263,GB +3564959264,3564959295,AT +3564959296,3564959383,GB +3564959384,3564959391,AT +3564959392,3564959399,SA +3564959400,3564959407,AT +3564959408,3564959423,CH +3564959424,3564959443,GB +3564959444,3564959451,AT +3564959452,3564959455,FR +3564959456,3564959471,GB +3564959472,3564959479,AT +3564959480,3564959487,GB +3564959488,3564959495,AT +3564959496,3564959499,GB +3564959500,3564959519,AT +3564959520,3564959535,GB +3564959536,3564959551,AT +3564959552,3564959567,GB +3564959568,3564959579,AT +3564959580,3564959623,GB +3564959624,3564959639,AT +3564959640,3564959655,GB +3564959656,3564959663,CH +3564959664,3564959679,AT +3564959680,3564959695,GB +3564959696,3564959711,AT +3564959712,3564959755,GB +3564959756,3564959759,AT +3564959760,3564959904,GB +3564959905,3564959935,AT +3564959936,3564960127,GB +3564960128,3564960135,DE +3564960136,3564960191,GB +3564960192,3564960195,AT +3564960196,3564960211,GB +3564960212,3564960223,AT +3564960224,3564960231,GB +3564960232,3564960383,AT +3564960384,3564960551,GB +3564960552,3564960559,AT +3564960560,3564960615,GB +3564960616,3564960623,FR +3564960624,3564960635,GB +3564960636,3564960639,AT +3564960640,3564960767,GB +3564960768,3564960799,AT +3564960800,3564960871,GB +3564960872,3564960879,IT +3564960880,3564960927,GB +3564960928,3564960959,AT +3564960960,3564960991,GB +3564960992,3564961007,AT +3564961008,3564961023,GB +3564961024,3564961079,AT +3564961080,3564961279,GB +3564961280,3564961311,AT +3564961312,3564961319,GB +3564961320,3564961791,AT +3564961792,3564969983,TR +3564969984,3564972607,DE +3564972608,3564972631,AT +3564972632,3564972639,LI +3564972640,3564978175,DE +3564978176,3564986367,GB +3564986368,3564994559,DE +3564994560,3565002751,NL +3565002752,3565007247,NO +3565007248,3565007251,SE +3565007252,3565027327,NO +3565027328,3565035519,PL +3565035520,3565043711,IE +3565043712,3565045247,AT +3565045248,3565045503,SK +3565045504,3565051903,AT +3565051904,3565068287,GB +3565068288,3565076479,CH +3565076480,3565084671,DE +3565084672,3565092863,IS +3565092864,3565093055,GB +3565093056,3565093087,PS +3565093088,3565093391,GB +3565093392,3565093399,NO +3565093400,3565096759,GB +3565096760,3565096767,IE +3565096768,3565099647,GB +3565099648,3565099651,US +3565099652,3565101055,GB +3565101056,3565109247,DE +3565109248,3565117439,PL +3565117440,3565125631,TR +3565125632,3565158399,NL +3565158400,3565223935,ES +3565223936,3565240319,FR +3565240320,3565248511,IE +3565248512,3565256703,RU +3565256704,3565289471,NL +3565289472,3565355007,DK +3565355008,3565420543,IT +3565420544,3565486079,GB +3565486080,3565486335,IE +3565486336,3565486975,FR +3565486976,3565487615,NL +3565487616,3565487871,SE +3565487872,3565488383,GB +3565488384,3565488639,ES +3565488640,3565488895,GB +3565488896,3565489535,DE +3565489536,3565489791,GB +3565489792,3565489823,DE +3565489824,3565490175,GB +3565490176,3565490431,NL +3565490432,3565491199,GB +3565491200,3565491215,FR +3565491216,3565491455,GB +3565491456,3565491711,IT +3565491712,3565491839,GB +3565491840,3565491903,IT +3565491904,3565491967,NL +3565491968,3565492223,DE +3565492224,3565492295,GB +3565492296,3565492303,IE +3565492304,3565492319,GB +3565492320,3565492327,DE +3565492328,3565492335,GB +3565492336,3565492351,FR +3565492352,3565492479,GB +3565492480,3565492607,NL +3565492608,3565492639,GB +3565492640,3565492655,FR +3565492656,3565492671,GB +3565492672,3565492735,IT +3565492736,3565492991,CH +3565492992,3565493247,NL +3565493248,3565493583,GB +3565493584,3565493591,DE +3565493592,3565493679,GB +3565493680,3565493687,FR +3565493688,3565493759,GB +3565493760,3565493775,NL +3565493776,3565493983,GB +3565493984,3565494055,DE +3565494056,3565494063,GB +3565494064,3565494079,NL +3565494080,3565494143,GB +3565494144,3565494271,DE +3565494272,3565494527,IS +3565494528,3565494543,GB +3565494544,3565494551,IT +3565494552,3565494559,DE +3565494560,3565494591,GB +3565494592,3565494655,FR +3565494656,3565494671,SE +3565494672,3565494687,DE +3565494688,3565494703,SE +3565494704,3565494719,DK +3565494720,3565494735,GB +3565494736,3565494743,CA +3565494744,3565495295,GB +3565495296,3565496447,FR +3565496448,3565496511,DE +3565496512,3565496575,US +3565496576,3565496831,GB +3565496832,3565497087,IT +3565497088,3565497103,GB +3565497104,3565497119,IE +3565497120,3565497151,DE +3565497152,3565497159,IE +3565497160,3565497167,US +3565497168,3565497199,GB +3565497200,3565497207,IT +3565497208,3565497215,GB +3565497216,3565497279,CZ +3565497280,3565497287,NL +3565497288,3565497343,GB +3565497344,3565497599,US +3565497600,3565497871,GB +3565497872,3565497887,DE +3565497888,3565497903,GB +3565497904,3565497911,IE +3565497912,3565497919,DE +3565497920,3565497927,PR +3565497928,3565497951,GB +3565497952,3565497967,US +3565497968,3565498111,GB +3565498112,3565498367,NL +3565498368,3565498431,FR +3565498432,3565498479,US +3565498480,3565498519,GB +3565498520,3565498527,ZA +3565498528,3565499815,GB +3565499816,3565499823,FR +3565499824,3565500479,GB +3565500480,3565500543,DE +3565500544,3565500567,GB +3565500568,3565500575,IE +3565500576,3565500591,GB +3565500592,3565500599,DE +3565500600,3565500607,GB +3565500608,3565500623,FR +3565500624,3565501095,GB +3565501096,3565501103,FR +3565501104,3565501119,FI +3565501120,3565501231,GB +3565501232,3565501247,DE +3565501248,3565501311,GB +3565501312,3565501439,DE +3565501440,3565501679,GB +3565501680,3565501695,IE +3565501696,3565502207,GB +3565502208,3565502239,IT +3565502240,3565502463,GB +3565502464,3565503487,NL +3565503488,3565503999,GB +3565504000,3565504511,NL +3565504512,3565510655,GB +3565510656,3565511679,NL +3565511680,3565512191,CH +3565512192,3565512703,DE +3565512704,3565512767,GB +3565512768,3565512959,DE +3565512960,3565514111,GB +3565514112,3565514239,DE +3565514240,3565514495,DK +3565514496,3565518847,GB +3565518848,3565551615,TR +3565551616,3565578495,GB +3565578496,3565578751,CA +3565578752,3565682687,GB +3565682688,3565688063,NL +3565688064,3565688319,GB +3565688320,3565748223,NL +3565748224,3565752407,GB +3565752416,3565752463,GB +3565752472,3565752479,GB +3565752488,3565752535,GB +3565752544,3565752839,GB +3565752856,3565752879,GB +3565752888,3565752983,GB +3565752992,3565752999,GB +3565753016,3565753031,GB +3565753040,3565753071,GB +3565753080,3565753183,GB +3565753248,3565753279,GB +3565753344,3565753791,GB +3565753800,3565753815,GB +3565753824,3565753831,GB +3565753840,3565753847,GB +3565753984,3565754367,GB +3565754496,3565754511,GB +3565754624,3565755263,GB +3565755280,3565755359,GB +3565755376,3565755583,GB +3565755648,3565755695,GB +3565755704,3565755727,GB +3565755736,3565755831,GB +3565755840,3565755847,GB +3565755856,3565755871,GB +3565755880,3565755919,GB +3565755928,3565755935,GB +3565755944,3565755959,GB +3565755968,3565755999,GB +3565756008,3565756063,GB +3565756072,3565756087,GB +3565756096,3565756119,GB +3565756136,3565756159,GB +3565756288,3565760783,GB +3565760792,3565760799,GB +3565760808,3565760823,GB +3565760832,3565760855,GB +3565760864,3565760935,GB +3565760944,3565760967,GB +3565760976,3565761007,GB +3565761016,3565761279,GB +3565761344,3565761535,GB +3565761544,3565761599,GB +3565761616,3565761631,GB +3565761640,3565761647,GB +3565761656,3565761687,GB +3565761704,3565761727,GB +3565761752,3565761783,GB +3565761792,3565762047,GB +3565762048,3565762303,ZA +3565762560,3565762815,GB +3565763072,3565763455,GB +3565763488,3565763599,GB +3565763616,3565763671,GB +3565763680,3565763703,GB +3565763720,3565763735,GB +3565763744,3565763751,GB +3565763760,3565763799,GB +3565763808,3565763815,GB +3565763832,3565763839,GB +3565763884,3565763891,GB +3565764096,3565764183,GB +3565764192,3565764207,GB +3565764256,3565764367,GB +3565764376,3565764439,GB +3565764448,3565764455,GB +3565764464,3565764551,GB +3565764576,3565766655,GB +3565766912,3565767167,GB +3565767176,3565767255,GB +3565767272,3565767287,GB +3565767296,3565767351,GB +3565767360,3565767399,GB +3565767408,3565767439,GB +3565767456,3565767487,GB +3565767504,3565767599,GB +3565767616,3565767631,GB +3565767680,3565767999,GB +3565768208,3565768271,GB +3565768280,3565768295,GB +3565768312,3565768335,GB +3565768448,3565768575,GB +3565768704,3565768983,GB +3565769216,3565769471,GB +3565777920,3565813759,GB +3565813760,3565879295,SA +3565879296,3566010367,GB +3566010368,3566075903,IT +3566075904,3566092287,NL +3566092288,3566108671,LV +3566108672,3566141439,ES +3566141440,3566206975,IL +3566206976,3566272511,DE +3566272512,3566338047,ES +3566338048,3566354431,FI +3566354432,3566370815,RO +3566370816,3566403583,TR +3566403584,3566436351,CH +3566436352,3566439615,IE +3566439616,3566439631,GB +3566439632,3566469119,IE +3566469120,3566534655,GB +3566534656,3566551039,DE +3566551040,3566600191,FI +3566600192,3566607359,IL +3566607360,3566607615,GN +3566607616,3566627583,IL +3566627584,3566627839,CA +3566627840,3566665727,IL +3566665728,3566723071,SE +3566723072,3566723327,FR +3566723328,3566731263,SE +3566731264,3566739455,CH +3566739456,3566747647,RU +3566747648,3566764031,GR +3566764032,3566796799,AT +3566796800,3566816511,NL +3566816512,3566816767,US +3566816768,3566862335,NL +3566862336,3566895103,TR +3566895104,3566897279,KZ +3566897280,3566897311,KG +3566897312,3566927871,KZ +3566927872,3566960127,FR +3566960128,3566960143,GB +3566960144,3566993407,FR +3566993408,3567058943,TR +3567058944,3567103047,FR +3567103048,3567103055,IT +3567103056,3567108255,FR +3567108256,3567108263,SE +3567108264,3567124479,FR +3567124992,3567125023,GB +3567125248,3567125503,GB +3567126688,3567126759,GB +3567127552,3567127807,GB +3567129856,3567129887,GB +3567130016,3567130079,GB +3567131384,3567131647,GB +3567133216,3567133247,GB +3567133368,3567133375,GB +3567134208,3567134335,GB +3567134848,3567134975,GB +3567136000,3567136255,GB +3567136512,3567136575,GB +3567136640,3567136671,GB +3567136768,3567136895,GB +3567137024,3567137279,GB +3567137600,3567137663,GB +3567137988,3567137991,GB +3567138000,3567138003,GB +3567138040,3567138047,GB +3567140096,3567140351,GB +3567140864,3567140927,GB +3567141632,3567141887,GB +3567142272,3567142399,GB +3567143432,3567143439,GB +3567143520,3567143551,GB +3567143680,3567143687,GB +3567143872,3567143935,GB +3567143952,3567143967,GB +3567144048,3567144063,GB +3567144172,3567144175,GB +3567144320,3567144447,GB +3567144768,3567144831,GB +3567147528,3567147535,GB +3567147552,3567147559,GB +3567147936,3567147967,GB +3567148520,3567148527,GB +3567148800,3567149055,GB +3567149088,3567149119,GB +3567149904,3567149911,GB +3567149920,3567149935,GB +3567151104,3567151199,GB +3567151232,3567151263,GB +3567152000,3567152127,GB +3567152160,3567152191,GB +3567152256,3567152383,GB +3567152392,3567152407,GB +3567152640,3567152647,GB +3567152664,3567152671,GB +3567152744,3567152751,GB +3567152832,3567152863,GB +3567152960,3567152991,GB +3567153024,3567153055,GB +3567153600,3567153623,GB +3567153648,3567153663,GB +3567153688,3567153703,GB +3567153720,3567153727,GB +3567153824,3567153847,GB +3567154304,3567154367,GB +3567155200,3567155967,GB +3567156416,3567156607,GB +3567156992,3567157247,GB +3567157248,3567165439,CZ +3567165440,3567169535,RU +3567169536,3567173631,MK +3567173632,3567239167,GB +3567239168,3567250143,NL +3567250176,3567250943,NL +3567255552,3567321087,PL +3567321088,3567353855,GB +3567353856,3567386623,CH +3567386624,3567386879,GB +3567386880,3567386883,DE +3567386884,3567386975,GB +3567386976,3567387007,DE +3567387008,3567387071,GB +3567387072,3567387391,DE +3567387392,3567387439,GB +3567387440,3567387455,DE +3567387456,3567387471,GB +3567387472,3567387539,DE +3567387540,3567387543,GB +3567387544,3567387547,DE +3567387548,3567387583,GB +3567387584,3567388031,DE +3567388032,3567388159,GB +3567388160,3567388399,DE +3567388400,3567388415,GB +3567388416,3567388479,DE +3567388480,3567388543,GB +3567388544,3567388607,DE +3567388608,3567388671,GB +3567388672,3567388927,CZ +3567388928,3567389183,DE +3567389184,3567389695,GB +3567389696,3567390847,DE +3567390848,3567390879,GB +3567390880,3567390975,DE +3567390976,3567391231,GB +3567391232,3567391743,DE +3567391744,3567391759,GB +3567391760,3567391791,DE +3567391792,3567391807,GB +3567391808,3567391839,DE +3567391840,3567392767,GB +3567392768,3567393023,DE +3567393024,3567393279,FR +3567393280,3567394975,GB +3567394976,3567395007,DE +3567395008,3567395071,GB +3567395072,3567395327,DE +3567395328,3567396863,GB +3567396864,3567397119,DE +3567397120,3567397375,GB +3567397376,3567397503,ES +3567397504,3567397887,GB +3567397888,3567398143,DE +3567398144,3567398655,GB +3567398656,3567398911,DE +3567398912,3567398991,GB +3567398992,3567399031,DE +3567399032,3567399039,GB +3567399040,3567399055,DE +3567399056,3567399071,GB +3567399072,3567399103,DE +3567399104,3567399167,GB +3567399168,3567399439,DE +3567399440,3567399487,GB +3567399488,3567399647,DE +3567399648,3567399687,GB +3567399688,3567399695,DE +3567399696,3567399711,GB +3567399712,3567400703,DE +3567400704,3567400735,GB +3567400736,3567400751,DE +3567400752,3567400959,GB +3567400960,3567401471,DE +3567401472,3567401503,GB +3567401504,3567401519,DE +3567401520,3567401543,GB +3567401544,3567401551,DE +3567401552,3567401727,GB +3567401728,3567402367,DE +3567402368,3567402495,GB +3567402496,3567403007,DE +3567403008,3567419391,IT +3567419392,3567427583,SA +3567427584,3567435775,SE +3567435776,3567436543,GB +3567436544,3567436595,IN +3567436596,3567436599,GB +3567436600,3567436603,IN +3567436604,3567436799,GB +3567436800,3567436895,IN +3567436896,3567441375,GB +3567441376,3567441407,NL +3567441408,3567444223,GB +3567444224,3567444475,TZ +3567444476,3567444479,NL +3567444480,3567445951,GB +3567445952,3567445983,NL +3567445984,3567446367,GB +3567446368,3567446399,CH +3567446400,3567446607,GB +3567446608,3567446623,IT +3567446624,3567452031,GB +3567452032,3567452047,GR +3567452048,3567452159,GB +3567452160,3567507455,ES +3567507456,3567509503,NL +3567509504,3567512575,ES +3567512576,3567513599,NL +3567513600,3567517695,ES +3567517696,3567583231,RU +3567583232,3567583487,AT +3567583744,3567583871,AT +3567583936,3567583999,AT +3567584256,3567584383,AT +3567584400,3567584407,AT +3567584512,3567584639,AT +3567585792,3567586303,GB +3567587328,3567591423,GB +3567591424,3567599615,IT +3567599616,3567606271,NL +3567606272,3567606783,DZ +3567606784,3567615999,NL +3567616000,3567616511,BD +3567616512,3567617087,GB +3567617088,3567617119,NG +3567617120,3567617151,GB +3567617152,3567617279,NG +3567617280,3567617535,IN +3567617536,3567617791,KE +3567617792,3567618047,NG +3567618048,3567619071,IN +3567619072,3567619075,NG +3567619076,3567619087,GB +3567619088,3567619095,NG +3567619096,3567619103,GB +3567619104,3567619111,KE +3567619112,3567619135,GB +3567619136,3567619583,NG +3567619584,3567620095,TZ +3567620096,3567620351,GB +3567620352,3567620479,TZ +3567620480,3567620623,GB +3567620624,3567620631,PK +3567620632,3567620639,IN +3567620640,3567620679,PK +3567620680,3567620695,GB +3567620696,3567620719,PK +3567620720,3567620727,GB +3567620728,3567620735,IN +3567620736,3567620863,GB +3567620864,3567620927,NG +3567620928,3567620931,GB +3567620932,3567620935,TZ +3567620936,3567620959,KE +3567620960,3567620991,GB +3567620992,3567621055,NG +3567621056,3567621119,KE +3567621120,3567621631,GB +3567621632,3567621887,ID +3567621888,3567621895,TZ +3567621896,3567621903,KE +3567621904,3567621911,NG +3567621912,3567621919,TZ +3567621920,3567621951,NG +3567621952,3567622655,GB +3567622656,3567622951,KE +3567622952,3567622959,GB +3567622960,3567622963,TZ +3567622964,3567622967,NG +3567622968,3567622975,GB +3567622976,3567623039,TZ +3567623040,3567623055,GA +3567623056,3567623071,NG +3567623072,3567623087,TZ +3567623088,3567623095,GB +3567623096,3567623103,GA +3567623104,3567623135,TZ +3567623136,3567623143,GB +3567623144,3567623151,TZ +3567623152,3567623167,GB +3567623168,3567623423,KE +3567623424,3567623471,GB +3567623472,3567623479,KE +3567623480,3567623727,GB +3567623728,3567623759,PK +3567623760,3567623767,GB +3567623768,3567623775,PK +3567623776,3567623791,GB +3567623792,3567623839,PK +3567623840,3567623935,GB +3567623936,3567624191,PK +3567624192,3567624447,GB +3567624448,3567625727,TZ +3567625728,3567625983,PK +3567625984,3567626239,KE +3567626240,3567627008,NG +3567627009,3567629311,GB +3567629312,3567630207,TJ +3567630208,3567648767,GB +3567648768,3567665151,BE +3567665152,3567673343,ES +3567673344,3567673647,AT +3567673648,3567673655,GI +3567673656,3567681535,AT +3567681536,3567714303,ES +3567714304,3567715327,GB +3567715584,3567715839,GB +3567716352,3567716383,GB +3567716608,3567716639,IL +3567716944,3567717119,GB +3567717120,3567717375,DE +3567717376,3567717631,GB +3567717632,3567717679,DE +3567717760,3567717887,DE +3567717888,3567718015,GB +3567718144,3567718399,CH +3567718400,3567719423,US +3567719424,3567719679,GB +3567779840,3567845375,DE +3567845376,3567861759,GB +3567861760,3567878143,NO +3567878144,3567976447,ES +3567976448,3568041983,IT +3568041984,3568107519,DE +3568107520,3568153759,GB +3568153760,3568153767,CH +3568153768,3568173055,GB +3568173056,3568304127,TR +3568304128,3568309775,RU +3568309776,3568309791,UZ +3568309792,3568309919,BY +3568309920,3568309951,RU +3568309952,3568310015,BY +3568310016,3568369663,RU +3568369664,3568369743,IT +3568369744,3568369751,FR +3568369752,3568435199,IT +3568435200,3568443391,UA +3568443392,3568476159,NL +3568476160,3568484351,DK +3568484352,3568492543,NL +3568492544,3568493055,CS +3568493056,3568493567,RS +3568493568,3568494591,CS +3568494592,3568500735,RS +3568500736,3568566271,IL +3568566272,3568599039,FR +3568599040,3568631807,PL +3568631808,3568697343,SE +3568697344,3568730111,PL +3568730112,3568746495,NL +3568746496,3568752895,FI +3568752896,3568752959,EE +3568752960,3568762879,FI +3568762880,3568795647,AT +3568795648,3568803839,GB +3568803840,3568812031,IT +3568812032,3568828415,ES +3568828416,3568829631,DE +3568829632,3568829639,CH +3568829640,3568836247,DE +3568836248,3568836255,NL +3568836256,3568848791,DE +3568848792,3568848799,PL +3568848800,3568848871,DE +3568848872,3568848879,GB +3568848880,3568876159,DE +3568876160,3568876287,ES +3568876288,3568877583,DE +3568877584,3568877591,NL +3568877592,3568916399,DE +3568916400,3568916407,IT +3568916408,3568938311,DE +3568938312,3568938319,FI +3568938320,3568939519,DE +3568939520,3568939527,IT +3568939528,3568946663,DE +3568946664,3568946671,IT +3568946672,3568959487,DE +3568959488,3569025023,AT +3569025024,3569057791,NL +3569057792,3569068415,GB +3569068416,3569068543,DE +3569068544,3569068671,BG +3569068672,3569068951,GB +3569068952,3569068991,DE +3569068992,3569075711,GB +3569075712,3569075839,FR +3569075840,3569083903,GB +3569083904,3569084159,US +3569084160,3569090559,GB +3569090560,3569123327,RU +3569123328,3569156095,GB +3569156096,3569188863,NL +3569188864,3569221631,IT +3569221632,3569238399,BE +3569238400,3569238527,AT +3569238528,3569239071,BE +3569239072,3569239103,LU +3569239104,3569239231,BE +3569239232,3569239263,LU +3569239264,3569239519,BE +3569239520,3569239551,LU +3569239552,3569239903,BE +3569239904,3569239935,LU +3569239936,3569239983,BE +3569239984,3569239999,BN +3569240000,3569240031,BE +3569240032,3569240063,FR +3569240064,3569241583,BE +3569241584,3569241599,LU +3569241600,3569241887,BE +3569241888,3569241903,LU +3569241904,3569242047,BE +3569242048,3569242111,LU +3569242112,3569242551,BE +3569242552,3569242559,LU +3569242560,3569242879,BE +3569242880,3569243135,US +3569243136,3569243903,BE +3569243904,3569244031,NL +3569244032,3569244303,BE +3569244304,3569244319,LU +3569244320,3569245695,BE +3569245696,3569245727,LU +3569245728,3569250879,BE +3569250880,3569250895,LU +3569250896,3569250927,BE +3569250928,3569250935,CA +3569250936,3569251071,BE +3569251072,3569251327,LU +3569251328,3569251839,US +3569251840,3569252991,BE +3569252992,3569253007,LU +3569253008,3569253095,BE +3569253096,3569253103,LU +3569253104,3569254911,BE +3569254912,3569254959,LU +3569254960,3569255007,BE +3569255008,3569255055,LU +3569255056,3569255071,BE +3569255072,3569255103,LU +3569255104,3569258783,BE +3569258784,3569258815,LU +3569258816,3569258847,US +3569258848,3569258975,BE +3569258976,3569259007,LU +3569259008,3569271815,BE +3569271816,3569271823,LU +3569271824,3569271871,BE +3569271872,3569271903,NL +3569271904,3569271911,BE +3569271912,3569271919,DE +3569271920,3569271935,BE +3569271936,3569271943,IT +3569271944,3569272063,BE +3569272064,3569272079,LU +3569272080,3569272239,BE +3569272240,3569272255,LU +3569272256,3569273167,BE +3569273168,3569273183,LU +3569273184,3569273791,BE +3569273792,3569273823,LU +3569273824,3569273935,BE +3569273936,3569273951,LI +3569273952,3569274143,BE +3569274144,3569274175,CA +3569274176,3569274303,BE +3569274304,3569274311,LU +3569274312,3569274335,BE +3569274336,3569274383,LU +3569274384,3569274495,BE +3569274496,3569274559,LU +3569274560,3569274687,BE +3569274688,3569274719,LU +3569274720,3569277183,BE +3569277184,3569277439,LU +3569277440,3569278311,BE +3569278312,3569278319,LU +3569278320,3569278703,BE +3569278704,3569278719,NL +3569278720,3569279223,BE +3569279224,3569279231,US +3569279232,3569279263,BE +3569279264,3569279279,US +3569279280,3569287167,BE +3569287168,3569352703,PL +3569352704,3569483775,RU +3569483776,3569614847,FR +3569614848,3569680383,GB +3569680384,3569683711,SK +3569683712,3569683719,IQ +3569683720,3569710959,SK +3569710960,3569710975,NL +3569710976,3569713151,SK +3569713152,3569729535,AT +3569729536,3569731167,FR +3569731168,3569731183,IT +3569731184,3569731215,GB +3569731216,3569731231,FR +3569731232,3569731247,DE +3569731248,3569731263,GB +3569731264,3569731311,FR +3569731312,3569731327,GB +3569731328,3569731375,FR +3569731376,3569731391,GB +3569731392,3569731423,FR +3569731424,3569731439,GB +3569731440,3569731455,FR +3569731456,3569731471,GB +3569731472,3569731487,FR +3569731488,3569731503,GB +3569731504,3569731519,IT +3569731520,3569731551,GB +3569731552,3569731583,FR +3569731584,3569731599,GB +3569731600,3569731615,FR +3569731616,3569731631,DE +3569731632,3569731647,IT +3569731648,3569731727,FR +3569731728,3569731743,GB +3569731744,3569731791,FR +3569731792,3569731807,GB +3569731808,3569731839,FR +3569731840,3569731871,GB +3569731872,3569731903,FR +3569731904,3569731919,BE +3569731920,3569731951,FR +3569731952,3569731967,NL +3569731968,3569731983,GB +3569731984,3569732031,FR +3569732032,3569732047,DE +3569732048,3569732063,GB +3569732064,3569732079,FR +3569732080,3569732095,GB +3569732096,3569732143,FR +3569732144,3569732191,GB +3569732192,3569732207,DE +3569732208,3569732287,FR +3569732288,3569732303,GB +3569732304,3569732319,DE +3569732320,3569732335,FR +3569732336,3569732351,GB +3569732352,3569732383,FR +3569732384,3569732399,US +3569732400,3569732447,FR +3569732448,3569732479,US +3569732480,3569732495,GB +3569732496,3569732543,FR +3569732544,3569732575,GB +3569732576,3569732607,FR +3569732608,3569732639,GB +3569732640,3569732671,FR +3569732672,3569732703,GB +3569732704,3569732719,FR +3569732720,3569732735,GB +3569732736,3569732751,FR +3569732752,3569732767,GB +3569732768,3569732783,FR +3569732784,3569732847,GB +3569732848,3569732863,FR +3569732864,3569732879,GB +3569732880,3569732895,FR +3569732896,3569732911,IT +3569732912,3569733007,FR +3569733008,3569733023,IE +3569733024,3569733055,FR +3569733056,3569733087,GB +3569733088,3569733103,IT +3569733104,3569733183,FR +3569733184,3569733199,GB +3569733200,3569733263,FR +3569733264,3569733279,US +3569733280,3569733295,DE +3569733296,3569733311,GB +3569733312,3569733327,FR +3569733328,3569733343,GB +3569733344,3569733423,FR +3569733424,3569733439,GB +3569733440,3569733471,FR +3569733472,3569733487,GB +3569733488,3569733519,FR +3569733520,3569733535,GB +3569733536,3569733551,NL +3569733552,3569733567,FR +3569733568,3569733583,GB +3569733584,3569733599,FR +3569733600,3569733615,GB +3569733616,3569733647,FR +3569733648,3569733663,GB +3569733664,3569733679,FR +3569733680,3569733695,GB +3569733696,3569733775,FR +3569733776,3569733791,IE +3569733792,3569733807,FR +3569733808,3569733823,GB +3569733824,3569733887,FR +3569733888,3569733919,GB +3569733920,3569733935,FR +3569733936,3569733951,GB +3569733952,3569733967,FR +3569733968,3569733983,ES +3569733984,3569733999,GB +3569734000,3569734047,FR +3569734048,3569734079,GB +3569734080,3569734143,FR +3569734144,3569734159,GB +3569734160,3569734191,FR +3569734192,3569734207,GB +3569734208,3569734367,FR +3569734368,3569734399,GB +3569734400,3569734447,BE +3569734448,3569734463,FR +3569734464,3569734511,BE +3569734512,3569736047,FR +3569736048,3569736063,GB +3569736064,3569736071,FR +3569736072,3569736079,ES +3569736080,3569736191,FR +3569736192,3569736223,NL +3569736224,3569736239,FR +3569736240,3569736383,NL +3569736384,3569736399,SE +3569736400,3569736655,NL +3569736656,3569736671,FR +3569736672,3569736703,NL +3569736704,3569739263,FR +3569739264,3569739295,NL +3569739296,3569739327,FR +3569739328,3569739471,NL +3569739472,3569739487,FR +3569739488,3569739599,NL +3569739600,3569739631,FR +3569739632,3569739647,NL +3569739648,3569739663,FR +3569739664,3569739679,NL +3569739680,3569739695,FR +3569739696,3569739839,NL +3569739840,3569739855,FR +3569739856,3569739903,NL +3569739904,3569739919,FR +3569739920,3569739935,NL +3569739936,3569739951,FR +3569739952,3569740047,NL +3569740048,3569740063,FR +3569740064,3569740111,NL +3569740112,3569740127,FR +3569740128,3569740255,NL +3569740256,3569740271,FR +3569740272,3569740303,NL +3569740304,3569740319,FR +3569740320,3569740367,NL +3569740368,3569740383,FR +3569740384,3569740415,NL +3569740416,3569740431,FR +3569740432,3569740463,NL +3569740464,3569740479,FR +3569740480,3569740495,NL +3569740496,3569740511,FR +3569740512,3569740543,NL +3569740544,3569740559,FR +3569740560,3569740655,NL +3569740656,3569740671,FR +3569740672,3569740687,NL +3569740688,3569740703,FR +3569740704,3569740799,NL +3569740800,3569741311,FR +3569741312,3569741823,BE +3569741824,3569741843,FR +3569741844,3569741859,NL +3569741860,3569742335,FR +3569742336,3569742351,BE +3569742352,3569742383,FR +3569742384,3569742399,BE +3569742400,3569742415,FR +3569742416,3569742511,BE +3569742512,3569742527,FR +3569742528,3569742623,BE +3569742624,3569742639,FR +3569742640,3569742671,BE +3569742672,3569742687,FR +3569742688,3569742735,BE +3569742736,3569742751,FR +3569742752,3569742767,BE +3569742768,3569742783,FR +3569742784,3569742927,BE +3569742928,3569742943,FR +3569742944,3569743087,BE +3569743088,3569743103,FR +3569743104,3569743135,BE +3569743136,3569743199,FR +3569743200,3569743215,BE +3569743216,3569743359,FR +3569743360,3569743391,BE +3569743392,3569743407,FR +3569743408,3569743423,BE +3569743424,3569743455,FR +3569743456,3569743583,BE +3569743584,3569743599,NL +3569743600,3569743615,FR +3569743616,3569743631,BE +3569743632,3569743647,FR +3569743648,3569743679,BE +3569743680,3569743711,FR +3569743712,3569743775,BE +3569743776,3569743791,FR +3569743792,3569743871,BE +3569743872,3569743983,NL +3569743984,3569743999,FR +3569744000,3569744047,NL +3569744048,3569744063,FR +3569744064,3569744127,NL +3569744128,3569744143,FR +3569744144,3569744543,NL +3569744544,3569744559,FR +3569744560,3569744575,NL +3569744576,3569744623,FR +3569744624,3569744815,NL +3569744816,3569744831,FR +3569744832,3569744911,NL +3569744912,3569744927,FR +3569744928,3569744975,NL +3569744976,3569744991,FR +3569744992,3569745007,NL +3569745008,3569745023,FR +3569745024,3569745039,NL +3569745040,3569745055,FR +3569745056,3569745103,NL +3569745104,3569745119,FR +3569745120,3569745167,NL +3569745168,3569745183,FR +3569745184,3569745215,NL +3569745216,3569745231,FR +3569745232,3569745247,NL +3569745248,3569745279,FR +3569745280,3569745311,NL +3569745312,3569745327,FR +3569745328,3569745359,NL +3569745360,3569745375,FR +3569745376,3569745407,NL +3569745408,3569745663,FR +3569745664,3569745727,NL +3569745728,3569745743,FR +3569745744,3569745813,NL +3569745814,3569745823,FR +3569745824,3569745839,NL +3569745840,3569745871,FR +3569745872,3569745887,NL +3569745888,3569745903,FR +3569745904,3569745919,NL +3569745920,3569811455,FR +3569811456,3569830463,IL +3569830464,3569830527,GB +3569830528,3569876991,IL +3569876992,3569877247,CS +3569877248,3569878015,RS +3569878016,3569879295,CS +3569879296,3569879807,RS +3569879808,3569885183,CS +3569885184,3569885439,CS +3569885440,3569885951,RS +3569885952,3569889791,CS +3569889792,3569890047,RS +3569890048,3569890575,CS +3569890576,3569890591,RS +3569890592,3569890615,CS +3569890616,3569890623,RS +3569890624,3569891071,CS +3569891072,3569891327,RS +3569891328,3569891583,CS +3569891584,3569891839,RS +3569891840,3569892351,CS +3569892352,3569892607,CS +3569892608,3569892863,CS +3569892864,3569893375,RS +3569893376,3569893887,CS +3569893888,3569894143,RS +3569894144,3569895943,CS +3569895944,3569895951,RS +3569895952,3569896047,CS +3569896048,3569896063,RS +3569896064,3569896083,CS +3569896084,3569896087,RS +3569896088,3569896103,CS +3569896104,3569896111,RS +3569896112,3569896143,CS +3569896144,3569896155,RS +3569896156,3569896447,CS +3569896448,3569896703,CS +3569896704,3569898495,CS +3569898496,3569899007,CS +3569899008,3569899775,CS +3569899776,3569900031,RS +3569900032,3569900319,CS +3569900320,3569900543,RS +3569900544,3569902847,CS +3569902848,3569903359,RS +3569903360,3569903999,CS +3569904000,3569904127,RS +3569904128,3569905499,CS +3569905500,3569905503,RS +3569905504,3569905539,CS +3569905540,3569905543,RS +3569905544,3569905631,CS +3569905632,3569905663,RS +3569905664,3569907711,CS +3569907712,3569907719,RS +3569907720,3569907723,CS +3569907724,3569907731,RS +3569907732,3569907787,CS +3569907788,3569907791,RS +3569907792,3569907799,CS +3569907800,3569907807,RS +3569907808,3569907847,CS +3569907848,3569907855,RS +3569907856,3569907911,CS +3569907912,3569907927,RS +3569907928,3569907975,CS +3569907976,3569907983,RS +3569907984,3569911039,CS +3569911040,3569911295,RS +3569911296,3569912623,CS +3569912624,3569912627,RS +3569912628,3569912751,CS +3569912752,3569912831,RS +3569912832,3569913599,CS +3569913600,3569913607,RS +3569913608,3569913655,CS +3569913656,3569913663,RS +3569913664,3569913711,CS +3569913712,3569913719,RS +3569913720,3569914015,CS +3569914016,3569914047,RS +3569914048,3569914191,CS +3569914192,3569914239,RS +3569914240,3569914351,CS +3569914352,3569914495,RS +3569914496,3569914623,CS +3569914624,3569914879,RS +3569914880,3569915831,CS +3569915832,3569915839,RS +3569915840,3569916331,CS +3569916332,3569916335,RS +3569916336,3569916671,CS +3569916672,3569916735,RS +3569916736,3569918463,CS +3569918464,3569918719,RS +3569918720,3569918847,CS +3569918848,3569918855,RS +3569918856,3569918863,CS +3569918864,3569918951,RS +3569918952,3569922047,CS +3569922048,3569925375,RS +3569925376,3569934335,CS +3569934336,3569934847,RS +3569934848,3569942527,CS +3569942528,3570073599,DE +3570073600,3570076943,NL +3570076944,3570076951,PH +3570076952,3570081791,NL +3570081792,3570096831,CH +3570096832,3570096895,US +3570096896,3570106367,CH +3570106368,3570139135,PL +3570139136,3570170079,DE +3570170080,3570170111,BE +3570170112,3570171903,DE +3570171904,3570204671,NL +3570204672,3570270207,GR +3570270208,3570335743,NL +3570335744,3570401279,GB +3570401280,3570442687,FR +3570442688,3570442695,IT +3570442696,3570466815,FR +3570466816,3570507439,SE +3570507440,3570507455,CH +3570507456,3570532351,SE +3570532352,3570597887,IT +3570597888,3570607103,GB +3570607104,3570608127,DE +3570608128,3570611199,GB +3570611200,3570611455,FR +3570611456,3570614271,GB +3570614272,3570617343,DE +3570617344,3570617855,GB +3570617856,3570622463,DE +3570622464,3570630655,GB +3570630656,3570633343,DE +3570633344,3570633471,CH +3570633472,3570663423,DE +3570663424,3570728959,GB +3570728960,3570729983,FI +3570729984,3570731007,SE +3570731008,3570756191,FI +3570756192,3570756223,RU +3570756224,3570760543,FI +3570760544,3570760575,RU +3570760576,3570794495,FI +3570794496,3570860031,SE +3570860032,3570892799,CH +3570892800,3570925567,SA +3570925568,3570991103,IT +3571023872,3571056639,SE +3571056640,3571122175,DE +3571122176,3571187711,GB +3571187712,3571253247,RU +3571253248,3571259551,BE +3571259552,3571259583,LU +3571259584,3571261359,BE +3571261360,3571261367,LU +3571261368,3571262335,BE +3571262336,3571262367,LU +3571262368,3571264607,BE +3571264608,3571264639,FR +3571264640,3571265935,BE +3571265936,3571265951,LU +3571265952,3571267199,BE +3571267200,3571267263,LU +3571267264,3571268607,BE +3571268608,3571268639,LU +3571268640,3571269823,BE +3571269824,3571269855,LU +3571269856,3571271423,BE +3571271424,3571271439,LU +3571271440,3571271551,BE +3571271552,3571271679,LU +3571271680,3571272447,BE +3571272448,3571272575,LU +3571272576,3571277119,BE +3571277120,3571277151,DE +3571277152,3571286015,BE +3571286016,3571321055,DE +3571321056,3571321087,GB +3571321088,3571326255,DE +3571326256,3571326259,BE +3571326260,3571343495,DE +3571343496,3571343503,ES +3571343504,3571347455,DE +3571347456,3571347711,BE +3571347712,3571349743,DE +3571349744,3571349759,CH +3571349760,3571349791,DE +3571349792,3571349799,SE +3571349800,3571349807,DE +3571349808,3571349815,BE +3571349816,3571349819,SE +3571349820,3571364951,DE +3571364952,3571364955,GB +3571364956,3571366399,DE +3571366400,3571366511,NL +3571366512,3571379311,DE +3571379312,3571379315,NL +3571379316,3571381631,DE +3571381632,3571381695,AT +3571381696,3571382783,DE +3571382784,3571383039,AT +3571383040,3571383135,DE +3571383136,3571383151,AT +3571383152,3571385151,DE +3571385152,3571385183,GB +3571385184,3571385631,DE +3571385632,3571385663,GB +3571385664,3571389471,DE +3571389472,3571389475,ES +3571389476,3571389503,DE +3571389504,3571389519,HU +3571389520,3571425695,DE +3571425696,3571425727,ES +3571425728,3571426895,DE +3571426896,3571426903,ES +3571426904,3571426931,DE +3571426932,3571426935,ES +3571426936,3571456575,DE +3571456576,3571456591,GB +3571456592,3571472383,DE +3571472384,3571472639,NL +3571472640,3571481343,DE +3571481344,3571481359,AT +3571481360,3571481599,DE +3571481600,3571481855,NL +3571481856,3571482367,DE +3571482368,3571482623,CH +3571482624,3571515391,BE +3571515392,3571548159,GB +3571548160,3571580927,ES +3571580928,3571646463,FI +3571646464,3571675679,DE +3571675680,3571675687,GB +3571675688,3571711999,DE +3571712000,3571843071,GB +3571843072,3571974143,ES +3571974144,3571978495,AT +3571978496,3571979007,SK +3571979008,3572006911,AT +3572006912,3572039679,CH +3572039680,3572047871,BE +3572047872,3572049407,LU +3572049408,3572050687,BE +3572050688,3572051711,LU +3572051712,3572051967,BE +3572051968,3572056063,LU +3572056064,3572072447,RU +3572072448,3572105215,BG +3572105216,3572148223,FR +3572148224,3572148479,MC +3572148480,3572170751,FR +3572170752,3572195791,IL +3572195792,3572195807,GB +3572195808,3572203519,IL +3572203520,3572236287,SI +3572236288,3572301823,AT +3572301824,3572367359,DK +3572367360,3572432895,NL +3572432896,3572436047,IT +3572436048,3572436063,GB +3572436064,3572442495,IT +3572442496,3572442511,NL +3572442512,3572447231,IT +3572447232,3572447239,AT +3572447240,3572447247,FR +3572447248,3572447255,GB +3572447256,3572447263,ES +3572447264,3572465663,IT +3572465664,3572498431,BE +3572498432,3572563967,GB +3572563968,3572572159,KG +3572572160,3572580351,NL +3572580352,3572596735,AT +3572596736,3572629503,GB +3572629504,3572695039,DK +3572695040,3572704951,CH +3572704952,3572704959,DE +3572704960,3572705479,CH +3572705480,3572705487,NL +3572705488,3572715519,CH +3572715520,3572715775,GB +3572715776,3572760575,CH +3572760576,3572826111,PL +3572826112,3572891647,IT +3572891648,3572957183,FI +3572957184,3573022719,SE +3573022720,3573055487,RU +3573055488,3573088255,GB +3573088256,3573142015,CH +3573142016,3573142271,AT +3573142272,3573153791,CH +3573153792,3573175711,GB +3573175712,3573175727,IE +3573175728,3573208511,GB +3573208512,3573208543,IE +3573208544,3573219327,GB +3573219328,3573252095,GR +3573252096,3573284863,NO +3573284864,3573415935,TR +3573415936,3573481471,CH +3573481472,3573547007,DE +3573547008,3573612543,ES +3573612544,3573733375,GB +3573733376,3573734399,IT +3573734400,3573743615,GB +3573743616,3573809151,CH +3573809152,3573874687,ES +3573874688,3573940223,GR +3573940224,3574005759,PS +3574005760,3574071295,CY +3574071296,3574136831,IL +3574136832,3574137783,DE +3574137784,3574137791,AT +3574137792,3574138559,DE +3574138560,3574138623,NL +3574138624,3574138735,DE +3574138736,3574138751,NL +3574138752,3574138767,DE +3574138768,3574138775,NL +3574138776,3574151823,DE +3574151824,3574151831,AT +3574151832,3574153351,DE +3574153352,3574153359,LU +3574153360,3574153367,AT +3574153368,3574153615,DE +3574153616,3574153623,AT +3574153624,3574153731,DE +3574153732,3574153735,HU +3574153736,3574154831,DE +3574154832,3574154847,LU +3574154848,3574155551,DE +3574155552,3574155583,CH +3574155584,3574155591,DE +3574155592,3574155595,FR +3574155596,3574155727,DE +3574155728,3574155731,AT +3574155732,3574155739,DE +3574155740,3574155743,AT +3574155744,3574155811,DE +3574155812,3574155815,LU +3574155816,3574155819,DE +3574155820,3574155823,NO +3574155824,3574155851,DE +3574155852,3574155855,NO +3574155856,3574155859,DE +3574155860,3574155863,NO +3574155864,3574157551,DE +3574157552,3574157559,AT +3574157560,3574159871,DE +3574159872,3574159875,GB +3574159876,3574159919,DE +3574159920,3574159927,NL +3574159928,3574160931,DE +3574160932,3574160935,NL +3574160936,3574160959,DE +3574160960,3574161023,GB +3574161024,3574161039,DE +3574161040,3574161043,NL +3574161044,3574161055,DE +3574161056,3574161087,NL +3574161088,3574161107,DE +3574161108,3574161111,NL +3574161112,3574161171,DE +3574161172,3574161175,NO +3574161176,3574161319,DE +3574161320,3574161323,NO +3574161324,3574161335,DE +3574161336,3574161339,AI +3574161340,3574161343,AT +3574161344,3574161383,DE +3574161384,3574161387,GB +3574161388,3574169599,DE +3574169600,3574202367,ES +3574202368,3574267903,NL +3574267904,3574333439,FR +3574333440,3574341631,GB +3574348288,3574348543,GB +3574398976,3574464511,PT +3574464512,3574530047,TR +3574530048,3574563679,SE +3574563680,3574563695,FI +3574563696,3574563727,SE +3574563728,3574563775,FI +3574563776,3574563807,SE +3574563808,3574563823,FI +3574563824,3574563839,SE +3574563840,3574564863,FI +3574564864,3574565887,SE +3574565888,3574565951,FI +3574565952,3574566207,SE +3574566208,3574566271,FI +3574566272,3574566447,SE +3574566448,3574566463,FI +3574566464,3574594559,SE +3574594560,3574595583,GB +3574595584,3574595839,FR +3574595840,3574596095,MQ +3574596096,3574596351,FR +3574596352,3574596863,MQ +3574596864,3574597119,FR +3574597120,3574597631,MQ +3574597632,3574598143,GP +3574598144,3574598399,FR +3574598400,3574598655,RE +3574598656,3574599679,MQ +3574599680,3574600191,FR +3574600192,3574601215,MQ +3574601216,3574601471,RE +3574601472,3574601983,MQ +3574601984,3574602239,GF +3574602240,3574602495,FR +3574602496,3574603263,MQ +3574603264,3574603775,FR +3574603776,3574611967,BG +3574611968,3574628351,HU +3574628352,3574661119,GR +3574661120,3574693887,NL +3574693888,3574726655,PL +3574726656,3574792191,GB +3574792192,3574824959,CZ +3574824960,3574825215,NL +3574825216,3574825279,GB +3574825280,3574825407,NL +3574825408,3574825471,GB +3574825472,3574826111,NL +3574826112,3574826239,GB +3574826240,3574829055,NL +3574829056,3574829567,GB +3574829568,3574829823,NL +3574829824,3574830079,GB +3574830080,3574831359,NL +3574831360,3574833279,GB +3574833280,3574833311,NL +3574833312,3574833343,GB +3574833344,3574833359,NL +3574833360,3574833407,GB +3574833408,3574833439,NL +3574833440,3574833663,GB +3574833664,3574834175,NL +3574834176,3574834431,GB +3574834432,3574834559,NL +3574834560,3574834687,GB +3574834688,3574835199,NL +3574835200,3574836351,GB +3574836352,3574838015,NL +3574838016,3574838271,GB +3574838272,3574838527,NL +3574838528,3574857727,GB +3574857728,3574917375,DE +3574917376,3574917631,CH +3574917632,3574919359,DE +3574919360,3574919391,FR +3574919392,3574923263,DE +3574923264,3574939647,RU +3574939648,3574956031,SE +3574956032,3574972415,IT +3574972416,3574988799,LV +3574988800,3575054335,PT +3575054336,3575086175,DE +3575086176,3575086207,MT +3575086208,3575119871,DE +3575119872,3575185407,RU +3575185408,3575250943,PL +3575250944,3575316479,IT +3575316480,3575349247,RU +3575349248,3575355231,ES +3575355232,3575355247,GB +3575355248,3575367111,ES +3575367112,3575367119,DE +3575367120,3575372239,ES +3575372240,3575372247,PT +3575372248,3575382015,ES +3575382016,3575412991,FI +3575412992,3575413119,RU +3575413120,3575447551,FI +3575447552,3575513087,CZ +3575513088,3575545855,PT +3575545856,3575562239,FR +3575562240,3575578623,DE +3575578624,3575580671,BE +3575580672,3575580927,NL +3575580928,3575581439,ES +3575581440,3575581567,GB +3575581568,3575581695,BE +3575581696,3575581823,FR +3575581824,3575581951,ES +3575581952,3575582207,GR +3575582208,3575583103,BE +3575583104,3575583111,HU +3575583112,3575583999,BE +3575584000,3575584255,FR +3575584256,3575586943,BE +3575586944,3575587071,GB +3575587072,3575587103,BE +3575587104,3575587119,ES +3575587120,3575587135,BE +3575587136,3575587151,GB +3575587152,3575587247,BE +3575587248,3575587255,FR +3575587256,3575587263,BE +3575587264,3575587271,CH +3575587272,3575587295,BE +3575587296,3575587311,RU +3575587312,3575587839,BE +3575587840,3575588351,GB +3575588352,3575588863,BE +3575588864,3575589375,FR +3575589376,3575590399,BE +3575590400,3575590911,FR +3575590912,3575622607,BE +3575622608,3575622611,GB +3575622612,3575622655,BE +3575622656,3575622815,GB +3575622816,3575622847,DK +3575622848,3575622911,BE +3575622912,3575623167,GB +3575623168,3575624703,BE +3575624704,3575624831,FR +3575624832,3575624839,PT +3575624840,3575624863,GB +3575624864,3575624895,BE +3575624896,3575624911,GB +3575624912,3575624927,ES +3575624928,3575624943,GB +3575624944,3575624951,BE +3575624952,3575624959,IE +3575624960,3575624991,GB +3575624992,3575624999,IT +3575625000,3575625087,BE +3575625088,3575625095,US +3575625096,3575625375,BE +3575625376,3575625407,IT +3575625408,3575625439,BE +3575625440,3575625455,ES +3575625456,3575625471,BE +3575625472,3575625503,NO +3575625504,3575625983,BE +3575625984,3575625991,SE +3575625992,3575626047,BE +3575626048,3575626111,FR +3575626112,3575626319,BE +3575626320,3575626335,GB +3575626336,3575626351,ES +3575626352,3575626367,DE +3575626368,3575626503,BE +3575626504,3575626511,CH +3575626512,3575626519,BE +3575626520,3575626527,FR +3575626528,3575626567,BE +3575626568,3575626575,RO +3575626576,3575626599,BE +3575626600,3575626607,IE +3575626608,3575626631,BE +3575626632,3575626639,GB +3575626640,3575626647,DE +3575626648,3575626655,IT +3575626656,3575627311,BE +3575627312,3575627327,ES +3575627328,3575627335,SE +3575627336,3575627359,BE +3575627360,3575627367,ES +3575627368,3575627423,BE +3575627424,3575627431,DE +3575627432,3575627487,BE +3575627488,3575627503,GB +3575627504,3575627775,BE +3575627776,3575628543,NL +3575628544,3575628631,BE +3575628632,3575628639,GB +3575628640,3575628815,BE +3575628816,3575628823,ES +3575628824,3575628831,FR +3575628832,3575629183,BE +3575629184,3575629247,NL +3575629248,3575629279,BE +3575629280,3575629287,GB +3575629288,3575629295,BE +3575629296,3575629303,NL +3575629304,3575629823,BE +3575629824,3575629855,GR +3575629856,3575629871,DE +3575629872,3575629935,BE +3575629936,3575629951,FR +3575629952,3575630015,BE +3575630016,3575630023,GR +3575630024,3575630063,BE +3575630064,3575630079,ZA +3575630080,3575630335,BE +3575630336,3575630463,IT +3575630464,3575630591,CH +3575630592,3575630847,IL +3575630848,3575630975,BE +3575630976,3575630991,FR +3575630992,3575631103,BE +3575631104,3575631111,AT +3575631112,3575631119,CH +3575631120,3575631127,DE +3575631128,3575631135,BE +3575631136,3575631143,HU +3575631144,3575631183,BE +3575631184,3575631199,HU +3575631200,3575631207,IE +3575631208,3575631231,BE +3575631232,3575631295,CH +3575631296,3575631303,BE +3575631304,3575631311,FI +3575631312,3575631615,BE +3575631616,3575631631,SE +3575631632,3575631639,BE +3575631640,3575631647,CH +3575631648,3575631663,SE +3575631664,3575631679,DE +3575631680,3575631695,SE +3575631696,3575631711,IT +3575631712,3575631759,BE +3575631760,3575631775,ZA +3575631776,3575631791,BE +3575631792,3575631799,ES +3575631800,3575631807,CZ +3575631808,3575631855,BE +3575631856,3575631863,ZA +3575631864,3575631871,BE +3575631872,3575632639,IL +3575632640,3575632655,NO +3575632656,3575632703,BE +3575632704,3575632711,GB +3575632712,3575632783,BE +3575632784,3575632791,GB +3575632792,3575632847,BE +3575632848,3575632863,CH +3575632864,3575632879,BE +3575632880,3575632895,DE +3575632896,3575632967,BE +3575632968,3575632975,GB +3575632976,3575632991,BE +3575632992,3575632999,IT +3575633000,3575633039,BE +3575633040,3575633055,DE +3575633056,3575633063,SE +3575633064,3575633071,NL +3575633072,3575633087,BE +3575633088,3575633119,GB +3575633120,3575633135,BE +3575633136,3575633143,GB +3575633144,3575633599,BE +3575633600,3575633663,NL +3575633664,3575633727,BE +3575633728,3575633735,AT +3575633736,3575633743,IT +3575633744,3575633783,BE +3575633784,3575633791,DE +3575633792,3575633887,BE +3575633888,3575633895,SE +3575633896,3575633919,BE +3575633920,3575633983,CH +3575633984,3575633991,DE +3575633992,3575633999,BE +3575634000,3575634007,PT +3575634008,3575634015,DK +3575634016,3575634047,GB +3575634048,3575634183,BE +3575634184,3575634191,AT +3575634192,3575634255,BE +3575634256,3575634271,IT +3575634272,3575634367,BE +3575634368,3575634399,NO +3575634400,3575634431,GB +3575634432,3575634455,BE +3575634456,3575634463,DE +3575634464,3575634495,BE +3575634496,3575634511,FI +3575634512,3575634519,CH +3575634520,3575634591,BE +3575634592,3575634599,ES +3575634600,3575634607,BE +3575634608,3575634615,GB +3575634616,3575634623,DE +3575634624,3575634695,BE +3575634696,3575634703,FI +3575634704,3575634711,BE +3575634712,3575634719,DE +3575634720,3575634767,BE +3575634768,3575634775,NO +3575634776,3575634783,BE +3575634784,3575634791,FR +3575634792,3575634799,ES +3575634800,3575634807,BE +3575634808,3575634815,SE +3575634816,3575634879,BE +3575634880,3575634911,GB +3575634912,3575634919,SE +3575634920,3575634927,GB +3575634928,3575634935,IT +3575634936,3575635015,BE +3575635016,3575635023,CH +3575635024,3575635039,ES +3575635040,3575635055,BE +3575635056,3575635063,CH +3575635064,3575635071,BE +3575635072,3575635087,SE +3575635088,3575635103,BE +3575635104,3575635119,PT +3575635120,3575635135,PL +3575635136,3575635151,DE +3575635152,3575635159,PT +3575635160,3575635167,DE +3575635168,3575635175,GB +3575635176,3575635199,BE +3575635200,3575635455,NO +3575635456,3575635463,RU +3575635464,3575635471,GB +3575635472,3575635583,BE +3575635584,3575635615,EG +3575635616,3575635631,FI +3575635632,3575635647,BE +3575635648,3575635679,GB +3575635680,3575635695,BE +3575635696,3575635703,GB +3575635704,3575635775,BE +3575635776,3575635839,CH +3575635840,3575635847,GB +3575635848,3575635855,FR +3575635856,3575635871,TR +3575635872,3575635983,BE +3575635984,3575635999,DE +3575636000,3575636143,BE +3575636144,3575636151,HU +3575636152,3575636607,BE +3575636608,3575636735,FR +3575636736,3575636807,BE +3575636808,3575636815,GB +3575636816,3575636823,BE +3575636824,3575636831,RU +3575636832,3575636855,BE +3575636856,3575636863,DE +3575636864,3575636871,BE +3575636872,3575636879,CZ +3575636880,3575636895,BE +3575636896,3575636903,PL +3575636904,3575636911,CZ +3575636912,3575636927,BE +3575636928,3575636959,DE +3575636960,3575636983,BE +3575636984,3575636991,FR +3575636992,3575637039,BE +3575637040,3575637055,DE +3575637056,3575637151,BE +3575637152,3575637183,GB +3575637184,3575637407,BE +3575637408,3575637439,LU +3575637440,3575637471,GB +3575637472,3575638103,BE +3575638104,3575638111,GB +3575638112,3575638175,BE +3575638176,3575638239,GB +3575638240,3575638279,BE +3575638280,3575638287,RU +3575638288,3575638303,BE +3575638304,3575638335,NO +3575638336,3575638527,BE +3575638528,3575638543,DE +3575638544,3575638559,BE +3575638560,3575638591,GB +3575638592,3575638623,BE +3575638624,3575638639,PL +3575638640,3575638719,BE +3575638720,3575638735,NL +3575638736,3575638751,GR +3575638752,3575638767,BE +3575638768,3575638783,SE +3575638784,3575638911,BE +3575638912,3575638943,FR +3575638944,3575638975,GB +3575638976,3575639007,BE +3575639008,3575639011,GB +3575639012,3575639023,IE +3575639024,3575639039,PL +3575639040,3575644159,BE +3575644160,3575709695,DK +3575709696,3575730175,AT +3575730176,3575730183,SA +3575730184,3575732735,AT +3575732736,3575732991,LI +3575732992,3575736319,AT +3575736320,3575736895,LI +3575736896,3575738407,AT +3575738408,3575738415,SA +3575738416,3575738431,AT +3575738432,3575738463,SA +3575738464,3575738751,AT +3575738752,3575738759,SA +3575738760,3575742463,AT +3575742464,3575775231,RU +3575775232,3575775295,AT +3575775296,3575775487,NL +3575775488,3575775743,AT +3575775744,3575824383,NL +3575824384,3575832575,KW +3575832576,3575857151,NL +3575857152,3575857407,BE +3575857408,3575858529,NL +3575858530,3575858543,US +3575858544,3575860299,NL +3575860300,3575860303,BE +3575860304,3575866367,NL +3575866368,3575867135,US +3575867136,3575873535,NL +3575873536,3575906303,EE +3575906304,3575971839,FR +3575971840,3576037375,ES +3576038208,3576038271,GB +3576038336,3576038463,GB +3576038528,3576038591,GB +3576038912,3576038975,GB +3576039168,3576039231,GB +3576039360,3576039383,GB +3576039392,3576039455,GB +3576039520,3576039551,GB +3576039584,3576039647,GB +3576039808,3576039839,GB +3576039904,3576039935,GB +3576040064,3576040127,GB +3576040216,3576040223,GB +3576040272,3576040287,GB +3576040352,3576040383,GB +3576040832,3576040959,GB +3576041472,3576041535,GB +3576041728,3576041799,GB +3576041832,3576041847,GB +3576041864,3576041871,GB +3576041880,3576041887,GB +3576041904,3576041919,GB +3576041936,3576041943,GB +3576041952,3576041975,GB +3576042112,3576042239,GB +3576042496,3576042623,GB +3576042688,3576042815,GB +3576045568,3576045599,GB +3576045616,3576045631,GB +3576045664,3576045679,GB +3576045712,3576045735,GB +3576045800,3576045807,GB +3576045816,3576045823,GB +3576048640,3576048767,GB +3576048960,3576049023,GB +3576049152,3576050047,GB +3576053760,3576054911,GB +3576055104,3576055111,GB +3576055120,3576055127,GB +3576055152,3576055167,GB +3576055184,3576055199,GB +3576055208,3576055215,GB +3576055280,3576055551,GB +3576055680,3576055871,GB +3576055936,3576055999,GB +3576056192,3576056255,GB +3576056320,3576056447,GB +3576056704,3576056767,GB +3576056856,3576056871,GB +3576056880,3576056887,GB +3576056896,3576056903,GB +3576056920,3576056927,GB +3576056936,3576056943,GB +3576056952,3576056975,GB +3576056992,3576057007,GB +3576057040,3576057055,GB +3576057632,3576057647,GB +3576057712,3576057743,GB +3576057760,3576057775,GB +3576057824,3576057839,GB +3576058880,3576059007,GB +3576059648,3576059679,GB +3576059712,3576059743,GB +3576059776,3576059807,GB +3576060096,3576060159,GB +3576060288,3576060351,GB +3576061040,3576061055,GB +3576061120,3576061135,GB +3576061184,3576061247,GB +3576061312,3576061439,GB +3576061584,3576061591,GB +3576061620,3576061631,GB +3576061640,3576061647,GB +3576061688,3576061695,GB +3576062464,3576062479,GB +3576064320,3576064448,GB +3576064544,3576064559,GB +3576065408,3576065535,GB +3576065856,3576065887,GB +3576066288,3576066295,GB +3576066304,3576066431,GB +3576067072,3576067199,GB +3576067248,3576067255,GB +3576068352,3576068479,GB +3576068864,3576068927,GB +3576069056,3576069119,GB +3576069248,3576069279,GB +3576069312,3576069343,GB +3576070696,3576070703,GB +3576070712,3576070719,GB +3576070728,3576070735,GB +3576070776,3576070783,GB +3576071296,3576071423,GB +3576071552,3576071679,GB +3576071936,3576071951,GB +3576072064,3576072079,GB +3576072288,3576072319,GB +3576072416,3576072511,GB +3576073216,3576073279,GB +3576074752,3576074879,GB +3576075104,3576075135,GB +3576075264,3576075327,GB +3576075648,3576075711,GB +3576075776,3576075903,GB +3576076272,3576076351,GB +3576076568,3576076575,GB +3576076624,3576076631,GB +3576076704,3576076719,GB +3576076784,3576076791,GB +3576077440,3576077471,GB +3576077568,3576077695,GB +3576077872,3576077887,GB +3576077936,3576077967,GB +3576078080,3576078175,GB +3576078464,3576078591,GB +3576079616,3576079871,GB +3576080000,3576080127,GB +3576080224,3576080255,GB +3576080776,3576080799,GB +3576080808,3576080815,GB +3576080824,3576080831,GB +3576082080,3576082111,GB +3576082192,3576082223,GB +3576082688,3576082943,GB +3576083968,3576084031,GB +3576084480,3576084543,GB +3576084608,3576084671,GB +3576084704,3576084735,GB +3576084864,3576084927,GB +3576085184,3576085215,GB +3576085696,3576085711,GB +3576086016,3576086143,GB +3576086368,3576086431,GB +3576086496,3576086527,GB +3576086568,3576086571,GB +3576086576,3576086591,GB +3576086600,3576086603,GB +3576087808,3576087823,GB +3576087952,3576087967,GB +3576088032,3576088047,GB +3576088224,3576088231,GB +3576088376,3576088383,GB +3576088480,3576088511,GB +3576088960,3576088967,GB +3576089024,3576089039,GB +3576089440,3576089471,GB +3576089776,3576089791,GB +3576089824,3576089839,GB +3576091408,3576091423,GB +3576091456,3576091479,GB +3576091520,3576091535,GB +3576091968,3576091983,GB +3576092000,3576092031,GB +3576092128,3576092159,GB +3576092864,3576092895,GB +3576093064,3576093071,GB +3576093184,3576093247,GB +3576095232,3576096767,GB +3576099072,3576100863,GB +3576101376,3576102911,GB +3576102912,3576109023,FR +3576109024,3576109055,DE +3576109056,3576119295,FR +3576119296,3576119455,CH +3576119456,3576119471,BE +3576119472,3576127487,CH +3576127488,3576131583,FR +3576131584,3576135679,CH +3576135680,3576168447,DE +3576168448,3576233983,GB +3576233984,3576236671,FR +3576236672,3576236703,GB +3576236704,3576236879,FR +3576236880,3576237055,GB +3576237056,3576237063,FR +3576237064,3576237071,GB +3576237072,3576237087,FR +3576237088,3576237119,GB +3576237120,3576237215,FR +3576237216,3576237279,GB +3576237280,3576237455,FR +3576237456,3576237503,GB +3576237504,3576237567,FR +3576237568,3576237583,GB +3576237584,3576237599,FR +3576237600,3576237679,GB +3576237680,3576237695,FR +3576237696,3576237759,GB +3576237760,3576237791,FR +3576237792,3576237823,GB +3576237824,3576237855,FR +3576237856,3576237871,GB +3576237872,3576237887,FR +3576237888,3576237919,GB +3576237920,3576237935,FR +3576237936,3576237967,GB +3576237968,3576237983,FR +3576237984,3576238015,GB +3576238016,3576238143,FR +3576238144,3576238159,GB +3576238160,3576238271,FR +3576238272,3576238335,GB +3576238336,3576238447,FR +3576238448,3576238463,GB +3576238464,3576238511,FR +3576238512,3576238527,GB +3576238528,3576238559,FR +3576238560,3576238575,GB +3576238576,3576238607,FR +3576238608,3576238623,GB +3576238624,3576238639,FR +3576238640,3576238911,GB +3576238912,3576238927,FR +3576238928,3576238975,GB +3576238976,3576239007,FR +3576239008,3576239023,GB +3576239024,3576239039,FR +3576239040,3576239071,GB +3576239072,3576239087,FR +3576239088,3576239103,GB +3576239104,3576240039,FR +3576240040,3576240047,GB +3576240048,3576240111,FR +3576240112,3576240127,GB +3576240128,3576240639,FR +3576240640,3576240895,GB +3576240896,3576241287,FR +3576241288,3576241295,GB +3576241296,3576241343,FR +3576241344,3576241351,GB +3576241352,3576241391,FR +3576241392,3576241399,GB +3576241400,3576241791,FR +3576241792,3576241799,GB +3576241800,3576241815,FR +3576241816,3576241823,GB +3576241824,3576241919,FR +3576241920,3576242111,GB +3576242112,3576246399,FR +3576246400,3576246527,GB +3576246528,3576246656,FR +3576246657,3576246783,GB +3576246784,3576248575,FR +3576248576,3576248831,GB +3576248832,3576249463,FR +3576249464,3576249471,GB +3576249472,3576249527,FR +3576249528,3576249535,GB +3576249536,3576249743,FR +3576249744,3576249791,GB +3576249792,3576249799,FR +3576249800,3576249823,GB +3576249824,3576249831,FR +3576249832,3576249839,GB +3576249840,3576251407,FR +3576251408,3576251519,GB +3576251520,3576251583,FR +3576251584,3576251599,GB +3576251600,3576251615,FR +3576251616,3576251647,GB +3576251648,3576252415,FR +3576252416,3576252671,GB +3576252672,3576253159,FR +3576253160,3576253183,GB +3576253184,3576254479,FR +3576254480,3576254495,GB +3576254496,3576254551,FR +3576254552,3576254559,GB +3576254560,3576254575,FR +3576254576,3576254615,GB +3576254616,3576254623,FR +3576254624,3576254639,GB +3576254640,3576254647,FR +3576254648,3576254679,GB +3576254680,3576254695,FR +3576254696,3576254711,GB +3576254712,3576254767,FR +3576254768,3576254783,GB +3576254784,3576254847,FR +3576254848,3576254855,GB +3576254856,3576254863,FR +3576254864,3576254879,GB +3576254880,3576254895,FR +3576254896,3576254903,GB +3576254904,3576255087,FR +3576255088,3576255199,GB +3576255200,3576255215,FR +3576255216,3576255263,GB +3576255264,3576255319,FR +3576255320,3576255327,GB +3576255328,3576255375,FR +3576255376,3576255383,GB +3576255384,3576255407,FR +3576255408,3576255423,GB +3576255424,3576255431,FR +3576255432,3576255439,GB +3576255440,3576255503,FR +3576255504,3576255511,GB +3576255512,3576255519,FR +3576255520,3576255527,GB +3576255528,3576255543,FR +3576255544,3576255551,GB +3576255552,3576255575,FR +3576255576,3576255583,GB +3576255584,3576255631,FR +3576255632,3576255647,GB +3576255648,3576255671,FR +3576255672,3576255679,GB +3576255680,3576255703,FR +3576255704,3576255727,GB +3576255728,3576255743,FR +3576255744,3576255759,GB +3576255760,3576255839,FR +3576255840,3576255871,GB +3576255872,3576255887,FR +3576255888,3576255935,GB +3576255936,3576255943,FR +3576255944,3576256047,GB +3576256048,3576256111,FR +3576256112,3576256143,GB +3576256144,3576256239,FR +3576256240,3576256255,GB +3576256256,3576256351,FR +3576256352,3576256367,GB +3576256368,3576256383,FR +3576256384,3576256415,GB +3576256416,3576256431,FR +3576256432,3576256447,GB +3576256448,3576256463,FR +3576256464,3576256527,GB +3576256528,3576256543,FR +3576256544,3576256559,GB +3576256560,3576256607,FR +3576256608,3576256623,GB +3576256624,3576256639,FR +3576256640,3576256671,GB +3576256672,3576256687,FR +3576256688,3576256767,GB +3576256768,3576256895,FR +3576256896,3576256959,GB +3576256960,3576256991,FR +3576256992,3576257007,GB +3576257008,3576257103,FR +3576257104,3576257111,GB +3576257112,3576257135,FR +3576257136,3576257151,GB +3576257152,3576257159,FR +3576257160,3576257167,GB +3576257168,3576257287,FR +3576257288,3576257295,GB +3576257296,3576257327,FR +3576257328,3576257359,GB +3576257360,3576257367,FR +3576257368,3576257375,GB +3576257376,3576257487,FR +3576257488,3576257495,GB +3576257496,3576257503,FR +3576257504,3576257535,GB +3576257536,3576257551,FR +3576257552,3576257583,GB +3576257584,3576257631,FR +3576257632,3576257647,GB +3576257648,3576257727,FR +3576257728,3576257807,GB +3576257808,3576257823,FR +3576257824,3576257839,GB +3576257840,3576257855,FR +3576257856,3576257871,GB +3576257872,3576257887,FR +3576257888,3576257903,GB +3576257904,3576257983,FR +3576257984,3576257999,GB +3576258000,3576258055,FR +3576258056,3576258063,GB +3576258064,3576258095,FR +3576258096,3576258127,GB +3576258128,3576258160,FR +3576258161,3576258175,GB +3576258176,3576258191,FR +3576258192,3576258207,GB +3576258208,3576258351,FR +3576258352,3576258399,GB +3576258400,3576258415,FR +3576258416,3576258431,GB +3576258432,3576258447,FR +3576258448,3576258463,GB +3576258464,3576258495,FR +3576258496,3576258511,GB +3576258512,3576258527,FR +3576258528,3576258575,GB +3576258576,3576258591,FR +3576258592,3576258623,GB +3576258624,3576258671,FR +3576258672,3576258687,GB +3576258688,3576258719,FR +3576258720,3576258783,GB +3576258784,3576258863,FR +3576258864,3576258895,GB +3576258896,3576258911,FR +3576258912,3576258927,GB +3576258928,3576259023,FR +3576259024,3576259039,GB +3576259040,3576259071,FR +3576259072,3576259087,GB +3576259088,3576259103,FR +3576259104,3576259199,GB +3576259200,3576259231,FR +3576259232,3576259247,GB +3576259248,3576259279,FR +3576259280,3576259295,GB +3576259296,3576259311,FR +3576259312,3576259327,GB +3576259328,3576259343,FR +3576259344,3576259391,GB +3576259392,3576259423,FR +3576259424,3576259439,GB +3576259440,3576259519,FR +3576259520,3576259583,GB +3576259584,3576259919,FR +3576259920,3576259935,GB +3576259936,3576259991,FR +3576259992,3576259999,GB +3576260000,3576260015,FR +3576260016,3576260031,GB +3576260032,3576260063,FR +3576260064,3576260087,GB +3576260088,3576260175,FR +3576260176,3576260191,GB +3576260192,3576260207,FR +3576260208,3576260223,GB +3576260224,3576260239,FR +3576260240,3576260255,GB +3576260256,3576260271,FR +3576260272,3576260335,GB +3576260336,3576260463,FR +3576260464,3576260543,GB +3576260544,3576260559,FR +3576260560,3576260607,GB +3576260608,3576260623,FR +3576260624,3576260639,GB +3576260640,3576260655,FR +3576260656,3576260687,GB +3576260688,3576260703,FR +3576260704,3576260735,GB +3576260736,3576260895,FR +3576260896,3576260927,GB +3576260928,3576260959,FR +3576260960,3576260999,GB +3576261000,3576261015,FR +3576261016,3576261023,GB +3576261024,3576261047,FR +3576261048,3576261055,GB +3576261056,3576261063,FR +3576261064,3576261071,GB +3576261072,3576261087,FR +3576261088,3576261095,GB +3576261096,3576261103,FR +3576261104,3576261111,GB +3576261112,3576261375,FR +3576261376,3576261631,GB +3576261632,3576261927,FR +3576261928,3576261935,GB +3576261936,3576262023,FR +3576262024,3576262031,GB +3576262032,3576262063,FR +3576262064,3576262071,GB +3576262072,3576263439,FR +3576263440,3576263455,GB +3576263456,3576263519,FR +3576263520,3576263551,GB +3576263552,3576263567,FR +3576263568,3576263575,GB +3576263576,3576263583,FR +3576263584,3576263599,GB +3576263600,3576263615,FR +3576263616,3576263623,GB +3576263624,3576263751,FR +3576263752,3576263759,GB +3576263760,3576263791,FR +3576263792,3576263887,GB +3576263888,3576263911,FR +3576263912,3576263919,GB +3576263920,3576264303,FR +3576264304,3576264311,GB +3576264312,3576264383,FR +3576264384,3576264399,GB +3576264400,3576264447,FR +3576264448,3576264511,GB +3576264512,3576264543,FR +3576264544,3576264559,GB +3576264560,3576264575,FR +3576264576,3576264607,GB +3576264608,3576264639,FR +3576264640,3576264687,GB +3576264688,3576265311,FR +3576265312,3576265319,GB +3576265320,3576265399,FR +3576265400,3576265415,GB +3576265416,3576265463,FR +3576265464,3576265471,GB +3576265472,3576265807,FR +3576265808,3576265823,GB +3576265824,3576265831,FR +3576265832,3576265839,GB +3576265840,3576265847,FR +3576265848,3576265863,GB +3576265864,3576265879,FR +3576265880,3576265895,GB +3576265896,3576265911,FR +3576265912,3576265935,GB +3576265936,3576266655,FR +3576266656,3576266671,GB +3576266672,3576266687,FR +3576266688,3576266751,GB +3576266752,3576299519,FR +3576299520,3576365055,AE +3576365056,3576430591,TR +3576430592,3576496127,FR +3576496128,3576561663,IT +3576561664,3576603135,NL +3576603136,3576603391,BE +3576603392,3576603647,FR +3576603648,3576604159,NL +3576604160,3576604415,HU +3576604416,3576605183,NL +3576605184,3576605439,RO +3576605440,3576605695,NL +3576605696,3576605951,CZ +3576605952,3576606207,AT +3576606208,3576606463,GB +3576606464,3576606719,NL +3576606720,3576606975,SE +3576606976,3576607231,NO +3576607232,3576607487,PL +3576607488,3576607743,DE +3576607744,3576620031,NL +3576620032,3576620543,SE +3576620544,3576620799,GB +3576620800,3576622335,NL +3576622336,3576622591,GB +3576622592,3576623871,NL +3576623872,3576624127,AT +3576624128,3576626943,NL +3576626944,3576692735,AT +3576692736,3576758271,GB +3576758272,3576823807,BE +3576823808,3576889343,SE +3576889344,3576954879,NL +3576954880,3576987647,NO +3576987648,3577020415,GB +3577020416,3577085951,NL +3577085952,3577151487,DE +3577151488,3577167871,GB +3577184256,3577217023,CH +3577217024,3577263167,FR +3577263168,3577263199,US +3577263200,3577282559,FR +3577282560,3577348095,IL +3577348096,3577392767,PT +3577392768,3577392783,DE +3577392784,3577413631,PT +3577413632,3577417519,RU +3577417520,3577417535,KZ +3577417536,3577479167,RU +3577479168,3577544703,ES +3577544704,3577545795,DE +3577545796,3577545799,GB +3577545800,3577545863,DE +3577545864,3577545871,US +3577545872,3577545903,DE +3577545904,3577545919,GB +3577545920,3577545983,DE +3577545984,3577546111,SE +3577546112,3577546143,DE +3577546144,3577546151,GB +3577546152,3577546159,DE +3577546160,3577546175,GB +3577546176,3577546239,DE +3577546240,3577546367,US +3577546368,3577546383,GB +3577546384,3577546415,DE +3577546416,3577546423,GB +3577546424,3577546703,DE +3577546704,3577546719,GB +3577546720,3577547223,DE +3577547224,3577547231,GB +3577547232,3577547375,DE +3577547376,3577547383,GB +3577547384,3577547455,DE +3577547456,3577547519,FR +3577547520,3577547631,DE +3577547632,3577547663,GB +3577547664,3577547743,DE +3577547744,3577547775,GB +3577547776,3577548287,DE +3577548288,3577548303,GB +3577548304,3577548319,DE +3577548320,3577548351,GB +3577548352,3577549055,DE +3577549056,3577549079,GB +3577549080,3577549119,DE +3577549120,3577549151,GB +3577549152,3577549599,DE +3577549600,3577549631,GB +3577549632,3577549695,DE +3577549696,3577549823,GB +3577549824,3577550847,DE +3577550848,3577550983,GB +3577550984,3577551047,DE +3577551048,3577551055,GB +3577551056,3577551087,DE +3577551088,3577551095,GB +3577551096,3577551103,DE +3577551104,3577551111,GB +3577551112,3577551119,DE +3577551120,3577551127,GB +3577551128,3577551151,DE +3577551152,3577551159,GB +3577551160,3577551271,DE +3577551272,3577551279,GB +3577551280,3577551287,DE +3577551288,3577551327,GB +3577551328,3577551343,DE +3577551344,3577551351,GB +3577551352,3577551407,DE +3577551408,3577551411,US +3577551412,3577551423,DE +3577551424,3577551455,GB +3577551456,3577552151,DE +3577552152,3577552183,GB +3577552184,3577552191,DE +3577552192,3577552199,GB +3577552200,3577552215,DE +3577552216,3577552223,GB +3577552224,3577552239,DE +3577552240,3577552247,GB +3577552248,3577552255,DE +3577552256,3577552271,GB +3577552272,3577552319,DE +3577552320,3577552359,GB +3577552360,3577552367,DE +3577552368,3577552383,GB +3577552384,3577552399,DE +3577552400,3577552447,GB +3577552448,3577552959,DE +3577552960,3577552967,GB +3577552968,3577552983,DE +3577552984,3577552991,GB +3577552992,3577553015,DE +3577553016,3577553023,GB +3577553024,3577553103,DE +3577553104,3577553119,GB +3577553120,3577553191,DE +3577553192,3577553199,GB +3577553200,3577553223,DE +3577553224,3577553407,GB +3577553408,3577553503,DE +3577553504,3577553575,GB +3577553576,3577553583,DE +3577553584,3577553615,GB +3577553616,3577553623,DE +3577553624,3577553663,GB +3577553664,3577553983,DE +3577553984,3577554047,GB +3577554048,3577554175,DE +3577554176,3577554463,GB +3577554464,3577554467,DE +3577554468,3577554483,GB +3577554484,3577554487,DE +3577554488,3577554647,GB +3577554648,3577554659,DE +3577554660,3577554663,GB +3577554664,3577554671,DE +3577554672,3577554687,GB +3577554688,3577554815,DE +3577554816,3577554943,GB +3577554944,3577556999,DE +3577557000,3577557007,GB +3577557008,3577557071,DE +3577557072,3577557103,GB +3577557104,3577557215,DE +3577557216,3577557231,US +3577557232,3577557247,GB +3577557248,3577558143,DE +3577558144,3577558207,GB +3577558208,3577558359,DE +3577558360,3577558367,GB +3577558368,3577558383,DE +3577558384,3577558391,GB +3577558392,3577558431,DE +3577558432,3577558439,GB +3577558440,3577558783,DE +3577558784,3577559167,GB +3577559168,3577559183,DE +3577559184,3577559199,GB +3577559200,3577559231,DE +3577559232,3577559247,GB +3577559248,3577559279,DE +3577559280,3577559303,GB +3577559304,3577559311,DE +3577559312,3577559319,GB +3577559320,3577559327,DE +3577559328,3577559351,GB +3577559352,3577559383,DE +3577559384,3577559391,GB +3577559392,3577559399,DE +3577559400,3577559407,GB +3577559408,3577559431,DE +3577559432,3577559447,GB +3577559448,3577559455,DE +3577559456,3577559463,GB +3577559464,3577559471,DE +3577559472,3577559487,GB +3577559488,3577559519,DE +3577559520,3577559527,GB +3577559528,3577559535,DE +3577559536,3577559543,GB +3577559544,3577559559,DE +3577559560,3577559567,GB +3577559568,3577559607,DE +3577559608,3577559615,GB +3577559616,3577559663,DE +3577559664,3577559671,GB +3577559672,3577559679,DE +3577559680,3577559687,GB +3577559688,3577559815,DE +3577559816,3577559823,GB +3577559824,3577559983,DE +3577559984,3577559999,GB +3577560000,3577560063,DE +3577560064,3577560079,GB +3577560080,3577560095,DE +3577560096,3577560103,GB +3577560104,3577560111,DE +3577560112,3577560167,GB +3577560168,3577560175,DE +3577560176,3577560271,GB +3577560272,3577560287,DE +3577560288,3577560295,GB +3577560296,3577560343,DE +3577560344,3577560351,GB +3577560352,3577560447,DE +3577560448,3577560463,GB +3577560464,3577560479,DE +3577560480,3577560487,GB +3577560488,3577560495,DE +3577560496,3577560511,GB +3577560512,3577560559,DE +3577560560,3577560575,GB +3577560576,3577561087,DE +3577561088,3577561127,GB +3577561128,3577561131,DE +3577561132,3577561235,GB +3577561236,3577561263,DE +3577561264,3577561267,GB +3577561268,3577561271,DE +3577561272,3577561287,GB +3577561288,3577561323,DE +3577561324,3577561327,GB +3577561328,3577561331,DE +3577561332,3577561595,GB +3577561596,3577561623,DE +3577561624,3577561631,GB +3577561632,3577561679,DE +3577561680,3577561687,GB +3577561688,3577561695,DE +3577561696,3577561703,GB +3577561704,3577561711,DE +3577561712,3577561719,GB +3577561720,3577561791,DE +3577561792,3577561823,GB +3577561824,3577561839,DE +3577561840,3577561855,GB +3577561856,3577562087,DE +3577562088,3577562095,GB +3577562096,3577562103,DE +3577562104,3577562111,GB +3577562112,3577562391,DE +3577562392,3577562399,GB +3577562400,3577562415,DE +3577562416,3577562423,GB +3577562424,3577562431,DE +3577562432,3577562439,GB +3577562440,3577562463,DE +3577562464,3577562471,GB +3577562472,3577562479,DE +3577562480,3577562487,GB +3577562488,3577562511,DE +3577562512,3577562527,GB +3577562528,3577562535,DE +3577562536,3577562551,GB +3577562552,3577562559,DE +3577562560,3577562623,GB +3577562624,3577562935,DE +3577562936,3577562991,GB +3577562992,3577562999,DE +3577563000,3577563007,GB +3577563008,3577563015,DE +3577563016,3577563135,GB +3577563136,3577563279,DE +3577563280,3577563287,GB +3577563288,3577563295,DE +3577563296,3577563311,GB +3577563312,3577563327,DE +3577563328,3577563359,GB +3577563360,3577563375,DE +3577563376,3577563383,GB +3577563384,3577563919,DE +3577563920,3577563927,GB +3577563928,3577563935,DE +3577563936,3577563943,GB +3577563944,3577563983,DE +3577563984,3577564031,GB +3577564032,3577564039,DE +3577564040,3577564043,GB +3577564044,3577564087,DE +3577564088,3577564095,GB +3577564096,3577564111,DE +3577564112,3577564119,GB +3577564120,3577564191,DE +3577564192,3577564303,GB +3577564304,3577564359,DE +3577564360,3577564367,GB +3577564368,3577564375,DE +3577564376,3577564383,GB +3577564384,3577564575,DE +3577564576,3577564583,GB +3577564584,3577564599,DE +3577564600,3577564607,GB +3577564608,3577564655,DE +3577564656,3577564663,GB +3577564664,3577564927,DE +3577564928,3577565227,GB +3577565228,3577565255,DE +3577565256,3577565259,GB +3577565260,3577565271,DE +3577565272,3577565283,GB +3577565284,3577565287,DE +3577565288,3577565695,GB +3577565696,3577565711,DE +3577565712,3577565719,GB +3577565720,3577565743,DE +3577565744,3577565759,GB +3577565760,3577565775,DE +3577565776,3577565791,GB +3577565792,3577565823,DE +3577565824,3577565839,GB +3577565840,3577565847,DE +3577565848,3577565855,GB +3577565856,3577565863,DE +3577565864,3577565879,GB +3577565880,3577565895,DE +3577565896,3577565903,GB +3577565904,3577565911,DE +3577565912,3577565919,GB +3577565920,3577565943,DE +3577565944,3577565967,GB +3577565968,3577565975,DE +3577565976,3577565999,GB +3577566000,3577566007,DE +3577566008,3577566063,GB +3577566064,3577566087,DE +3577566088,3577566103,GB +3577566104,3577566119,DE +3577566120,3577566135,GB +3577566136,3577566143,DE +3577566144,3577566151,GB +3577566152,3577566175,DE +3577566176,3577566183,GB +3577566184,3577566191,DE +3577566192,3577566207,GB +3577566208,3577566219,DE +3577566220,3577566423,GB +3577566424,3577566431,DE +3577566432,3577566463,GB +3577566464,3577566711,DE +3577566712,3577566719,GB +3577566720,3577566871,DE +3577566872,3577566879,GB +3577566880,3577567039,DE +3577567040,3577567047,GB +3577567048,3577567111,DE +3577567112,3577567119,GB +3577567120,3577567127,DE +3577567128,3577567135,GB +3577567136,3577567167,DE +3577567168,3577567199,GB +3577567200,3577567495,DE +3577567496,3577567503,GB +3577567504,3577567511,DE +3577567512,3577567519,GB +3577567520,3577567615,DE +3577567616,3577567623,GB +3577567624,3577567639,DE +3577567640,3577567647,GB +3577567648,3577567663,DE +3577567664,3577567671,GB +3577567672,3577567679,DE +3577567680,3577567871,GB +3577567872,3577568351,DE +3577568352,3577568359,GB +3577568360,3577568479,DE +3577568480,3577568487,GB +3577568488,3577568495,DE +3577568496,3577568519,GB +3577568520,3577568527,DE +3577568528,3577569279,GB +3577569280,3577569383,DE +3577569384,3577569391,GB +3577569392,3577569407,DE +3577569408,3577569431,GB +3577569432,3577569439,DE +3577569440,3577569471,GB +3577569472,3577569499,DE +3577569500,3577569503,GB +3577569504,3577569519,DE +3577569520,3577569535,GB +3577569536,3577569855,DE +3577569856,3577569863,GB +3577569864,3577569887,DE +3577569888,3577569895,GB +3577569896,3577569911,DE +3577569912,3577569919,GB +3577569920,3577569999,DE +3577570000,3577570015,GB +3577570016,3577570159,DE +3577570160,3577570167,GB +3577570168,3577570367,DE +3577570368,3577570559,GB +3577570560,3577570703,DE +3577570704,3577570707,GB +3577570708,3577570783,DE +3577570784,3577570791,GB +3577570792,3577570847,DE +3577570848,3577570855,GB +3577570856,3577570911,DE +3577570912,3577571007,GB +3577571008,3577571327,DE +3577571328,3577571343,GB +3577571344,3577571359,DE +3577571360,3577571391,GB +3577571392,3577571399,DE +3577571400,3577571407,GB +3577571408,3577571695,DE +3577571696,3577571703,GB +3577571704,3577571791,DE +3577571792,3577571839,GB +3577571840,3577572095,DE +3577572096,3577572415,GB +3577572416,3577572463,DE +3577572464,3577572471,GB +3577572472,3577572487,DE +3577572488,3577572495,GB +3577572496,3577572607,DE +3577572608,3577572863,GB +3577572864,3577572927,DE +3577572928,3577572935,GB +3577572936,3577572943,DE +3577572944,3577572959,GB +3577572960,3577573039,DE +3577573040,3577573047,GB +3577573048,3577573051,DE +3577573052,3577573055,GB +3577573056,3577573071,DE +3577573072,3577573079,GB +3577573080,3577573119,DE +3577573120,3577573151,GB +3577573152,3577573175,DE +3577573176,3577573183,GB +3577573184,3577573191,DE +3577573192,3577573207,GB +3577573208,3577573287,DE +3577573288,3577573295,GB +3577573296,3577573439,DE +3577573440,3577574399,GB +3577574400,3577574407,DE +3577574408,3577574415,GB +3577574416,3577574479,DE +3577574480,3577575183,GB +3577575184,3577575191,DE +3577575192,3577575431,GB +3577575432,3577575583,DE +3577575584,3577575599,GB +3577575600,3577575655,DE +3577575656,3577575663,GB +3577575664,3577576799,DE +3577576800,3577576815,GB +3577576816,3577576847,DE +3577576848,3577576863,GB +3577576864,3577576911,DE +3577576912,3577576927,GB +3577576928,3577577231,DE +3577577232,3577577247,US +3577577248,3577577391,DE +3577577392,3577577407,GB +3577577408,3577577543,DE +3577577544,3577577551,GB +3577577552,3577577647,DE +3577577648,3577577655,GB +3577577656,3577577695,DE +3577577696,3577577703,GB +3577577704,3577577743,DE +3577577744,3577577759,GB +3577577760,3577577783,DE +3577577784,3577577791,GB +3577577792,3577577823,DE +3577577824,3577577855,GB +3577577856,3577577887,DE +3577577888,3577577903,GB +3577577904,3577577923,DE +3577577924,3577577935,GB +3577577936,3577578095,DE +3577578096,3577578103,GB +3577578104,3577579191,DE +3577579192,3577579199,GB +3577579200,3577579231,DE +3577579232,3577579239,GB +3577579240,3577579839,DE +3577579840,3577579871,GB +3577579872,3577579879,DE +3577579880,3577579903,GB +3577579904,3577580087,DE +3577580088,3577580095,GB +3577580096,3577580111,DE +3577580112,3577580119,GB +3577580120,3577580127,DE +3577580128,3577580135,GB +3577580136,3577580175,DE +3577580176,3577580191,GB +3577580192,3577580335,DE +3577580336,3577580351,GB +3577580352,3577580375,DE +3577580376,3577580383,GB +3577580384,3577580407,DE +3577580408,3577580415,GB +3577580416,3577580463,DE +3577580464,3577580471,GB +3577580472,3577580483,DE +3577580484,3577580487,GB +3577580488,3577580511,DE +3577580512,3577580543,GB +3577580544,3577580799,DE +3577580800,3577580807,GB +3577580808,3577580891,DE +3577580892,3577580911,GB +3577580912,3577580927,DE +3577580928,3577580959,GB +3577580960,3577581007,DE +3577581008,3577581055,GB +3577581056,3577581903,DE +3577581904,3577581911,GB +3577581912,3577581919,DE +3577581920,3577581927,GB +3577581928,3577582015,DE +3577582016,3577582023,GB +3577582024,3577582047,DE +3577582048,3577582055,GB +3577582056,3577582111,DE +3577582112,3577582335,GB +3577582336,3577582343,DE +3577582344,3577582351,GB +3577582352,3577582463,DE +3577582464,3577582471,GB +3577582472,3577582511,DE +3577582512,3577582519,GB +3577582520,3577582575,DE +3577582576,3577582591,GB +3577582592,3577582847,DE +3577582848,3577583103,GB +3577583104,3577583247,DE +3577583248,3577583255,GB +3577583256,3577583263,DE +3577583264,3577583295,GB +3577583296,3577583359,DE +3577583360,3577583615,GB +3577583616,3577584143,DE +3577584144,3577584147,GB +3577584148,3577584159,DE +3577584160,3577584167,GB +3577584168,3577584171,DE +3577584172,3577584191,GB +3577584192,3577584279,DE +3577584280,3577584291,GB +3577584292,3577584295,DE +3577584296,3577584303,GB +3577584304,3577584335,DE +3577584336,3577584343,GB +3577584344,3577584351,DE +3577584352,3577584359,GB +3577584360,3577584383,DE +3577584384,3577584407,GB +3577584408,3577584463,DE +3577584464,3577584471,GB +3577584472,3577584591,DE +3577584592,3577584599,GB +3577584600,3577584607,DE +3577584608,3577584615,GB +3577584616,3577584639,DE +3577584640,3577584895,GB +3577584896,3577584903,DE +3577584904,3577584911,GB +3577584912,3577584927,DE +3577584928,3577584959,GB +3577584960,3577584991,DE +3577584992,3577585023,GB +3577585024,3577585415,DE +3577585416,3577585423,GB +3577585424,3577585439,DE +3577585440,3577585447,GB +3577585448,3577585455,DE +3577585456,3577585487,GB +3577585488,3577585567,DE +3577585568,3577585615,GB +3577585616,3577585631,DE +3577585632,3577585639,GB +3577585640,3577585647,DE +3577585648,3577586067,GB +3577586068,3577586071,DE +3577586072,3577586075,GB +3577586076,3577586079,DE +3577586080,3577586083,GB +3577586084,3577586087,DE +3577586088,3577586171,GB +3577586172,3577586175,DE +3577586176,3577586215,GB +3577586216,3577586319,DE +3577586320,3577586327,GB +3577586328,3577586375,DE +3577586376,3577586383,GB +3577586384,3577586415,DE +3577586416,3577586447,GB +3577586448,3577586463,DE +3577586464,3577586567,GB +3577586568,3577586575,DE +3577586576,3577586583,GB +3577586584,3577586647,DE +3577586648,3577586687,GB +3577586688,3577586711,DE +3577586712,3577586719,GB +3577586720,3577586751,DE +3577586752,3577586783,GB +3577586784,3577587079,DE +3577587080,3577587087,GB +3577587088,3577587103,DE +3577587104,3577587135,GB +3577587136,3577587183,DE +3577587184,3577587199,GB +3577587200,3577587239,DE +3577587240,3577587319,GB +3577587320,3577587327,DE +3577587328,3577587471,GB +3577587472,3577587479,DE +3577587480,3577587519,GB +3577587520,3577587615,DE +3577587616,3577587623,GB +3577587624,3577587631,DE +3577587632,3577587711,GB +3577587712,3577587775,DE +3577587776,3577587791,GB +3577587792,3577587847,DE +3577587848,3577587863,GB +3577587864,3577587871,DE +3577587872,3577587879,GB +3577587880,3577587919,DE +3577587920,3577587927,GB +3577587928,3577588095,DE +3577588096,3577588099,GB +3577588100,3577588103,DE +3577588104,3577588151,GB +3577588152,3577588155,DE +3577588156,3577588223,GB +3577588224,3577588511,DE +3577588512,3577588551,GB +3577588552,3577588559,DE +3577588560,3577588735,GB +3577588736,3577588743,DE +3577588744,3577588751,GB +3577588752,3577588783,DE +3577588784,3577588799,GB +3577588800,3577588803,DE +3577588804,3577588815,GB +3577588816,3577588863,DE +3577588864,3577588879,GB +3577588880,3577589007,DE +3577589008,3577589023,GB +3577589024,3577589119,DE +3577589120,3577589135,GB +3577589136,3577589151,DE +3577589152,3577589167,GB +3577589168,3577589311,DE +3577589312,3577589375,GB +3577589376,3577589391,DE +3577589392,3577589407,GB +3577589408,3577589455,DE +3577589456,3577589471,GB +3577589472,3577589503,DE +3577589504,3577589515,GB +3577589516,3577589519,DE +3577589520,3577589551,GB +3577589552,3577589555,DE +3577589556,3577589703,GB +3577589704,3577589735,DE +3577589736,3577589759,GB +3577589760,3577590015,DE +3577590016,3577590023,GB +3577590024,3577590047,DE +3577590048,3577590079,GB +3577590080,3577590175,DE +3577590176,3577590191,GB +3577590192,3577590199,DE +3577590200,3577590207,GB +3577590208,3577590219,DE +3577590220,3577590223,GB +3577590224,3577590239,DE +3577590240,3577590247,GB +3577590248,3577590263,DE +3577590264,3577590271,GB +3577590272,3577590295,DE +3577590296,3577590303,GB +3577590304,3577590311,DE +3577590312,3577590319,GB +3577590320,3577590399,DE +3577590400,3577590407,GB +3577590408,3577590455,DE +3577590456,3577590527,GB +3577590528,3577590911,DE +3577590912,3577590919,GB +3577590920,3577590975,DE +3577590976,3577591055,GB +3577591056,3577591071,DE +3577591072,3577591079,GB +3577591080,3577591111,DE +3577591112,3577591119,GB +3577591120,3577591127,DE +3577591128,3577591135,GB +3577591136,3577591143,DE +3577591144,3577591147,GB +3577591148,3577591175,DE +3577591176,3577591183,GB +3577591184,3577591215,DE +3577591216,3577591231,GB +3577591232,3577591271,DE +3577591272,3577591287,GB +3577591288,3577591807,DE +3577591808,3577591871,GB +3577591872,3577591887,DE +3577591888,3577591951,GB +3577591952,3577591959,DE +3577591960,3577591963,GB +3577591964,3577592007,DE +3577592008,3577592015,GB +3577592016,3577592335,DE +3577592336,3577592343,GB +3577592344,3577592383,DE +3577592384,3577592391,GB +3577592392,3577592407,DE +3577592408,3577592415,GB +3577592416,3577592543,DE +3577592544,3577592551,GB +3577592552,3577592583,DE +3577592584,3577592607,GB +3577592608,3577592623,DE +3577592624,3577592639,GB +3577592640,3577592703,DE +3577592704,3577592735,GB +3577592736,3577592743,DE +3577592744,3577592751,IE +3577592752,3577592783,GB +3577592784,3577593103,DE +3577593104,3577593111,GB +3577593112,3577593127,DE +3577593128,3577593135,GB +3577593136,3577593143,DE +3577593144,3577593147,GB +3577593148,3577593171,DE +3577593172,3577593175,GB +3577593176,3577593187,DE +3577593188,3577593207,GB +3577593208,3577593215,DE +3577593216,3577593223,GB +3577593224,3577593231,DE +3577593232,3577593239,GB +3577593240,3577593391,DE +3577593392,3577593415,GB +3577593416,3577593423,DE +3577593424,3577593439,GB +3577593440,3577593487,DE +3577593488,3577593495,GB +3577593496,3577600687,DE +3577600688,3577600703,GB +3577600704,3577600795,DE +3577600796,3577600831,GB +3577600832,3577600863,DE +3577600864,3577600895,GB +3577600896,3577600918,DE +3577600919,3577600919,GB +3577600920,3577601007,DE +3577601008,3577601023,GB +3577601024,3577601319,DE +3577601320,3577601327,GB +3577601328,3577601375,DE +3577601376,3577601383,GB +3577601384,3577601399,DE +3577601400,3577601407,GB +3577601408,3577601447,DE +3577601448,3577601455,GB +3577601456,3577601791,DE +3577601792,3577602071,GB +3577602072,3577602095,DE +3577602096,3577602111,GB +3577602112,3577602175,DE +3577602176,3577602367,GB +3577602368,3577602503,DE +3577602504,3577602511,GB +3577602512,3577602519,DE +3577602520,3577602527,GB +3577602528,3577602847,DE +3577602848,3577602879,GB +3577602880,3577602919,DE +3577602920,3577602927,GB +3577602928,3577602959,DE +3577602960,3577602967,GB +3577602968,3577603039,DE +3577603040,3577603055,GB +3577603056,3577603063,DE +3577603064,3577603079,GB +3577603080,3577603103,DE +3577603104,3577603111,GB +3577603112,3577603131,DE +3577603132,3577603135,GB +3577603136,3577603151,DE +3577603152,3577603159,GB +3577603160,3577603199,DE +3577603200,3577603247,GB +3577603248,3577603263,DE +3577603264,3577603271,GB +3577603272,3577603319,DE +3577603320,3577603327,GB +3577603328,3577603455,DE +3577603456,3577603471,GB +3577603472,3577603543,DE +3577603544,3577603583,GB +3577603584,3577603655,DE +3577603656,3577603663,GB +3577603664,3577603887,DE +3577603888,3577603903,GB +3577603904,3577604031,DE +3577604032,3577604095,GB +3577604096,3577606175,DE +3577606176,3577606183,GB +3577606184,3577606191,DE +3577606192,3577606199,GB +3577606200,3577606215,DE +3577606216,3577606231,GB +3577606232,3577606279,DE +3577606280,3577606287,GB +3577606288,3577606399,DE +3577606400,3577606455,GB +3577606456,3577606479,DE +3577606480,3577606487,GB +3577606488,3577606655,DE +3577606656,3577606663,GB +3577606664,3577606735,DE +3577606736,3577606783,GB +3577606784,3577606815,DE +3577606816,3577606831,GB +3577606832,3577606847,DE +3577606848,3577606855,GB +3577606856,3577606871,DE +3577606872,3577606879,GB +3577606880,3577606887,DE +3577606888,3577606895,GB +3577606896,3577606911,DE +3577606912,3577607007,GB +3577607008,3577607055,DE +3577607056,3577607071,GB +3577607072,3577607199,DE +3577607200,3577607423,GB +3577607424,3577607559,DE +3577607560,3577607567,GB +3577607568,3577607583,DE +3577607584,3577607615,GB +3577607616,3577607663,DE +3577607664,3577607679,GB +3577607680,3577607711,DE +3577607712,3577607719,GB +3577607720,3577607727,DE +3577607728,3577607735,GB +3577607736,3577607743,DE +3577607744,3577607775,GB +3577607776,3577607807,DE +3577607808,3577607815,GB +3577607816,3577607823,DE +3577607824,3577607839,GB +3577607840,3577607847,DE +3577607848,3577607855,GB +3577607856,3577608191,DE +3577608192,3577608447,GB +3577608448,3577608703,DE +3577608704,3577608743,GB +3577608744,3577608751,ES +3577608752,3577608815,GB +3577608816,3577608823,DE +3577608824,3577608959,GB +3577608960,3577608999,DE +3577609000,3577609007,GB +3577609008,3577609023,DE +3577609024,3577609071,GB +3577609072,3577609087,DE +3577609088,3577609215,GB +3577609216,3577609359,DE +3577609360,3577610239,GB +3577610240,3577610367,DE +3577610368,3577610495,GB +3577610496,3577610751,DE +3577610752,3577611199,CH +3577611264,3577612287,DE +3577612320,3577612383,DE +3577612416,3577612543,NO +3577612544,3577612799,HU +3577612800,3577613055,FI +3577613312,3577613567,DE +3577613888,3577613951,TR +3577614080,3577614111,DE +3577614144,3577614207,DE +3577618432,3577618447,GB +3577618448,3577618463,NL +3577618464,3577618559,GB +3577618560,3577618623,BE +3577618656,3577618663,AT +3577618688,3577619935,GB +3577619968,3577620575,GB +3577620624,3577620671,GB +3577620672,3577620735,TR +3577620992,3577621055,GB +3577621120,3577621151,GB +3577621216,3577621223,SK +3577621248,3577622143,GB +3577622144,3577622271,DE +3577622272,3577622527,GB +3577622592,3577622927,GB +3577623040,3577623935,GB +3577624064,3577624319,GB +3577624448,3577624879,GB +3577624896,3577625199,GB +3577625208,3577625215,GB +3577625232,3577625599,GB +3577625824,3577625839,GB +3577625856,3577626143,GB +3577626240,3577626367,GB +3577626624,3577627135,FR +3577627392,3577627647,GB +3577627648,3577627967,FR +3577628000,3577628671,FR +3577628672,3577630719,CH +3577630720,3577630975,GB +3577631232,3577631743,GB +3577633792,3577633951,CZ +3577633960,3577633967,CZ +3577634048,3577634239,CZ +3577634816,3577635455,FR +3577635520,3577635839,FR +3577635840,3577636863,DE +3577636864,3577638143,GB +3577638144,3577638399,BE +3577638400,3577638911,GB +3577638912,3577638959,FR +3577638968,3577639239,FR +3577639248,3577639679,FR +3577639760,3577639783,FR +3577639792,3577639807,FR +3577639840,3577639847,FR +3577639856,3577639871,FR +3577639936,3577640719,FR +3577640728,3577641151,FR +3577641160,3577641175,FR +3577641184,3577641199,FR +3577641216,3577641279,FR +3577641344,3577641407,FR +3577641416,3577641423,FR +3577641472,3577641983,FR +3577641984,3577642047,GB +3577642056,3577642079,GB +3577642088,3577642111,GB +3577642176,3577642239,GB +3577642240,3577642623,FR +3577642752,3577643007,FR +3577643008,3577643231,NL +3577643232,3577643247,GB +3577643248,3577643263,NL +3577645432,3577645447,NL +3577645456,3577645503,NL +3577645504,3577645567,SK +3577645824,3577645887,NL +3577645904,3577645951,NL +3577646080,3577646207,NL +3577646208,3577646335,NO +3577646336,3577646407,NL +3577646416,3577646527,NL +3577646592,3577646847,NL +3577647104,3577647911,DK +3577647936,3577647967,DK +3577648000,3577648127,DK +3577648384,3577649151,NL +3577651200,3577651455,GB +3577652224,3577652671,IT +3577652736,3577652743,NO +3577652752,3577652767,NO +3577652864,3577652943,NO +3577652992,3577653119,NO +3577653248,3577655295,IT +3577655296,3577655519,AT +3577655552,3577655647,AT +3577655664,3577655679,AT +3577655712,3577655743,AT +3577655808,3577656447,AT +3577657344,3577659391,GB +3577659392,3577659679,GR +3577659712,3577659743,GR +3577660160,3577660607,BE +3577660672,3577661439,BE +3577663488,3577665215,SE +3577665248,3577665311,SE +3577665344,3577665375,SE +3577665408,3577665455,SE +3577665536,3577665591,ES +3577665600,3577665607,ES +3577665616,3577665679,ES +3577665792,3577665823,BE +3577665824,3577665855,RO +3577665856,3577665919,LU +3577666048,3577666175,ES +3577667584,3577667743,PL +3577668640,3577668671,IE +3577668736,3577668799,IE +3577669120,3577669383,HU +3577669504,3577669631,HU +3577669632,3577671679,BE +3577671680,3577672191,ZA +3577672192,3577673727,DE +3577675776,3577741311,PT +3577741312,3578003455,SE +3578003456,3578049023,DE +3578049024,3578049055,CH +3578049056,3578235279,DE +3578235280,3578235295,NL +3578235296,3578265599,DE +3578265600,3578331135,GB +3578331136,3578339327,PL +3578339328,3578347519,ES +3578347520,3578363903,DE +3578363904,3578396671,NL +3578396672,3578462207,TR +3578462208,3578527743,NL +3578527744,3578658815,PL +3578658816,3578724351,GB +3578724352,3578732543,RU +3578732544,3578740735,IE +3578740736,3578757119,RU +3578757120,3578822655,SE +3578822656,3578855423,RU +3578855424,3578888191,GB +3578888192,3578920959,SK +3578920960,3578986495,IT +3578986496,3578988095,DE +3578988096,3578988099,LI +3578988100,3578996999,DE +3578997000,3578997007,CH +3578997008,3578998575,DE +3578998576,3578998583,GB +3578998584,3579002879,DE +3579002880,3579019263,GB +3579019264,3579052031,DK +3579052032,3579117567,NL +3579117568,3579132159,RU +3579132160,3579132415,BY +3579132416,3579183103,RU +3579183104,3579191759,GB +3579191760,3579191775,DE +3579191776,3579193599,GB +3579193600,3579193647,NL +3579193648,3579193663,GB +3579193664,3579193695,NL +3579193696,3579193711,GB +3579193712,3579193727,BE +3579193728,3579193743,GB +3579193744,3579193855,NL +3579193856,3579197055,GB +3579197056,3579197183,US +3579197184,3579197871,GB +3579197872,3579197887,US +3579197888,3579197903,IT +3579197904,3579228159,GB +3579228160,3579228415,US +3579228416,3579228671,GB +3579228672,3579228799,US +3579228800,3579241151,GB +3579241152,3579241215,IE +3579241216,3579242751,GB +3579242752,3579243007,US +3579243008,3579248639,GB +3579248640,3579314175,RU +3579314176,3579346943,IT +3579346944,3579361535,SE +3579361536,3579361791,NO +3579361792,3579362047,SE +3579362048,3579362063,NO +3579362064,3579362303,SE +3579362304,3579362559,NO +3579362560,3579362815,SE +3579362816,3579363327,NO +3579363328,3579445247,SE +3579445248,3579463679,AT +3579463680,3579463683,US +3579463684,3579478015,AT +3579478016,3579480847,FR +3579480848,3579480855,NL +3579480856,3579480863,FR +3579480864,3579480871,NL +3579480872,3579481095,FR +3579481096,3579481103,CH +3579481104,3579481119,FR +3579481120,3579481127,GB +3579481128,3579481143,FR +3579481144,3579481151,CH +3579481152,3579481159,FR +3579481160,3579481167,GB +3579481168,3579481191,FR +3579481192,3579481199,CH +3579481200,3579481247,FR +3579481248,3579481255,GB +3579481256,3579481263,CH +3579481264,3579481279,FR +3579481280,3579481287,GB +3579481288,3579482623,FR +3579482624,3579482783,NL +3579482784,3579482799,FR +3579482800,3579482927,NL +3579482928,3579482943,FR +3579482944,3579482991,NL +3579482992,3579483151,FR +3579483152,3579483263,NL +3579483264,3579483295,FR +3579483296,3579483311,NL +3579483312,3579483359,FR +3579483360,3579483375,NL +3579483376,3579484751,FR +3579484752,3579484767,BE +3579484768,3579485263,FR +3579485264,3579485279,BE +3579485280,3579485695,FR +3579485696,3579485711,GB +3579485712,3579485714,FR +3579485715,3579485727,GB +3579485728,3579485807,FR +3579485808,3579485823,GB +3579485824,3579485887,FR +3579485888,3579485888,GB +3579485889,3579485903,FR +3579485904,3579485919,DE +3579485920,3579485983,FR +3579485984,3579485999,CH +3579486000,3579486015,FR +3579486016,3579486031,GB +3579486032,3579486047,DE +3579486048,3579486095,GB +3579486096,3579486143,FR +3579486144,3579486175,GB +3579486176,3579486191,FR +3579486192,3579486207,GB +3579486208,3579486271,FR +3579486272,3579486287,GB +3579486288,3579486303,FR +3579486304,3579486319,GB +3579486320,3579486335,FR +3579486336,3579486351,GB +3579486352,3579486367,FR +3579486368,3579486383,IT +3579486384,3579486399,DE +3579486400,3579486415,FR +3579486416,3579486431,DE +3579486432,3579486447,GB +3579486448,3579486735,FR +3579486736,3579486751,DE +3579486752,3579486831,FR +3579486832,3579486847,BE +3579486848,3579486863,FR +3579486864,3579486879,GB +3579486880,3579487007,FR +3579487008,3579487039,GB +3579487040,3579487055,DE +3579487056,3579487103,FR +3579487104,3579487119,GB +3579487120,3579487215,FR +3579487216,3579487231,GB +3579487232,3579487247,FR +3579487248,3579487263,GB +3579487264,3579487471,FR +3579487472,3579487487,ES +3579487488,3579487519,FR +3579487520,3579487531,IT +3579487532,3579487535,FR +3579487536,3579487551,GB +3579487552,3579487567,FR +3579487568,3579487583,GB +3579487584,3579487599,FR +3579487600,3579487615,IT +3579487616,3579487663,FR +3579487664,3579487711,DE +3579487712,3579487727,SE +3579487728,3579487743,GB +3579487744,3579487807,FR +3579487808,3579487823,GB +3579487824,3579487855,FR +3579487856,3579487871,GB +3579487872,3579487887,IE +3579487888,3579487903,DE +3579487904,3579487951,FR +3579487952,3579487967,GB +3579487968,3579487983,IT +3579487984,3579487999,GB +3579488000,3579488047,FR +3579488048,3579488079,GB +3579488080,3579490559,FR +3579490560,3579490655,PT +3579490656,3579490671,FR +3579490672,3579490719,PT +3579490720,3579490735,NL +3579490736,3579490751,FR +3579490752,3579490799,PT +3579490800,3579490831,FR +3579490832,3579490943,PT +3579490944,3579490959,FR +3579490960,3579490975,PT +3579490976,3579491007,FR +3579491008,3579491023,PT +3579491024,3579491231,FR +3579491232,3579491247,PT +3579491248,3579491263,NL +3579491264,3579491471,FR +3579491472,3579491487,PT +3579491488,3579497983,FR +3579497984,3579497991,NL +3579497992,3579527167,FR +3579527168,3579543551,BA +3579543552,3579576319,BG +3579576320,3579579263,IT +3579579264,3579579295,US +3579579296,3579582367,IT +3579582368,3579582399,US +3579582400,3579596927,IT +3579596928,3579597055,GR +3579597056,3579600191,IT +3579600192,3579600207,US +3579600208,3579601471,IT +3579601472,3579601487,US +3579601488,3579605487,IT +3579605488,3579605503,DE +3579605504,3579607551,IT +3579607552,3579607807,US +3579607808,3579609087,IT +3579609088,3579641855,PL +3579641856,3579707391,NL +3579707392,3579723775,ES +3579723776,3579740159,AT +3579740160,3579772927,IE +3579772928,3579838463,DE +3579838464,3580100607,ES +3580100608,3580198911,SE +3580198912,3580199423,LV +3580199424,3580199935,SE +3580199936,3580200447,EE +3580200448,3580200959,SE +3580200960,3580201471,LT +3580201472,3580203519,SE +3580203520,3580204543,RU +3580204544,3580205055,SE +3580205056,3580205567,HR +3580205568,3580208127,SE +3580208128,3580208639,EE +3580208640,3580213247,SE +3580213248,3580214271,CH +3580214272,3580214783,LV +3580214784,3580222463,SE +3580222464,3580222719,FR +3580222720,3580223487,SE +3580223488,3580231679,DE +3580231680,3580231935,LV +3580231936,3580232191,LT +3580232192,3580233215,LV +3580233216,3580233727,LT +3580233728,3580235263,SE +3580235264,3580235775,LT +3580235776,3580236799,SE +3580236800,3580237567,LV +3580237568,3580237823,LT +3580237824,3580239359,SE +3580239360,3580239871,LV +3580239872,3580241919,SE +3580241920,3580243967,CH +3580243968,3580248063,NL +3580248064,3580250111,ES +3580250112,3580252671,SE +3580252672,3580254207,EE +3580254208,3580260351,DE +3580260352,3580265727,AT +3580265728,3580266495,SE +3580266496,3580272639,PL +3580272640,3580329983,SE +3580329984,3580338175,CH +3580338176,3580338432,HR +3580338433,3580362751,SE +3580362752,3580473375,GB +3580473376,3580473391,IE +3580473392,3580473503,GB +3580473504,3580473511,IE +3580473512,3580473519,GB +3580473520,3580473527,IE +3580473528,3580473695,GB +3580473696,3580473727,IE +3580473728,3580473759,GB +3580473760,3580473887,IE +3580473888,3580473951,GB +3580473952,3580473959,IE +3580473960,3580473967,GB +3580473968,3580473983,IE +3580473984,3580473999,GB +3580474000,3580474007,IE +3580474008,3580474095,GB +3580474096,3580474111,IE +3580474112,3580474495,GB +3580474496,3580474559,IE +3580474560,3580474639,GB +3580474640,3580474647,IE +3580474648,3580474655,GB +3580474656,3580474671,IE +3580474672,3580474687,GB +3580474688,3580474703,IE +3580474704,3580474719,GB +3580474720,3580474735,IE +3580474736,3580474807,GB +3580474808,3580474879,IE +3580474880,3580475055,GB +3580475056,3580475063,IE +3580475064,3580475123,GB +3580475124,3580475127,IE +3580475128,3580475343,GB +3580475344,3580475351,IE +3580475352,3580624895,GB +3580624896,3580626943,RU +3580626944,3580628991,PL +3580628992,3580631039,RU +3580887040,3581149183,SE +3581150368,3581150463,IE +3581150592,3581150719,NL +3581150720,3581150783,SE +3581150976,3581151039,SE +3581151232,3581151295,SE +3581154048,3581154303,NL +3581157120,3581158655,AT +3581159168,3581159295,AT +3581159424,3581161471,IE +3581173760,3581196799,NL +3581197312,3581197567,IE +3581197824,3581200127,NL +3581203968,3581214719,SE +3581214720,3581231103,NL +3581239296,3581241343,NL +3581255680,3581259263,FR +3581261312,3581261439,FR +3581279104,3581279199,NL +3581280256,3581411327,BE +3581411328,3581673471,GB +3581673472,3581935615,NL +3581935616,3581943807,RU +3581943808,3581951999,FR +3581952000,3581960191,TR +3581960192,3581976575,DE +3581976576,3581984767,NO +3581984768,3581992959,RU +3581992960,3582001151,GB +3582001152,3582009343,DK +3582009344,3582017535,RU +3582017536,3582025727,GB +3582025728,3582033919,RU +3582033920,3582042111,CZ +3582042112,3582050303,ES +3582050304,3582058495,NL +3582058496,3582066687,AT +3582066688,3582074879,UA +3582074880,3582078631,GB +3582078632,3582078639,DE +3582078640,3582083071,GB +3582083072,3582091263,BG +3582091264,3582099455,QA +3582099456,3582107647,GB +3582107648,3582115839,NL +3582115840,3582132223,FI +3582132224,3582140415,RU +3582140416,3582148607,GE +3582156800,3582164991,GB +3582164992,3582173183,SE +3582173184,3582181375,GB +3582181376,3582190847,DE +3582190848,3582190879,CH +3582190880,3582190927,DE +3582190928,3582190931,FR +3582190932,3582191023,DE +3582191024,3582191031,BE +3582191032,3582192127,DE +3582192128,3582192143,NL +3582192144,3582192287,DE +3582192288,3582192303,CH +3582192304,3582192575,DE +3582192576,3582192591,NL +3582192592,3582194775,DE +3582194776,3582194783,CY +3582194784,3582194863,DE +3582194864,3582194879,CH +3582194880,3582195135,DE +3582195136,3582195143,CH +3582195144,3582196183,DE +3582196184,3582196191,BE +3582196192,3582197127,DE +3582197128,3582197135,BZ +3582197136,3582197759,DE +3582197760,3582205951,DK +3582205952,3582214143,AE +3582214144,3582222335,RU +3582222336,3582222511,SE +3582222512,3582222527,DK +3582222528,3582222863,SE +3582222864,3582222879,NO +3582222880,3582223967,SE +3582223968,3582223975,NO +3582223976,3582230527,SE +3582230528,3582238719,BE +3582238720,3582255103,NL +3582255104,3582263295,KW +3582263296,3582271487,ME +3582271488,3582279679,NL +3582279680,3582287871,GB +3582287872,3582296063,DE +3582296064,3582304255,GB +3582304256,3582312447,UA +3582312448,3582320639,GB +3582320640,3582328831,CH +3582328832,3582337023,HU +3582337024,3582341119,ES +3582341120,3582343167,PT +3582343168,3582345215,ES +3582345216,3582353407,IT +3582353408,3582361599,SE +3582361600,3582377983,PL +3582377984,3582386175,RU +3582386176,3582394367,NL +3582394368,3582402559,DE +3582402560,3582410751,PL +3582410752,3582435327,RU +3582435328,3582443519,MK +3582443520,3582451711,DE +3582451712,3582459903,LU +3582459904,3582468095,NL +3582468096,3582476287,SE +3582476288,3582484479,DE +3582492672,3582509055,IT +3582509056,3582517247,SA +3582517248,3582525439,PL +3582525440,3582533631,GB +3582533632,3582538183,BG +3582538184,3582538191,GB +3582538192,3582541823,BG +3582541824,3582550015,US +3582550016,3582550059,CS +3582550060,3582550063,RS +3582550064,3582550071,CS +3582550072,3582550075,RS +3582550076,3582550915,CS +3582550916,3582550919,RS +3582550920,3582551191,CS +3582551192,3582551215,RS +3582551216,3582551551,CS +3582551552,3582553471,RS +3582553472,3582554623,CS +3582554624,3582554879,RS +3582554880,3582555007,CS +3582555008,3582555391,RS +3582555392,3582555647,CS +3582555648,3582557183,RS +3582557184,3582557439,CS +3582557440,3582557951,RS +3582557952,3582558079,CS +3582558080,3582558207,RS +3582558208,3582566399,MC +3582566432,3582566479,BE +3582566480,3582566495,SA +3582566528,3582566591,BE +3582566736,3582566743,BE +3582566752,3582566767,BE +3582566784,3582566847,BE +3582566864,3582566879,BE +3582566912,3582567019,BE +3582567024,3582567039,BE +3582567136,3582567151,BE +3582567232,3582567295,BE +3582567392,3582567399,BE +3582567424,3582567807,US +3582567904,3582567935,US +3582567936,3582568191,GB +3582568208,3582568223,SE +3582568248,3582568263,SE +3582568336,3582568339,SE +3582568344,3582568351,SE +3582568440,3582568447,SE +3582568448,3582568703,US +3582568832,3582568959,US +3582568960,3582568967,HU +3582568992,3582569023,CZ +3582569032,3582569035,AT +3582569036,3582569039,DE +3582569040,3582569043,AT +3582569080,3582569087,HU +3582569096,3582569103,HU +3582569152,3582569167,HU +3582569208,3582569215,AT +3582569280,3582569303,AT +3582569984,3582570239,GB +3582570240,3582570367,DE +3582570400,3582570431,FR +3582570464,3582570479,FR +3582570752,3582570831,FR +3582570848,3582570863,FR +3582570880,3582570895,FR +3582570904,3582570975,FR +3582570984,3582570991,FR +3582571008,3582571039,FR +3582571136,3582571199,FR +3582571304,3582571307,CH +3582571308,3582571311,FR +3582571328,3582571343,FR +3582571376,3582571391,FR +3582571408,3582571423,FR +3582571456,3582571487,FR +3582571648,3582571671,IE +3582571680,3582571707,IE +3582571720,3582571839,IE +3582571856,3582571871,IE +3582571976,3582571991,IE +3582572000,3582572015,IE +3582572024,3582572031,IE +3582572032,3582572431,CH +3582572456,3582572463,CH +3582572480,3582572543,CH +3582572560,3582572567,DE +3582572624,3582572631,DE +3582572800,3582572863,DE +3582572944,3582572951,DE +3582572976,3582572983,DE +3582573024,3582573055,DE +3582573088,3582573095,DE +3582573104,3582573111,DE +3582573120,3582573135,DE +3582573184,3582573215,DE +3582573408,3582573423,DE +3582573432,3582573519,DE +3582573552,3582573567,DE +3582573608,3582573703,CH +3582573728,3582573759,CH +3582573824,3582573855,CH +3582573896,3582573903,CH +3582573912,3582574015,CH +3582574432,3582574435,CH +3582574456,3582574479,CH +3582574592,3582582783,DE +3582582784,3582590975,RU +3582590976,3582599167,FR +3582599168,3582607359,DE +3582607360,3582615551,RU +3582615552,3582619391,CY +3582619392,3582619647,UA +3582619648,3582622591,CY +3582622592,3582622719,LB +3582622720,3582623743,CY +3582623744,3582631935,FI +3582631936,3582640127,NO +3582640128,3582648319,RU +3582648320,3582656511,PT +3582656512,3582664047,ES +3582664048,3582664055,FR +3582664056,3582664703,ES +3582664704,3582672895,JO +3582672896,3582681087,DE +3582681088,3582689279,FR +3582689280,3582697471,DE +3582697472,3582705663,FI +3582705664,3582722047,TR +3582722048,3582730239,IT +3582730240,3582736383,ES +3582736384,3582737407,DZ +3582737408,3582737919,MA +3582737920,3582738431,ES +3582738432,3582746623,DK +3582746624,3582754815,RU +3582754816,3582763007,GR +3582763008,3582771199,FI +3582771200,3582779391,IT +3582779392,3582787583,RU +3582787584,3582795775,PT +3582795776,3582803967,ES +3582803968,3582812159,SE +3582812160,3582820351,FI +3582820352,3582828543,RU +3582828544,3582836735,KZ +3582836736,3582853119,RU +3582853120,3582861311,SE +3582861312,3582869503,RU +3582869504,3582877695,NO +3582877696,3582885887,AT +3582885888,3582894079,GR +3582894080,3582902271,CH +3582902272,3582910463,RU +3582910464,3582918655,SI +3582918656,3582926847,GB +3582926848,3582935039,ES +3582935040,3582943231,SI +3582943232,3582951423,AT +3582951424,3582959615,GB +3582959616,3582967807,FI +3582967808,3582975999,DE +3582976000,3582984191,TR +3582984192,3582992383,DE +3582992384,3583000575,ES +3583000576,3583008767,IT +3583008768,3583016959,TR +3583016960,3583017847,CH +3583017848,3583017855,US +3583017856,3583019367,CH +3583019368,3583019375,DE +3583019376,3583023215,CH +3583023216,3583023223,DE +3583023224,3583025151,CH +3583025152,3583028991,IT +3583028992,3583029247,US +3583029248,3583029375,SG +3583029376,3583029503,FR +3583029504,3583029759,IT +3583029760,3583030015,GR +3583030016,3583030847,IT +3583030848,3583031039,GR +3583031040,3583031295,FR +3583031296,3583031839,GR +3583031840,3583031847,IT +3583031848,3583031887,GR +3583031888,3583032095,IT +3583032096,3583032127,GR +3583032128,3583032159,IT +3583032160,3583032191,FR +3583032192,3583032319,IT +3583032320,3583032831,NL +3583032832,3583033087,GR +3583033088,3583033343,IT +3583033344,3583041535,FR +3583041536,3583049727,NL +3583049728,3583057919,IT +3583057920,3583066111,RU +3583066112,3583074303,DE +3583074304,3583082495,BG +3583082496,3583090687,KG +3583090688,3583098879,NO +3583098880,3583107071,FI +3583107072,3583115263,AT +3583115264,3583123455,CH +3583123456,3583131647,PL +3583131648,3583139839,SE +3583139840,3583141727,DE +3583141728,3583141735,AT +3583141736,3583148031,DE +3583148032,3583157247,GB +3583157248,3583157279,IE +3583157280,3583157439,GB +3583157440,3583157471,IE +3583157472,3583158271,GB +3583158272,3583159039,DE +3583159040,3583159295,GB +3583159296,3583159327,DE +3583159328,3583159359,GB +3583159360,3583159375,DE +3583159376,3583160063,GB +3583160064,3583161343,DE +3583161344,3583161855,GB +3583161856,3583162111,DE +3583162112,3583162367,GB +3583162368,3583162623,DE +3583162624,3583164415,GB +3583164416,3583172607,PT +3583172608,3583188991,DE +3583188992,3583197183,RU +3583205376,3583213567,HR +3583213568,3583221759,RU +3583221760,3583229951,AT +3583229952,3583238143,RU +3583238144,3583246335,GB +3583246336,3583254527,RU +3583254528,3583262719,GB +3583262720,3583270911,TR +3583270912,3583279103,NL +3583279104,3583287295,DE +3583287296,3583295487,RU +3583295488,3583303679,ES +3583303680,3583311871,NL +3583311872,3583320063,RU +3583320064,3583328255,HR +3583328256,3583336447,DE +3583336448,3583337727,ME +3583337728,3583337983,AL +3583337984,3583338015,ME +3583338016,3583338023,CS +3583338024,3583338031,ME +3583338032,3583338047,CS +3583338048,3583338143,ME +3583338144,3583338175,CS +3583338176,3583339519,ME +3583339520,3583339775,AL +3583339776,3583341039,ME +3583341040,3583341055,AL +3583341056,3583342335,ME +3583342336,3583342591,CS +3583342592,3583344639,ME +3583344640,3583352831,BG +3583352832,3583361023,CY +3583361024,3583369215,IT +3583369216,3583377407,ES +3583377408,3583385599,AT +3583385600,3583393791,DK +3583393792,3583401983,RU +3583410176,3583418367,SE +3583434752,3583442943,AT +3583442944,3583451135,UA +3583451136,3583459327,IL +3583459328,3583463891,CZ +3583463892,3583463895,PL +3583463896,3583467519,CZ +3583467520,3583475711,ES +3583475712,3583483903,NO +3583483904,3583492095,FR +3583492096,3583508479,SK +3583508480,3583516671,FR +3583516672,3583524863,GB +3583533056,3583541247,DE +3583541248,3583549439,RU +3583549440,3583558399,IT +3583558400,3583558527,SM +3583558528,3583565823,IT +3583565824,3583574015,GB +3583574016,3583582207,NO +3583582208,3583590399,AT +3583590400,3583598591,DE +3583598592,3583606783,SE +3583606784,3583639551,TR +3583639552,3583647743,GB +3583664128,3583680511,RO +3583680512,3583688703,RU +3583688704,3583696895,UA +3583696896,3583705087,NL +3583705088,3583705095,UA +3583705096,3583705103,NA +3583705104,3583705119,UA +3583705120,3583705127,NA +3583705128,3583705175,UA +3583705176,3583705223,NA +3583705224,3583705239,UA +3583705240,3583705247,NA +3583705248,3583705287,UA +3583705288,3583705295,NA +3583705296,3583705303,UA +3583705304,3583705319,NA +3583705320,3583705335,UA +3583705336,3583705343,NA +3583705344,3583705347,UA +3583705348,3583705351,NA +3583705352,3583705407,UA +3583705408,3583705535,NA +3583705536,3583705603,UA +3583705604,3583705607,NA +3583705608,3583705663,UA +3583705664,3583705791,NA +3583705792,3583705831,UA +3583705832,3583705839,NA +3583705840,3583705847,UA +3583705848,3583705855,NA +3583705856,3583705859,UA +3583705860,3583705863,NA +3583705864,3583705887,UA +3583705888,3583705895,NA +3583705896,3583705903,UA +3583705904,3583705911,NA +3583705912,3583706023,UA +3583706024,3583706031,NA +3583706032,3583706055,UA +3583706056,3583706063,RU +3583706064,3583706071,UA +3583706072,3583706079,NA +3583706080,3583706175,UA +3583706176,3583706183,NA +3583706184,3583706191,UA +3583706192,3583706199,NA +3583706200,3583706263,UA +3583706264,3583706271,NA +3583706272,3583706295,UA +3583706296,3583706311,NA +3583706312,3583706343,UA +3583706344,3583706351,NA +3583706352,3583706375,UA +3583706376,3583706383,NA +3583706384,3583706463,UA +3583706464,3583706471,NA +3583706472,3583706495,UA +3583706496,3583706511,NA +3583706512,3583706519,UA +3583706520,3583706527,NA +3583706528,3583706535,UA +3583706536,3583706543,NA +3583706544,3583706551,UA +3583706552,3583706559,NA +3583706560,3583706575,UA +3583706576,3583706583,NA +3583706584,3583706591,UA +3583706592,3583706607,NA +3583706608,3583706615,UA +3583706616,3583706623,NA +3583706624,3583706624,UA +3583706625,3583706631,NA +3583706632,3583706639,UA +3583706640,3583706655,NA +3583706656,3583706679,UA +3583706680,3583706687,NA +3583706688,3583706695,RU +3583706696,3583706719,NA +3583706720,3583706743,RU +3583706744,3583706831,NA +3583706832,3583706863,UA +3583706864,3583706879,NA +3583706880,3583706887,UA +3583706888,3583706903,NA +3583706904,3583706927,UA +3583706928,3583706935,NA +3583706936,3583706959,UA +3583706960,3583706967,NA +3583706968,3583706983,UA +3583706984,3583706999,NA +3583707000,3583707015,UA +3583707016,3583707023,NA +3583707024,3583707071,UA +3583707072,3583707103,NA +3583707104,3583707119,UA +3583707120,3583707135,NA +3583707136,3583707519,UA +3583707520,3583707527,NA +3583707528,3583707559,UA +3583707560,3583707567,NA +3583707568,3583707639,UA +3583707640,3583707647,NA +3583707648,3583707663,UA +3583707664,3583707671,NA +3583707672,3583707679,RU +3583707680,3583707703,UA +3583707704,3583707711,NA +3583707712,3583707735,UA +3583707736,3583707743,NA +3583707744,3583707775,UA +3583707776,3583707791,NA +3583707792,3583707807,UA +3583707808,3583707815,NA +3583707816,3583707839,UA +3583707840,3583707855,NA +3583707856,3583707919,UA +3583707920,3583707927,NA +3583707928,3583708031,UA +3583708032,3583708095,NA +3583708096,3583708167,UA +3583708168,3583708175,NA +3583708176,3583708231,UA +3583708232,3583708239,NA +3583708240,3583708327,UA +3583708328,3583708335,NA +3583708336,3583708423,UA +3583708424,3583708431,NA +3583708432,3583708479,UA +3583708480,3583708543,NA +3583708544,3583708575,UA +3583708576,3583708583,NA +3583708584,3583708607,UA +3583708608,3583708623,NA +3583708624,3583713071,UA +3583713072,3583713079,NA +3583713080,3583713103,UA +3583713104,3583713111,NA +3583713112,3583713127,UA +3583713128,3583713135,NA +3583713136,3583713159,UA +3583713160,3583713167,NA +3583713168,3583713183,UA +3583713184,3583713191,NA +3583713192,3583713199,BG +3583713200,3583713207,NA +3583713208,3583713271,UA +3583713272,3583713275,NA +3583713276,3583713279,UA +3583713280,3583721471,CZ +3583721472,3583729663,DE +3583729664,3583737855,TR +3583740672,3583740927,GB +3583741440,3583741695,GB +3583741696,3583741951,NL +3583742720,3583743487,DE +3583743976,3583743983,GB +3583744068,3583744071,GB +3583744128,3583744255,GB +3583744288,3583744303,GB +3583744512,3583744767,GB +3583744832,3583744847,GB +3583744960,3583744991,GB +3583745280,3583745535,GB +3583745536,3583745663,SE +3583745808,3583745823,GB +3583746048,3583754239,PL +3583754240,3583762431,IT +3583762432,3583770623,CZ +3583770624,3583772351,NL +3583772352,3583772367,IT +3583772368,3583778815,NL +3583778816,3583787007,IT +3583787008,3583795199,UA +3583795200,3583803391,PL +3583803392,3583806719,RU +3583806720,3583806975,BY +3583806976,3583811583,RU +3583811584,3583811839,GB +3583811840,3583819775,DE +3583819776,3583827967,RU +3583827968,3583836159,CH +3583836160,3583844351,DE +3583844352,3583852543,KZ +3583852544,3583854591,FI +3583854592,3583854863,GB +3583854864,3583854879,FI +3583854880,3583854995,GB +3583854996,3583855007,FI +3583855008,3583855041,GB +3583855042,3583855047,FI +3583855048,3583855103,GB +3583855104,3583855167,US +3583855168,3583855175,FI +3583855176,3583855183,US +3583855184,3583855191,FI +3583855192,3583855199,US +3583855200,3583855207,FI +3583855208,3583855247,US +3583855248,3583855311,FI +3583855312,3583855327,US +3583855328,3583856383,FI +3583856384,3583856447,SG +3583856448,3583856615,FI +3583856616,3583856639,SG +3583856640,3583860735,FI +3583860736,3583868927,HU +3583868928,3583877119,AT +3583877120,3583882239,RO +3583882240,3583882751,HU +3583882752,3583885311,RO +3583885312,3583893503,GE +3583893504,3583901695,SI +3583901696,3583909887,RU +3583909888,3583918079,SE +3583918080,3583926271,IT +3583926272,3583934463,DE +3583934464,3583942655,CH +3583950848,3583959039,PL +3583959040,3583967231,NO +3583967232,3583975423,NL +3583975424,3583983615,LT +3583983616,3583999999,RU +3584000000,3584008191,IE +3584008192,3584016383,DK +3584016384,3584024575,RU +3584024576,3584032767,UA +3584032768,3584040959,DE +3584040960,3584049151,CH +3584049152,3584055911,DE +3584055912,3584055919,TR +3584055920,3584057343,DE +3584057344,3584065535,GB +3584065536,3584073727,UA +3584073728,3584081919,SK +3584081920,3584081951,AT +3584081952,3584081959,NL +3584081960,3584082143,AT +3584082144,3584082175,NL +3584082176,3584082279,AT +3584082280,3584082287,NL +3584082288,3584082943,AT +3584082944,3584089087,NL +3584089088,3584089855,AT +3584089856,3584089871,NL +3584089872,3584089903,AT +3584089904,3584089919,NL +3584089920,3584090111,AT +3584090112,3584090623,NO +3584090624,3584090879,NL +3584090880,3584090887,NO +3584090888,3584090895,NL +3584090896,3584090943,NO +3584090944,3584090959,NL +3584090960,3584093783,NO +3584093784,3584093791,NL +3584093792,3584094893,NO +3584094894,3584094895,NL +3584094896,3584095935,NO +3584095936,3584095999,NL +3584096000,3584096255,NO +3584096256,3584098303,NL +3584098304,3584106495,SI +3584106496,3584114687,FI +3584114688,3584122879,GB +3584122880,3584131071,PL +3584131072,3584139263,TR +3584139264,3584147455,NO +3584147456,3584155647,FR +3584155648,3584163839,NO +3584163840,3584172031,CH +3584172032,3584180223,FR +3584180224,3584188415,AT +3584188416,3584196607,GB +3584196608,3584204799,DE +3584204800,3584212991,NL +3584212992,3584221183,ES +3584221184,3584229375,NO +3584229376,3584245759,HU +3584245760,3584253951,NL +3584253952,3584256383,CS +3584256384,3584256399,CS +3584256400,3584260135,CS +3584260136,3584260139,CS +3584260140,3584260151,CS +3584260152,3584260155,CS +3584260156,3584260231,CS +3584260232,3584260239,CS +3584260240,3584260247,CS +3584260248,3584260255,CS +3584260256,3584262143,CS +3584262144,3584270335,SE +3584270336,3584278527,FR +3584278528,3584286719,GB +3584286720,3584303103,AT +3584303104,3584311295,ES +3584311296,3584319487,DE +3584319488,3584327679,LT +3584327680,3584335871,DE +3584335872,3584344063,ES +3584344064,3584352255,SE +3584352256,3584360447,RO +3584360448,3584368639,GB +3584368640,3584376831,LB +3584376832,3584393215,DE +3584393216,3584401407,GB +3584401408,3584409599,MT +3584409600,3584413439,RU +3584413440,3584413695,DE +3584413696,3584414207,GB +3584414208,3584414719,RU +3584414720,3584414975,DE +3584414976,3584416255,RU +3584416256,3584416767,GB +3584416768,3584417791,RU +3584417792,3584434175,GB +3584434176,3584442367,LU +3584442368,3584450559,GB +3584458752,3584466943,SA +3584475136,3584483327,FR +3584483328,3584491519,DE +3584491520,3584499711,BG +3584499712,3584507903,RU +3584507904,3584508927,GB +3584508928,3584508943,CY +3584508944,3584508951,KY +3584508952,3584509031,GB +3584509032,3584509039,NL +3584509040,3584509231,GB +3584509232,3584509239,AW +3584509240,3584509359,GB +3584509360,3584509367,KY +3584509368,3584510623,GB +3584510624,3584510655,NL +3584510656,3584510999,GB +3584511000,3584511007,KY +3584511008,3584511023,GB +3584511024,3584511039,KY +3584511040,3584511055,GB +3584511056,3584511071,NL +3584511072,3584511807,GB +3584511808,3584511935,MT +3584511936,3584513535,GB +3584513536,3584513599,US +3584513600,3584516047,GB +3584516048,3584516063,KY +3584516064,3584516071,GB +3584516072,3584516079,BB +3584516080,3584516095,GB +3584516096,3584524287,NO +3584524288,3584532479,IS +3584532480,3584540671,DE +3584540672,3584548863,RU +3584548864,3584557055,ES +3584557056,3584565247,EE +3584565248,3584573439,RU +3584573440,3584589823,DE +3584589824,3584598015,RU +3584598016,3584606207,CZ +3584606208,3584614399,DE +3584614400,3584614495,GB +3584614496,3584622335,IE +3584622336,3584622591,GB +3584622592,3584630783,FI +3584630784,3584638975,BG +3584638976,3584647167,UA +3584647168,3584655359,LU +3584655360,3584663551,CY +3584663552,3584671743,FR +3584671744,3584688127,NL +3584688128,3584696319,GB +3584696320,3584701751,ES +3584701752,3584701823,NL +3584701824,3584701991,ES +3584701992,3584702007,CH +3584702008,3584703095,ES +3584703096,3584703103,BE +3584703104,3584704511,ES +3584704512,3584720895,RU +3584720896,3584729087,GB +3584729088,3584737279,DE +3584737280,3584745471,GR +3584745472,3584753663,DK +3584753664,3584770047,RU +3584770048,3584778239,NL +3584778240,3584786431,IT +3584786432,3584794623,NL +3584794624,3584802815,IT +3584802816,3584811007,GB +3584811008,3584819199,ES +3584819200,3584827391,RU +3584827392,3584835583,ES +3584835584,3584843775,AZ +3584843776,3584851967,DE +3584860160,3584868351,PL +3584868352,3584876543,NO +3584876544,3584884735,SI +3584884736,3584892927,DE +3584892928,3584901119,IL +3584901120,3584909311,AT +3584909312,3584917503,IT +3584917504,3584925695,FI +3584925696,3584928275,CH +3584928276,3584928279,IT +3584928280,3584929599,CH +3584929600,3584929727,DE +3584929728,3584931375,CH +3584931376,3584931391,ES +3584931392,3584931687,CH +3584931688,3584931695,ES +3584931696,3584932191,CH +3584932192,3584932199,GB +3584932200,3584933639,CH +3584933640,3584933647,GB +3584933648,3584933887,CH +3584933888,3584942079,PL +3584942080,3584950271,DK +3584950272,3584958463,BG +3584958464,3584966655,DE +3584966656,3584974847,DK +3584974848,3584983039,FR +3584983040,3584983295,US +3584983296,3584984063,NL +3584984064,3584984319,US +3584984320,3584984575,NL +3584984576,3584987391,US +3584987392,3584987647,NL +3584987648,3584988311,US +3584988312,3584988319,NL +3584988320,3584988335,US +3584988336,3584988415,NL +3584988416,3584988607,US +3584988608,3584988671,NL +3584988672,3584989695,US +3584989696,3584991231,NL +3584991232,3584999423,IT +3584999424,3585007615,GB +3585007616,3585015807,AT +3585015808,3585023999,IT +3585024000,3585032191,CZ +3585032192,3585048575,LV +3585048576,3585056767,GB +3585056768,3585064959,LB +3585064960,3585081343,GB +3585081344,3585114111,IR +3585114112,3585122303,IS +3585122304,3585130495,ES +3585130496,3585138687,DE +3585138688,3585146879,RU +3585146880,3585147327,GB +3585147328,3585155071,CH +3585155072,3585163263,GB +3585163264,3585171455,BE +3585171456,3585179647,RU +3585179648,3585189887,BE +3585189888,3585190399,DZ +3585190400,3585190463,IQ +3585190464,3585190527,BE +3585190528,3585190591,DZ +3585190592,3585196031,BE +3585196032,3585204223,ES +3585204224,3585212415,GB +3585212416,3585220607,DE +3585220608,3585228799,RU +3585228800,3585236991,DE +3585236992,3585245183,HU +3585245184,3585253375,GB +3585253376,3585261567,DE +3585261568,3585269759,IT +3585269760,3585277951,SY +3585277952,3585286143,SE +3585286144,3585294335,NO +3585294336,3585302527,DE +3585302528,3585310719,ES +3585310720,3585318911,DE +3585327104,3585335295,DE +3585335296,3585343487,UA +3585343488,3585351679,EE +3585351680,3585359871,CZ +3585359872,3585368063,SE +3585368064,3585376255,LV +3585376256,3585384447,PL +3585384448,3585392639,CH +3585392640,3585400831,RU +3585400832,3585409023,FR +3585409024,3585417215,RU +3585417216,3585425407,BE +3585433600,3585441791,IS +3585441792,3585449983,SK +3585449984,3585458175,SA +3585458176,3585466367,HU +3585474560,3585482751,DE +3585482752,3585490943,FR +3585490944,3585499135,IT +3585499136,3585515519,DE +3585515520,3585523711,RU +3585523712,3585531903,LV +3585531904,3585540095,AT +3585540096,3585548287,DE +3585548288,3585556479,RU +3585556480,3585564671,DE +3585564672,3585572863,RU +3585572864,3585581055,IT +3585581056,3585597439,DE +3585597440,3585605631,RU +3585605632,3585613823,PL +3585613824,3585622015,EE +3585622016,3585630207,RU +3585630208,3585630783,CS +3585630784,3585630975,CS +3585630976,3585630983,CS +3585630984,3585630999,RS +3585631000,3585631007,CS +3585631008,3585631023,CS +3585631024,3585631031,CS +3585631032,3585631103,CS +3585631104,3585631135,CS +3585631136,3585631167,CS +3585631168,3585631183,CS +3585631184,3585631199,CS +3585631200,3585631215,RS +3585631216,3585631223,CS +3585631224,3585631227,CS +3585631228,3585631231,RS +3585631232,3585631255,CS +3585631256,3585631263,RS +3585631264,3585631307,CS +3585631308,3585631311,RS +3585631312,3585631503,CS +3585631504,3585631519,RS +3585631520,3585632495,CS +3585632496,3585632511,RS +3585632512,3585638399,CS +3585638400,3585646591,RU +3585646592,3585654783,SA +3585654784,3585655631,NO +3585655632,3585655639,US +3585655640,3585662975,NO +3585662976,3585671167,BY +3585671168,3585672191,SE +3585672192,3585672447,DK +3585672448,3585672959,SE +3585672960,3585673983,DK +3585673984,3585674239,SE +3585674240,3585675775,DK +3585675776,3585676287,SE +3585676288,3585677055,DK +3585677056,3585677311,SE +3585677312,3585677567,DK +3585677568,3585679359,SE +3585679360,3585687551,FI +3585687552,3585695743,DE +3585695744,3585695999,CM +3585696000,3585696063,BD +3585696064,3585696511,GB +3585696512,3585696767,LB +3585696768,3585696799,NO +3585696800,3585696831,LR +3585696832,3585697279,GB +3585697280,3585697535,NO +3585697536,3585697791,GB +3585697792,3585698047,NG +3585698048,3585698303,GB +3585698304,3585698815,NG +3585698816,3585699583,GB +3585699584,3585699711,US +3585699712,3585699839,AU +3585699840,3585700159,US +3585700160,3585700191,GB +3585700192,3585700222,US +3585700223,3585700231,GB +3585700232,3585700239,US +3585700240,3585700255,ZA +3585700256,3585700271,GB +3585700272,3585700287,NG +3585700288,3585700303,GB +3585700304,3585700319,NG +3585700320,3585700343,AU +3585700344,3585700351,ZA +3585700352,3585700607,NG +3585700608,3585700863,TZ +3585700864,3585701119,IQ +3585701120,3585701375,US +3585701376,3585701439,MW +3585701440,3585701503,GB +3585701504,3585701519,NG +3585701520,3585701535,CA +3585701536,3585701631,NG +3585701632,3585701887,GB +3585701888,3585702143,FR +3585702144,3585702399,LR +3585702400,3585702463,US +3585702464,3585702527,GB +3585702528,3585702655,TZ +3585702656,3585702911,TG +3585702912,3585703167,NG +3585703168,3585703423,FR +3585703424,3585703679,TZ +3585703680,3585703935,GB +3585703936,3585712127,DE +3585712128,3585720319,AT +3585720320,3585728511,GB +3585728512,3585736703,SE +3585736704,3585744895,GB +3585744896,3585753087,FR +3585753088,3585761279,PL +3585761280,3585769471,UA +3585769472,3585777663,TR +3585777664,3585785855,JO +3585785856,3585794047,UA +3585794048,3585802239,FI +3585802240,3585810431,DE +3585810432,3585818623,GB +3585818624,3585826815,DE +3585826816,3585835007,RU +3585835008,3585835583,NL +3585835584,3585835647,IQ +3585835648,3585835791,NL +3585835792,3585835839,GQ +3585835840,3585835847,AO +3585835848,3585835871,NL +3585835872,3585835879,IQ +3585835880,3585835895,NL +3585835896,3585835903,IQ +3585835904,3585835911,NL +3585835912,3585835919,KE +3585835920,3585835927,SO +3585835928,3585835935,SC +3585835936,3585835943,SD +3585835944,3585835951,DJ +3585835952,3585835959,SO +3585835960,3585835967,TD +3585835968,3585835983,ER +3585835984,3585836007,NL +3585836008,3585836023,IQ +3585836024,3585836287,NL +3585836288,3585836543,SA +3585836544,3585837055,DZ +3585837056,3585837311,NG +3585837312,3585837439,IQ +3585837440,3585837567,NG +3585837568,3585838143,AO +3585838144,3585838207,NA +3585838208,3585838247,NL +3585838248,3585838255,AO +3585838256,3585838271,NL +3585838272,3585838279,AO +3585838280,3585838295,NL +3585838296,3585838303,AO +3585838304,3585838591,NL +3585838592,3585838879,NG +3585838880,3585838911,IQ +3585838912,3585838975,NG +3585838976,3585839103,DZ +3585839104,3585840127,NL +3585840128,3585841151,US +3585841152,3585841663,IQ +3585841664,3585841919,DZ +3585841920,3585842175,NG +3585842176,3585842199,IQ +3585842200,3585842207,NG +3585842208,3585842687,IQ +3585842688,3585842943,NG +3585842944,3585843199,SE +3585843200,3585851391,NO +3585851392,3585859583,SE +3585859584,3585860607,RU +3585860608,3585865727,DE +3585865728,3585867775,RU +3585867776,3585875967,NO +3585875968,3585884159,CH +3585884160,3585892351,IQ +3585892352,3585900543,DE +3585900544,3585902239,NO +3585902240,3585902271,GB +3585902272,3585902447,NO +3585902448,3585902463,GB +3585902464,3585908735,NO +3585908736,3585909759,FR +3585909760,3585910271,MQ +3585910272,3585910783,FR +3585910784,3585911039,MQ +3585911040,3585911551,FR +3585911552,3585911807,GP +3585911808,3585912063,FR +3585912064,3585912319,GP +3585912320,3585912575,FR +3585912576,3585912831,GP +3585912832,3585913855,FR +3585913856,3585914111,GP +3585914112,3585916671,FR +3585916672,3585916927,MQ +3585916928,3585925119,IT +3585925120,3585933311,CH +3585933312,3585936127,NL +3585936128,3585937407,US +3585937408,3585940479,NL +3585940480,3585940735,BE +3585940736,3585941503,NL +3585941504,3585949695,IL +3585949696,3585957887,KW +3585957888,3585966079,SE +3585966080,3585974271,CH +3585974272,3585982463,BE +3585982464,3585998847,RU +3585998848,3586007039,ES +3586007040,3586015231,LT +3586015232,3586023423,FR +3586023424,3586031615,IS +3586031616,3586039807,IE +3586039808,3586047999,GB +3586048000,3586056191,PT +3586056192,3586072575,RU +3586072576,3586088959,DE +3586088960,3586097151,CZ +3586097152,3586105343,HR +3586105600,3586105727,ER +3586113536,3586121727,BG +3586121728,3586129919,IE +3586129920,3586146303,CZ +3586146304,3586162687,PL +3586162688,3586179071,FI +3586179072,3586191871,ES +3586191872,3586191887,FR +3586191888,3586195455,ES +3586195456,3586197503,DE +3586197504,3586198015,FR +3586198016,3586199039,DE +3586199040,3586199295,FR +3586199296,3586203391,DE +3586203392,3586203647,SE +3586211840,3586220287,CH +3586220288,3586220303,FR +3586220304,3586225295,CH +3586225296,3586225311,FR +3586225312,3586228223,CH +3586228224,3586237695,BE +3586237696,3586237951,NL +3586237952,3586244607,BE +3586244608,3586244863,NL +3586244864,3586246655,GB +3586246656,3586248703,BE +3586248704,3586250449,NL +3586250450,3586250457,BE +3586250458,3586252799,NL +3586252800,3586254847,BE +3586254848,3586258943,NL +3586258944,3586259455,BE +3586259456,3586269343,NL +3586269344,3586269415,ES +3586269416,3586269423,NL +3586269424,3586269439,ES +3586269440,3586269471,NL +3586269472,3586269487,ES +3586269488,3586269503,NL +3586269504,3586269519,ES +3586269520,3586269535,NL +3586269536,3586269607,GB +3586269608,3586269695,ES +3586269696,3586269759,NL +3586269760,3586269823,ES +3586269824,3586269855,NL +3586269856,3586269887,ES +3586269888,3586269951,NL +3586269952,3586270079,ES +3586270080,3586270207,NL +3586270208,3586271231,ES +3586271232,3586271487,NL +3586271488,3586271999,ES +3586272000,3586272255,IT +3586272256,3586272383,NL +3586272384,3586272767,ES +3586272768,3586272799,NL +3586272800,3586272807,IT +3586272808,3586272815,ES +3586272816,3586272831,IT +3586272832,3586272895,NL +3586272896,3586272959,IT +3586272960,3586272991,ES +3586272992,3586273023,IT +3586273024,3586276351,NL +3586276352,3586276863,ES +3586276864,3586277375,NL +3586277376,3586293759,TR +3586293760,3586310143,ES +3586310144,3586326527,CZ +3586326528,3586342911,IR +3586342912,3586359295,ES +3586359296,3586375679,PL +3586375680,3586392063,CZ +3586392064,3586408447,NL +3586408448,3586424831,BA +3586424832,3586441215,CH +3586441216,3586457599,DE +3586457600,3586473983,NL +3586473984,3586490367,HU +3586490368,3586506751,LT +3586506752,3586523135,NL +3586523136,3586543519,DE +3586543520,3586543527,GB +3586543528,3586543759,DE +3586543760,3586543791,GB +3586543792,3586545679,DE +3586545680,3586545703,GB +3586545704,3586546375,DE +3586546376,3586546383,GB +3586546384,3586555903,DE +3586555904,3586572287,IT +3586572288,3586588671,CS +3586588672,3586596863,IT +3586596864,3586605055,GB +3586605056,3586621439,SE +3586621440,3586625535,IE +3586625536,3586629631,GB +3586629632,3586637823,IE +3586637824,3586654207,PL +3586654208,3586662399,GE +3586662400,3586670591,UA +3586670592,3586677759,DE +3586677760,3586678015,GR +3586678016,3586678335,DE +3586678336,3586678399,US +3586678400,3586678415,GB +3586678416,3586678439,IE +3586678440,3586678447,DE +3586678448,3586678527,IE +3586678528,3586678671,DE +3586678672,3586678679,GB +3586678680,3586678687,MU +3586678688,3586678783,GB +3586678784,3586679039,DE +3586679040,3586679103,US +3586679104,3586679167,DE +3586679168,3586679231,US +3586679232,3586679327,DE +3586679328,3586679343,DK +3586679344,3586679583,DE +3586679584,3586679599,IT +3586679600,3586679647,DE +3586679648,3586679711,IT +3586679712,3586679727,DE +3586679728,3586679743,IT +3586679744,3586679839,DE +3586679840,3586679871,FR +3586679872,3586680063,DE +3586680064,3586680319,IT +3586680320,3586680447,ES +3586680448,3586680463,DE +3586680464,3586680575,ES +3586680576,3586680607,DE +3586680608,3586680623,ES +3586680624,3586680703,DE +3586680704,3586680831,ES +3586680832,3586680959,FR +3586680960,3586681015,DE +3586681016,3586681087,FR +3586681088,3586681343,IT +3586681344,3586681599,DE +3586681600,3586681615,FR +3586681616,3586681695,DE +3586681696,3586682111,FR +3586682112,3586682175,US +3586682176,3586682367,DE +3586682368,3586682399,AT +3586682400,3586682431,DE +3586682432,3586682879,FR +3586682880,3586686975,US +3586686976,3586703359,SE +3586703360,3586719743,CH +3586719744,3586752511,ES +3586752512,3586785279,NL +3586785280,3586793471,RU +3586793472,3586801663,CH +3586801664,3586818047,HR +3586818048,3586834431,IE +3586834432,3586850495,DE +3586850496,3586850511,US +3586850512,3586850815,DE +3586850816,3586867199,NO +3586867200,3586883583,FR +3586883584,3586899967,IT +3586899968,3586902271,DE +3586902272,3586902335,CH +3586902336,3586902411,DE +3586902412,3586902415,CH +3586902416,3586903263,DE +3586903264,3586903295,CH +3586903296,3586904223,DE +3586904224,3586904255,CH +3586904256,3586904319,DE +3586904320,3586904415,CH +3586904416,3586905039,DE +3586905040,3586905055,CH +3586905056,3586905071,DE +3586905072,3586905079,CH +3586905080,3586905087,DE +3586905088,3586905119,CH +3586905120,3586905167,DE +3586905168,3586905199,CH +3586905200,3586905215,GB +3586905216,3586905247,DE +3586905248,3586905279,CH +3586905280,3586906391,DE +3586906392,3586906399,CH +3586906400,3586906423,DE +3586906424,3586906427,CH +3586906428,3586906719,DE +3586906720,3586906735,CH +3586906736,3586907903,DE +3586907904,3586908031,CH +3586908032,3586910559,DE +3586910560,3586910567,NL +3586910568,3586910575,CY +3586910576,3586910587,NL +3586910588,3586910591,DE +3586910592,3586910671,NL +3586910672,3586910687,DE +3586910688,3586910703,NL +3586910704,3586910711,DE +3586910712,3586910719,NL +3586910720,3586910991,DE +3586910992,3586911007,BE +3586911008,3586911039,DE +3586911040,3586911103,GB +3586911104,3586911167,NL +3586911168,3586911191,DE +3586911192,3586911195,BE +3586911196,3586912255,DE +3586912256,3586912575,FR +3586912576,3586912647,DE +3586912648,3586912671,FR +3586912672,3586912675,US +3586912676,3586912703,DE +3586912704,3586912719,FR +3586912720,3586912735,US +3586912736,3586912767,FR +3586912768,3586916351,DE +3586916352,3586924031,IT +3586924032,3586924047,US +3586924048,3586924543,IT +3586924544,3586924743,FI +3586924744,3586924751,AX +3586924752,3586924919,FI +3586924920,3586924927,AX +3586924928,3586924943,FI +3586924944,3586924959,AX +3586924960,3586924983,FI +3586924984,3586925055,AX +3586925056,3586925103,FI +3586925104,3586925135,AX +3586925136,3586925471,FI +3586925472,3586925503,AX +3586925504,3586925535,FI +3586925536,3586925567,AX +3586925568,3586925695,FI +3586925696,3586925759,AX +3586925760,3586925791,FI +3586925792,3586925823,AX +3586925824,3586925831,FI +3586925832,3586925839,AX +3586925840,3586925887,FI +3586925888,3586925919,AX +3586925920,3586925983,FI +3586925984,3586926003,AX +3586926004,3586926015,FI +3586926016,3586926047,AX +3586926048,3586926079,FI +3586926080,3586926591,AX +3586926592,3586926847,SE +3586926848,3586927103,FI +3586927104,3586927999,AX +3586928000,3586928159,FI +3586928160,3586928175,AX +3586928176,3586928303,FI +3586928304,3586928319,AX +3586928320,3586928639,FI +3586928640,3586932735,AX +3586932736,3586949119,LB +3586949120,3586965503,SE +3586965504,3586981887,NL +3586981888,3586998271,IT +3586998272,3587006463,PT +3587006464,3587014655,FR +3587014656,3587051007,GB +3587051008,3587051775,DE +3587051776,3587052031,GB +3587052032,3587052799,NL +3587052800,3587053055,GB +3587053056,3587053823,FR +3587053824,3587055615,GB +3587055616,3587063807,UZ +3587063808,3587071583,NL +3587071584,3587071599,BE +3587071600,3587071615,NL +3587071616,3587071631,DE +3587071632,3587072095,NL +3587072096,3587072127,DE +3587072128,3587074415,NL +3587074416,3587074431,BE +3587074432,3587080191,NL +3587080192,3587082367,GB +3587082368,3587082431,US +3587082432,3587088383,GB +3587088384,3587096575,DE +3587096576,3587121151,NL +3587121152,3587129343,AL +3587129344,3587134463,NL +3587134464,3587134591,ES +3587134592,3587145727,NL +3587145728,3587162111,CY +3587162112,3587178495,IR +3587178496,3587178795,AT +3587178796,3587178799,US +3587178800,3587179279,AT +3587179280,3587179287,AU +3587179288,3587179439,AT +3587179440,3587179455,GB +3587179456,3587179463,TR +3587179464,3587179471,CH +3587179472,3587186687,AT +3587186688,3587186943,DE +3587186944,3587187199,AM +3587187200,3587187455,DE +3587187456,3587188223,RU +3587188224,3587189503,DE +3587189504,3587189759,RU +3587189760,3587193343,DE +3587193344,3587193599,KG +3587193600,3587194367,DE +3587194368,3587194511,RU +3587194512,3587194623,DE +3587194624,3587194879,RU +3587194880,3587211263,GB +3587211264,3587211531,AT +3587211532,3587211535,DE +3587211536,3587213911,AT +3587213912,3587213919,UY +3587213920,3587213959,AT +3587213960,3587213967,RO +3587213968,3587219455,AT +3587219456,3587227647,RU +3587227648,3587227663,GB +3587227664,3587227711,NL +3587227712,3587227759,GB +3587227760,3587227791,NL +3587227792,3587227807,GB +3587227808,3587227823,NL +3587227824,3587227871,GB +3587227872,3587227887,NL +3587227888,3587227919,GB +3587227920,3587227935,NL +3587227936,3587227983,GB +3587227984,3587228015,NL +3587228016,3587228047,GB +3587228048,3587228095,NL +3587228096,3587228127,GB +3587228128,3587228207,NL +3587228208,3587228223,GB +3587228224,3587228271,NL +3587228272,3587228287,GB +3587228288,3587228319,NL +3587228320,3587228335,GB +3587228336,3587228351,NL +3587228352,3587228447,GB +3587228448,3587228463,NL +3587228464,3587228667,GB +3587228668,3587229183,NL +3587229184,3587229455,GB +3587229456,3587229487,NL +3587229488,3587229535,GB +3587229536,3587229615,NL +3587229616,3587229647,GB +3587229648,3587229663,NL +3587229664,3587229743,GB +3587229744,3587229759,NL +3587229760,3587229791,GB +3587229792,3587229807,NL +3587229808,3587229855,GB +3587229856,3587229903,NL +3587229904,3587229951,GB +3587229952,3587229967,NL +3587229968,3587230047,GB +3587230048,3587230079,NL +3587230080,3587230095,GB +3587230096,3587230111,NL +3587230112,3587230127,GB +3587230128,3587230143,NL +3587230144,3587230239,GB +3587230240,3587230271,NL +3587230272,3587230319,GB +3587230320,3587230351,NL +3587230352,3587230383,GB +3587230384,3587230399,NL +3587230400,3587230447,GB +3587230448,3587230463,NL +3587230464,3587230511,GB +3587230512,3587230519,NL +3587230520,3587230527,GB +3587230528,3587230543,NL +3587230544,3587230607,GB +3587230608,3587230623,NL +3587230624,3587230791,GB +3587230792,3587230815,NL +3587230816,3587230847,GB +3587230848,3587230911,NL +3587230912,3587230943,GB +3587230944,3587230959,NL +3587230960,3587230975,GB +3587230976,3587230991,NL +3587230992,3587231231,GB +3587231232,3587231263,NL +3587231264,3587231359,GB +3587231360,3587231743,NL +3587231744,3587231887,GB +3587231888,3587231903,NL +3587231904,3587232767,GB +3587232768,3587232831,NL +3587232832,3587232847,GB +3587232848,3587232895,NL +3587232896,3587232911,GB +3587232912,3587232927,NL +3587232928,3587232967,GB +3587232968,3587232975,NL +3587232976,3587232991,GB +3587232992,3587233007,NL +3587233008,3587233023,GB +3587233024,3587233087,NL +3587233088,3587233103,GB +3587233104,3587233119,NL +3587233120,3587233135,GB +3587233136,3587233143,BE +3587233144,3587233151,GB +3587233152,3587233183,NL +3587233184,3587233199,GB +3587233200,3587233215,NL +3587233216,3587233231,GB +3587233232,3587233295,NL +3587233296,3587233311,GB +3587233312,3587233343,NL +3587233344,3587233359,GB +3587233360,3587233407,NL +3587233408,3587233471,GB +3587233472,3587233519,NL +3587233520,3587233535,GB +3587233536,3587233543,NL +3587233544,3587233599,GB +3587233600,3587233663,NL +3587233664,3587233791,GB +3587233792,3587233807,NL +3587233808,3587233839,GB +3587233840,3587233855,NL +3587233856,3587233903,GB +3587233904,3587233935,NL +3587233936,3587233951,GB +3587233952,3587233967,NL +3587233968,3587233983,GB +3587233984,3587233999,NL +3587234000,3587234015,GB +3587234016,3587234047,NL +3587234048,3587234063,GB +3587234064,3587234079,NL +3587234080,3587234095,GB +3587234096,3587234175,NL +3587234176,3587234303,GB +3587234304,3587236094,NL +3587236095,3587236095,GB +3587236096,3587236471,NL +3587236472,3587236479,GB +3587236480,3587236503,NL +3587236504,3587236527,GB +3587236528,3587236535,NL +3587236536,3587236543,GB +3587236544,3587236607,NL +3587236608,3587236863,GB +3587236864,3587237375,NL +3587237376,3587237407,GB +3587237408,3587237439,NL +3587237440,3587237447,GB +3587237448,3587237471,NL +3587237472,3587237479,GB +3587237480,3587237487,NL +3587237488,3587237503,GB +3587237504,3587237551,NL +3587237552,3587237567,GB +3587237568,3587237887,NL +3587237888,3587238143,GB +3587238144,3587238399,NL +3587238400,3587238463,GB +3587238464,3587238479,NL +3587238480,3587238487,GB +3587238488,3587238559,NL +3587238560,3587239167,GB +3587239168,3587239199,NL +3587239200,3587239215,GB +3587239216,3587239231,NL +3587239232,3587239239,GB +3587239240,3587239247,NL +3587239248,3587239263,GB +3587239264,3587239295,NL +3587239296,3587239311,GB +3587239312,3587239439,NL +3587239440,3587239447,GB +3587239448,3587239487,NL +3587239488,3587239503,GB +3587239504,3587239511,NL +3587239512,3587239519,GB +3587239520,3587239535,NL +3587239536,3587239935,GB +3587239936,3587239959,NL +3587239960,3587239967,GB +3587239968,3587239991,NL +3587239992,3587239999,GB +3587240000,3587240055,NL +3587240056,3587240071,GB +3587240072,3587240111,NL +3587240112,3587240119,GB +3587240120,3587240271,NL +3587240272,3587240287,GB +3587240288,3587240295,NL +3587240296,3587240319,GB +3587240320,3587240375,NL +3587240376,3587240383,GB +3587240384,3587240575,NL +3587240576,3587240583,GB +3587240584,3587240639,NL +3587240640,3587241031,GB +3587241032,3587241119,NL +3587241120,3587241151,GB +3587241152,3587241167,NL +3587241168,3587241183,GB +3587241184,3587241287,NL +3587241288,3587241983,GB +3587241984,3587242047,NL +3587242048,3587242055,GB +3587242056,3587242071,NL +3587242072,3587242079,GB +3587242080,3587242111,NL +3587242112,3587242271,GB +3587242272,3587242287,NL +3587242288,3587242463,GB +3587242464,3587242471,NL +3587242472,3587242495,GB +3587242496,3587242623,NL +3587242624,3587242631,GB +3587242632,3587242639,NL +3587242640,3587242655,GB +3587242656,3587243279,NL +3587243280,3587243295,GB +3587243296,3587243431,NL +3587243432,3587243439,GB +3587243440,3587243471,NL +3587243472,3587243519,GB +3587243520,3587243647,NL +3587243648,3587244015,GB +3587244016,3587244023,NL +3587244024,3587244031,GB +3587244032,3587260415,IT +3587260416,3587284991,DE +3587284992,3587287043,IT +3587287044,3587287047,LY +3587287048,3587287055,IT +3587287056,3587287059,LY +3587287060,3587287295,IT +3587287296,3587287307,GE +3587287308,3587287311,DE +3587287312,3587287319,GE +3587287320,3587287327,FR +3587287328,3587287335,GB +3587287336,3587287339,DE +3587287340,3587287343,PL +3587287344,3587287351,GE +3587287352,3587287359,IS +3587287360,3587287363,NL +3587287364,3587287367,IT +3587287368,3587287387,NL +3587287388,3587287391,CZ +3587287392,3587287395,DE +3587287396,3587287403,IS +3587287404,3587287411,PL +3587287412,3587287415,DE +3587287416,3587287419,IQ +3587287420,3587287423,DE +3587287424,3587287427,SE +3587287428,3587287431,DE +3587287432,3587287435,IT +3587287436,3587287439,DE +3587287440,3587287447,TR +3587287448,3587287451,DE +3587287452,3587287455,IT +3587287456,3587287459,DE +3587287460,3587287463,IT +3587287464,3587287475,SE +3587287476,3587287479,PL +3587287480,3587287535,IT +3587287536,3587287543,DE +3587287544,3587287551,PL +3587287552,3587287559,GB +3587287560,3587287563,FR +3587287564,3587287571,PL +3587287572,3587287575,DE +3587287576,3587287579,FR +3587287580,3587287583,DE +3587287584,3587287591,FR +3587287592,3587287599,GB +3587287600,3587287679,IT +3587287680,3587287687,NL +3587287688,3587287711,IS +3587287712,3587287719,GE +3587287720,3587287723,IT +3587287724,3587287727,SE +3587287728,3587287807,IT +3587287808,3587287815,IS +3587287816,3587287823,GB +3587287824,3587287835,FR +3587287836,3587287847,GB +3587287848,3587287851,SE +3587287852,3587287879,IQ +3587287880,3587287887,FR +3587287888,3587287935,IT +3587287936,3587287943,FR +3587287944,3587287947,DE +3587287948,3587287959,IT +3587287960,3587287963,FR +3587287964,3587287967,GB +3587287968,3587287983,DE +3587287984,3587288575,IT +3587288576,3587288703,AE +3587288704,3587288707,DE +3587288708,3587288759,NL +3587288760,3587288959,IT +3587288960,3587289087,DE +3587289088,3587289343,FR +3587289344,3587289347,ES +3587289348,3587289351,FR +3587289352,3587289359,PT +3587289360,3587289367,ES +3587289368,3587289375,FR +3587289376,3587289383,IT +3587289384,3587289387,GB +3587289388,3587289391,ES +3587289392,3587289399,GB +3587289400,3587289407,ES +3587289408,3587289411,IT +3587289412,3587289415,FR +3587289416,3587289423,IT +3587289424,3587289467,GB +3587289468,3587289855,IT +3587289856,3587289859,FR +3587289860,3587289863,IT +3587289864,3587289871,GB +3587289872,3587289895,IT +3587289896,3587289907,GB +3587289908,3587289911,ES +3587289912,3587289915,IT +3587289916,3587289919,FR +3587289920,3587290367,IT +3587290368,3587290622,GB +3587290623,3587290623,IT +3587290624,3587291135,FR +3587291136,3587291139,NL +3587291140,3587291967,IT +3587291968,3587292031,AL +3587292032,3587292159,IT +3587292160,3587292223,DZ +3587292224,3587292415,IT +3587292416,3587292419,ES +3587292420,3587292799,IT +3587292800,3587292863,AT +3587292864,3587309567,IT +3587309568,3587325951,GB +3587325952,3587342335,RU +3587342336,3587358719,CZ +3587358720,3587375103,SA +3587375104,3587383295,TR +3587383296,3587391487,CZ +3587391488,3587407871,KZ +3587407872,3587424255,NL +3587424256,3587440639,DE +3587440640,3587457023,SE +3587457024,3587459263,GB +3587459264,3587459295,DE +3587459296,3587473407,GB +3587473408,3587489791,IT +3587506176,3587538943,IT +3587538944,3587547135,IS +3587547136,3587555327,CH +3587555328,3587571711,BE +3587571712,3587579903,DE +3587579904,3587588095,BE +3587588096,3587596287,BG +3587596288,3587604479,NL +3587604480,3587620863,FI +3587620864,3587637247,SE +3587637248,3587653631,FR +3587653632,3587670015,SK +3587670016,3587686031,IT +3587686032,3587686039,FR +3587686040,3587687591,IT +3587687592,3587687599,NL +3587687600,3587702783,IT +3587702784,3587710975,DE +3587710976,3587719167,CZ +3587719168,3587735551,PL +3587735552,3587751935,GB +3587751936,3587768319,FI +3587768320,3587776511,DE +3587776512,3587784703,IR +3587784704,3587801087,DE +3587801088,3587817471,IT +3587817472,3587833855,MT +3587833856,3587842047,DE +3587842048,3587850239,IT +3587850240,3587854335,NL +3587854336,3587866623,PL +3587866624,3587874815,FR +3587874816,3587877383,DE +3587877384,3587877391,US +3587877392,3587877407,DE +3587877408,3587877439,NL +3587877440,3587878527,DE +3587878528,3587878559,AT +3587878560,3587883007,DE +3587883008,3587915775,GB +3587915776,3587932159,EE +3587932160,3587932415,NL +3587932416,3587932671,DE +3587932672,3587932927,BE +3587932928,3587933183,GB +3587933184,3587944447,BE +3587944448,3587945471,NL +3587945472,3587948031,BE +3587948032,3587948543,NL +3587948544,3587964927,RU +3587964928,3587981311,ES +3587981312,3587997695,IS +3587997696,3588014079,DE +3588014080,3588030463,CZ +3588030464,3588046847,RU +3588046848,3588060351,DE +3588060352,3588060359,CH +3588060360,3588063231,DE +3588063232,3588071423,CH +3588071424,3588079615,GB +3588079616,3588095999,CH +3588096000,3588104191,NL +3588104192,3588112383,BG +3588112384,3588128767,FR +3588128768,3588145151,HU +3588145152,3588161535,PL +3588161536,3588227071,FR +3588227072,3588292607,BE +3588292608,3588308991,AT +3588308992,3588325375,NO +3588325376,3588333567,GB +3588333568,3588341759,FR +3588341760,3588358143,IT +3588358144,3588374527,BG +3588374528,3588390911,SE +3588390912,3588393983,LT +3588393984,3588394495,LV +3588394496,3588407295,LT +3588407296,3588423679,CZ +3588423680,3588440063,ES +3588440064,3588456447,PL +3588456448,3588464639,NL +3588464640,3588472831,AT +3588472832,3588489215,UA +3588489216,3588505599,FR +3588505600,3588521983,RU +3588521984,3588538367,PT +3588538368,3588538623,ES +3588538624,3588544383,GB +3588544384,3588544391,IE +3588544392,3588547327,GB +3588547328,3588547583,IE +3588547584,3588550447,GB +3588550448,3588550463,IE +3588550464,3588553983,GB +3588553984,3588554239,IE +3588554240,3588554687,GB +3588554688,3588554751,IE +3588554752,3588571135,AT +3588587520,3588603903,ES +3588603904,3588620287,SI +3588620288,3588628479,SA +3588628480,3588636671,CH +3588636672,3588653055,UZ +3588653056,3588661247,IT +3588661248,3588669439,NO +3588669440,3588685823,GB +3588685824,3588702207,UA +3588702208,3588718591,ES +3588718592,3588734975,BG +3588734976,3588751359,PL +3588751360,3588767743,TR +3588767744,3588773759,GB +3588773760,3588773887,SL +3588773888,3588775935,GB +3588775936,3588776191,NG +3588776192,3588784127,GB +3588784128,3588800511,CH +3588800512,3588816895,RU +3588816896,3588833279,IT +3588833280,3588848767,RO +3588848768,3588848775,FR +3588848776,3588849663,RO +3588849664,3588857855,IE +3588857856,3588866047,IR +3588866048,3588882431,NL +3588882432,3588890623,RU +3588890624,3588898815,GB +3588898816,3588915199,NO +3588915200,3588931583,IT +3588931584,3588947967,RU +3588947968,3588964351,GB +3588964352,3588997119,CZ +3588997120,3589013503,AT +3589013504,3589021695,ES +3589021696,3589029887,SA +3589029888,3589030015,NL +3589030016,3589030143,ES +3589030144,3589030175,NL +3589030176,3589030191,ES +3589030192,3589030207,NL +3589030208,3589030239,ES +3589030240,3589031423,NL +3589031424,3589031935,ES +3589031936,3589034015,NL +3589034016,3589034111,ES +3589034112,3589034143,NL +3589034144,3589034159,ES +3589034160,3589034167,GB +3589034168,3589034175,NL +3589034176,3589034183,ES +3589034184,3589034191,GB +3589034192,3589034207,DE +3589034208,3589034223,ES +3589034224,3589034271,NL +3589034272,3589034303,ES +3589034304,3589034335,DE +3589034336,3589034367,FR +3589034368,3589034431,NL +3589034432,3589034495,FR +3589034496,3589037311,ES +3589037312,3589037343,NL +3589037344,3589037375,SE +3589037376,3589037391,NL +3589037392,3589037407,ES +3589037408,3589037423,NL +3589037424,3589037439,ES +3589037440,3589037487,NL +3589037488,3589037495,ES +3589037496,3589037503,CH +3589037504,3589037535,NL +3589037536,3589037551,ES +3589037552,3589037559,BE +3589037560,3589037567,NL +3589037568,3589038079,ES +3589038080,3589040127,NL +3589040128,3589042207,ES +3589042208,3589042367,NL +3589042368,3589043231,ES +3589043232,3589043327,NL +3589043328,3589043455,ES +3589043456,3589043711,NL +3589043712,3589044223,ES +3589044224,3589044319,NL +3589044320,3589046271,ES +3589046272,3589051503,NO +3589051504,3589051511,SE +3589051512,3589079039,NO +3589079040,3589092223,DK +3589092224,3589092227,SE +3589092228,3589128191,DK +3589128192,3589144575,GB +3589144576,3589152767,UA +3589152768,3589152927,DE +3589152928,3589152935,CH +3589152936,3589153027,DE +3589153028,3589153031,ES +3589153032,3589156591,DE +3589156592,3589156607,CH +3589156608,3589160959,DE +3589160960,3589177343,PL +3589177344,3589193727,TR +3589193728,3589210111,SE +3589210112,3589226495,NL +3589226496,3589230415,NO +3589230416,3589230431,DK +3589230432,3589230759,NO +3589230760,3589230775,GB +3589230776,3589242879,NO +3589242880,3589248511,NL +3589248512,3589248767,GB +3589248768,3589256191,NL +3589256192,3589256447,GR +3589256448,3589258495,NL +3589258496,3589258751,GB +3589258752,3589259263,NL +3589259264,3589269455,DE +3589269456,3589269471,AT +3589269472,3589275647,DE +3589275648,3589283327,CS +3589283328,3589283343,RS +3589283344,3589283535,CS +3589283536,3589283543,RS +3589283544,3589284975,CS +3589284976,3589285007,RS +3589285008,3589285047,CS +3589285048,3589285055,RS +3589285056,3589285087,CS +3589285088,3589285279,RS +3589285280,3589288015,CS +3589288016,3589288023,RS +3589288024,3589288127,CS +3589288128,3589288159,RS +3589288160,3589289855,CS +3589289856,3589289871,RS +3589289872,3589289879,CS +3589289880,3589289887,RS +3589289888,3589292031,CS +3589292032,3589308415,AT +3589308416,3589317887,DE +3589317888,3589317951,GB +3589317952,3589324799,DE +3589324800,3589341183,BG +3589341184,3589373951,PL +3589373952,3589375495,DE +3589375496,3589375503,CI +3589375504,3589390335,DE +3589390336,3589423103,RU +3589423104,3589423615,IT +3589423616,3589424127,CH +3589424128,3589424639,SE +3589424640,3589425151,ES +3589425152,3589425663,CH +3589425664,3589426175,GB +3589426176,3589426239,FR +3589426240,3589427199,GB +3589427200,3589427247,FR +3589427248,3589429247,GB +3589429248,3589429503,FR +3589429504,3589430271,GB +3589430272,3589430527,FR +3589430528,3589430655,GB +3589430656,3589430719,FR +3589430720,3589431039,GB +3589431040,3589431343,FR +3589431344,3589432319,GB +3589432320,3589432575,CH +3589432576,3589432895,FR +3589432896,3589433343,GB +3589433344,3589433375,IT +3589433376,3589433407,CH +3589433408,3589433439,SE +3589433440,3589433471,ES +3589433472,3589433503,CH +3589433504,3589433535,IE +3589433536,3589433567,DK +3589433568,3589433599,GB +3589433600,3589434111,IE +3589434112,3589434623,DK +3589434624,3589434751,GB +3589434752,3589434879,ES +3589434880,3589435391,FR +3589435392,3589435519,PL +3589435520,3589435647,GB +3589435648,3589435775,ES +3589435776,3589435903,GB +3589435904,3589436159,ES +3589436160,3589439487,GB +3589439488,3589444631,SE +3589444632,3589444639,NO +3589444640,3589455871,SE +3589455872,3589472255,RU +3589472256,3589488639,TR +3589488640,3589491711,RU +3589491712,3589491743,TJ +3589491744,3589505023,RU +3589505024,3589521407,FI +3589521408,3589537791,IT +3589537792,3589545983,FR +3589545984,3589554175,DE +3589554176,3589570559,PS +3589570560,3589570655,NL +3589570656,3589571327,GB +3589571328,3589571455,NL +3589571456,3589578751,GB +3589578752,3589579263,NL +3589579264,3589579775,GB +3589579776,3589580031,NL +3589580032,3589580127,GB +3589580128,3589580159,NL +3589580160,3589580287,GB +3589580288,3589580799,NL +3589580800,3589580895,GB +3589580896,3589581055,NL +3589581056,3589581199,GB +3589581200,3589581215,NL +3589581216,3589581327,GB +3589581328,3589581439,NL +3589581440,3589581567,GB +3589581568,3589581791,NL +3589581792,3589581823,GB +3589581824,3589582591,NL +3589582592,3589582607,GB +3589582608,3589582639,NL +3589582640,3589582655,GB +3589582656,3589583615,NL +3589583616,3589583647,GB +3589583648,3589583663,NL +3589583664,3589583743,GB +3589583744,3589583871,NL +3589583872,3589584127,GB +3589584128,3589584271,NL +3589584272,3589584639,GB +3589584640,3589585279,NL +3589585280,3589585407,GB +3589585408,3589585983,NL +3589585984,3589586431,GB +3589586432,3589586687,NL +3589586688,3589586943,GB +3589586944,3589597559,CS +3589597560,3589597567,RS +3589597568,3589603327,CS +3589603328,3589668863,FR +3589668864,3589677055,RU +3589677056,3589680287,FR +3589680288,3589680303,MQ +3589680304,3589680751,FR +3589680752,3589680767,MQ +3589680768,3589685247,FR +3589685248,3589718079,GB +3589718080,3589718087,BE +3589718088,3589718095,GB +3589718096,3589718103,BE +3589718104,3589718111,GB +3589718112,3589718159,BE +3589718160,3589718167,GB +3589718168,3589718175,BE +3589718176,3589718191,GB +3589718192,3589718239,BE +3589718240,3589718255,GB +3589718256,3589718303,BE +3589718304,3589718327,GB +3589718328,3589718351,BE +3589718352,3589718359,GB +3589718360,3589718431,BE +3589718432,3589718439,GB +3589718440,3589718447,BE +3589718448,3589718455,GB +3589718456,3589718591,BE +3589718592,3589718631,GB +3589718632,3589718639,BE +3589718640,3589718647,GB +3589718648,3589718655,BE +3589718656,3589718783,GB +3589718784,3589719095,BE +3589719096,3589719103,GB +3589719104,3589719247,BE +3589719248,3589719263,GB +3589719264,3589719271,BE +3589719272,3589719279,GB +3589719280,3589719343,BE +3589719344,3589719359,GB +3589719360,3589719391,BE +3589719392,3589719395,GB +3589719396,3589719463,BE +3589719464,3589719471,GB +3589719472,3589719503,BE +3589719504,3589719519,GB +3589719520,3589719527,BE +3589719528,3589719551,GB +3589719552,3589719655,BE +3589719656,3589719679,GB +3589719680,3589719711,BE +3589719712,3589719735,GB +3589719736,3589719775,BE +3589719776,3589719783,GB +3589719784,3589719855,BE +3589719856,3589719863,GB +3589719864,3589719871,BE +3589719872,3589719903,GB +3589719904,3589719971,BE +3589719972,3589719975,GB +3589719976,3589720071,BE +3589720072,3589720075,GB +3589720076,3589720151,BE +3589720152,3589720159,GB +3589720160,3589720207,BE +3589720208,3589720223,GB +3589720224,3589720263,BE +3589720264,3589720271,GB +3589720272,3589720575,BE +3589720576,3589720607,GB +3589720608,3589720655,BE +3589720656,3589720671,GB +3589720672,3589720695,BE +3589720696,3589720703,GB +3589720704,3589720727,BE +3589720728,3589720767,GB +3589720768,3589720791,BE +3589720792,3589720799,GB +3589720800,3589720823,BE +3589720824,3589720831,GB +3589720832,3589720855,BE +3589720856,3589720863,GB +3589720864,3589720887,BE +3589720888,3589720895,GB +3589720896,3589720911,BE +3589720912,3589720935,GB +3589720936,3589720959,BE +3589720960,3589720975,GB +3589720976,3589721015,BE +3589721016,3589721031,GB +3589721032,3589721055,BE +3589721056,3589721071,GB +3589721072,3589721103,BE +3589721104,3589721111,GB +3589721112,3589721143,BE +3589721144,3589721151,GB +3589721152,3589721155,BE +3589721156,3589721167,GB +3589721168,3589721215,BE +3589721216,3589721223,GB +3589721224,3589721247,BE +3589721248,3589721279,GB +3589721280,3589721295,BE +3589721296,3589721311,GB +3589721312,3589721375,BE +3589721376,3589721391,GB +3589721392,3589721575,BE +3589721576,3589721583,GB +3589721584,3589721607,BE +3589721608,3589721615,GB +3589721616,3589721647,BE +3589721648,3589721655,GB +3589721656,3589721671,BE +3589721672,3589721695,GB +3589721696,3589721711,BE +3589721712,3589721791,GB +3589721792,3589721831,BE +3589721832,3589721847,GB +3589721848,3589721855,BE +3589721856,3589721863,GB +3589721864,3589721879,BE +3589721880,3589721887,GB +3589721888,3589721895,BE +3589721896,3589721899,GB +3589721900,3589721951,BE +3589721952,3589721955,GB +3589721956,3589721967,BE +3589721968,3589721983,GB +3589721984,3589722023,BE +3589722024,3589722031,GB +3589722032,3589722059,BE +3589722060,3589722063,GB +3589722064,3589722111,BE +3589722112,3589722143,GB +3589722144,3589722151,BE +3589722152,3589722167,GB +3589722168,3589722175,BE +3589722176,3589722207,GB +3589722208,3589722247,BE +3589722248,3589722255,GB +3589722256,3589722279,BE +3589722280,3589722287,GB +3589722288,3589722295,BE +3589722296,3589722299,GB +3589722300,3589722351,BE +3589722352,3589722359,GB +3589722360,3589722395,BE +3589722396,3589722399,GB +3589722400,3589722439,BE +3589722440,3589722447,GB +3589722448,3589722511,BE +3589722512,3589722527,GB +3589722528,3589722607,BE +3589722608,3589722615,GB +3589722616,3589722639,BE +3589722640,3589722647,GB +3589722648,3589722655,BE +3589722656,3589722663,GB +3589722664,3589722691,BE +3589722692,3589722703,GB +3589722704,3589722799,BE +3589722800,3589722803,GB +3589722804,3589722807,BE +3589722808,3589722815,GB +3589722816,3589722835,BE +3589722836,3589722843,GB +3589722844,3589722855,BE +3589722856,3589722863,GB +3589722864,3589722871,BE +3589722872,3589722875,GB +3589722876,3589722883,BE +3589722884,3589722887,GB +3589722888,3589722943,BE +3589722944,3589722999,GB +3589723000,3589723023,BE +3589723024,3589723095,GB +3589723096,3589723391,BE +3589723392,3589723647,GB +3589723648,3589723775,BE +3589723776,3589723783,GB +3589723784,3589723791,BE +3589723792,3589723807,GB +3589723808,3589724031,BE +3589724032,3589724039,GB +3589724040,3589724047,BE +3589724048,3589724059,GB +3589724060,3589724063,BE +3589724064,3589724159,GB +3589724160,3589724271,BE +3589724272,3589724287,NL +3589724288,3589724367,BE +3589724368,3589724375,GB +3589724376,3589724423,BE +3589724424,3589724431,GB +3589724432,3589724607,BE +3589724608,3589724631,GB +3589724632,3589724671,BE +3589724672,3589724735,GB +3589724736,3589724775,BE +3589724776,3589724783,GB +3589724784,3589724791,BE +3589724792,3589724807,GB +3589724808,3589724823,BE +3589724824,3589724831,GB +3589724832,3589724839,BE +3589724840,3589724847,GB +3589724848,3589724863,BE +3589724864,3589724883,GB +3589724884,3589724887,BE +3589724888,3589724927,GB +3589724928,3589725023,BE +3589725024,3589725039,GB +3589725040,3589725135,BE +3589725136,3589725279,GB +3589725280,3589725295,BE +3589725296,3589725375,GB +3589725376,3589725383,BE +3589725384,3589725391,GB +3589725392,3589725407,BE +3589725408,3589725463,GB +3589725464,3589725495,BE +3589725496,3589725503,GB +3589725504,3589725567,BE +3589725568,3589725583,GB +3589725584,3589725591,BE +3589725592,3589725607,GB +3589725608,3589725615,BE +3589725616,3589725695,GB +3589725696,3589725759,BE +3589725760,3589725767,GB +3589725768,3589725775,BE +3589725776,3589725783,GB +3589725784,3589725791,BE +3589725792,3589725807,GB +3589725808,3589725831,BE +3589725832,3589725863,GB +3589725864,3589725879,BE +3589725880,3589725895,GB +3589725896,3589725903,BE +3589725904,3589725943,GB +3589725944,3589725959,BE +3589725960,3589725983,GB +3589725984,3589725999,BE +3589726000,3589726007,GB +3589726008,3589726023,BE +3589726024,3589726031,GB +3589726032,3589726047,BE +3589726048,3589726063,GB +3589726064,3589726071,BE +3589726072,3589726095,GB +3589726096,3589726111,BE +3589726112,3589726143,GB +3589726144,3589726167,BE +3589726168,3589726183,GB +3589726184,3589726191,BE +3589726192,3589726351,GB +3589726352,3589726359,BE +3589726360,3589726367,GB +3589726368,3589726391,BE +3589726392,3589726407,GB +3589726408,3589726415,BE +3589726416,3589726439,GB +3589726440,3589726447,BE +3589726448,3589726519,GB +3589726520,3589726527,BE +3589726528,3589726551,GB +3589726552,3589726599,BE +3589726600,3589726631,GB +3589726632,3589726655,BE +3589726656,3589726663,GB +3589726664,3589726671,BE +3589726672,3589726783,GB +3589726784,3589726791,BE +3589726792,3589726847,GB +3589726848,3589726911,BE +3589726912,3589726975,GB +3589726976,3589726983,BE +3589726984,3589727007,GB +3589727008,3589727015,BE +3589727016,3589727055,GB +3589727056,3589727063,BE +3589727064,3589727071,GB +3589727072,3589727095,BE +3589727096,3589727127,GB +3589727128,3589727143,BE +3589727144,3589727159,GB +3589727160,3589727183,BE +3589727184,3589727215,GB +3589727216,3589727223,BE +3589727224,3589727295,GB +3589727296,3589727431,BE +3589727432,3589727439,GB +3589727440,3589727447,BE +3589727448,3589727455,GB +3589727456,3589727487,BE +3589727488,3589727743,GB +3589727744,3589727759,BE +3589727760,3589727999,GB +3589728000,3589728255,BE +3589728256,3589729111,GB +3589729112,3589729127,BE +3589729128,3589729183,GB +3589729184,3589729191,BE +3589729192,3589729215,GB +3589729216,3589729287,BE +3589729288,3589729295,GB +3589729296,3589729311,BE +3589729312,3589729343,GB +3589729344,3589729407,BE +3589729408,3589729559,GB +3589729560,3589729567,BE +3589729568,3589729583,GB +3589729584,3589729607,BE +3589729608,3589729631,GB +3589729632,3589729647,BE +3589729648,3589729679,GB +3589729680,3589729703,BE +3589729704,3589729751,GB +3589729752,3589729775,BE +3589729776,3589729799,GB +3589729800,3589729815,BE +3589729816,3589729823,GB +3589729824,3589729855,BE +3589729856,3589729895,GB +3589729896,3589729903,BE +3589729904,3589729919,GB +3589729920,3589729935,BE +3589729936,3589729951,GB +3589729952,3589729959,BE +3589729960,3589729975,GB +3589729976,3589729983,BE +3589729984,3589729991,GB +3589729992,3589730015,BE +3589730016,3589730031,GB +3589730032,3589730039,BE +3589730040,3589730047,GB +3589730048,3589730055,BE +3589730056,3589730063,GB +3589730064,3589730071,BE +3589730072,3589730079,GB +3589730080,3589730095,BE +3589730096,3589730103,GB +3589730104,3589730111,BE +3589730112,3589730119,GB +3589730120,3589730135,BE +3589730136,3589730143,GB +3589730144,3589730151,BE +3589730152,3589730159,GB +3589730160,3589730175,BE +3589730176,3589730279,GB +3589730280,3589730287,BE +3589730288,3589730295,GB +3589730296,3589730815,BE +3589730816,3589731455,GB +3589731456,3589731599,BE +3589731600,3589731607,GB +3589731608,3589731615,BE +3589731616,3589731623,GB +3589731624,3589731631,BE +3589731632,3589731679,GB +3589731680,3589731687,BE +3589731688,3589731695,GB +3589731696,3589731719,BE +3589731720,3589731735,GB +3589731736,3589731783,BE +3589731784,3589731791,GB +3589731792,3589731799,BE +3589731800,3589731831,GB +3589731832,3589731839,BE +3589731840,3589732111,GB +3589732112,3589732243,BE +3589732244,3589732255,GB +3589732256,3589732287,BE +3589732288,3589732295,GB +3589732296,3589732303,BE +3589732304,3589732319,GB +3589732320,3589732327,BE +3589732328,3589732607,GB +3589732608,3589732719,BE +3589732720,3589732743,GB +3589732744,3589732767,BE +3589732768,3589732783,GB +3589732784,3589732863,BE +3589732864,3589733183,GB +3589733184,3589733191,BE +3589733192,3589733439,GB +3589733440,3589733455,BE +3589733456,3589733695,GB +3589733696,3589733711,BE +3589733712,3589733719,GB +3589733720,3589733727,BE +3589733728,3589734015,GB +3589734016,3589734055,BE +3589734056,3589734063,GB +3589734064,3589734119,BE +3589734120,3589734159,GB +3589734160,3589734271,BE +3589734272,3589734287,GB +3589734288,3589734295,BE +3589734296,3589734319,GB +3589734320,3589734327,BE +3589734328,3589734335,GB +3589734336,3589734391,BE +3589734392,3589734399,GB +3589742592,3589744895,NL +3589744896,3589744959,BE +3589744960,3589745119,NL +3589745120,3589745151,BE +3589745152,3589747047,NL +3589747048,3589747055,BE +3589747056,3589747071,NL +3589747072,3589747103,ES +3589747104,3589747167,NL +3589747168,3589747199,IE +3589747200,3589747327,NL +3589747328,3589747455,US +3589747456,3589767167,NL +3589767168,3589816319,RU +3589827072,3589827327,SE +3589827328,3589827583,FR +3589827584,3589827687,HU +3589827712,3589828095,DE +3589828096,3589828111,FR +3589828160,3589828607,FR +3589828608,3589828639,SE +3589828640,3589828671,NL +3589828736,3589828863,NL +3589829120,3589829183,GB +3589829376,3589829887,GB +3589830144,3589830655,GB +3589830656,3589831167,DE +3589831168,3589831679,US +3589831680,3589832703,FR +3589832704,3589849087,TR +3589849088,3589865471,GB +3589865472,3589881855,GR +3589881856,3589890047,NL +3589890048,3589890175,BE +3589890176,3589890303,GB +3589890304,3589890367,BE +3589890368,3589890431,GB +3589890432,3589890559,BE +3589890560,3589890687,GB +3589890688,3589891327,BE +3589891328,3589891615,GB +3589891616,3589891631,BE +3589891632,3589931007,GB +3589931008,3589947391,SI +3589947392,3589963775,FI +3589963776,3589971231,ES +3589971232,3589971247,CA +3589971248,3589980159,ES +3589980160,3589996543,CZ +3589996544,3589996623,NL +3589996624,3589996639,GB +3589996640,3589996655,NL +3589996656,3589996703,GB +3589996704,3589996799,NL +3589996800,3589996863,GB +3589996864,3589996879,NL +3589996880,3589996911,GB +3589996912,3589996931,NL +3589996932,3589996959,GB +3589996960,3589996991,NL +3589996992,3589997055,GB +3589997056,3589997311,NL +3589997312,3589997439,GB +3589997440,3589997503,NL +3589997504,3589997535,GB +3589997536,3589997543,NL +3589997544,3589997559,GB +3589997560,3589997567,NL +3589997568,3590012927,GB +3590012928,3590029311,BE +3590029312,3590045695,FR +3590045696,3590053887,RU +3590053888,3590057983,UA +3590057984,3590062079,RU +3590062080,3590078463,DE +3590078464,3590094847,RU +3590094848,3590111231,DE +3590111232,3590113023,LT +3590113024,3590113279,LV +3590113280,3590127615,LT +3590127616,3590128127,GB +3590128128,3590128383,FR +3590128384,3590128639,GB +3590128640,3590128895,IT +3590128896,3590129151,NL +3590129152,3590135551,GB +3590135552,3590135807,ES +3590135808,3590137855,GB +3590137856,3590138111,PT +3590138112,3590143999,GB +3590144000,3590151143,SI +3590151144,3590151151,HR +3590151152,3590154047,SI +3590154048,3590154063,HR +3590154064,3590155799,SI +3590155800,3590155807,HR +3590155808,3590155815,SI +3590155816,3590155823,HR +3590155824,3590156287,SI +3590156288,3590156959,HR +3590156960,3590156991,AE +3590156992,3590157311,HR +3590157312,3590157335,CS +3590157336,3590157343,RS +3590157344,3590157439,SI +3590157440,3590157471,RS +3590157472,3590157567,CS +3590157568,3590157631,SI +3590157632,3590157647,RS +3590157648,3590157655,CS +3590157656,3590157663,RS +3590157664,3590157671,CS +3590157672,3590157679,RS +3590157680,3590157695,SI +3590157696,3590157727,CS +3590157728,3590157735,RS +3590157736,3590157743,SI +3590157744,3590157759,RS +3590157760,3590157775,SI +3590157776,3590157783,RS +3590157784,3590157823,SI +3590157824,3590157831,CS +3590157832,3590157839,RS +3590157840,3590158343,CS +3590158344,3590158399,SI +3590158400,3590158407,RS +3590158408,3590158439,CS +3590158440,3590158447,SI +3590158448,3590158455,RS +3590158456,3590158479,CS +3590158480,3590158495,SI +3590158496,3590158503,RS +3590158504,3590158527,SI +3590158528,3590158535,RS +3590158536,3590158591,SI +3590158592,3590159359,CS +3590159360,3590160383,SI +3590160384,3590176767,GB +3590176768,3590178615,HU +3590178616,3590178623,MK +3590178624,3590193151,HU +3590193152,3590201343,IT +3590201344,3590209535,DE +3590209536,3590225919,ES +3590225920,3590234111,TR +3590234112,3590242303,GB +3590242304,3590244351,US +3590244352,3590244863,DE +3590244864,3590245119,GR +3590245120,3590245183,BE +3590245184,3590245215,FR +3590245216,3590245279,DE +3590245280,3590245311,BE +3590245312,3590245439,DE +3590245440,3590245503,FR +3590245504,3590245567,GB +3590245568,3590245631,US +3590245632,3590245887,FR +3590245888,3590245983,US +3590245984,3590246175,FR +3590246176,3590246207,AU +3590246208,3590246271,FR +3590246272,3590246303,DE +3590246304,3590246399,FR +3590246400,3590247039,DE +3590247040,3590247055,IT +3590247056,3590247071,DE +3590247072,3590247087,IT +3590247088,3590247167,DE +3590247168,3590247231,US +3590247232,3590247295,IT +3590247296,3590247423,US +3590247424,3590247487,IT +3590247488,3590247551,US +3590247552,3590247679,IT +3590247680,3590247687,GB +3590247688,3590248447,DE +3590248448,3590248959,US +3590248960,3590249471,ES +3590249472,3590249983,IE +3590249984,3590250495,GR +3590250496,3590250751,IE +3590250752,3590251007,GR +3590251008,3590251263,IT +3590251264,3590251519,DE +3590251520,3590251551,ES +3590251552,3590251583,DE +3590251584,3590251647,US +3590251648,3590251775,DE +3590251776,3590251839,US +3590251840,3590251903,ES +3590251904,3590251967,US +3590251968,3590252543,ES +3590252544,3590253055,GB +3590253056,3590253375,DE +3590253376,3590253407,US +3590253408,3590254111,DE +3590254112,3590254127,IL +3590254128,3590254135,RU +3590254136,3590254143,DE +3590254144,3590254207,US +3590254208,3590254303,DE +3590254304,3590254335,US +3590254336,3590254591,DE +3590254592,3590254879,ES +3590254880,3590254911,DE +3590254912,3590254975,ES +3590254976,3590255047,DE +3590255048,3590255071,ES +3590255072,3590255103,DE +3590255104,3590255359,ES +3590255360,3590255935,DE +3590255936,3590255999,US +3590256000,3590256383,DE +3590256384,3590256639,IT +3590256640,3590256703,US +3590256704,3590256719,BE +3590256720,3590256735,DE +3590256736,3590256767,BE +3590256768,3590256895,DE +3590256896,3590257151,FR +3590257152,3590258431,DE +3590258432,3590258447,GB +3590258448,3590258463,DE +3590258464,3590258495,US +3590258496,3590258687,DE +3590258688,3590291455,IT +3590299648,3590307839,FI +3590307840,3590307903,CG +3590307904,3590307935,UA +3590307936,3590307951,GB +3590307952,3590307967,NG +3590307968,3590308031,GB +3590308032,3590308047,UG +3590308048,3590308055,KE +3590308056,3590308063,GB +3590308064,3590308071,ZW +3590308072,3590308079,GB +3590308080,3590308087,MW +3590308088,3590308095,AO +3590308096,3590308119,GB +3590308120,3590308127,IQ +3590308128,3590308151,GB +3590308152,3590308159,NG +3590308160,3590308167,ZM +3590308168,3590308175,GB +3590308176,3590308183,NG +3590308184,3590308231,IQ +3590308232,3590308247,GB +3590308248,3590308303,IQ +3590308304,3590308311,SO +3590308312,3590308319,IQ +3590308320,3590308327,GB +3590308328,3590308343,IQ +3590308344,3590308351,GB +3590308352,3590308607,CG +3590308608,3590308735,NG +3590308736,3590308767,GB +3590308768,3590308775,RW +3590308776,3590308783,ZA +3590308784,3590308799,ZW +3590308800,3590308807,GB +3590308808,3590308815,ZM +3590308816,3590308831,KE +3590308832,3590308839,ZW +3590308840,3590308847,ET +3590308848,3590308855,GB +3590308856,3590308911,NG +3590308912,3590308927,BI +3590308928,3590308951,GB +3590308952,3590308959,GH +3590308960,3590308991,GB +3590308992,3590308999,NG +3590309000,3590309007,UG +3590309008,3590309023,TZ +3590309024,3590309055,ZW +3590309056,3590309063,CD +3590309064,3590309071,TZ +3590309072,3590309079,MW +3590309080,3590309087,GH +3590309088,3590309103,NG +3590309104,3590309111,ZW +3590309112,3590309503,GB +3590309504,3590309511,NG +3590309512,3590309519,AO +3590309520,3590309527,NG +3590309528,3590309535,CM +3590309536,3590309543,SO +3590309544,3590309551,AM +3590309552,3590309559,UG +3590309560,3590309567,KE +3590309568,3590309575,GB +3590309576,3590309583,NG +3590309584,3590309591,ZW +3590309592,3590309599,SO +3590309600,3590309607,KE +3590309608,3590309615,GB +3590309616,3590309623,UG +3590309624,3590309631,ZW +3590309632,3590309655,IQ +3590309656,3590309671,GB +3590309672,3590309695,IQ +3590309696,3590309711,GB +3590309712,3590309719,IQ +3590309720,3590309727,GB +3590309728,3590309735,IQ +3590309736,3590309743,GB +3590309744,3590309751,IQ +3590309752,3590309887,GB +3590309888,3590310143,MW +3590310144,3590310159,MZ +3590310160,3590310175,GB +3590310176,3590310183,LR +3590310184,3590310191,IQ +3590310192,3590310199,CD +3590310200,3590310215,GB +3590310216,3590310287,IQ +3590310288,3590310288,GB +3590310289,3590310303,IQ +3590310304,3590310311,GH +3590310312,3590310319,IQ +3590310320,3590310327,ZW +3590310328,3590310335,GB +3590310336,3590310351,IQ +3590310352,3590310359,GB +3590310360,3590310399,IQ +3590310400,3590310655,UA +3590310656,3590311679,GB +3590311680,3590311935,YT +3590311936,3590312703,MW +3590312704,3590312799,GB +3590312800,3590312807,KE +3590312808,3590312815,GB +3590312816,3590312823,MW +3590312824,3590312831,GB +3590312832,3590312895,NG +3590312896,3590312903,ZA +3590312904,3590312911,AO +3590312912,3590312919,NG +3590312920,3590312927,GB +3590312928,3590312943,UG +3590312944,3590312951,NG +3590312952,3590312959,KE +3590312960,3590314623,GB +3590314624,3590314639,ET +3590314640,3590314655,GH +3590314656,3590314671,GB +3590314672,3590314679,UG +3590314680,3590314687,CG +3590314688,3590314703,NG +3590314704,3590314719,GB +3590314720,3590314727,TG +3590314728,3590314735,UG +3590314736,3590314743,NG +3590314744,3590314751,KE +3590314752,3590314767,GB +3590314768,3590314783,KE +3590314784,3590314799,GB +3590314800,3590314807,NG +3590314808,3590314815,GB +3590314816,3590314823,NG +3590314824,3590314831,ZW +3590314832,3590314879,GB +3590314880,3590314887,KE +3590314888,3590314895,NG +3590314896,3590314903,GB +3590314904,3590314911,KE +3590314912,3590314927,GH +3590314928,3590314943,NG +3590314944,3590314959,GB +3590314960,3590314967,NG +3590314968,3590314973,YT +3590314974,3590314975,GB +3590314976,3590314983,UG +3590314984,3590314991,MW +3590314992,3590316031,GB +3590316032,3590316039,TZ +3590316040,3590316047,GB +3590316048,3590316055,GH +3590316056,3590316071,IQ +3590316072,3590316079,GB +3590316080,3590316087,LB +3590316088,3590316127,IQ +3590316128,3590316151,NG +3590316152,3590316159,GR +3590316160,3590316183,IQ +3590316184,3590316191,GB +3590316192,3590316199,LY +3590316200,3590316215,IQ +3590316216,3590316223,ZM +3590316224,3590316231,IQ +3590316232,3590316255,GB +3590316256,3590316287,IQ +3590316288,3590316543,LB +3590316544,3590316559,GB +3590316560,3590316575,IQ +3590316576,3590316591,GB +3590316592,3590316599,IQ +3590316600,3590316607,GB +3590316608,3590316615,IQ +3590316616,3590316623,GR +3590316624,3590316632,IQ +3590316633,3590316647,GB +3590316648,3590316655,LY +3590316656,3590316663,IQ +3590316664,3590316671,LY +3590316672,3590316687,GB +3590316688,3590316695,IQ +3590316696,3590316719,GB +3590316720,3590316727,IQ +3590316728,3590316735,LB +3590316736,3590316751,GR +3590316752,3590316783,GB +3590316784,3590316791,IQ +3590316792,3590316799,GB +3590316800,3590317055,CS +3590317056,3590317311,NG +3590317312,3590317343,AO +3590317344,3590317407,GB +3590317408,3590317439,US +3590317440,3590317447,AM +3590317448,3590317455,LB +3590317456,3590317471,IQ +3590317472,3590317479,MW +3590317480,3590317487,US +3590317488,3590317495,IQ +3590317496,3590317503,LB +3590317504,3590317519,GB +3590317520,3590317527,LY +3590317528,3590317951,IQ +3590317952,3590318047,UA +3590318048,3590319167,GB +3590319168,3590319231,AE +3590319232,3590319335,GB +3590319336,3590319359,AE +3590319360,3590319423,GB +3590319424,3590319455,AE +3590319456,3590319967,GB +3590319968,3590319999,AE +3590320000,3590320127,GB +3590320128,3590320191,NG +3590320192,3590320199,LB +3590320200,3590320207,IQ +3590320208,3590320231,GB +3590320232,3590320239,IQ +3590320240,3590320247,GB +3590320248,3590320255,LB +3590320256,3590320263,LY +3590320264,3590320271,TZ +3590320272,3590320295,IQ +3590320296,3590320303,GB +3590320304,3590320335,IQ +3590320336,3590320343,UG +3590320344,3590320351,GB +3590320352,3590320367,IQ +3590320368,3590320375,GB +3590320376,3590320383,IQ +3590320384,3590321151,GB +3590321152,3590321663,IQ +3590321664,3590321679,GB +3590321680,3590321687,CM +3590321688,3590321695,IQ +3590321696,3590321711,ZW +3590321712,3590321727,IQ +3590321728,3590321791,GB +3590321792,3590321823,IQ +3590321824,3590321839,GB +3590321840,3590321855,US +3590321856,3590321887,IQ +3590321888,3590321919,CY +3590321920,3590321927,GB +3590321928,3590321935,IQ +3590321936,3590321943,LY +3590321944,3590321959,IQ +3590321960,3590321967,GB +3590321968,3590321983,TR +3590321984,3590321991,GB +3590321992,3590321999,LB +3590322000,3590322007,CY +3590322008,3590322015,IQ +3590322016,3590322023,GB +3590322024,3590322031,IQ +3590322032,3590322047,GB +3590322048,3590322055,NG +3590322056,3590322079,IQ +3590322080,3590322095,GB +3590322096,3590322103,IQ +3590322104,3590322111,GB +3590322112,3590322119,BJ +3590322120,3590322127,IQ +3590322128,3590322135,GH +3590322136,3590322151,GB +3590322152,3590322159,LY +3590322160,3590322167,GB +3590322168,3590322239,IQ +3590322240,3590322255,GB +3590322256,3590322271,RW +3590322272,3590322335,GB +3590322336,3590322351,MG +3590322352,3590322367,GB +3590322368,3590322375,LB +3590322376,3590322383,LY +3590322384,3590322391,LB +3590322392,3590322399,IQ +3590322400,3590322415,AO +3590322416,3590322423,LR +3590322424,3590322431,GB +3590322432,3590322559,LB +3590322560,3590322575,GB +3590322576,3590322687,LB +3590322688,3590323199,IQ +3590323200,3590323711,MW +3590323712,3590323903,GB +3590323904,3590323911,CD +3590323912,3590324223,GB +3590324224,3623890943,US +3623890944,3623891199,ZA +3623891200,3623891455,US +3623891456,3623891711,ZA +3623891712,3623891967,US +3623891968,3623892479,ZA +3623892480,3624054783,US +3624054784,3624056831,ZA +3624056832,3624181759,US +3624181760,3624182783,ZA +3624182784,3624206335,US +3624206336,3624208383,ZA +3624208384,3624255487,US +3624255488,3624257535,ZA +3624257536,3624271871,US +3624271872,3624272383,SY +3624272384,3624279039,CA +3624279040,3624279087,BD +3624279088,3624288255,CA +3624288256,3624290303,IN +3624290304,3624292351,CA +3624292352,3624292607,MF +3624292608,3624297471,CA +3624297472,3624298495,CO +3624298496,3624299519,PH +3624299520,3624303743,CA +3624303744,3624303759,ZA +3624303760,3624304639,CA +3624304640,3624321023,US +3624321024,3624325119,CA +3624325120,3624359679,US +3624359680,3624360703,AN +3624360704,3624384767,US +3624384768,3624385023,CA +3624385024,3624386559,US +3624386560,3624394751,CA +3624394752,3624435711,US +3624435712,3624452095,CA +3624452096,3624480767,US +3624480768,3624484863,CA +3624484864,3624529919,US +3624529920,3624534015,CA +3624534016,3624534271,PA +3624534272,3624536063,CA +3624536064,3624587263,US +3624587264,3624591359,JM +3624591360,3624730623,US +3624730624,3624796159,CA +3624796160,3624798207,US +3624798208,3624798975,CA +3624798976,3624799743,US +3624799744,3624799999,CA +3624800000,3624800767,US +3624800768,3624801023,CA +3624801024,3624803071,US +3624803072,3624803583,CA +3624803584,3624804607,US +3624804608,3624804863,CA +3624804864,3624807935,US +3624807936,3624808447,CA +3624808448,3624811519,US +3624811520,3624812287,CA +3624812288,3624820735,US +3624820736,3624820799,CY +3624820800,3624821695,US +3624821696,3624821703,GB +3624821704,3624828927,US +3624828928,3624833023,CA +3624833024,3624845311,US +3624845312,3624849407,AU +3624849408,3624903167,US +3624903168,3624903423,CA +3624903424,3624903679,US +3624903680,3624904703,CA +3624904704,3624905471,US +3624905472,3624905727,CA +3624905728,3624964095,US +3624976384,3624984575,US +3624984576,3624992767,CA +3624992768,3625019135,US +3625019136,3625019391,ES +3625019392,3625058303,US +3625058304,3625091071,CA +3625091072,3625099263,US +3625115648,3625116671,US +3625116672,3625116767,CA +3625116768,3625116775,US +3625116776,3625116927,CA +3625116928,3625117775,US +3625117776,3625117783,CA +3625117784,3625117791,US +3625117792,3625117799,CA +3625117800,3625117807,US +3625117808,3625117839,CA +3625117840,3625118233,US +3625118234,3625118241,CA +3625118242,3625118271,US +3625118272,3625118287,CA +3625118288,3625118975,US +3625118976,3625119056,PL +3625119057,3625140223,US +3625140224,3625148415,CA +3625148416,3625168895,US +3625168896,3625172991,CA +3625172992,3625254911,US +3625255168,3625255935,US +3625256448,3625257983,US +3625258752,3625259007,US +3625259264,3625259519,US +3625260032,3625287679,US +3625287680,3625295871,CA +3625295872,3625346047,US +3625346048,3625346303,AR +3625346304,3625418751,US +3625418752,3625420031,CA +3625420032,3625420543,US +3625420544,3625422591,CA +3625422592,3625423103,US +3625423104,3625426943,CA +3625426944,3625508863,US +3625508864,3625512959,CA +3625512960,3625517055,PR +3625517056,3625631743,US +3625631744,3625639935,CA +3625639936,3626025919,US +3626025920,3626025951,LT +3626025952,3626060735,US +3626060736,3626060743,BM +3626060744,3626061903,US +3626061904,3626061911,BM +3626061912,3626069279,US +3626069280,3626069311,NL +3626069312,3626072959,US +3626072960,3626072991,AE +3626072992,3626073439,US +3626073440,3626073455,AE +3626073456,3626108895,US +3626108896,3626108927,AU +3626108928,3626130415,US +3626130416,3626130431,CA +3626130432,3626140479,US +3626140480,3626140671,AU +3626140672,3626142623,US +3626142624,3626142639,AU +3626142640,3626184191,US +3626184192,3626184223,LT +3626184224,3626189359,US +3626189360,3626189367,NO +3626189368,3626189375,US +3626189376,3626189383,IL +3626189384,3626189431,US +3626189432,3626189439,IL +3626189440,3626191119,US +3626191120,3626191135,GB +3626191136,3626192639,US +3626192640,3626192703,CY +3626192704,3626192767,US +3626192768,3626192799,CH +3626192800,3626213439,US +3626213440,3626213471,GB +3626213472,3626227167,US +3626227168,3626227199,AR +3626227200,3626228463,US +3626228464,3626228479,AE +3626228480,3626270719,US +3626270720,3626287103,CA +3626287104,3626332159,US +3626336256,3626369023,US +3626377216,3626508287,US +3626508288,3626512383,CA +3626512384,3626524671,US +3626524672,3626532863,CA +3626532864,3626852351,US +3626852352,3626860543,CA +3626860544,3626893311,US +3626893312,3626905599,CA +3626909696,3626926079,US +3626926080,3626934271,CA +3626934272,3626967039,US +3626971136,3627044863,US +3627044864,3627048959,CA +3627048960,3627065343,US +3627065344,3627069439,CA +3627069440,3627387903,US +3627387904,3627388415,BR +3627388416,3627400319,US +3627400320,3627400351,BR +3627400352,3627401151,US +3627401152,3627401215,BR +3627401216,3627507711,US +3627507712,3627511807,CA +3627511808,3627532287,US +3627532288,3627544575,CA +3627544576,3627659263,US +3627659264,3627663359,CA +3627663360,3627665407,US +3627665408,3627665439,CA +3627665440,3627666719,US +3627666720,3627666751,CA +3627666752,3627679743,US +3627679744,3627712511,CA +3627712512,3627761663,US +3627778048,3627802623,US +3627802624,3627810815,CA +3627810816,3628123615,US +3628123616,3628123647,CA +3628123648,3628123711,BM +3628123712,3628123903,US +3628123904,3628123935,GB +3628123936,3628128703,US +3628128704,3628128719,CA +3628128720,3628129087,US +3628129088,3628129103,CA +3628129104,3628138751,US +3628138752,3628139007,GB +3628139008,3628139311,US +3628139312,3628139327,SG +3628139328,3628143615,US +3628143616,3628143871,GB +3628143872,3628153087,US +3628153088,3628153343,KW +3628153344,3628154239,US +3628154240,3628154303,PH +3628154304,3628154463,US +3628154464,3628154495,GB +3628154496,3628155647,US +3628155648,3628155903,CA +3628155904,3628156159,US +3628156160,3628156415,GB +3628156416,3628164479,US +3628164480,3628164607,GB +3628164608,3628179455,US +3628179456,3628187647,CA +3628187648,3628208127,US +3628208128,3628208383,IT +3628208384,3628236799,US +3628236800,3628257279,CA +3628257280,3628598271,US +3628598272,3628599295,CO +3628599296,3628603391,CL +3628603392,3628604415,US +3628604416,3628605439,GT +3628605440,3628608511,IL +3628608512,3628609023,VE +3628609024,3628616191,US +3628616192,3628617215,PR +3628617216,3628617471,HN +3628617472,3628617727,US +3628617728,3628618239,CO +3628618240,3628618495,US +3628618496,3628619775,HN +3628619776,3628622847,US +3628622848,3628623871,PR +3628623872,3628625919,NG +3628625920,3628626175,US +3628626176,3628626943,HN +3628626944,3628627199,CO +3628627200,3628627455,IL +3628627456,3628627711,HN +3628627712,3628627967,US +3628627968,3628628991,SV +3628628992,3628629247,GT +3628629248,3628629759,US +3628629760,3628631807,VE +3628631808,3628634111,US +3628634112,3628636159,AR +3628636160,3628636671,VE +3628636672,3628638207,US +3628638208,3628646399,CL +3628646400,3628646911,US +3628646912,3628647423,HN +3628647424,3628647679,US +3628647680,3628649727,CO +3628649728,3628655103,US +3628655104,3628655359,VE +3628655360,3628657407,CO +3628657408,3628657663,US +3628657664,3628657919,VE +3628657920,3628679167,US +3628679168,3628683263,CA +3628683264,3628762335,US +3628762336,3628762367,IL +3628762368,3628762519,US +3628762520,3628762527,CY +3628762528,3628766143,US +3628766144,3628766151,GB +3628766152,3628767039,US +3628767040,3628767055,IE +3628767056,3628767135,US +3628767136,3628767167,GB +3628767168,3628767695,US +3628767696,3628767703,NO +3628767704,3628768223,US +3628768224,3628768239,NO +3628768240,3628770207,US +3628770208,3628770215,NO +3628770216,3628770367,US +3628770368,3628770383,CY +3628770384,3628771455,US +3628771456,3628771647,GB +3628771648,3628771839,US +3628771840,3628772095,NO +3628772096,3628772415,US +3628772416,3628772431,CA +3628772432,3628772447,GB +3628772448,3628834815,US +3628834816,3628843007,CA +3628843008,3629187071,US +3629187072,3629195263,CA +3629195264,3629199359,US +3629199360,3629203455,CA +3629203456,3629318143,US +3629318144,3629326335,CA +3629326336,3629331967,US +3629331968,3629332479,CA +3629332480,3629539327,US +3629539328,3629547519,CA +3629547520,3629662207,US +3629662208,3629662463,GB +3629662464,3629735943,US +3629735944,3629735951,CA +3629735952,3629736119,US +3629736120,3629736127,CA +3629736128,3629737215,US +3629737216,3629737471,CA +3629737472,3629761551,US +3629761552,3629761567,CA +3629761568,3629767935,US +3629767936,3629768191,CA +3629768192,3629789439,US +3629789440,3629789695,CA +3629789696,3629789951,US +3629789952,3629790207,CA +3629790208,3629808095,US +3629808096,3629808127,CA +3629808128,3629838551,US +3629838552,3629838559,CA +3629838560,3629838583,US +3629838584,3629838591,CA +3629838592,3629841951,US +3629841952,3629841983,CA +3629841984,3629859551,US +3629859552,3629859583,CA +3629859584,3629875775,US +3629875776,3629875807,CA +3629875808,3629876255,US +3629876256,3629876263,CA +3629876264,3630039039,US +3630039040,3630039295,CA +3630039296,3630040063,US +3630040064,3630040319,CA +3630040320,3630040575,US +3630040576,3630040831,CA +3630040832,3630041343,US +3630041344,3630041599,CA +3630041600,3630041863,US +3630041864,3630041871,CA +3630041872,3630041911,US +3630041912,3630041919,CA +3630041920,3630042095,US +3630042096,3630042103,CA +3630042104,3630042391,US +3630042392,3630042399,CA +3630042400,3630042463,US +3630042464,3630042471,CA +3630042472,3630042479,US +3630042480,3630042487,CA +3630042488,3630042599,US +3630042600,3630042607,CA +3630042608,3630044927,US +3630044928,3630045183,CA +3630045184,3630045695,US +3630045696,3630046207,CA +3630046208,3630046591,US +3630046592,3630047231,CA +3630047232,3630048767,US +3630048768,3630049023,CA +3630049024,3630049279,US +3630049280,3630049535,CA +3630049536,3630050479,US +3630050480,3630050487,CA +3630050488,3630050527,US +3630050528,3630050535,CA +3630050536,3630050559,US +3630050560,3630050815,CA +3630050816,3630051839,US +3630051840,3630052351,CA +3630052352,3630054655,US +3630054656,3630055167,CA +3630055168,3630055615,US +3630055616,3630055647,CA +3630055648,3630055935,US +3630055936,3630056959,CA +3630056960,3630060223,US +3630060224,3630060287,CA +3630060288,3630062847,US +3630062848,3630063103,CA +3630063104,3630066175,US +3630066176,3630066431,CA +3630066432,3630066687,US +3630066688,3630067967,CA +3630067968,3630069503,US +3630069504,3630069759,CA +3630069760,3630070783,US +3630070784,3630071039,CA +3630071040,3630073087,US +3630073088,3630073343,CA +3630073344,3630073599,US +3630073600,3630073855,CA +3630073856,3630074543,US +3630074544,3630074551,CA +3630074552,3630074607,US +3630074608,3630074615,CA +3630074616,3630074815,US +3630074816,3630074879,CA +3630074880,3630075391,US +3630075392,3630075647,CA +3630075648,3630077183,US +3630077184,3630077439,CA +3630077440,3630077951,US +3630077952,3630078015,CA +3630078016,3630078463,US +3630078464,3630078719,CA +3630078720,3630080511,US +3630080512,3630080575,CA +3630080576,3630081279,US +3630081280,3630081535,CA +3630081536,3630082047,US +3630082048,3630082303,CA +3630082304,3630085119,US +3630085120,3630085375,CA +3630085376,3630088703,US +3630088704,3630088959,CA +3630088960,3630089471,US +3630089472,3630090239,CA +3630090240,3630091263,US +3630091264,3630091519,CA +3630091520,3630092031,US +3630092032,3630092287,CA +3630092288,3630093439,US +3630093440,3630093447,CA +3630093448,3630093527,US +3630093528,3630093535,CA +3630093536,3630094591,US +3630094592,3630094847,CA +3630094848,3630095015,US +3630095016,3630095023,CA +3630095024,3630095039,US +3630095040,3630095047,CA +3630095048,3630097663,US +3630097664,3630098175,KW +3630098176,3630098687,US +3630098688,3630100223,CA +3630100224,3630100479,KW +3630100480,3630102783,US +3630102784,3630103807,CA +3630103808,3630141503,US +3630141504,3630141567,CA +3630141568,3630142463,US +3630142464,3630143231,CA +3630143232,3630143615,US +3630143616,3630143647,CA +3630143648,3630143711,US +3630143712,3630143743,CA +3630143744,3630144511,US +3630144512,3630145023,CA +3630145024,3630145535,US +3630145536,3630145791,CA +3630145792,3630146047,US +3630146048,3630146815,CA +3630146816,3630147327,US +3630147328,3630147583,CA +3630147584,3630149535,US +3630149536,3630149567,CA +3630149568,3630149631,US +3630149632,3630149887,CA +3630149888,3630150911,US +3630150912,3630151167,CA +3630151168,3630151455,US +3630151456,3630151487,CA +3630151488,3630151615,US +3630151616,3630151647,CA +3630151648,3630151679,US +3630151680,3630152191,CA +3630152192,3630152447,US +3630152448,3630152703,CA +3630152704,3630156031,US +3630156032,3630156287,CA +3630156288,3630156543,US +3630156544,3630156799,CA +3630156800,3630157055,US +3630157056,3630157311,CA +3630157312,3630157567,US +3630157568,3630158087,CA +3630158088,3630158231,US +3630158232,3630158239,CA +3630158240,3630158303,US +3630158304,3630158311,CA +3630158312,3630159007,US +3630159008,3630159071,CA +3630159072,3630159103,US +3630159104,3630159359,CA +3630159360,3630160487,US +3630160488,3630160495,CA +3630160496,3630160591,US +3630160592,3630160599,CA +3630160600,3630160607,US +3630160608,3630160895,CA +3630160896,3630161151,US +3630161152,3630161919,CA +3630161920,3630162687,US +3630162688,3630162943,CA +3630162944,3630163887,US +3630163888,3630163895,CA +3630163896,3630164223,US +3630164224,3630164735,CA +3630164736,3630164783,US +3630164784,3630164799,CA +3630164800,3630164815,US +3630164816,3630164831,CA +3630164832,3630165247,US +3630165248,3630165759,CA +3630165760,3630166015,US +3630166016,3630166527,CA +3630166528,3630166687,US +3630166688,3630166719,CA +3630166720,3630167583,US +3630167584,3630167615,CA +3630167616,3630167711,US +3630167712,3630167743,CA +3630167744,3630167807,US +3630167808,3630167823,CA +3630167824,3630167903,US +3630167904,3630167911,CA +3630167912,3630168319,US +3630168320,3630169087,CA +3630169088,3630309375,US +3630309376,3630317567,CA +3630317568,3630370815,US +3630372864,3630374911,US +3630374912,3630383103,CA +3630383104,3630391295,US +3630391296,3630395391,CA +3630395392,3630718975,US +3630718976,3630727167,CA +3630727168,3630746879,US +3630746880,3630747391,TZ +3630747392,3630772223,US +3630776320,3630780415,US +3630780416,3630784511,CA +3630784512,3630850047,US +3630850048,3630854143,CA +3630854144,3630956543,US +3630956544,3631005695,CA +3631005696,3631039439,US +3631039440,3631039455,CA +3631039456,3631039487,US +3631039488,3631039743,CA +3631039744,3631043663,US +3631043664,3631043679,CA +3631043680,3631043759,US +3631043760,3631043767,CA +3631043768,3631045631,US +3631045632,3631045759,CA +3631045760,3631045983,US +3631045984,3631045991,CA +3631045992,3631112191,US +3631112192,3631112703,VC +3631112704,3631116543,BB +3631116544,3631117567,GD +3631117568,3631117823,BB +3631117824,3631118079,GD +3631118080,3631119103,VC +3631119104,3631119615,BB +3631119616,3631120383,GD +3631120384,3631144959,US +3631144960,3631153151,CA +3631153152,3631284223,US +3631284224,3631316991,CA +3631316992,3631333375,US +3631333376,3631333679,CA +3631333680,3631333695,US +3631333696,3631341567,CA +3631341568,3631357951,US +3631366144,3631480831,US +3631480832,3631484927,CA +3631484928,3631644671,US +3631644672,3631652863,CA +3631652864,3631663151,US +3631663152,3631663159,CA +3631663160,3631665151,US +3631665152,3631669247,CA +3631669248,3631714303,US +3631718400,3631841279,US +3631841280,3631874047,CA +3631874048,3631939583,US +3631939584,3632005119,CA +3632005120,3632136191,US +3632136192,3632144383,CA +3632144384,3632152575,US +3632152576,3632168959,CA +3632168960,3632197631,US +3632197632,3632201727,CA +3632201728,3632230399,US +3632234496,3632332799,US +3632332800,3632357375,CA +3632357376,3632370559,US +3632370560,3632370575,NG +3632370576,3632373503,US +3632373504,3632373759,NG +3632373760,3632381951,US +3632381952,3632390143,CA +3632390144,3632414719,US +3632414720,3632422911,CA +3632422912,3632447487,US +3632455680,3632467967,US +3632470016,3632826495,US +3632826496,3632826511,CN +3632826512,3632833231,US +3632833232,3632833247,CN +3632833248,3632837135,US +3632837136,3632837151,IN +3632837152,3632838399,US +3632838400,3632838431,TW +3632838432,3632838583,US +3632838584,3632838591,CN +3632838592,3632847279,US +3632847280,3632847295,CN +3632847296,3632857087,US +3632857088,3632861183,BS +3632861184,3632881663,US +3632881664,3632889855,CA +3632889856,3632898047,US +3632898048,3632902143,CA +3632902144,3632971775,US +3632971776,3632988159,CA +3632988160,3633030159,US +3633030160,3633030167,ZA +3633030168,3633030175,US +3633030176,3633030183,ZA +3633030184,3633030191,US +3633030192,3633030199,ZA +3633030200,3633030207,US +3633030208,3633030215,ZA +3633030216,3633030223,NG +3633030224,3633030231,ZA +3633030232,3633030287,US +3633030288,3633030303,ZA +3633030304,3633030335,US +3633030336,3633030359,ZA +3633030360,3633030655,US +3633030656,3633030911,SN +3633030912,3633031615,US +3633031616,3633031623,ZA +3633031624,3633031647,US +3633031648,3633031655,NG +3633031656,3633031959,US +3633031960,3633031967,NL +3633031968,3633031983,US +3633031984,3633031991,PG +3633031992,3633032087,US +3633032088,3633032095,NL +3633032096,3633032167,US +3633032168,3633032175,NL +3633032176,3633032223,US +3633032224,3633032231,NG +3633032232,3633032239,US +3633032240,3633032247,ZA +3633032248,3633032271,US +3633032272,3633032279,ZA +3633032280,3633032287,US +3633032288,3633032319,GQ +3633032320,3633032415,US +3633032416,3633032431,NG +3633032432,3633032439,US +3633032440,3633032447,ZA +3633032448,3633032591,US +3633032592,3633032607,ZA +3633032608,3633033247,US +3633033248,3633033255,ZA +3633033256,3633033263,US +3633033264,3633033271,ZA +3633033272,3633033287,US +3633033288,3633033295,GH +3633033296,3633033303,NG +3633033304,3633033319,ZA +3633033320,3633033327,NG +3633033328,3633033335,US +3633033336,3633033359,ZA +3633033360,3633033367,NG +3633033368,3633033375,ZA +3633033376,3633033391,NG +3633033392,3633033399,ZA +3633033400,3633034047,US +3633034048,3633034079,ZA +3633034080,3633034519,US +3633034520,3633034527,NG +3633034528,3633034559,US +3633034560,3633034751,NG +3633034752,3633035015,US +3633035016,3633035023,NL +3633035024,3633035071,US +3633035072,3633035087,NR +3633035088,3633035095,CN +3633035096,3633035135,US +3633035136,3633035151,NR +3633035152,3633035199,US +3633035200,3633035207,ID +3633035208,3633035311,US +3633035312,3633035319,ID +3633035320,3633035439,US +3633035440,3633035447,ID +3633035448,3633035455,US +3633035456,3633035487,ID +3633035488,3633035527,US +3633035528,3633035535,NG +3633035536,3633035551,US +3633035552,3633035599,ZA +3633035600,3633036031,US +3633036032,3633036287,HT +3633036288,3633036479,US +3633036480,3633036511,TT +3633036512,3633036607,US +3633036608,3633036671,GB +3633036672,3633039503,US +3633039504,3633039519,CA +3633039520,3633336319,US +3633336320,3633340415,KY +3633340416,3633344511,US +3633344512,3633348607,CA +3633348608,3633379327,US +3633381376,3633405951,US +3633405952,3633410047,CA +3633410048,3633479679,US +3633479680,3633483775,CA +3633483776,3633504255,US +3633508352,3633545215,US +3633545216,3633545727,GA +3633545728,3633546495,US +3633546496,3633546751,GA +3633546752,3633547263,US +3633547264,3633548287,GA +3633548288,3633548543,US +3633548544,3633548799,GA +3633548800,3633548927,US +3633548928,3633549055,GA +3633549056,3633552911,US +3633552912,3633552927,GA +3633552928,3633553151,US +3633553152,3633553279,GW +3633553280,3633783295,US +3633783552,3633783807,US +3633784064,3633784319,US +3633784576,3633785087,US +3633785600,3633786367,US +3633786880,3633815551,US +3633815552,3633819647,CA +3633819648,3633823743,US +3633831936,3633852415,US +3633856512,3633881087,US +3633881088,3633885183,AN +3633885184,3633889279,US +3633889280,3633893375,CA +3633893376,3633971199,US +3633971200,3634020351,CA +3634020352,3634053119,US +3634053120,3634061311,CL +3634061312,3634511871,US +3634511872,3634515967,CA +3634515968,3634524159,US +3634528256,3634552831,US +3634552832,3634556927,CA +3634556928,3634880511,US +3634880512,3634888703,CA +3634888704,3634913279,US +3634913280,3634921471,CA +3634921472,3634925567,US +3634925568,3634929663,CA +3634929664,3635109887,US +3635109888,3635110295,CA +3635110296,3635110303,US +3635110304,3635113983,CA +3635113984,3635142655,US +3635142656,3635146751,CA +3635146752,3635150847,US +3635216384,3635253247,US +3635257344,3635314687,US +3635314688,3635322879,CA +3635322880,3635412991,US +3635425280,3635429375,CA +3635429376,3635458527,US +3635458528,3635458543,CH +3635458544,3635460031,US +3635460032,3635460095,CH +3635460096,3635460543,US +3635460544,3635460575,CH +3635460576,3635460799,US +3635460800,3635460831,CH +3635460832,3635466239,US +3635466240,3635470335,CA +3635470336,3635515391,US +3635519488,3635658751,US +3635658752,3635660799,CN +3635660800,3635847791,US +3635847792,3635847807,CA +3635847808,3635856511,US +3635856512,3635856543,CA +3635856544,3635871743,US +3635871744,3635879935,CA +3635879936,3635892223,US +3635892224,3635896319,CA +3635896320,3635904511,US +3635904512,3635912703,CA +3635912704,3635924991,US +3635929088,3635961855,US +3635961856,3635963903,SV +3635963904,3635964159,US +3635964160,3635964415,BO +3635964416,3635965951,SV +3635965952,3635966975,BO +3635966976,3635967999,PY +3635968000,3635970047,SV +3635970048,3636019199,US +3636019200,3636027391,CA +3636027392,3636064255,US +3636064256,3636068351,CA +3636068352,3636152287,US +3636152288,3636152575,CA +3636152576,3636154367,US +3636154368,3636154879,CA +3636154880,3636157055,US +3636157056,3636157063,CA +3636157064,3636158111,US +3636158112,3636158143,CA +3636158144,3636158463,US +3636158464,3636158719,CA +3636158720,3636158783,US +3636158784,3636158815,CA +3636158816,3636160511,US +3636160512,3636160767,CA +3636160768,3636161791,US +3636161792,3636161855,CA +3636161856,3636164095,US +3636164096,3636164111,VG +3636164112,3636164159,US +3636164160,3636164223,CA +3636164224,3636166143,US +3636166144,3636166655,CA +3636166656,3636206079,US +3636206080,3636206335,AU +3636206336,3636396031,US +3636396032,3636461567,CA +3636461568,3636609023,US +3636609024,3636610559,CA +3636610560,3636610815,US +3636610816,3636621311,CA +3636621312,3636822015,US +3636822016,3636854783,CA +3636854784,3636887551,US +3636887552,3636895743,CA +3636895744,3637071935,US +3637071936,3637071943,SK +3637071944,3637071951,US +3637071952,3637071967,CY +3637071968,3637072095,US +3637072096,3637072127,GB +3637072128,3637072143,US +3637072144,3637072159,CY +3637072160,3637072895,US +3637072896,3637073151,CY +3637073152,3637073215,US +3637073216,3637073231,CY +3637073232,3637074239,US +3637074240,3637074303,PA +3637074304,3637074687,US +3637074688,3637074703,CA +3637074704,3637074751,US +3637074752,3637074815,PA +3637074816,3637074943,US +3637074944,3637074959,CA +3637074960,3637074975,US +3637074976,3637075007,PA +3637075008,3637075231,US +3637075232,3637075263,PA +3637075264,3637075487,US +3637075488,3637075519,PA +3637075520,3637075743,US +3637075744,3637075775,PA +3637075776,3637075967,US +3637075968,3637080063,CA +3637080064,3637389335,US +3637389336,3637389343,CA +3637389344,3637510143,US +3637510144,3637641215,CA +3637641216,3637661695,US +3637665792,3637667439,CA +3637667440,3637667518,US +3637667519,3637669887,CA +3637669888,3637706751,US +3637706752,3637739519,CA +3637739520,3638165503,US +3638165504,3638181887,CA +3638181888,3638231039,US +3638247424,3638247439,US +3638247440,3638247455,GB +3638247456,3638247487,US +3638247488,3638247551,GB +3638247552,3638247679,DE +3638247680,3638247855,US +3638247856,3638247871,DE +3638247872,3638247903,US +3638247904,3638248703,GB +3638248704,3638249215,US +3638249216,3638249471,GB +3638249472,3638249751,US +3638249752,3638249791,GB +3638249792,3638250535,US +3638250536,3638250543,GB +3638250544,3638250559,US +3638250560,3638250623,GB +3638250624,3638250687,US +3638250688,3638250703,GB +3638250704,3638250719,US +3638250720,3638250815,GB +3638250816,3638250831,US +3638250832,3638250847,GB +3638250848,3638250863,US +3638250864,3638250871,GB +3638250872,3638250895,US +3638250896,3638250911,GB +3638250912,3638250919,CH +3638250920,3638250983,US +3638250984,3638250991,GB +3638250992,3638304767,US +3638304768,3638312959,CA +3638312960,3638370303,US +3638370304,3638386687,CA +3638386688,3638509567,US +3638509568,3638534143,CA +3638534144,3638697983,US +3638697984,3638706175,CA +3638706176,3638796287,US +3638804480,3638874111,US +3638874112,3638878207,CA +3638878208,3638898687,US +3638902784,3638915071,US +3638919168,3638960383,US +3638960384,3638960639,BR +3638960640,3638984703,US +3638984704,3638992895,GT +3638992896,3639083007,US +3639083008,3639148543,CA +3639148544,3639222271,US +3639222272,3639230463,CA +3639230464,3639255039,US +3639255040,3639258677,CA +3639258678,3639258678,IL +3639258679,3639263231,CA +3639263232,3639279615,US +3639279616,3639283711,CA +3639283712,3639390207,US +3639394304,3639396351,US +3639396352,3639396383,NE +3639396384,3639396415,US +3639396416,3639396431,PK +3639396432,3639396447,US +3639396448,3639396463,NG +3639396464,3639396471,TZ +3639396472,3639396543,US +3639396544,3639396551,TZ +3639396552,3639396671,US +3639396672,3639396735,NE +3639396736,3639396863,US +3639396864,3639396879,NE +3639396880,3639396927,US +3639396928,3639396959,FR +3639396960,3639396975,NG +3639396976,3639396991,US +3639396992,3639397023,CD +3639397024,3639397119,US +3639397120,3639397375,IN +3639397376,3639397631,US +3639397632,3639397887,NG +3639397888,3639398527,US +3639398528,3639398591,SA +3639398592,3639400447,US +3639400448,3639401471,RS +3639401472,3639401495,PK +3639401496,3639401511,US +3639401512,3639401519,ID +3639401520,3639401535,US +3639401536,3639401551,TZ +3639401552,3639401559,LK +3639401560,3639401623,US +3639401624,3639401631,TZ +3639401632,3639401647,US +3639401648,3639401655,PK +3639401656,3639401687,US +3639401688,3639401727,PK +3639401728,3639402015,US +3639402016,3639402039,PK +3639402040,3639402055,US +3639402056,3639402071,PK +3639402072,3639402079,US +3639402080,3639402095,PK +3639402096,3639402111,US +3639402112,3639402175,NG +3639402176,3639402191,PK +3639402192,3639402199,US +3639402200,3639402207,PK +3639402208,3639402239,US +3639402240,3639402495,GH +3639402496,3639558143,US +3639558144,3639566335,CA +3639566336,3639582719,US +3639590912,3639607295,US +3639607296,3639611391,CA +3639611392,3639656447,US +3639656448,3639660543,CA +3639660544,3639664639,US +3639664640,3639668735,CA +3639672832,3639675391,CL +3639675392,3639676159,CO +3639676160,3639676447,CL +3639676448,3639676479,CO +3639676480,3639676575,CL +3639676576,3639676607,CO +3639676608,3639676655,CL +3639676656,3639676679,CO +3639676680,3639676687,CL +3639676688,3639676695,CO +3639676696,3639676703,CL +3639676704,3639676799,CO +3639676800,3639676807,CL +3639676808,3639676815,CO +3639676816,3639676831,CL +3639676832,3639676943,CO +3639676944,3639677023,CL +3639677024,3639677031,CO +3639677032,3639677103,CL +3639677104,3639677111,CO +3639677112,3639677423,CL +3639677424,3639677431,CO +3639677432,3639677455,CL +3639677456,3639677487,CO +3639677488,3639677711,CL +3639677712,3639677719,CO +3639677720,3639677791,CL +3639677792,3639677823,CO +3639677824,3639677871,CL +3639677872,3639677879,CO +3639677880,3639677959,CL +3639677960,3639677967,CO +3639677968,3639677983,CL +3639677984,3639677991,CO +3639677992,3639678007,CL +3639678008,3639678023,CO +3639678024,3639678055,CL +3639678056,3639678063,CO +3639678064,3639678071,CL +3639678072,3639678087,CO +3639678088,3639678119,CL +3639678120,3639678127,CO +3639678128,3639678143,CL +3639678144,3639678159,CO +3639678160,3639678167,CL +3639678168,3639678175,CO +3639678176,3639678191,CL +3639678192,3639678199,CO +3639678200,3639678527,CL +3639678528,3639678535,CO +3639678536,3639678583,CL +3639678584,3639678591,CO +3639678592,3639678639,CL +3639678640,3639678647,CO +3639678648,3639678663,CL +3639678664,3639678671,CO +3639678672,3639678783,CL +3639678784,3639678791,CO +3639678792,3639678799,CL +3639678800,3639678815,CO +3639678816,3639678823,CL +3639678824,3639678831,CO +3639678832,3639678839,CL +3639678840,3639678855,CO +3639678856,3639678887,CL +3639678888,3639678895,CO +3639678896,3639678911,CL +3639678912,3639678919,CO +3639678920,3639678935,CL +3639678936,3639678951,CO +3639678952,3639678975,CL +3639678976,3639679231,CO +3639679232,3639679247,CL +3639679248,3639679263,CO +3639679264,3639679383,CL +3639679384,3639679391,CO +3639679392,3639679415,CL +3639679416,3639679423,CO +3639679424,3639679447,CL +3639679448,3639679455,CO +3639679456,3639679487,CL +3639679488,3639679743,CO +3639679744,3639680271,CL +3639680272,3639680311,CO +3639680312,3639680319,CL +3639680320,3639680335,CO +3639680336,3639680383,CL +3639680384,3639680415,CO +3639680416,3639680431,CL +3639680432,3639680447,CO +3639680448,3639680767,CL +3639680768,3639680799,CO +3639680800,3639680831,CL +3639680832,3639680847,CO +3639680848,3639680871,CL +3639680872,3639680879,CO +3639680880,3639680887,CL +3639680888,3639680895,CO +3639680896,3639680967,CL +3639680968,3639680991,CO +3639680992,3639681023,CL +3639681024,3639730175,US +3639730176,3639734271,CA +3639734272,3639886095,US +3639886096,3639886103,CN +3639886104,3639902207,US +3639902208,3639903755,PE +3639903756,3639903759,PA +3639903760,3639904031,PE +3639904032,3639904035,CL +3639904036,3639912127,PE +3639912128,3639912143,CL +3639912144,3639914767,PE +3639914768,3639914775,PA +3639914776,3639918591,PE +3639918592,3639934975,AR +3639934976,3640057855,US +3640057856,3640066047,CA +3640066048,3640197119,US +3640197120,3640201215,CA +3640201216,3640205311,US +3640205312,3640209407,BM +3640209408,3640213503,CA +3640213504,3640287231,US +3640287232,3640291327,CA +3640291328,3640312079,US +3640312080,3640312095,ID +3640312096,3640312103,GB +3640312104,3640312159,US +3640312160,3640312191,ID +3640312192,3640312575,US +3640312576,3640312607,NG +3640312608,3640314879,US +3640314880,3640315135,ZA +3640315136,3640317327,US +3640317328,3640317343,ZA +3640317344,3640317407,US +3640317408,3640317423,ZA +3640317424,3640317559,US +3640317560,3640317567,NL +3640317568,3640318975,US +3640318976,3640319103,GQ +3640319104,3640360959,US +3640360960,3640369151,CA +3640369152,3640377343,US +3640381440,3640410111,US +3640410112,3640418303,CA +3640418304,3640557567,US +3640557568,3640582143,CA +3640582144,3640647679,US +3640647680,3640651775,JP +3640651776,3640655871,US +3640655872,3641056319,DE +3641056320,3641056327,HU +3641056328,3641056359,DE +3641056360,3641056367,AT +3641056368,3641056375,PL +3641056376,3641057655,DE +3641057656,3641057663,CZ +3641057664,3641078559,DE +3641078560,3641078567,BE +3641078568,3641085687,DE +3641085688,3641085695,CZ +3641085696,3641087695,DE +3641087696,3641087703,GB +3641087704,3641098191,DE +3641098192,3641098207,ES +3641098208,3641102607,DE +3641102608,3641102615,FR +3641102616,3641103719,DE +3641103720,3641103727,HU +3641103728,3641106951,DE +3641106952,3641106959,CH +3641106960,3641114031,DE +3641114032,3641114039,SK +3641114040,3641134367,DE +3641134368,3641134375,BE +3641134376,3641140671,DE +3641140672,3641140679,US +3641140680,3641147519,DE +3641147520,3641147527,AT +3641147528,3641150303,DE +3641150304,3641150311,US +3641150312,3641157951,DE +3641157952,3641157959,AT +3641157960,3641158031,DE +3641158032,3641158055,FR +3641158056,3641158103,DE +3641158104,3641158111,FR +3641158112,3641158127,DE +3641158128,3641158135,ES +3641158136,3641158199,DE +3641158200,3641158207,NL +3641158208,3641158335,DE +3641158336,3641158343,ES +3641158344,3641158423,DE +3641158424,3641158431,IT +3641158432,3641158519,DE +3641158520,3641158527,ES +3641158528,3641159679,DE +3641159680,3641159687,ES +3641159688,3641159727,DE +3641159728,3641159743,ES +3641159744,3641159767,DE +3641159768,3641159775,ES +3641159776,3641180159,DE +3641180160,3641188351,GB +3641188352,3641192447,TJ +3641192448,3641196543,DE +3641196544,3641200639,SA +3641200640,3641204735,RU +3641204736,3641206015,NL +3641206016,3641206271,CN +3641206272,3641208831,NL +3641208832,3641212927,JO +3641212928,3641221119,NO +3641221120,3641229311,PL +3641229312,3641237503,CH +3641237504,3641241599,RU +3641241600,3641245695,GB +3641245696,3641249791,UA +3641249792,3641262079,DE +3641262080,3641266175,IT +3641266176,3641270271,RU +3641270272,3641278463,DE +3641278464,3641282559,IS +3641282560,3641286655,RU +3641286656,3641294847,PL +3641294848,3641298943,GB +3641298944,3641303039,SE +3641303040,3641307135,BG +3641307136,3641311231,LT +3641311232,3641315327,DE +3641315328,3641319423,DK +3641319424,3641323519,RU +3641323520,3641323775,US +3641323776,3641331711,DE +3641331712,3641335807,ES +3641335808,3641343999,SE +3641344000,3641345199,GB +3641345200,3641345215,IE +3641345216,3641349383,GB +3641349384,3641349391,DE +3641349392,3641349399,FR +3641349400,3641349407,CH +3641349408,3641349415,DK +3641349416,3641349423,NO +3641349424,3641349431,SE +3641349432,3641349439,NL +3641349440,3641349511,GB +3641349512,3641349519,DE +3641349520,3641349527,IT +3641349528,3641353151,GB +3641353152,3641353183,BD +3641353184,3641353215,NG +3641353216,3641353231,GB +3641353232,3641353247,IQ +3641353248,3641353343,GB +3641353344,3641353727,BD +3641353728,3641353759,NG +3641353760,3641353775,GB +3641353776,3641353807,NG +3641353808,3641353983,GB +3641353984,3641354239,AF +3641354240,3641354383,GB +3641354384,3641354479,IT +3641354480,3641354751,GB +3641354752,3641355263,NG +3641355264,3641355519,AO +3641355520,3641355775,GB +3641355776,3641356031,LB +3641356032,3641356111,GB +3641356112,3641356119,NG +3641356120,3641356191,GB +3641356192,3641356207,NG +3641356208,3641359359,GB +3641359360,3641359615,IQ +3641359616,3641360383,GB +3641360384,3641368575,RO +3641368576,3641372671,GB +3641372672,3641376767,BG +3641376768,3641380863,IT +3641380864,3641384959,IR +3641384960,3641389055,CH +3641389056,3641391807,DE +3641391808,3641391823,AT +3641391824,3641393151,DE +3641393152,3641397247,KZ +3641397248,3641401343,IT +3641401344,3641409535,ES +3641409536,3641417727,PL +3641417728,3641421823,GE +3641421824,3641425919,TJ +3641425920,3641430015,DE +3641430016,3641434111,CH +3641434112,3641442303,CZ +3641442304,3641446399,GB +3641446400,3641450495,ES +3641450496,3641454591,RU +3641454592,3641458687,SK +3641458688,3641462783,RU +3641462784,3641466879,UZ +3641466880,3641470975,RU +3641470976,3641475071,MD +3641475072,3641479167,IT +3641479168,3641483263,GB +3641483264,3641491455,IT +3641491456,3641493503,UA +3641493504,3641494015,RU +3641494016,3641495551,UA +3641495552,3641496063,RU +3641496064,3641499647,UA +3641499648,3641503743,SA +3641503744,3641507839,RU +3641507840,3641516031,NO +3641516032,3641520127,HU +3641520128,3641524223,FR +3641524224,3641528319,DE +3641528320,3641532415,ES +3641532416,3641536511,RO +3641536512,3641540607,ES +3641540608,3641548799,GB +3641548800,3641552895,DE +3641552896,3641556991,AT +3641556992,3641559103,DE +3641559104,3641559135,NL +3641559136,3641560959,DE +3641560960,3641561087,NL +3641561088,3641565183,RU +3641565184,3641573375,SE +3641573376,3641577471,NO +3641577472,3641581567,RU +3641581568,3641585663,ES +3641585664,3641589759,RU +3641589760,3641593855,CH +3641597952,3641602047,AZ +3641602048,3641606143,DE +3641606144,3641607695,GB +3641607696,3641607711,FR +3641607712,3641610239,GB +3641610240,3641618431,DE +3641618432,3641622527,GB +3641622528,3641626623,RU +3641626624,3641630719,HR +3641630720,3641634815,AT +3641634816,3641638911,RU +3641638912,3641643007,AT +3641643008,3641647103,RU +3641647104,3641651199,ES +3641651200,3641655295,RU +3641655296,3641659391,GB +3641659392,3641663487,FR +3641663488,3641667583,MT +3641667584,3641668863,GB +3641668864,3641670655,ZW +3641670656,3641670783,SO +3641670784,3641670791,NG +3641670792,3641670911,GB +3641670912,3641671679,LS +3641671680,3641679871,RU +3641679872,3641683967,GB +3641683968,3641688063,KZ +3641688064,3641692159,RU +3641692160,3641696255,IT +3641696256,3641700351,DE +3641700352,3641704447,SE +3641704448,3641708543,FR +3641708544,3641712639,RU +3641712640,3641713447,NL +3641713448,3641713639,BE +3641713640,3641716735,NL +3641716736,3641720831,GB +3641720832,3641729023,MK +3641729024,3641733119,DK +3641733120,3641737215,AT +3641737216,3641741311,RS +3641741312,3641745407,ES +3641745408,3641749503,DE +3641749504,3641753599,RU +3641753600,3641757695,SE +3641757696,3641761791,GB +3641761792,3641761795,CY +3641761796,3641761803,GR +3641761804,3641761807,CY +3641761808,3641761851,GR +3641761852,3641761855,CY +3641761856,3641761863,GR +3641761864,3641761867,CY +3641761868,3641761895,GR +3641761896,3641761899,CY +3641761900,3641761923,GR +3641761924,3641761927,CY +3641761928,3641761935,GR +3641761936,3641761939,CY +3641761940,3641761967,GR +3641761968,3641761971,CY +3641761972,3641762007,GR +3641762008,3641762011,CY +3641762012,3641762047,GR +3641762048,3641762571,CY +3641762572,3641762575,GR +3641762576,3641762591,CY +3641762592,3641762595,GR +3641762596,3641762607,CY +3641762608,3641762611,GR +3641762612,3641762647,CY +3641762648,3641762655,GR +3641762656,3641762703,CY +3641762704,3641762711,GR +3641762712,3641762755,CY +3641762756,3641762759,GR +3641762760,3641762907,CY +3641762908,3641762947,GR +3641762948,3641762951,CY +3641762952,3641762999,GR +3641763000,3641763003,CY +3641763004,3641763023,GR +3641763024,3641763035,CY +3641763036,3641763063,GR +3641763064,3641763335,CY +3641763336,3641763339,GR +3641763340,3641763427,CY +3641763428,3641763431,GR +3641763432,3641763439,CY +3641763440,3641763443,GR +3641763444,3641763451,CY +3641763452,3641763455,GR +3641763456,3641763475,CY +3641763476,3641763479,GR +3641763480,3641763511,CY +3641763512,3641763519,GR +3641763520,3641763582,CY +3641763583,3641763583,GR +3641763584,3641764231,CY +3641764232,3641764239,GR +3641764240,3641764279,CY +3641764280,3641764283,GR +3641764284,3641764287,CY +3641764288,3641764291,GR +3641764292,3641764303,CY +3641764304,3641764307,GR +3641764308,3641764319,CY +3641764320,3641764327,GR +3641764328,3641764607,CY +3641764608,3641764631,GR +3641764632,3641764635,CY +3641764636,3641764647,GR +3641764648,3641764651,CY +3641764652,3641764679,GR +3641764680,3641764683,CY +3641764684,3641764699,GR +3641764700,3641764703,CY +3641764704,3641764711,GR +3641764712,3641764715,CY +3641764716,3641764775,GR +3641764776,3641764783,CY +3641764784,3641764847,GR +3641764848,3641764856,CY +3641764857,3641764863,GR +3641764864,3641764875,CY +3641764876,3641764899,GR +3641764900,3641764903,CY +3641764904,3641764927,GR +3641764928,3641764931,CY +3641764932,3641764943,GR +3641764944,3641764951,CY +3641764952,3641764963,GR +3641764964,3641764967,CY +3641764968,3641764975,GR +3641764976,3641764979,CY +3641764980,3641765023,GR +3641765024,3641765031,CY +3641765032,3641765083,GR +3641765084,3641765091,CY +3641765092,3641765119,GR +3641765120,3641765631,CY +3641765632,3641765887,GR +3641765888,3641769983,ES +3641769984,3641774079,NO +3641774080,3641778175,DE +3641778176,3641782271,PL +3641782272,3641784079,GB +3641784080,3641786367,BG +3641786368,3641790463,SE +3641790464,3641794559,LT +3641794560,3641796607,CS +3641796608,3641798655,RS +3641802752,3641806847,NL +3641806848,3641807871,TR +3641807872,3641808895,NL +3641808896,3641809663,TR +3641809664,3641809919,NL +3641809920,3641810315,TR +3641810316,3641810431,CY +3641810432,3641810439,NL +3641810440,3641810447,US +3641810448,3641810463,NL +3641810464,3641810479,US +3641810480,3641810559,TR +3641810560,3641810623,US +3641810624,3641810631,TR +3641810632,3641810642,US +3641810643,3641810687,TR +3641810688,3641810943,CY +3641810944,3641819135,RU +3641819136,3641823231,DE +3641823232,3641827327,NO +3641827328,3641835519,BH +3641835520,3641839615,IT +3641839616,3641843711,GB +3641843712,3641847807,ES +3641847808,3641851903,RU +3641851904,3641855999,NL +3641856000,3641860095,GB +3641860096,3641868287,IT +3641868288,3641876479,RU +3641876480,3641880575,ES +3641880576,3641881343,DE +3641881344,3641881359,US +3641881360,3641881391,DE +3641881392,3641881395,CH +3641881396,3641881399,DE +3641881400,3641881407,CH +3641881408,3641881423,DE +3641881424,3641881439,US +3641881440,3641881447,DE +3641881448,3641881455,CH +3641881456,3641881567,DE +3641881568,3641881583,CH +3641881584,3641882727,DE +3641882728,3641882735,CH +3641882736,3641884671,DE +3641884672,3641888767,NO +3641888768,3641892863,IT +3641892864,3641896959,ES +3641896960,3641901055,BG +3641901056,3641905151,RO +3641905152,3641909247,NL +3641909248,3641913343,AT +3641913344,3641917439,FR +3641917440,3641925631,GR +3641925632,3641933823,RU +3641933824,3641937919,GB +3641937920,3641942015,IT +3641942016,3641950207,DE +3641950208,3641954303,FR +3641954304,3641957887,MD +3641957888,3641957951,GB +3641957952,3641958143,MD +3641958144,3641958207,GB +3641958208,3641958399,MD +3641958400,3641960699,BE +3641960700,3641960703,NL +3641960704,3641961727,BE +3641961728,3641961743,NL +3641961744,3641961791,BE +3641961792,3641961799,US +3641961800,3641962495,BE +3641962496,3641966591,GB +3641966592,3641970687,IT +3641970688,3641971759,GB +3641971760,3641971775,BG +3641971776,3641978879,GB +3641978880,3641982975,DK +3641982976,3641991167,RU +3641991168,3641995263,SE +3641995264,3641999359,DE +3641999360,3642003455,HU +3642003456,3642007551,DE +3642007552,3642015743,UA +3642015744,3642019839,CH +3642019840,3642023935,RU +3642028032,3642028287,GB +3642028288,3642028543,NG +3642028544,3642028544,GB +3642028545,3642028799,NG +3642028800,3642028800,GB +3642028801,3642028863,SO +3642028864,3642028928,GB +3642028929,3642029055,NG +3642029056,3642029056,GB +3642029057,3642029311,NG +3642029312,3642029567,GB +3642029568,3642031359,NG +3642031360,3642031616,GB +3642031617,3642031871,NG +3642031872,3642032127,GB +3642032128,3642036223,PS +3642036224,3642040319,RU +3642040320,3642048511,BY +3642048512,3642053439,IL +3642053440,3642053631,TZ +3642053632,3642055935,IL +3642055936,3642056703,KE +3642056704,3642060799,RU +3642064896,3642068991,SE +3642068992,3642073087,NL +3642073088,3642077183,LV +3642077184,3642081279,BE +3642081280,3642085375,NL +3642085376,3642089471,RU +3642089472,3642093567,SE +3642093568,3642097663,NL +3642097664,3642101759,GB +3642101760,3642109951,NO +3642109952,3642114047,BE +3642114048,3642118143,NL +3642118144,3642122239,GB +3642122240,3642126335,ES +3642126336,3642130431,IL +3642130432,3642134527,DE +3642134528,3642138623,GB +3642138624,3642142719,RU +3642142720,3642146815,MT +3642146816,3642150911,DE +3642150912,3642163199,IT +3642163200,3642167295,NL +3642167296,3642171391,RU +3642171392,3642175487,JO +3642175488,3642179583,DE +3642179584,3642187775,RU +3642187776,3642190591,DK +3642190592,3642190623,NO +3642190624,3642191423,DK +3642191424,3642191455,ES +3642191456,3642191487,TR +3642191488,3642191519,CH +3642191520,3642191551,CY +3642191552,3642191583,ES +3642191584,3642191615,US +3642191616,3642191647,ZA +3642191648,3642191679,AU +3642191680,3642191711,TH +3642191712,3642191743,BR +3642191744,3642191871,DK +3642191872,3642195967,BY +3642195968,3642204159,RU +3642204160,3642208255,GB +3642208256,3642212351,RU +3642212352,3642216447,BA +3642216448,3642220543,HU +3642220544,3642224639,GB +3642224640,3642228735,SK +3642228736,3642232831,DE +3642232832,3642233855,CS +3642233856,3642234879,RS +3642234880,3642234943,CS +3642234944,3642234999,RS +3642235000,3642235007,CS +3642235008,3642235903,RS +3642235904,3642236927,CS +3642236928,3642241023,CH +3642241024,3642245119,DE +3642245120,3642249215,LV +3642249216,3642253311,FR +3642253312,3642257407,FI +3642257408,3642261503,RU +3642261504,3642265599,GB +3642265600,3642265855,IR +3642265856,3642266111,AE +3642266112,3642269695,IR +3642269696,3642273791,UA +3642273792,3642277887,RU +3642277888,3642290175,DE +3642290176,3642294271,AL +3642294272,3642298367,GB +3642298368,3642302463,AZ +3642302464,3642306559,SE +3642306560,3642310655,IR +3642310656,3642314751,DE +3642314752,3642318847,RU +3642318848,3642322943,FI +3642322944,3642327039,AT +3642327040,3642331135,DE +3642331136,3642335231,RU +3642339328,3642343423,FR +3642343424,3642347519,UA +3642347520,3642355711,RU +3642355712,3642359807,SE +3642359808,3642367999,RU +3642368000,3642376191,CH +3642376192,3642379519,CS +3642379520,3642379711,CS +3642379712,3642380031,CS +3642380032,3642380063,CS +3642380064,3642380095,RS +3642380096,3642380287,CS +3642380288,3642384383,IT +3642384384,3642388479,NO +3642388480,3642392575,NL +3642392576,3642396671,AM +3642396672,3642404863,MD +3642404864,3642408959,RU +3642408960,3642413055,FR +3642413056,3642414591,CS +3642414592,3642415627,GB +3642415628,3642415635,MT +3642415636,3642415651,GB +3642415652,3642415655,MT +3642415656,3642417151,GB +3642417152,3642421247,IT +3642421248,3642429439,DE +3642429440,3642433535,GB +3642433536,3642435583,CY +3642435584,3642436607,RU +3642436608,3642437119,GR +3642437120,3642437631,GB +3642437632,3642439423,CY +3642439424,3642439459,RU +3642439460,3642439463,CY +3642439464,3642439471,RU +3642439472,3642439483,CY +3642439484,3642439495,RU +3642439496,3642439551,CY +3642439552,3642439567,RU +3642439568,3642440447,CY +3642440448,3642440451,RU +3642440452,3642441727,CY +3642441728,3642449919,IT +3642449920,3642454015,CH +3642454016,3642458111,IT +3642458112,3642462207,RU +3642462208,3642466303,UA +3642466304,3642474495,SE +3642474496,3642478591,DE +3642478592,3642482687,HU +3642482688,3642486783,NL +3642486784,3642499071,GB +3642499072,3642503167,SE +3642503168,3642507263,LV +3642507264,3642511359,FR +3642511360,3642515455,RU +3642515456,3642519551,DE +3642519552,3642523647,IT +3642523648,3642527743,GB +3642527744,3642531839,PL +3642531840,3642532351,DK +3642532352,3642532607,GB +3642532608,3642532863,US +3642532864,3642535935,DK +3642535936,3642540031,IS +3642540032,3642544127,SE +3642544128,3642552319,RU +3642552320,3642552639,NL +3642552640,3642552655,EE +3642552656,3642552663,HU +3642552664,3642552671,NL +3642552672,3642552687,SE +3642552688,3642553103,NL +3642553104,3642553119,LV +3642553120,3642553151,NL +3642553152,3642553326,LV +3642553327,3642553343,NL +3642553344,3642553363,RU +3642553364,3642553375,NL +3642553376,3642553377,RU +3642553378,3642553379,NL +3642553380,3642553383,RU +3642553384,3642553387,NL +3642553388,3642553411,RU +3642553412,3642553415,NL +3642553416,3642553427,RU +3642553428,3642553431,NL +3642553432,3642553455,RU +3642553456,3642553467,NL +3642553468,3642553519,RU +3642553520,3642553523,NL +3642553524,3642553535,RU +3642553536,3642553543,DE +3642553544,3642553587,RU +3642553588,3642554111,NL +3642554112,3642554151,RU +3642554152,3642554175,NL +3642554176,3642554197,RU +3642554198,3642554199,NL +3642554200,3642554203,RU +3642554204,3642554205,NL +3642554206,3642554223,RU +3642554224,3642554239,NL +3642554240,3642554271,RU +3642554272,3642554367,NL +3642554368,3642554623,LT +3642554624,3642554631,NL +3642554632,3642554675,LV +3642554676,3642554679,EE +3642554680,3642554783,LV +3642554784,3642554799,NL +3642554800,3642554807,EE +3642554808,3642554879,LV +3642554880,3642554911,DE +3642554912,3642554919,NL +3642554920,3642554927,DE +3642554928,3642554931,NL +3642554932,3642554951,UA +3642554952,3642554955,NL +3642554956,3642554959,GE +3642554960,3642554963,DE +3642554964,3642554967,UA +3642554968,3642554971,LV +3642554972,3642554975,DE +3642554976,3642554977,CZ +3642554978,3642554979,FR +3642554980,3642554983,BE +3642554984,3642554987,DE +3642554988,3642554989,FR +3642554990,3642554991,UA +3642554992,3642555011,DE +3642555012,3642555017,NL +3642555018,3642555023,DE +3642555024,3642555039,NL +3642555040,3642555045,DE +3642555046,3642555047,NL +3642555048,3642555051,DE +3642555052,3642555055,UA +3642555056,3642555135,NL +3642555136,3642555223,LT +3642555224,3642555227,LV +3642555228,3642555391,LT +3642555392,3642555479,PL +3642555480,3642555647,NL +3642555648,3642555683,SE +3642555684,3642555687,NL +3642555688,3642555695,SE +3642555696,3642555703,LV +3642555704,3642555707,FI +3642555708,3642555711,SE +3642555712,3642555727,RU +3642555728,3642555735,SE +3642555736,3642555743,GB +3642555744,3642555759,SE +3642555760,3642555771,GB +3642555772,3642555935,NL +3642555936,3642555983,UA +3642555984,3642556159,NL +3642556160,3642556415,LV +3642556416,3642560511,CZ +3642560512,3642564607,KG +3642564608,3642568703,DE +3642568704,3642572799,RU +3642572800,3642576895,IT +3642576896,3642580991,RU +3642580992,3642585087,ES +3642585088,3642585855,RU +3642585856,3642586111,US +3642586112,3642589183,UZ +3642593280,3642597375,AT +3642597376,3642601471,IT +3642601472,3642605567,RU +3642605568,3642609663,GB +3642613760,3642615583,FI +3642615584,3642615615,AX +3642615616,3642617855,FI +3642617856,3642621951,JO +3642621952,3642626047,IT +3642626048,3642630143,BE +3642630144,3642634239,DK +3642634240,3642638335,DE +3642638336,3642642431,CZ +3642642432,3642646527,DK +3642646528,3642650623,MT +3642650624,3642654719,GB +3642654720,3642662911,PL +3642662912,3642667007,GR +3642667008,3642671103,FI +3642671104,3642675199,UA +3642675200,3642679295,BG +3642679296,3642683391,DE +3642683392,3642687487,RU +3642687488,3642691583,GB +3642691584,3642695679,DE +3642695680,3642699775,SK +3642699776,3642703871,CZ +3642703872,3642707967,LU +3642707968,3642712063,DE +3642712064,3642716159,NO +3642716160,3642720255,IT +3642720256,3642728447,GB +3642728448,3642736639,SE +3642736640,3642740735,CZ +3642740736,3642744831,DE +3642744832,3642753023,TR +3642753024,3643801599,GB +3643801600,3644063743,DE +3644325888,3644588031,IT +3644588032,3644719103,DK +3644719104,3644809215,NL +3644809216,3644817407,AM +3644817408,3644850175,NL +3644850176,3644854271,CZ +3644854272,3644858367,AZ +3644858368,3644862463,GB +3644862464,3644866559,FR +3644866560,3644871167,DE +3644871168,3644871423,AT +3644871424,3644874751,DE +3644878848,3644882943,GB +3644882944,3644887039,RU +3644887040,3644891135,IR +3644891136,3644895231,DE +3644895232,3644899327,FI +3644899328,3644903423,IT +3644903424,3644907519,TR +3644907520,3644908983,GB +3644908984,3644908991,IT +3644908992,3644909855,GB +3644909856,3644909859,IS +3644909860,3644911615,GB +3644911616,3644915711,BE +3644915712,3644919807,RU +3644919808,3644923903,DE +3644923904,3644924927,IL +3644924928,3644925055,US +3644925056,3644925119,CI +3644925120,3644926207,US +3644926208,3644926223,IL +3644926224,3644927999,US +3644928000,3644932095,GI +3644932096,3644936191,IT +3644936192,3644940287,RU +3644940288,3644948479,HU +3644948480,3644952575,DE +3644952576,3644960767,GB +3644960768,3644961311,DE +3644961312,3644961343,TR +3644961344,3644961791,DE +3644961792,3644964351,TR +3644964352,3644964383,DE +3644964384,3644964863,TR +3644964864,3644966911,RS +3644966912,3644966927,CS +3644966928,3644968959,RS +3644968960,3644973055,RU +3644973056,3644977151,NO +3644977152,3644981247,UA +3644981248,3644985343,BE +3644985344,3644989439,RU +3644989440,3644997631,DE +3644997632,3645005823,RU +3645005824,3645009919,UA +3645009920,3645014015,FR +3645014016,3645018111,DE +3645018112,3645022207,RU +3645022208,3645030143,CZ +3645030144,3645030399,SK +3645030400,3645038591,IR +3645038592,3645046783,PS +3645046784,3645050879,RU +3645050880,3645054975,SK +3645054976,3645059071,DE +3645059072,3645063167,GB +3645063168,3645067263,UA +3645067264,3645071359,SE +3645071360,3645075455,DE +3645075456,3645079551,RU +3645079552,3645083647,IE +3645083648,3645087743,FR +3645087744,3645091839,ES +3645091840,3645095935,RU +3645095936,3645104127,PL +3645104128,3645112319,NL +3645112320,3645116415,DE +3645116416,3645120511,GB +3645120512,3645124607,SE +3645124608,3645128703,NL +3645128704,3645132799,GB +3645132800,3645136895,HR +3645136896,3645145087,NO +3645145088,3645149183,GB +3645149184,3645149887,DE +3645149888,3645149951,HK +3645149952,3645150559,DE +3645150560,3645150591,HK +3645150592,3645150615,DE +3645150616,3645150623,US +3645150624,3645150975,DE +3645150976,3645151231,US +3645151232,3645151487,DE +3645151488,3645151615,MT +3645151616,3645152767,DE +3645152768,3645152799,HK +3645152800,3645161471,DE +3645161472,3645165567,AT +3645165568,3645169663,TR +3645169664,3645173759,CH +3645173760,3645177855,GB +3645177856,3645181951,GR +3645181952,3645183327,FR +3645183328,3645183359,GB +3645183360,3645183615,FR +3645183616,3645183679,SA +3645183680,3645183743,FR +3645183744,3645183871,GB +3645183872,3645183999,FR +3645184000,3645184255,US +3645184256,3645184256,FR +3645184257,3645184383,GB +3645184384,3645186047,FR +3645186048,3645190143,GB +3645190144,3645194239,FI +3645194240,3645202431,DE +3645202432,3645206527,CZ +3645206528,3645210623,LV +3645210624,3645214719,RU +3645214720,3645218815,NL +3645218816,3645222911,DE +3645222912,3645227007,KW +3645227008,3645235199,RU +3645235200,3645243391,DE +3645243392,3645247487,ES +3645247488,3645251583,RU +3645251584,3645255679,SE +3645255680,3645259775,PL +3645259776,3645263871,PT +3645263872,3645267967,FR +3645267968,3645276159,RU +3645276160,3645280255,DE +3645280256,3645281279,IT +3645281280,3645281535,DE +3645281536,3645281791,IT +3645281792,3645281919,HU +3645281920,3645284351,IT +3645284352,3645288447,DE +3645288448,3645292543,FR +3645292544,3645295103,DE +3645295104,3645295359,NL +3645295360,3645296639,DE +3645296640,3645300735,NL +3645300736,3645304831,BE +3645304832,3645308927,ES +3645308928,3645313023,DK +3645313024,3645317119,ES +3645317120,3645321215,EE +3645321216,3645325311,BA +3645325312,3645329407,IT +3645329408,3645333503,CH +3645333504,3645334031,DE +3645334272,3645336927,DE +3645336936,3645336991,DE +3645337008,3645337023,DE +3645337088,3645337599,DE +3645337600,3645337631,FR +3645337632,3645337663,BE +3645337664,3645338399,FR +3645338400,3645338431,BE +3645338432,3645339295,FR +3645339296,3645339359,BE +3645339360,3645339391,FR +3645339392,3645339647,NL +3645339648,3645339903,FR +3645339904,3645339967,BE +3645339968,3645340415,FR +3645340416,3645340447,NL +3645340448,3645340543,FR +3645340544,3645340927,BE +3645340928,3645341183,FR +3645341184,3645341439,BE +3645341440,3645341695,FR +3645341696,3645345791,RU +3645345792,3645349887,FI +3645349888,3645353983,RU +3645353984,3645358079,MT +3645358080,3645362175,ES +3645362176,3645366271,FR +3645366272,3645370367,RU +3645370368,3645374463,CH +3645374464,3645378559,RU +3645378560,3645382655,SE +3645382656,3645386751,IT +3645386752,3645390847,SE +3645390848,3645399039,SI +3645399040,3645403135,IT +3645403136,3645408255,DE +3645408256,3645408319,CH +3645408320,3645411327,DE +3645411328,3645415423,RU +3645415424,3645423615,GB +3645423616,3645431807,DE +3645431808,3645435903,BE +3645435904,3645439999,GB +3645440000,3645444095,SE +3645444096,3645448191,SK +3645448192,3645456383,DE +3645456384,3645456639,GB +3645456640,3645456895,DE +3645456896,3645457407,GB +3645457408,3645460479,DE +3645460480,3645464575,UA +3645464576,3645468671,SE +3645468672,3645472767,RU +3645472768,3645476607,UA +3645476608,3645476863,US +3645476864,3645480959,DE +3645480960,3645485055,RO +3645485056,3645489151,MT +3645489152,3645493247,RU +3645493248,3645501439,IT +3645505536,3645506559,DE +3645506560,3645506815,AT +3645506816,3645507583,DE +3645507584,3645507587,AT +3645507588,3645507591,DE +3645507592,3645507595,AT +3645507596,3645507599,DE +3645507600,3645507607,AT +3645507608,3645509631,DE +3645509632,3645513727,GB +3645513728,3645517823,RU +3645517824,3645521919,IE +3645521920,3645526015,PL +3645526016,3645530111,SE +3645530112,3645534207,FR +3645534208,3645544959,RU +3645544960,3645544991,KZ +3645544992,3645545087,RU +3645545088,3645545215,TJ +3645545216,3645550591,RU +3645550592,3645558783,DE +3645558784,3645562879,DK +3645562880,3645563135,BW +3645563136,3645564671,LS +3645564672,3645564927,PK +3645564928,3645565055,SO +3645565056,3645565695,GB +3645565696,3645566975,ZW +3645566976,3645571071,RU +3645571072,3645575167,IE +3645575168,3645579263,CH +3645579264,3645583359,NL +3645583360,3645587455,PL +3645587456,3645595647,SK +3645595648,3645597751,SE +3645597752,3645597759,GB +3645597760,3645601471,SE +3645601472,3645601487,NO +3645601488,3645601759,SE +3645601760,3645601775,FR +3645601776,3645603839,SE +3645603840,3645612031,BG +3645612032,3645616127,GB +3645616128,3645620223,AT +3645620224,3645624319,BA +3645624320,3645628415,CZ +3645628416,3645636607,ES +3645636608,3645640703,AM +3645640704,3645644799,NL +3645644800,3645648895,RU +3645648896,3645652991,SE +3645652992,3645657087,KZ +3645657088,3645661183,SE +3645661184,3645665279,DE +3645665280,3645669375,PL +3645669376,3645669631,ES +3645669632,3645669855,FR +3645669856,3645670399,ES +3645670400,3645670911,FR +3645670912,3645673471,ES +3645673472,3645673535,FR +3645673536,3645675263,ES +3645675264,3645675519,PT +3645675520,3645675759,ES +3645675760,3645675775,FR +3645675776,3645676015,ES +3645676016,3645676031,FR +3645676032,3645677567,ES +3645677568,3645681663,AT +3645681664,3645685759,RU +3645685760,3645689855,UA +3645689856,3645693951,IT +3645693952,3645698047,BE +3645698048,3645702143,ES +3645702144,3645706239,GB +3645706240,3645710335,LT +3645710336,3645714431,NO +3645714432,3645718527,RU +3645722624,3645726719,IT +3645726720,3645734911,RU +3645734912,3645743103,NL +3645743104,3645747199,CZ +3645747200,3645751295,GB +3645751296,3645755391,FI +3645755392,3645759487,UA +3645759488,3645763583,FR +3645763584,3645763585,DE +3645763586,3645763587,IT +3645763588,3645763588,DE +3645763589,3645763589,IE +3645763590,3645763590,ES +3645763591,3645763591,IT +3645763592,3645763593,DE +3645763594,3645763594,CH +3645763595,3645763595,IT +3645763596,3645763597,DE +3645763598,3645763598,NL +3645763599,3645763600,DE +3645763601,3645763601,GR +3645763602,3645763603,FR +3645763604,3645763609,DE +3645763610,3645763610,PL +3645763611,3645763612,DE +3645763613,3645763613,HU +3645763614,3645763614,CH +3645763615,3645763615,ES +3645763616,3645763616,FR +3645763617,3645763617,DE +3645763618,3645763618,ES +3645763619,3645763619,DE +3645763620,3645763620,FR +3645763621,3645763621,CH +3645763622,3645763622,GB +3645763623,3645763623,FR +3645763624,3645763624,DE +3645763625,3645763625,FR +3645763626,3645763626,NL +3645763627,3645763627,AT +3645763628,3645763629,DE +3645763630,3645763631,NL +3645763632,3645763633,GB +3645763634,3645763634,NL +3645763635,3645763635,DE +3645763636,3645763636,AT +3645763637,3645763637,FR +3645763638,3645763638,NL +3645763639,3645763639,DE +3645763640,3645763640,HU +3645763641,3645763641,IT +3645763642,3645763642,GB +3645763643,3645763644,DE +3645763645,3645763645,NL +3645763646,3645763647,ES +3645763648,3645763648,DE +3645763649,3645763649,IL +3645763650,3645763650,DE +3645763651,3645763651,NL +3645763652,3645763653,DE +3645763654,3645763654,ES +3645763655,3645763660,DE +3645763661,3645763662,FR +3645763663,3645763663,HU +3645763664,3645763665,DE +3645763666,3645763666,NL +3645763667,3645763667,DE +3645763668,3645763668,IT +3645763669,3645763669,DK +3645763670,3645763670,DE +3645763671,3645763671,FR +3645763672,3645763672,DE +3645763673,3645763673,BE +3645763674,3645763674,DE +3645763675,3645763675,NL +3645763676,3645763676,DE +3645763677,3645763678,HU +3645763679,3645763679,IT +3645763680,3645763680,DE +3645763681,3645763681,CH +3645763682,3645763682,DE +3645763683,3645763683,NO +3645763684,3645763684,CH +3645763685,3645763685,NL +3645763686,3645763686,DE +3645763687,3645763687,ES +3645763688,3645763690,NL +3645763691,3645763691,CH +3645763692,3645763692,DE +3645763693,3645763693,NL +3645763694,3645763694,IE +3645763695,3645763696,DE +3645763697,3645763697,NL +3645763698,3645763698,LU +3645763699,3645763699,BE +3645763700,3645763700,NL +3645763701,3645763701,DE +3645763702,3645763702,IT +3645763703,3645763703,CH +3645763704,3645763705,DE +3645763706,3645763706,GB +3645763707,3645763707,NL +3645763708,3645763708,GR +3645763709,3645763709,NL +3645763710,3645763710,GB +3645763711,3645763715,NL +3645763716,3645763716,DE +3645763717,3645763717,NL +3645763718,3645763718,DE +3645763719,3645763719,NL +3645763720,3645763720,IT +3645763721,3645763721,DE +3645763722,3645763722,GR +3645763723,3645763723,NL +3645763724,3645763726,IT +3645763727,3645763727,NL +3645763728,3645763728,GR +3645763729,3645763730,IT +3645763731,3645763732,DE +3645763733,3645763733,FR +3645763734,3645763734,DE +3645763735,3645763735,GB +3645763736,3645763736,FR +3645763737,3645763737,DE +3645763738,3645763738,CH +3645763739,3645763741,ES +3645763742,3645763742,DE +3645763743,3645763743,IT +3645763744,3645763744,DE +3645763745,3645763745,FR +3645763746,3645763746,DE +3645763747,3645763752,NL +3645763753,3645763753,ES +3645763754,3645763755,NL +3645763756,3645763756,DE +3645763757,3645763757,BE +3645763758,3645763758,FR +3645763759,3645763760,NL +3645763761,3645763761,SE +3645763762,3645763762,ES +3645763763,3645763764,NL +3645763765,3645763765,DE +3645763766,3645763766,IL +3645763767,3645763768,NL +3645763769,3645763769,FR +3645763770,3645763770,NL +3645763771,3645763771,GB +3645763772,3645763772,CH +3645763773,3645763773,DE +3645763774,3645763774,NL +3645763775,3645763775,DE +3645763776,3645763776,NL +3645763777,3645763777,BE +3645763778,3645763779,DE +3645763780,3645763780,CH +3645763781,3645763781,DE +3645763782,3645763782,NL +3645763783,3645763783,DE +3645763784,3645763784,NL +3645763785,3645763785,DE +3645763786,3645763786,CH +3645763787,3645763787,NL +3645763788,3645763788,IE +3645763789,3645763789,AT +3645763790,3645763790,ES +3645763791,3645763791,IT +3645763792,3645763792,FR +3645763793,3645763793,ES +3645763794,3645763794,DE +3645763795,3645763795,IT +3645763796,3645763796,GB +3645763797,3645763797,DE +3645763798,3645763798,FR +3645763799,3645763801,DE +3645763802,3645763802,ES +3645763803,3645763803,NL +3645763804,3645763806,DE +3645763807,3645763807,IT +3645763808,3645763808,DE +3645763809,3645763809,IT +3645763810,3645763810,NL +3645763811,3645763813,DE +3645763814,3645763814,IT +3645763815,3645763816,DE +3645763817,3645763817,GR +3645763818,3645763818,ES +3645763819,3645763822,DE +3645763823,3645763823,ES +3645763824,3645763825,DE +3645763826,3645763826,IT +3645763827,3645763827,ZA +3645763828,3645763841,DE +3645763842,3645763842,CH +3645763843,3645763845,DE +3645763846,3645763846,FR +3645763847,3645763847,IT +3645763848,3645763849,DE +3645763850,3645763850,IT +3645763851,3645763851,GB +3645763852,3645763852,DE +3645763853,3645763853,CH +3645763854,3645763855,NL +3645763856,3645763858,DE +3645763859,3645763859,DK +3645763860,3645763860,IT +3645763861,3645763861,DE +3645763862,3645763862,FR +3645763863,3645763864,ES +3645763865,3645763865,CH +3645763866,3645763866,DE +3645763867,3645763868,GB +3645763869,3645763869,DE +3645763870,3645763870,HU +3645763871,3645763874,DE +3645763875,3645763875,GB +3645763876,3645763876,PL +3645763877,3645763877,FR +3645763878,3645763879,DE +3645763880,3645763881,FR +3645763882,3645763882,DE +3645763883,3645763883,NL +3645763884,3645763884,IT +3645763885,3645763886,DE +3645763887,3645763887,FR +3645763888,3645763888,DE +3645763889,3645763889,GR +3645763890,3645763890,ES +3645763891,3645763894,DE +3645763895,3645763895,ES +3645763896,3645763896,DE +3645763897,3645763897,BE +3645763898,3645763898,NL +3645763899,3645763899,ES +3645763900,3645763900,NL +3645763901,3645763902,LU +3645763903,3645763903,DE +3645763904,3645763904,BE +3645763905,3645763905,CS +3645763906,3645763906,DE +3645763907,3645763908,IT +3645763909,3645763909,DE +3645763910,3645763910,ES +3645763911,3645763911,DE +3645763912,3645763912,IE +3645763913,3645763913,PT +3645763914,3645763914,DE +3645763915,3645763915,IL +3645763916,3645763916,BE +3645763917,3645763918,IT +3645763919,3645763919,GB +3645763920,3645763920,DE +3645763921,3645763921,CH +3645763922,3645763922,ES +3645763923,3645763923,GB +3645763924,3645763924,PL +3645763925,3645763926,DE +3645763927,3645763927,HU +3645763928,3645763928,FR +3645763929,3645763929,NL +3645763930,3645763930,ES +3645763931,3645763931,FR +3645763932,3645763932,DE +3645763933,3645763933,FR +3645763934,3645763934,IT +3645763935,3645763935,FR +3645763936,3645763936,DE +3645763937,3645763937,NL +3645763938,3645763938,ES +3645763939,3645763939,NL +3645763940,3645763941,DE +3645763942,3645763942,CH +3645763943,3645763943,ES +3645763944,3645763944,CH +3645763945,3645763945,DE +3645763946,3645763947,HU +3645763948,3645763949,DE +3645763950,3645763950,ES +3645763951,3645763951,CH +3645763952,3645763952,IT +3645763953,3645763953,TR +3645763954,3645763954,IT +3645763955,3645763955,FR +3645763956,3645763956,DE +3645763957,3645763957,GB +3645763958,3645763958,AT +3645763959,3645763959,DE +3645763960,3645763960,IT +3645763961,3645763961,DE +3645763962,3645763962,ES +3645763963,3645763964,DE +3645763965,3645763965,AT +3645763966,3645763966,DE +3645763967,3645763967,IT +3645763968,3645763968,DE +3645763969,3645763969,ES +3645763970,3645763970,IT +3645763971,3645763971,ES +3645763972,3645763972,IT +3645763973,3645763973,BE +3645763974,3645763974,GB +3645763975,3645763975,AT +3645763976,3645763976,IT +3645763977,3645763977,DE +3645763978,3645763978,NL +3645763979,3645763979,IT +3645763980,3645763981,DE +3645763982,3645763982,IT +3645763983,3645763984,FR +3645763985,3645763985,NL +3645763986,3645763986,DE +3645763987,3645763987,PL +3645763988,3645763988,CH +3645763989,3645763989,FR +3645763990,3645763991,DE +3645763992,3645763993,NL +3645763994,3645763994,IT +3645763995,3645763995,ES +3645763996,3645764000,DE +3645764001,3645764001,IT +3645764002,3645764007,DE +3645764008,3645764008,PL +3645764009,3645764010,FR +3645764011,3645764012,DE +3645764013,3645764013,HU +3645764014,3645764015,GB +3645764016,3645764016,IT +3645764017,3645764017,GB +3645764018,3645764018,ES +3645764019,3645764019,NL +3645764020,3645764020,IT +3645764021,3645764021,DE +3645764022,3645764022,ES +3645764023,3645764023,FR +3645764024,3645764026,ES +3645764027,3645764027,HU +3645764028,3645764028,DE +3645764029,3645764029,ES +3645764030,3645764030,DE +3645764031,3645764031,NL +3645764032,3645764032,FR +3645764033,3645764033,ES +3645764034,3645764034,DE +3645764035,3645764035,IT +3645764036,3645764037,ES +3645764038,3645764038,IT +3645764039,3645764039,HU +3645764040,3645764040,ES +3645764041,3645764041,DE +3645764042,3645764042,CH +3645764043,3645764043,DE +3645764044,3645764044,ES +3645764045,3645764045,AE +3645764046,3645764046,ES +3645764047,3645764047,DE +3645764048,3645764048,BE +3645764049,3645764049,ES +3645764050,3645764051,DE +3645764052,3645764052,FR +3645764053,3645764055,DE +3645764056,3645764056,BE +3645764057,3645764057,DE +3645764058,3645764058,TR +3645764059,3645764059,DE +3645764060,3645764060,FR +3645764061,3645764061,IT +3645764062,3645764062,SE +3645764063,3645764063,AT +3645764064,3645764064,SI +3645764065,3645764065,DE +3645764066,3645764066,IT +3645764067,3645764067,DE +3645764068,3645764068,IT +3645764069,3645764069,CH +3645764070,3645764070,GB +3645764071,3645764074,DE +3645764075,3645764075,SE +3645764076,3645764076,GR +3645764077,3645764078,DE +3645764079,3645764079,ES +3645764080,3645764080,DE +3645764081,3645764081,GB +3645764082,3645764084,DE +3645764085,3645764085,IE +3645764086,3645764086,IT +3645764087,3645764087,CH +3645764088,3645764093,DE +3645764094,3645764094,IT +3645764095,3645764097,DE +3645764098,3645764098,IT +3645764099,3645764099,DE +3645764100,3645764100,BE +3645764101,3645764101,DE +3645764102,3645764102,PL +3645764103,3645764103,SK +3645764104,3645764105,IT +3645764106,3645764106,NL +3645764107,3645764107,GR +3645764108,3645764108,PL +3645764109,3645764109,CH +3645764110,3645764110,DK +3645764111,3645764111,DE +3645764112,3645764112,IT +3645764113,3645764114,ES +3645764115,3645764115,GB +3645764116,3645764116,GR +3645764117,3645764117,DE +3645764118,3645764118,GB +3645764119,3645764119,CH +3645764120,3645764120,FR +3645764121,3645764121,IT +3645764122,3645764122,DE +3645764123,3645764123,PL +3645764124,3645764124,DE +3645764125,3645764125,NO +3645764126,3645764126,LU +3645764127,3645764127,GB +3645764128,3645764128,GR +3645764129,3645764129,HR +3645764130,3645764130,FR +3645764131,3645764131,DE +3645764132,3645764132,ES +3645764133,3645764133,CY +3645764134,3645764134,DE +3645764135,3645764135,IT +3645764136,3645764136,BE +3645764137,3645764137,DE +3645764138,3645764138,CH +3645764139,3645764139,PL +3645764140,3645764140,NL +3645764141,3645764141,ES +3645764142,3645764142,HU +3645764143,3645764145,DE +3645764146,3645764147,NL +3645764148,3645764148,DK +3645764149,3645764149,DE +3645764150,3645764150,ES +3645764151,3645764154,DE +3645764155,3645764155,ES +3645764156,3645764156,AT +3645764157,3645764158,DE +3645764159,3645764159,IT +3645764160,3645764160,BE +3645764161,3645764161,ES +3645764162,3645764162,DE +3645764163,3645764163,NL +3645764164,3645764164,DE +3645764165,3645764165,CH +3645764166,3645764166,HU +3645764167,3645764167,DE +3645764168,3645764168,ES +3645764169,3645764169,GR +3645764170,3645764170,IT +3645764171,3645764172,DE +3645764173,3645764173,IT +3645764174,3645764174,DE +3645764175,3645764175,PL +3645764176,3645764176,DE +3645764177,3645764177,GB +3645764178,3645764178,ES +3645764179,3645764179,GR +3645764180,3645764181,DE +3645764182,3645764182,FR +3645764183,3645764184,DE +3645764185,3645764185,IT +3645764186,3645764186,FR +3645764187,3645764187,BE +3645764188,3645764188,GB +3645764189,3645764189,FR +3645764190,3645764190,IT +3645764191,3645764191,GB +3645764192,3645764192,DE +3645764193,3645764194,ES +3645764195,3645764195,DE +3645764196,3645764196,IT +3645764197,3645764197,DE +3645764198,3645764198,GR +3645764199,3645764199,DE +3645764200,3645764200,IT +3645764201,3645764201,BE +3645764202,3645764202,IT +3645764203,3645764203,DE +3645764204,3645764204,ES +3645764205,3645764205,FR +3645764206,3645764206,DE +3645764207,3645764207,IT +3645764208,3645764208,NO +3645764209,3645764210,DE +3645764211,3645764211,FR +3645764212,3645764212,NL +3645764213,3645764213,GB +3645764214,3645764214,NL +3645764215,3645764216,DE +3645764217,3645764217,IT +3645764218,3645764218,CH +3645764219,3645764219,FR +3645764220,3645764220,NL +3645764221,3645764221,IT +3645764222,3645764222,BE +3645764223,3645764224,ES +3645764225,3645764226,GB +3645764227,3645764227,CH +3645764228,3645764228,FR +3645764229,3645764229,PL +3645764230,3645764230,NL +3645764231,3645764231,CH +3645764232,3645764232,DE +3645764233,3645764233,IT +3645764234,3645764234,DE +3645764235,3645764235,FR +3645764236,3645764236,IT +3645764237,3645764238,DE +3645764239,3645764240,ES +3645764241,3645764241,DE +3645764242,3645764242,AT +3645764243,3645764243,GR +3645764244,3645764244,FR +3645764245,3645764246,NL +3645764247,3645764247,IT +3645764248,3645764249,DE +3645764250,3645764250,GB +3645764251,3645764251,FR +3645764252,3645764253,ES +3645764254,3645764254,DE +3645764255,3645764255,CH +3645764256,3645764257,DE +3645764258,3645764258,NL +3645764259,3645764259,IT +3645764260,3645764260,DE +3645764261,3645764261,GB +3645764262,3645764262,BE +3645764263,3645764264,IT +3645764265,3645764265,TR +3645764266,3645764266,NL +3645764267,3645764268,DE +3645764269,3645764270,ES +3645764271,3645764271,IT +3645764272,3645764272,DE +3645764273,3645764273,IT +3645764274,3645764274,DE +3645764275,3645764275,FR +3645764276,3645764277,DE +3645764278,3645764278,NL +3645764279,3645764279,ES +3645764280,3645764280,IT +3645764281,3645764281,DE +3645764282,3645764282,NL +3645764283,3645764284,FR +3645764285,3645764285,IT +3645764286,3645764286,NL +3645764287,3645764287,BE +3645764288,3645764288,FR +3645764289,3645764289,NL +3645764290,3645764290,DE +3645764291,3645764291,NL +3645764292,3645764292,FR +3645764293,3645764294,IT +3645764295,3645764295,ES +3645764296,3645764297,DE +3645764298,3645764298,GR +3645764299,3645764299,NL +3645764300,3645764300,PL +3645764301,3645764301,GR +3645764302,3645764302,IT +3645764303,3645764303,DE +3645764304,3645764304,ES +3645764305,3645764305,GB +3645764306,3645764306,BM +3645764307,3645764307,NL +3645764308,3645764308,DE +3645764309,3645764309,CH +3645764310,3645764310,ZA +3645764311,3645764313,ES +3645764314,3645764315,DE +3645764316,3645764316,IT +3645764317,3645764317,ES +3645764318,3645764318,HU +3645764319,3645764319,FR +3645764320,3645764320,IT +3645764321,3645764321,DE +3645764322,3645764322,CH +3645764323,3645764323,DE +3645764324,3645764324,FR +3645764325,3645764325,DE +3645764326,3645764326,ES +3645764327,3645764327,DK +3645764328,3645764328,CH +3645764329,3645764329,ES +3645764330,3645764330,DE +3645764331,3645764331,RU +3645764332,3645764332,NL +3645764333,3645764333,GR +3645764334,3645764334,ES +3645764335,3645764335,DE +3645764336,3645764336,MY +3645764337,3645764337,HU +3645764338,3645764338,NL +3645764339,3645764340,DE +3645764341,3645764341,IE +3645764342,3645764342,IT +3645764343,3645764343,ES +3645764344,3645764345,DE +3645764346,3645764346,IT +3645764347,3645764347,IE +3645764348,3645764348,NL +3645764349,3645764349,BE +3645764350,3645764350,IT +3645764351,3645764356,DE +3645764357,3645764357,RU +3645764358,3645764358,FR +3645764359,3645764359,IT +3645764360,3645764360,DE +3645764361,3645764361,CH +3645764362,3645764362,GB +3645764363,3645764364,NL +3645764365,3645764365,BE +3645764366,3645764367,DE +3645764368,3645764368,IT +3645764369,3645764369,DE +3645764370,3645764370,GB +3645764371,3645764371,ES +3645764372,3645764373,FR +3645764374,3645764375,DE +3645764376,3645764377,NL +3645764378,3645764378,DE +3645764379,3645764380,GB +3645764381,3645764381,DE +3645764382,3645764382,NL +3645764383,3645764383,FR +3645764384,3645764384,AT +3645764385,3645764388,DE +3645764389,3645764389,NL +3645764390,3645764390,DE +3645764391,3645764391,NL +3645764392,3645764392,GR +3645764393,3645764393,DE +3645764394,3645764394,FR +3645764395,3645764396,NL +3645764397,3645764397,DE +3645764398,3645764398,NL +3645764399,3645764399,DE +3645764400,3645764401,NL +3645764402,3645764403,FR +3645764404,3645764406,NL +3645764407,3645764408,DE +3645764409,3645764409,FR +3645764410,3645764410,DE +3645764411,3645764411,FR +3645764412,3645764412,NL +3645764413,3645764413,FR +3645764414,3645764417,NL +3645764418,3645764418,DE +3645764419,3645764419,NL +3645764420,3645764420,GB +3645764421,3645764421,DE +3645764422,3645764422,IT +3645764423,3645764423,HU +3645764424,3645764424,DE +3645764425,3645764425,GB +3645764426,3645764433,DE +3645764434,3645764434,NL +3645764435,3645764435,AT +3645764436,3645764436,NL +3645764437,3645764437,FR +3645764438,3645764439,DE +3645764440,3645764440,CH +3645764441,3645764441,DE +3645764442,3645764442,IT +3645764443,3645764444,DE +3645764445,3645764445,GB +3645764446,3645764446,NL +3645764447,3645764456,DE +3645764457,3645764457,IT +3645764458,3645764458,AT +3645764459,3645764459,IT +3645764460,3645764462,DE +3645764463,3645764463,NL +3645764464,3645764464,BE +3645764465,3645764465,DE +3645764466,3645764466,GR +3645764467,3645764467,DE +3645764468,3645764468,IT +3645764469,3645764470,DE +3645764471,3645764471,IT +3645764472,3645764472,GR +3645764473,3645764473,NL +3645764474,3645764474,DE +3645764475,3645764475,GR +3645764476,3645764476,DE +3645764477,3645764477,NL +3645764478,3645764478,GB +3645764479,3645764479,DE +3645764480,3645764481,NL +3645764482,3645764482,DE +3645764483,3645764483,NL +3645764484,3645764484,FR +3645764485,3645764485,NL +3645764486,3645764486,IE +3645764487,3645764487,DE +3645764488,3645764490,NL +3645764491,3645764491,DE +3645764492,3645764492,NL +3645764493,3645764493,ES +3645764494,3645764494,FR +3645764495,3645764495,NL +3645764496,3645764496,DE +3645764497,3645764497,NL +3645764498,3645764498,FR +3645764499,3645764500,NL +3645764501,3645764501,DE +3645764502,3645764505,NL +3645764506,3645764506,DE +3645764507,3645764507,ES +3645764508,3645764508,IT +3645764509,3645764511,NL +3645764512,3645764512,DE +3645764513,3645764513,NL +3645764514,3645764514,ES +3645764515,3645764515,DE +3645764516,3645764516,NL +3645764517,3645764518,DE +3645764519,3645764522,NL +3645764523,3645764523,DE +3645764524,3645764531,NL +3645764532,3645764532,DE +3645764533,3645764535,NL +3645764536,3645764536,IT +3645764537,3645764539,NL +3645764540,3645764540,DE +3645764541,3645764541,IT +3645764542,3645764549,NL +3645764550,3645764550,DE +3645764551,3645764551,GR +3645764552,3645764553,DE +3645764554,3645764554,NL +3645764555,3645764555,DE +3645764556,3645764556,CH +3645764557,3645764557,NL +3645764558,3645764561,DE +3645764562,3645764562,FR +3645764563,3645764563,ES +3645764564,3645764565,NL +3645764566,3645764566,DE +3645764567,3645764568,NL +3645764569,3645764569,DE +3645764570,3645764570,MA +3645764571,3645765127,DE +3645765128,3645765131,GR +3645765132,3645765135,DE +3645765136,3645765139,BE +3645765140,3645765143,IT +3645765144,3645765147,DE +3645765148,3645765151,IT +3645765152,3645765155,BE +3645765156,3645765171,IT +3645765172,3645765175,NO +3645765176,3645765179,DE +3645765180,3645765183,FR +3645765184,3645765187,GR +3645765188,3645765195,DE +3645765196,3645765199,CH +3645765200,3645765207,GB +3645765208,3645765211,FR +3645765212,3645765219,ES +3645765220,3645765223,PL +3645765224,3645765227,BE +3645765228,3645765231,GB +3645765232,3645765235,IT +3645765236,3645765239,FR +3645765240,3645765243,GB +3645765244,3645765247,IT +3645765248,3645765251,ES +3645765252,3645765255,DE +3645765256,3645765259,GR +3645765260,3645765263,PL +3645765264,3645765267,IT +3645765268,3645765271,PL +3645765272,3645765275,IT +3645765276,3645765279,FR +3645765280,3645765283,GB +3645765284,3645765287,ES +3645765288,3645765291,IT +3645765292,3645765295,DE +3645765296,3645765299,ES +3645765300,3645765303,FR +3645765304,3645765311,IT +3645765312,3645765315,TR +3645765316,3645765319,IT +3645765320,3645765323,FR +3645765324,3645765331,ES +3645765332,3645765335,FR +3645765336,3645765339,IT +3645765340,3645765343,FR +3645765344,3645765347,PL +3645765348,3645765351,GR +3645765352,3645765355,IT +3645765356,3645765359,ES +3645765360,3645765363,FR +3645765364,3645765367,ES +3645765368,3645765371,IT +3645765372,3645765375,CH +3645765376,3645765379,DE +3645765380,3645765383,BM +3645765384,3645765387,NL +3645765388,3645765391,DE +3645765392,3645765403,ES +3645765404,3645765407,GR +3645765408,3645765411,DK +3645765412,3645765415,IT +3645765416,3645765419,FR +3645765420,3645765423,DE +3645765424,3645765427,IT +3645765428,3645765443,DE +3645765444,3645765447,FR +3645765448,3645765451,ES +3645765452,3645765455,FR +3645765456,3645765459,AT +3645765460,3645765463,FR +3645765464,3645765467,GB +3645765468,3645765471,DE +3645765472,3645765475,NL +3645765476,3645765487,DE +3645765488,3645765491,HU +3645765492,3645765495,DE +3645765496,3645765499,GB +3645765500,3645765503,NL +3645765504,3645765507,CH +3645765508,3645765511,IT +3645765512,3645765519,GB +3645765520,3645765523,FR +3645765524,3645765527,IT +3645765528,3645765535,FR +3645765536,3645765539,SE +3645765540,3645765543,IL +3645765544,3645765547,BE +3645765548,3645765555,DE +3645765556,3645765559,IT +3645765560,3645765563,IE +3645765564,3645765567,ES +3645765568,3645765571,FR +3645765572,3645765575,DE +3645765576,3645765579,IT +3645765580,3645765583,GB +3645765584,3645765591,DE +3645765592,3645765595,IE +3645765596,3645765611,DE +3645765612,3645765615,IT +3645765616,3645765619,GB +3645765620,3645765623,CH +3645765624,3645765627,FR +3645765628,3645765639,DE +3645765640,3645765643,DK +3645765644,3645765647,GB +3645765648,3645765651,NL +3645765652,3645765667,DE +3645765668,3645765675,FR +3645765676,3645765679,DE +3645765680,3645765683,FR +3645765684,3645765687,NL +3645765688,3645765691,FR +3645765692,3645765695,CH +3645765696,3645765703,IT +3645765704,3645765707,DE +3645765708,3645765711,FR +3645765712,3645765715,DE +3645765716,3645765719,FR +3645765720,3645766401,DE +3645766402,3645766407,US +3645766408,3645767187,DE +3645767188,3645767188,US +3645767189,3645767193,DE +3645767194,3645767194,US +3645767195,3645767195,DE +3645767196,3645767196,US +3645767197,3645767197,DE +3645767198,3645767198,US +3645767199,3645767208,DE +3645767209,3645767209,US +3645767210,3645767222,DE +3645767223,3645767223,US +3645767224,3645767240,DE +3645767241,3645767241,US +3645767242,3645767426,DE +3645767427,3645767427,US +3645767428,3645767428,DE +3645767429,3645767429,US +3645767430,3645767431,DE +3645767432,3645767433,US +3645767434,3645767434,CA +3645767435,3645767448,US +3645767449,3645767449,DE +3645767450,3645767455,US +3645767456,3645767502,DE +3645767503,3645767503,US +3645767504,3645767679,DE +3645767680,3645771775,IE +3645771776,3645779967,SE +3645779968,3645784063,PS +3645788160,3645792255,GB +3645792256,3645796351,NO +3645796352,3645800447,CH +3645800448,3645804543,DE +3645804544,3645808639,GB +3645808640,3645812735,DE +3645812736,3645816831,RU +3645816832,3645825023,FI +3645825024,3645829119,GR +3645829120,3645833215,NL +3645833216,3645841407,RU +3645841408,3645845503,BG +3645845504,3645849599,RU +3645849600,3645857791,BG +3645857792,3645865983,GB +3645865984,3645870079,HU +3645870080,3645874175,PL +3645874176,3645878271,GB +3645878272,3645882367,DE +3645882368,3645886463,CH +3645886464,3645886991,DE +3645886992,3645886995,GB +3645886996,3645888127,DE +3645888128,3645888143,AT +3645888144,3645888159,DE +3645888160,3645888191,AT +3645888192,3645890559,DE +3645890560,3645894655,RU +3645894656,3645898751,NL +3645898752,3646501711,DE +3646501712,3646501719,US +3646501720,3646513103,DE +3646513104,3646513111,CA +3646513112,3646947327,DE +3646947328,3647209471,PL +3647209472,3647602687,NL +3647602688,3647658751,RU +3647658752,3647659007,GE +3647659008,3647665151,RU +3647665152,3647665407,GE +3647665408,3647722751,RU +3647722752,3647722879,BY +3647722880,3647733759,RU +3647733760,3647864831,FR +3647864832,3647864863,GB +3647864864,3647864879,DE +3647864880,3647864887,GB +3647864888,3647864935,DE +3647864936,3647864943,GB +3647864944,3647865071,DE +3647865072,3647865087,GB +3647865088,3647865127,DE +3647865128,3647865135,GB +3647865136,3647865143,DE +3647865144,3647865167,GB +3647865168,3647865175,DE +3647865176,3647865183,GB +3647865184,3647865191,DE +3647865192,3647865199,GB +3647865200,3647865223,DE +3647865224,3647865231,GB +3647865232,3647865271,DE +3647865272,3647865279,GB +3647865280,3647865295,DE +3647865296,3647865303,GB +3647865304,3647865311,DE +3647865312,3647865343,GB +3647865344,3647865351,DE +3647865352,3647865359,GB +3647865360,3647865391,DE +3647865392,3647865399,GB +3647865400,3647865551,DE +3647865552,3647865559,GB +3647865560,3647865567,DE +3647865568,3647865575,GB +3647865576,3647865631,DE +3647865632,3647865639,GB +3647865640,3647865687,DE +3647865688,3647865703,GB +3647865704,3647865735,DE +3647865736,3647865743,GB +3647865744,3647865783,DE +3647865784,3647865791,GB +3647865792,3647865895,DE +3647865896,3647865903,GB +3647865904,3647865935,DE +3647865936,3647865951,GB +3647865952,3647865959,DE +3647865960,3647865967,GB +3647865968,3647866039,DE +3647866040,3647866047,GB +3647866048,3647866079,DE +3647866080,3647866111,GB +3647866112,3647866151,DE +3647866152,3647866159,GB +3647866160,3647866175,DE +3647866176,3647866191,GB +3647866192,3647866279,DE +3647866280,3647866287,GB +3647866288,3647866311,DE +3647866312,3647866319,GB +3647866320,3647866327,DE +3647866328,3647866367,GB +3647866368,3647866391,DE +3647866392,3647866399,GB +3647866400,3647866463,DE +3647866464,3647866479,GB +3647866480,3647866535,DE +3647866536,3647866551,GB +3647866552,3647866559,DE +3647866560,3647866567,GB +3647866568,3647866591,DE +3647866592,3647866599,GB +3647866600,3647866663,DE +3647866664,3647866679,GB +3647866680,3647866727,DE +3647866728,3647866735,GB +3647866736,3647866743,DE +3647866744,3647866751,GB +3647866752,3647866759,DE +3647866760,3647866775,GB +3647866776,3647866815,DE +3647866816,3647866823,GB +3647866824,3647866863,DE +3647866864,3647866871,GB +3647866872,3647866975,DE +3647866976,3647866983,GB +3647866984,3647867127,DE +3647867128,3647867135,GB +3647867136,3647867167,DE +3647867168,3647867175,GB +3647867176,3647867199,DE +3647867200,3647867207,GB +3647867208,3647867255,DE +3647867256,3647867263,GB +3647867264,3647867343,DE +3647867344,3647867351,GB +3647867352,3647867383,DE +3647867384,3647867423,GB +3647867424,3647867463,DE +3647867464,3647867471,GB +3647867472,3647867599,DE +3647867600,3647867607,GB +3647867608,3647867679,DE +3647867680,3647867687,GB +3647867688,3647867695,DE +3647867696,3647867703,GB +3647867704,3647867727,DE +3647867728,3647867735,GB +3647867736,3647868063,DE +3647868064,3647868071,GB +3647868072,3647868135,DE +3647868136,3647868159,GB +3647868160,3647868231,DE +3647868232,3647868239,GB +3647868240,3647868263,DE +3647868264,3647868271,GB +3647868272,3647868287,DE +3647868288,3647868295,GB +3647868296,3647868367,DE +3647868368,3647868375,GB +3647868376,3647868383,DE +3647868384,3647868391,GB +3647868392,3647868399,DE +3647868400,3647868415,GB +3647868416,3647868431,DE +3647868432,3647868447,GB +3647868448,3647868479,DE +3647868480,3647868487,GB +3647868488,3647868639,DE +3647868640,3647868647,GB +3647868648,3647868663,DE +3647868664,3647868703,GB +3647868704,3647868711,DE +3647868712,3647868719,GB +3647868720,3647868727,DE +3647868728,3647868735,GB +3647868736,3647868831,DE +3647868832,3647868839,GB +3647868840,3647868887,DE +3647868888,3647868895,GB +3647868896,3647868959,DE +3647868960,3647868967,GB +3647868968,3647869071,DE +3647869072,3647869087,GB +3647869088,3647869279,DE +3647869280,3647869287,GB +3647869288,3647869375,DE +3647869376,3647869383,GB +3647869384,3647869407,DE +3647869408,3647869415,GB +3647869416,3647869423,DE +3647869424,3647869439,GB +3647869440,3647869455,DE +3647869456,3647869463,GB +3647869464,3647869567,DE +3647869568,3647869575,GB +3647869576,3647869583,DE +3647869584,3647869591,GB +3647869592,3647869775,DE +3647869776,3647869783,GB +3647869784,3647869791,DE +3647869792,3647869799,GB +3647869800,3647869863,DE +3647869864,3647869871,GB +3647869872,3647869991,DE +3647869992,3647869999,GB +3647870000,3647870127,DE +3647870128,3647870135,GB +3647870136,3647870191,DE +3647870192,3647870207,GB +3647870208,3647870447,DE +3647870448,3647870463,GB +3647870464,3647870503,DE +3647870504,3647870519,GB +3647870520,3647870535,DE +3647870536,3647870543,GB +3647870544,3647870583,DE +3647870584,3647870591,GB +3647870592,3647870639,DE +3647870640,3647870647,GB +3647870648,3647870719,DE +3647870720,3647870751,GB +3647870752,3647870815,DE +3647870816,3647870831,GB +3647870832,3647871039,DE +3647871040,3647871047,GB +3647871048,3647871055,DE +3647871056,3647871071,GB +3647871072,3647871103,DE +3647871104,3647871119,GB +3647871120,3647871127,DE +3647871128,3647871135,GB +3647871136,3647871151,DE +3647871152,3647871167,GB +3647871168,3647871191,DE +3647871192,3647871199,GB +3647871200,3647871215,DE +3647871216,3647871231,GB +3647871232,3647871287,DE +3647871288,3647871295,GB +3647871296,3647871303,DE +3647871304,3647871311,GB +3647871312,3647871351,DE +3647871352,3647871367,GB +3647871368,3647871407,DE +3647871408,3647871431,GB +3647871432,3647871447,DE +3647871448,3647871455,GB +3647871456,3647871471,DE +3647871472,3647871487,GB +3647871488,3647871631,DE +3647871632,3647871999,GB +3647872000,3647872239,DE +3647872240,3647872247,GB +3647872248,3647872311,DE +3647872312,3647872335,GB +3647872336,3647872359,DE +3647872360,3647872367,GB +3647872368,3647872407,DE +3647872408,3647872415,GB +3647872416,3647872471,DE +3647872472,3647872479,GB +3647872480,3647872495,DE +3647872496,3647872511,GB +3647872512,3647872679,DE +3647872680,3647872687,GB +3647872688,3647872759,DE +3647872760,3647872767,GB +3647872768,3647872783,DE +3647872784,3647872927,GB +3647872928,3647872959,DE +3647872960,3647872967,GB +3647872968,3647872975,DE +3647872976,3647872983,GB +3647872984,3647873071,DE +3647873072,3647873079,GB +3647873080,3647873087,DE +3647873088,3647873103,GB +3647873104,3647873279,DE +3647873280,3647873319,GB +3647873320,3647873375,DE +3647873376,3647873407,GB +3647873408,3647873535,DE +3647873536,3647873567,GB +3647873568,3647873599,DE +3647873600,3647873647,GB +3647873648,3647874958,DE +3647874959,3647874959,GB +3647874960,3647875039,DE +3647875040,3647875055,GB +3647875056,3647875095,DE +3647875096,3647875103,GB +3647875104,3647875111,DE +3647875112,3647875119,GB +3647875120,3647875127,DE +3647875128,3647875151,GB +3647875152,3647875175,DE +3647875176,3647875231,GB +3647875232,3647875239,DE +3647875240,3647875255,GB +3647875256,3647875327,DE +3647875328,3647875343,GB +3647875344,3647875367,DE +3647875368,3647875383,GB +3647875384,3647875455,DE +3647875456,3647875487,GB +3647875488,3647875527,DE +3647875528,3647875839,GB +3647875840,3647876095,DE +3647876096,3647876359,GB +3647876360,3647876375,DE +3647876376,3647876383,GB +3647876384,3647876415,DE +3647876416,3647876431,GB +3647876432,3647876439,DE +3647876440,3647876447,GB +3647876448,3647876455,DE +3647876456,3647876471,GB +3647876472,3647876639,DE +3647876640,3647876655,GB +3647876656,3647876663,DE +3647876664,3647876671,GB +3647876672,3647876703,DE +3647876704,3647876711,GB +3647876712,3647876759,DE +3647876760,3647876783,GB +3647876784,3647876839,DE +3647876840,3647876863,GB +3647876864,3647877447,DE +3647877448,3647877455,GB +3647877456,3647877495,DE +3647877496,3647877503,GB +3647877504,3647877567,DE +3647877568,3647877599,GB +3647877600,3647877615,DE +3647877616,3647877631,GB +3647877632,3647877635,DE +3647877636,3647877639,GB +3647877640,3647877643,DE +3647877644,3647877671,GB +3647877672,3647877675,DE +3647877676,3647877771,GB +3647877772,3647877775,DE +3647877776,3647877875,GB +3647877876,3647877879,DE +3647877880,3647877895,GB +3647877896,3647877927,DE +3647877928,3647877951,GB +3647877952,3647878103,DE +3647878104,3647878111,GB +3647878112,3647878447,DE +3647878448,3647878479,GB +3647878480,3647878487,DE +3647878488,3647878495,GB +3647878496,3647878503,DE +3647878504,3647878527,GB +3647878528,3647878591,DE +3647878592,3647878607,GB +3647878608,3647879231,DE +3647879232,3647879263,GB +3647879264,3647879695,DE +3647879696,3647879703,GB +3647879704,3647879735,DE +3647879736,3647879743,GB +3647879744,3647879775,DE +3647879776,3647879807,GB +3647879808,3647879839,DE +3647879840,3647879867,GB +3647879868,3647879879,DE +3647879880,3647879887,GB +3647879888,3647879895,DE +3647879896,3647879903,GB +3647879904,3647879935,DE +3647879936,3647879999,GB +3647880000,3647880047,DE +3647880048,3647880127,GB +3647880128,3647880183,DE +3647880184,3647880447,GB +3647880448,3647880959,DE +3647880960,3647880991,GB +3647880992,3647881015,DE +3647881016,3647881023,GB +3647881024,3647881135,DE +3647881136,3647881183,GB +3647881184,3647881199,DE +3647881200,3647881215,GB +3647881216,3647881231,DE +3647881232,3647881239,GB +3647881240,3647881243,DE +3647881244,3647881247,GB +3647881248,3647881271,DE +3647881272,3647881279,GB +3647881280,3647881375,DE +3647881376,3647881383,GB +3647881384,3647881471,DE +3647881472,3647881727,GB +3647881728,3647881991,DE +3647881992,3647881999,GB +3647882000,3647882271,DE +3647882272,3647882303,GB +3647882304,3647882343,DE +3647882344,3647882351,GB +3647882352,3647882359,DE +3647882360,3647882367,GB +3647882368,3647882415,DE +3647882416,3647882423,GB +3647882424,3647882431,DE +3647882432,3647882503,GB +3647882504,3647882511,DE +3647882512,3647882575,GB +3647882576,3647882623,DE +3647882624,3647882687,GB +3647882688,3647883071,DE +3647883072,3647883095,GB +3647883096,3647883135,DE +3647883136,3647883151,GB +3647883152,3647883207,DE +3647883208,3647883215,GB +3647883216,3647883231,DE +3647883232,3647883239,GB +3647883240,3647883551,DE +3647883552,3647883559,GB +3647883560,3647883575,DE +3647883576,3647883583,GB +3647883584,3647884287,DE +3647884288,3647884351,GB +3647884352,3647884367,DE +3647884368,3647884383,GB +3647884384,3647884415,DE +3647884416,3647884543,GB +3647884544,3647884847,DE +3647884848,3647884863,GB +3647884864,3647884895,DE +3647884896,3647884907,GB +3647884908,3647884915,DE +3647884916,3647884919,GB +3647884920,3647885199,DE +3647885200,3647885215,GB +3647885216,3647885247,DE +3647885248,3647885567,GB +3647885568,3647885575,DE +3647885576,3647885583,GB +3647885584,3647885599,DE +3647885600,3647885607,GB +3647885608,3647885759,DE +3647885760,3647886079,GB +3647886080,3647886111,DE +3647886112,3647886119,GB +3647886120,3647886175,DE +3647886176,3647886183,GB +3647886184,3647886187,DE +3647886188,3647886199,GB +3647886200,3647886271,DE +3647886272,3647886303,GB +3647886304,3647886335,DE +3647886336,3647886591,GB +3647886592,3647886727,DE +3647886728,3647886847,GB +3647886848,3647887427,DE +3647887428,3647887447,GB +3647887448,3647887471,DE +3647887472,3647887483,GB +3647887484,3647887487,DE +3647887488,3647887527,GB +3647887528,3647887599,DE +3647887600,3647887615,GB +3647887616,3647887679,DE +3647887680,3647887743,GB +3647887744,3647887871,DE +3647887872,3647887903,GB +3647887904,3647887911,DE +3647887912,3647887951,GB +3647887952,3647887959,DE +3647887960,3647887967,GB +3647887968,3647888135,DE +3647888136,3647888143,GB +3647888144,3647888199,DE +3647888200,3647888207,GB +3647888208,3647888215,DE +3647888216,3647888223,GB +3647888224,3647888255,DE +3647888256,3647888383,GB +3647888384,3647888895,DE +3647888896,3647888959,GB +3647888960,3647889023,DE +3647889024,3647889055,GB +3647889056,3647889215,DE +3647889216,3647889231,GB +3647889232,3647889375,DE +3647889376,3647889383,GB +3647889384,3647889407,DE +3647889408,3647889471,GB +3647889472,3647889535,DE +3647889536,3647889671,GB +3647889672,3647889687,DE +3647889688,3647889695,GB +3647889696,3647889727,DE +3647889728,3647889735,GB +3647889736,3647890175,DE +3647890176,3647890239,GB +3647890240,3647890247,DE +3647890248,3647890255,GB +3647890256,3647890279,DE +3647890280,3647890295,GB +3647890296,3647890375,DE +3647890376,3647890447,GB +3647890448,3647890471,DE +3647890472,3647890479,GB +3647890480,3647890487,DE +3647890488,3647890527,GB +3647890528,3647890559,DE +3647890560,3647890847,GB +3647890848,3647890879,DE +3647890880,3647891199,GB +3647891200,3647891463,DE +3647891464,3647891471,GB +3647891472,3647891487,DE +3647891488,3647891503,GB +3647891504,3647891791,DE +3647891792,3647891807,GB +3647891808,3647892239,DE +3647892240,3647892247,GB +3647892248,3647892799,DE +3647892800,3647892815,GB +3647892816,3647892991,DE +3647892992,3647893135,GB +3647893136,3647893183,DE +3647893184,3647893199,GB +3647893200,3647893503,DE +3647893504,3647893511,GB +3647893512,3647893519,DE +3647893520,3647893527,GB +3647893528,3647893535,DE +3647893536,3647893551,GB +3647893552,3647894335,DE +3647894336,3647894351,GB +3647894352,3647894719,DE +3647894720,3647894783,GB +3647894784,3647894911,DE +3647894912,3647894975,GB +3647894976,3647894991,DE +3647894992,3647895007,GB +3647895008,3647895023,DE +3647895024,3647895039,GB +3647895040,3647895311,DE +3647895312,3647895327,GB +3647895328,3647895359,DE +3647895360,3647895399,GB +3647895400,3647895687,DE +3647895688,3647895711,GB +3647895712,3647895799,DE +3647895800,3647895807,GB +3647895808,3647896095,DE +3647896096,3647896127,GB +3647896128,3647896159,DE +3647896160,3647896223,GB +3647896224,3647896255,DE +3647896256,3647896295,GB +3647896296,3647896303,DE +3647896304,3647896311,GB +3647896312,3647896319,DE +3647896320,3647896351,GB +3647896352,3647896463,DE +3647896464,3647896471,GB +3647896472,3647896511,DE +3647896512,3647896519,GB +3647896520,3647896527,DE +3647896528,3647896559,GB +3647896560,3647896575,DE +3647896576,3647896607,GB +3647896608,3647896623,DE +3647896624,3647896631,GB +3647896632,3647896671,DE +3647896672,3647896679,GB +3647896680,3647896687,DE +3647896688,3647896695,GB +3647896696,3647897047,DE +3647897048,3647897055,GB +3647897056,3647897087,DE +3647897088,3647897103,GB +3647897104,3647897111,DE +3647897112,3647897135,GB +3647897136,3647897295,DE +3647897296,3647897343,GB +3647897344,3647897359,DE +3647897360,3647897375,GB +3647897376,3647897415,DE +3647897416,3647897423,GB +3647897424,3647901247,DE +3647901248,3647901255,GB +3647901256,3647901259,DE +3647901260,3647901263,GB +3647901264,3647901439,DE +3647901440,3647901519,GB +3647901520,3647901535,DE +3647901536,3647901567,GB +3647901568,3647901583,DE +3647901584,3647901695,GB +3647901696,3647901735,DE +3647901736,3647901743,GB +3647901744,3647901751,DE +3647901752,3647901759,GB +3647901760,3647901863,DE +3647901864,3647901871,GB +3647901872,3647901895,DE +3647901896,3647901911,GB +3647901912,3647901935,DE +3647901936,3647901951,GB +3647901952,3647902063,DE +3647902064,3647902071,GB +3647902072,3647902079,DE +3647902080,3647902087,GB +3647902088,3647902095,DE +3647902096,3647902111,GB +3647902112,3647902159,DE +3647902160,3647902167,GB +3647902168,3647902183,DE +3647902184,3647902207,GB +3647902208,3647902263,DE +3647902264,3647902463,GB +3647902464,3647902495,DE +3647902496,3647902511,GB +3647902512,3647902559,DE +3647902560,3647902719,GB +3647902720,3647902807,DE +3647902808,3647903007,GB +3647903008,3647903039,DE +3647903040,3647903047,GB +3647903048,3647903055,DE +3647903056,3647903063,GB +3647903064,3647903119,DE +3647903120,3647903743,GB +3647903744,3647903919,DE +3647903920,3647903927,GB +3647903928,3647903935,DE +3647903936,3647903943,GB +3647903944,3647903967,DE +3647903968,3647903975,GB +3647903976,3647904023,DE +3647904024,3647904031,GB +3647904032,3647904103,DE +3647904104,3647904111,GB +3647904112,3647904119,DE +3647904120,3647904127,GB +3647904128,3647904207,DE +3647904208,3647904215,GB +3647904216,3647904391,DE +3647904392,3647904398,GB +3647904399,3647904399,DE +3647904400,3647904447,GB +3647904448,3647904735,DE +3647904736,3647904751,GB +3647904752,3647904799,DE +3647904800,3647904807,GB +3647904808,3647904967,DE +3647904968,3647904999,GB +3647905000,3647905007,DE +3647905008,3647905023,GB +3647905024,3647905055,DE +3647905056,3647905063,GB +3647905064,3647905071,DE +3647905072,3647905079,GB +3647905080,3647905191,DE +3647905192,3647905279,GB +3647905280,3647905311,DE +3647905312,3647905535,GB +3647905536,3647905567,DE +3647905568,3647905791,GB +3647905792,3647905839,DE +3647905840,3647905847,GB +3647905848,3647905863,DE +3647905864,3647906047,GB +3647906048,3647906079,DE +3647906080,3647906087,GB +3647906088,3647906095,DE +3647906096,3647906103,GB +3647906104,3647906119,DE +3647906120,3647906127,GB +3647906128,3647906151,DE +3647906152,3647906159,GB +3647906160,3647906175,DE +3647906176,3647906303,GB +3647906304,3647906335,DE +3647906336,3647906559,GB +3647906560,3647906591,DE +3647906592,3647907839,GB +3647907840,3647907879,DE +3647907880,3647907887,GB +3647907888,3647907967,DE +3647907968,3647907975,GB +3647907976,3647908007,DE +3647908008,3647908015,GB +3647908016,3647908071,DE +3647908072,3647908079,GB +3647908080,3647908127,DE +3647908128,3647908135,GB +3647908136,3647908151,DE +3647908152,3647908159,GB +3647908160,3647908207,DE +3647908208,3647908215,GB +3647908216,3647908255,DE +3647908256,3647908263,GB +3647908264,3647908271,DE +3647908272,3647908279,GB +3647908280,3647908343,DE +3647908344,3647908351,GB +3647908352,3647908479,DE +3647908480,3647908487,GB +3647908488,3647908495,DE +3647908496,3647908503,GB +3647908504,3647908687,DE +3647908688,3647908695,GB +3647908696,3647908735,DE +3647908736,3647908751,GB +3647908752,3647908775,DE +3647908776,3647908783,GB +3647908784,3647908815,DE +3647908816,3647908831,GB +3647908832,3647908847,DE +3647908848,3647908855,GB +3647908856,3647908967,DE +3647908968,3647908975,GB +3647908976,3647909095,DE +3647909096,3647909111,GB +3647909112,3647909119,DE +3647909120,3647909151,GB +3647909152,3647909159,DE +3647909160,3647909175,GB +3647909176,3647909207,DE +3647909208,3647909215,GB +3647909216,3647909303,DE +3647909304,3647909311,GB +3647909312,3647909327,DE +3647909328,3647909335,GB +3647909336,3647909631,DE +3647909632,3647909671,GB +3647909672,3647909695,DE +3647909696,3647909703,GB +3647909704,3647909711,DE +3647909712,3647909727,GB +3647909728,3647909735,DE +3647909736,3647909743,GB +3647909744,3647909775,DE +3647909776,3647909791,GB +3647909792,3647909815,DE +3647909816,3647909839,GB +3647909840,3647909879,DE +3647909880,3647911423,GB +3647911424,3647911439,DE +3647911440,3647911455,GB +3647911456,3647911519,DE +3647911520,3647911535,GB +3647911536,3647911551,DE +3647911552,3647911583,GB +3647911584,3647911631,DE +3647911632,3647911647,GB +3647911648,3647912615,DE +3647912616,3647912623,GB +3647912624,3647912671,DE +3647912672,3647912679,GB +3647912680,3647912687,DE +3647912688,3647912695,GB +3647912696,3647912959,DE +3647912960,3647913471,GB +3647913472,3647913727,DE +3647913728,3647913983,GB +3647913984,3647914039,DE +3647914040,3647914055,GB +3647914056,3647914223,DE +3647914224,3647914231,GB +3647914232,3647914239,DE +3647914240,3647914271,GB +3647914272,3647914319,DE +3647914320,3647914327,GB +3647914328,3647914399,DE +3647914400,3647914415,GB +3647914416,3647914463,DE +3647914464,3647914471,GB +3647914472,3647914487,DE +3647914488,3647914751,GB +3647914752,3647915055,DE +3647915056,3647915063,GB +3647915064,3647915111,DE +3647915112,3647915135,GB +3647915136,3647915175,DE +3647915176,3647915183,GB +3647915184,3647915223,DE +3647915224,3647915231,GB +3647915232,3647915295,DE +3647915296,3647915311,GB +3647915312,3647915327,DE +3647915328,3647915335,GB +3647915336,3647915359,DE +3647915360,3647915367,GB +3647915368,3647915495,DE +3647915496,3647915519,GB +3647915520,3647915527,DE +3647915528,3647915535,GB +3647915536,3647915583,DE +3647915584,3647915591,GB +3647915592,3647915671,DE +3647915672,3647915687,GB +3647915688,3647915775,DE +3647915776,3647915807,GB +3647915808,3647915823,DE +3647915824,3647915831,GB +3647915832,3647915855,DE +3647915856,3647915871,GB +3647915872,3647915911,DE +3647915912,3647915919,GB +3647915920,3647915927,DE +3647915928,3647915935,GB +3647915936,3647915943,DE +3647915944,3647915951,GB +3647915952,3647915967,DE +3647915968,3647915975,GB +3647915976,3647916023,DE +3647916024,3647916095,GB +3647916096,3647916223,DE +3647916224,3647916303,GB +3647916304,3647916351,DE +3647916352,3647916367,GB +3647916368,3647916415,DE +3647916416,3647916543,GB +3647916544,3647916575,DE +3647916576,3647916607,GB +3647916608,3647916623,DE +3647916624,3647916663,GB +3647916664,3647916767,DE +3647916768,3647916783,GB +3647916784,3647916799,DE +3647916800,3647917055,SE +3647917056,3647917599,DE +3647917600,3647917615,US +3647917616,3647917647,DE +3647917648,3647917663,GB +3647917664,3647917791,DE +3647917792,3647917823,GB +3647917824,3647917839,DE +3647917840,3647917871,GB +3647917872,3647918151,DE +3647918152,3647918159,GB +3647918160,3647918367,DE +3647918368,3647918383,GB +3647918384,3647918423,DE +3647918424,3647918431,GB +3647918432,3647918463,DE +3647918464,3647918479,GB +3647918480,3647918487,DE +3647918488,3647918495,GB +3647918496,3647918503,DE +3647918504,3647918527,GB +3647918528,3647918543,DE +3647918544,3647918559,GB +3647918560,3647918615,DE +3647918616,3647918623,GB +3647918624,3647918671,DE +3647918672,3647918679,GB +3647918680,3647918703,DE +3647918704,3647918711,GB +3647918712,3647918751,DE +3647918752,3647918759,GB +3647918760,3647918927,DE +3647918928,3647918935,GB +3647918936,3647918959,DE +3647918960,3647918967,GB +3647918968,3647919015,DE +3647919016,3647919023,GB +3647919024,3647919031,DE +3647919032,3647919039,GB +3647919040,3647919055,DE +3647919056,3647919063,GB +3647919064,3647919079,DE +3647919080,3647919135,GB +3647919136,3647919175,DE +3647919176,3647919391,GB +3647919392,3647919431,DE +3647919432,3647919439,GB +3647919440,3647919447,DE +3647919448,3647920159,GB +3647920160,3647920223,DE +3647920224,3647920415,GB +3647920416,3647920439,DE +3647920440,3647920479,GB +3647920480,3647920495,DE +3647920496,3647920503,GB +3647920504,3647920519,DE +3647920520,3647920527,GB +3647920528,3647920535,DE +3647920536,3647920679,GB +3647920680,3647920695,DE +3647920696,3647921151,GB +3647921152,3647921391,DE +3647921392,3647921407,GB +3647921408,3647921559,DE +3647921560,3647921567,GB +3647921568,3647921615,DE +3647921616,3647921631,GB +3647921632,3647921647,DE +3647921648,3647921663,GB +3647921664,3647921911,DE +3647921912,3647921919,GB +3647921920,3647921967,DE +3647921968,3647921983,GB +3647921984,3647922095,DE +3647922096,3647922103,GB +3647922104,3647922167,DE +3647922168,3647922215,GB +3647922216,3647922219,DE +3647922220,3647922223,GB +3647922224,3647922239,DE +3647922240,3647922271,GB +3647922272,3647922335,DE +3647922336,3647922367,GB +3647922368,3647922415,DE +3647922416,3647922423,GB +3647922424,3647922455,DE +3647922456,3647922463,GB +3647922464,3647922647,DE +3647922648,3647922655,GB +3647922656,3647922687,DE +3647922688,3647922811,GB +3647922812,3647922815,DE +3647922816,3647922831,GB +3647922832,3647922835,DE +3647922836,3647922843,GB +3647922844,3647922847,DE +3647922848,3647922951,GB +3647922952,3647922959,FR +3647922960,3647922967,DE +3647922968,3647922983,GB +3647922984,3647923327,DE +3647923328,3647923331,GB +3647923332,3647923343,DE +3647923344,3647923351,GB +3647923352,3647923391,DE +3647923392,3647923407,GB +3647923408,3647923455,DE +3647923456,3647923711,GB +3647923712,3647923775,DE +3647923776,3647923967,GB +3647923968,3647924183,DE +3647924184,3647924191,GB +3647924192,3647924199,DE +3647924200,3647924207,GB +3647924208,3647924287,DE +3647924288,3647924383,GB +3647924384,3647924399,DE +3647924400,3647924415,GB +3647924416,3647924447,DE +3647924448,3647924463,GB +3647924464,3647924479,DE +3647924480,3647925247,GB +3647925248,3647925255,DE +3647925256,3647925263,GB +3647925264,3647925335,DE +3647925336,3647925343,GB +3647925344,3647925543,DE +3647925544,3647925559,GB +3647925560,3647925575,DE +3647925576,3647925583,GB +3647925584,3647925591,DE +3647925592,3647925599,GB +3647925600,3647925639,DE +3647925640,3647925655,GB +3647925656,3647925671,DE +3647925672,3647925679,GB +3647925680,3647925751,DE +3647925752,3647925759,GB +3647925760,3647925911,DE +3647925912,3647925919,GB +3647925920,3647926055,DE +3647926056,3647926063,GB +3647926064,3647926095,DE +3647926096,3647926103,GB +3647926104,3647926159,DE +3647926160,3647926175,GB +3647926176,3647926183,DE +3647926184,3647926191,GB +3647926192,3647926223,DE +3647926224,3647926239,GB +3647926240,3647926255,DE +3647926256,3647926271,GB +3647926272,3647926351,DE +3647926352,3647926375,GB +3647926376,3647926407,DE +3647926408,3647926423,GB +3647926424,3647926463,DE +3647926464,3647926471,GB +3647926472,3647926591,DE +3647926592,3647926615,GB +3647926616,3647926623,DE +3647926624,3647926631,GB +3647926632,3647926655,DE +3647926656,3647926663,GB +3647926664,3647926679,DE +3647926680,3647926687,GB +3647926688,3647926695,DE +3647926696,3647926703,GB +3647926704,3647926711,DE +3647926712,3647926719,GB +3647926720,3647926759,DE +3647926760,3647926767,GB +3647926768,3647926775,DE +3647926776,3647926791,GB +3647926792,3647926807,DE +3647926808,3647926815,GB +3647926816,3647926823,DE +3647926824,3647926831,GB +3647926832,3647926839,DE +3647926840,3647926847,GB +3647926848,3647926863,DE +3647926864,3647926871,GB +3647926872,3647926879,DE +3647926880,3647926895,GB +3647926896,3647926903,DE +3647926904,3647927047,GB +3647927048,3647927055,DE +3647927056,3647927079,GB +3647927080,3647927087,DE +3647927088,3647927095,GB +3647927096,3647927119,DE +3647927120,3647927127,GB +3647927128,3647927135,DE +3647927136,3647927159,GB +3647927160,3647927167,DE +3647927168,3647927175,GB +3647927176,3647927191,DE +3647927192,3647927215,GB +3647927216,3647927239,DE +3647927240,3647927279,GB +3647927280,3647927295,DE +3647927296,3647927551,GB +3647927552,3647927591,DE +3647927592,3647927599,GB +3647927600,3647927615,DE +3647927616,3647927623,GB +3647927624,3647927647,DE +3647927648,3647927695,GB +3647927696,3647927703,DE +3647927704,3647927735,GB +3647927736,3647927759,DE +3647927760,3647927783,GB +3647927784,3647927791,DE +3647927792,3647928063,GB +3647928064,3647928119,DE +3647928120,3647928151,GB +3647928152,3647928175,DE +3647928176,3647928183,GB +3647928184,3647928199,DE +3647928200,3647928215,GB +3647928216,3647928223,DE +3647928224,3647928231,GB +3647928232,3647928247,DE +3647928248,3647928319,GB +3647928320,3647928639,DE +3647928640,3647928655,GB +3647928656,3647928671,DE +3647928672,3647929343,GB +3647929344,3647929599,DE +3647929600,3647929727,GB +3647929728,3647929791,DE +3647929792,3647929855,GB +3647929856,3647930383,DE +3647930384,3647930399,GB +3647930400,3647930471,DE +3647930472,3647930479,GB +3647930480,3647930623,DE +3647930624,3647930879,GB +3647930880,3647931159,DE +3647931160,3647931199,GB +3647931200,3647931279,DE +3647931280,3647931295,GB +3647931296,3647931391,DE +3647931392,3647931611,GB +3647931612,3647931615,DE +3647931616,3647931647,GB +3647931648,3647931775,DE +3647931776,3647931783,GB +3647931784,3647931787,DE +3647931788,3647931791,GB +3647931792,3647931799,DE +3647931800,3647931807,GB +3647931808,3647931855,DE +3647931856,3647931863,GB +3647931864,3647931871,DE +3647931872,3647931879,GB +3647931880,3647932199,DE +3647932200,3647932223,GB +3647932224,3647932287,DE +3647932288,3647932351,GB +3647932352,3647932383,DE +3647932384,3647932671,GB +3647932672,3647932975,DE +3647932976,3647932991,GB +3647932992,3647933063,DE +3647933064,3647933071,GB +3647933072,3647933103,DE +3647933104,3647933119,GB +3647933120,3647933375,DE +3647933376,3647933695,GB +3647933696,3647933791,DE +3647933792,3647933951,GB +3647933952,3647934463,DE +3647934464,3647934719,GB +3647934720,3647934783,DE +3647934784,3647934815,GB +3647934816,3647934847,DE +3647934848,3647935103,GB +3647935104,3647935199,DE +3647935200,3647935359,GB +3647935360,3647935423,DE +3647935424,3647935487,GB +3647935488,3647935743,DE +3647935744,3647936511,GB +3647936512,3647936539,DE +3647936540,3647936543,GB +3647936544,3647936555,DE +3647936556,3647936559,GB +3647936560,3647936563,DE +3647936564,3647936567,GB +3647936568,3647936575,DE +3647936576,3647936579,GB +3647936580,3647936603,DE +3647936604,3647936607,GB +3647936608,3647936623,DE +3647936624,3647936635,GB +3647936636,3647936639,DE +3647936640,3647936655,GB +3647936656,3647936659,DE +3647936660,3647936767,GB +3647936768,3647936775,DE +3647936776,3647936783,GB +3647936784,3647936823,DE +3647936824,3647936839,GB +3647936840,3647936943,DE +3647936944,3647936959,GB +3647936960,3647937535,DE +3647937536,3647937595,GB +3647937596,3647937599,DE +3647937600,3647937611,GB +3647937612,3647937615,DE +3647937616,3647938047,GB +3647938048,3647938207,DE +3647938208,3647938215,GB +3647938216,3647938231,DE +3647938232,3647938239,GB +3647938240,3647938303,DE +3647938304,3647938463,GB +3647938464,3647938471,DE +3647938472,3647938479,GB +3647938480,3647938495,DE +3647938496,3647938575,GB +3647938576,3647938583,DE +3647938584,3647938591,GB +3647938592,3647938615,DE +3647938616,3647938623,GB +3647938624,3647938639,DE +3647938640,3647938655,GB +3647938656,3647938671,DE +3647938672,3647938727,GB +3647938728,3647938767,DE +3647938768,3647938783,GB +3647938784,3647938807,DE +3647938808,3647938879,GB +3647938880,3647938887,DE +3647938888,3647938911,GB +3647938912,3647938927,DE +3647938928,3647938935,GB +3647938936,3647938943,DE +3647938944,3647938975,GB +3647938976,3647938983,DE +3647938984,3647938999,GB +3647939000,3647939007,DE +3647939008,3647939031,GB +3647939032,3647939047,DE +3647939048,3647939103,GB +3647939104,3647939143,DE +3647939144,3647939151,GB +3647939152,3647939167,DE +3647939168,3647939175,GB +3647939176,3647939239,DE +3647939240,3647939247,GB +3647939248,3647939583,DE +3647939584,3647939591,GB +3647939592,3647939615,DE +3647939616,3647939623,GB +3647939624,3647939639,DE +3647939640,3647939647,GB +3647939648,3647939703,DE +3647939704,3647939711,GB +3647939712,3647939751,DE +3647939752,3647939759,GB +3647939760,3647939807,DE +3647939808,3647939839,GB +3647939840,3647939927,DE +3647939928,3647939935,GB +3647939936,3647940047,DE +3647940048,3647940055,GB +3647940056,3647940447,DE +3647940448,3647940607,GB +3647940608,3647941119,DE +3647941120,3647941127,GB +3647941128,3647941135,DE +3647941136,3647941151,GB +3647941152,3647941215,DE +3647941216,3647941375,GB +3647941376,3647941559,DE +3647941560,3647941567,GB +3647941568,3647941575,DE +3647941576,3647941583,GB +3647941584,3647941887,DE +3647941888,3647941935,GB +3647941936,3647941939,DE +3647941940,3647941943,GB +3647941944,3647941955,DE +3647941956,3647941959,GB +3647941960,3647941967,DE +3647941968,3647941971,GB +3647941972,3647941983,DE +3647941984,3647941987,GB +3647941988,3647941991,DE +3647941992,3647941999,GB +3647942000,3647942007,DE +3647942008,3647942015,GB +3647942016,3647942023,DE +3647942024,3647942031,GB +3647942032,3647942047,DE +3647942048,3647942399,GB +3647942400,3647942687,DE +3647942688,3647942695,GB +3647942696,3647942711,DE +3647942712,3647942719,GB +3647942720,3647942783,DE +3647942784,3647942815,GB +3647942816,3647942839,DE +3647942840,3647942847,GB +3647942848,3647942903,DE +3647942904,3647943167,GB +3647943168,3647943207,DE +3647943208,3647943231,GB +3647943232,3647943295,DE +3647943296,3647943327,GB +3647943328,3647943423,DE +3647943424,3647943431,GB +3647943432,3647943435,DE +3647943436,3647943499,GB +3647943500,3647943503,DE +3647943504,3647943527,GB +3647943528,3647943543,DE +3647943544,3647943547,GB +3647943548,3647943559,DE +3647943560,3647943935,GB +3647943936,3647944087,DE +3647944088,3647944095,GB +3647944096,3647944575,DE +3647944576,3647944583,GB +3647944584,3647944591,DE +3647944592,3647944615,GB +3647944616,3647944623,DE +3647944624,3647944671,GB +3647944672,3647944687,DE +3647944688,3647944703,GB +3647944704,3647945215,DE +3647945216,3647945471,GB +3647945472,3647945475,DE +3647945476,3647945531,GB +3647945532,3647945535,DE +3647945536,3647945635,GB +3647945636,3647945643,DE +3647945644,3647945727,GB +3647945728,3647945983,DE +3647945984,3647946063,GB +3647946064,3647946071,DE +3647946072,3647946111,GB +3647946112,3647946127,DE +3647946128,3647946143,GB +3647946144,3647946175,DE +3647946176,3647946495,GB +3647946496,3647946499,DE +3647946500,3647946503,GB +3647946504,3647946527,DE +3647946528,3647946559,GB +3647946560,3647946687,DE +3647946688,3647946719,GB +3647946720,3647947391,DE +3647947392,3647947399,GB +3647947400,3647947407,DE +3647947408,3647947415,GB +3647947416,3647947423,DE +3647947424,3647947439,GB +3647947440,3647947447,DE +3647947448,3647947455,GB +3647947456,3647947487,DE +3647947488,3647947519,GB +3647947520,3647947647,DE +3647947648,3647947711,GB +3647947712,3647947735,DE +3647947736,3647947775,GB +3647947776,3647947919,DE +3647947920,3647947935,GB +3647947936,3647948191,DE +3647948192,3647948287,GB +3647948288,3647948543,DE +3647948544,3647948807,GB +3647948808,3647948815,DE +3647948816,3647949063,GB +3647949064,3647949079,DE +3647949080,3647949087,GB +3647949088,3647949095,DE +3647949096,3647949119,GB +3647949120,3647949151,DE +3647949152,3647949183,GB +3647949184,3647949439,DE +3647949440,3647949567,GB +3647949568,3647949887,DE +3647949888,3647949951,GB +3647949952,3647950047,DE +3647950048,3647950847,GB +3647950848,3647953023,DE +3647953024,3647953039,GB +3647953040,3647953055,DE +3647953056,3647953079,GB +3647953080,3647953407,DE +3647953408,3647953503,GB +3647953504,3647953511,DE +3647953512,3647953663,GB +3647953664,3647953791,DE +3647953792,3647953823,GB +3647953824,3647953919,DE +3647953920,3647954175,GB +3647954176,3647954207,DE +3647954208,3647954215,GB +3647954216,3647954231,DE +3647954232,3647954239,GB +3647954240,3647954719,DE +3647954720,3647954815,GB +3647954816,3647954911,DE +3647954912,3647955199,GB +3647955200,3647955207,DE +3647955208,3647955215,GB +3647955216,3647955287,DE +3647955288,3647955295,GB +3647955296,3647955311,DE +3647955312,3647955327,GB +3647955328,3647955383,DE +3647955384,3647955399,GB +3647955400,3647955415,DE +3647955416,3647955431,GB +3647955432,3647956479,DE +3647956480,3647956607,GB +3647956608,3647956615,DE +3647956616,3647956671,GB +3647956672,3647956991,DE +3647956992,3647957503,GB +3647957504,3647957543,DE +3647957544,3647957551,GB +3647957552,3647957559,DE +3647957560,3647957599,GB +3647957600,3647957623,DE +3647957624,3647957727,GB +3647957728,3647957759,DE +3647957760,3647957887,GB +3647957888,3647958015,DE +3647958016,3647958527,GB +3647958528,3647958655,DE +3647958656,3647958687,GB +3647958688,3647958911,DE +3647958912,3647959559,GB +3647959560,3647959567,DE +3647959568,3647959575,ES +3647959576,3647959607,GB +3647959608,3647959615,DE +3647959616,3647959655,GB +3647959656,3647959671,DE +3647959672,3647959679,GB +3647959680,3647959687,DE +3647959688,3647959711,GB +3647959712,3647959775,DE +3647959776,3647960831,GB +3647960832,3647960839,DE +3647960840,3647960847,GB +3647960848,3647961087,DE +3647961088,3647961151,GB +3647961152,3647961215,DE +3647961216,3647961279,GB +3647961280,3647961311,DE +3647961312,3647961343,GB +3647961344,3647961471,DE +3647961472,3647962111,GB +3647962112,3647962151,DE +3647962152,3647962159,GB +3647962160,3647962191,DE +3647962192,3647963167,GB +3647963168,3647963183,BE +3647963184,3647963231,GB +3647963232,3647963263,BE +3647963264,3647963647,GB +3647963648,3647963711,BE +3647963712,3647995903,GB +3647995904,3648004095,RU +3648004096,3648004607,GB +3648004608,3648004863,RU +3648004864,3648005119,GB +3648005120,3648006271,RU +3648006272,3648006399,GB +3648006400,3648007167,RU +3648007168,3648008191,GB +3648008192,3648016383,FR +3648016384,3648020479,GB +3648020480,3648024575,IT +3648024576,3648028671,NL +3648028672,3648032767,HU +3648032768,3648033023,IE +3648033024,3648033039,DE +3648033040,3648033087,IE +3648033088,3648033103,DE +3648033104,3648033119,IE +3648033120,3648033535,DE +3648033536,3648033791,IE +3648033792,3648034063,DE +3648034064,3648034079,IE +3648034080,3648036863,DE +3648036864,3648040959,CZ +3648040960,3648041020,BE +3648041021,3648041021,FR +3648041022,3648045055,BE +3648045056,3648049151,FI +3648049152,3648053247,UA +3648053248,3648057343,FR +3648057344,3648061439,FI +3648061440,3648069631,AM +3648069632,3648073727,DE +3648073728,3648077823,HU +3648077824,3648078079,BE +3648078080,3648078335,CG +3648078336,3648078463,BE +3648078464,3648078495,BF +3648078496,3648078527,BE +3648078528,3648078591,BF +3648078592,3648078847,CG +3648078848,3648079103,BE +3648079104,3648080383,UG +3648080384,3648080511,TZ +3648080512,3648080543,BF +3648080544,3648080639,TZ +3648080640,3648080895,BE +3648080896,3648080903,NE +3648080904,3648080919,CD +3648080920,3648080927,GA +3648080928,3648080959,CD +3648080960,3648080991,TD +3648080992,3648081007,SL +3648081008,3648081023,BE +3648081024,3648081055,GB +3648081056,3648081407,BE +3648081408,3648082175,MW +3648082176,3648082239,BE +3648082240,3648082687,LR +3648082688,3648085759,BE +3648085760,3648086015,LR +3648086016,3648090111,AT +3648090112,3648094207,RU +3648094208,3648102399,PL +3648102400,3648106495,GB +3648106496,3648110591,DE +3648110592,3648114687,FR +3648114688,3648118783,IT +3648118784,3648122879,PL +3648122880,3648126975,ES +3648126976,3648139263,RU +3648139264,3648143359,GB +3648143360,3648147455,DE +3648147456,3648149503,SE +3648149504,3648150015,GB +3648150016,3648150271,SE +3648150272,3648150527,FI +3648150528,3648150783,DK +3648150784,3648151039,NO +3648151040,3648151551,SE +3648151552,3648155647,NL +3648155648,3648159743,CH +3648159744,3648163839,ES +3648163840,3648167935,RU +3648167936,3648172031,IE +3648172032,3648176127,RU +3648176128,3648180223,FR +3648180224,3648180767,DE +3648180768,3648180799,AT +3648180800,3648180863,DE +3648180864,3648180991,IE +3648180992,3648181023,DE +3648181024,3648181055,AT +3648181056,3648181119,DE +3648181120,3648181247,IE +3648181248,3648181311,DE +3648181312,3648181343,AT +3648181344,3648181631,DE +3648181632,3648181647,AT +3648181648,3648181887,DE +3648181888,3648181903,AT +3648181904,3648181951,DE +3648181952,3648181967,RU +3648181968,3648182143,DE +3648182144,3648182159,NL +3648182160,3648182175,DE +3648182176,3648182207,RU +3648182208,3648182271,GB +3648182272,3648182783,DE +3648182784,3648182799,IT +3648182800,3648182815,AT +3648182816,3648182823,DE +3648182824,3648182831,RU +3648182832,3648182847,DE +3648182848,3648182911,IT +3648182912,3648183871,DE +3648183872,3648183935,GB +3648183936,3648184319,DE +3648184320,3648192511,RU +3648196608,3648200703,IT +3648200704,3648208895,SE +3648208896,3648212991,DE +3648212992,3648217087,RU +3648217088,3648221183,GB +3648221184,3648225279,IE +3648225280,3648231263,DE +3648231264,3648231295,NL +3648231296,3648233471,DE +3648233472,3648237567,FR +3648237568,3648241663,RU +3648241664,3648245759,NL +3648245760,3648249855,RO +3648249856,3648253951,NL +3648253952,3648258047,CZ +3648258048,3648266239,ES +3648266240,3648270335,HU +3648270336,3648274431,RU +3648274432,3648278527,AT +3648278528,3648282623,NO +3648282624,3648286719,PL +3648286720,3648290815,DE +3648290816,3648299007,RU +3648299008,3648303103,FI +3648303104,3648307199,AT +3648307200,3648311295,GB +3648311296,3648315615,DK +3648315616,3648315631,CA +3648315632,3648316079,DK +3648316080,3648316087,SE +3648316088,3648316127,DK +3648316128,3648316143,CA +3648316144,3648316415,DK +3648316416,3648316671,NL +3648316672,3648316927,AT +3648316928,3648317247,DK +3648317248,3648317263,CA +3648317264,3648319527,DK +3648319528,3648319535,CH +3648319536,3648321631,DK +3648321632,3648321639,CA +3648321640,3648321823,DK +3648321824,3648321839,GB +3648321840,3648323583,DK +3648327680,3648331775,LT +3648331776,3648339967,BE +3648339968,3648344063,UA +3648344064,3648348159,RU +3648348160,3648352255,DE +3648352256,3648356351,RU +3648356352,3648360447,PL +3648360448,3648364543,FR +3648364544,3648368639,CH +3648368640,3648372735,RU +3648372736,3648376831,LU +3648376832,3648380927,CZ +3648380928,3648385023,NL +3648385024,3648389119,GR +3648389120,3648393215,IT +3648393216,3648397311,DE +3648397312,3648405503,NO +3648405504,3648413695,RU +3648413696,3648417791,SK +3648417792,3648417807,AT +3648417808,3648417815,GB +3648417816,3648417879,AT +3648417880,3648417919,GB +3648417920,3648418047,AT +3648418048,3648418079,GB +3648418080,3648418135,ES +3648418136,3648418143,GB +3648418144,3648418247,ES +3648418248,3648418255,CH +3648418256,3648418303,ES +3648418304,3648419327,GB +3648419328,3648419455,FR +3648419456,3648419519,IT +3648419520,3648419583,ES +3648419584,3648420095,GB +3648420096,3648420351,NL +3648420352,3648420863,GB +3648420864,3648421119,US +3648421120,3648421375,GB +3648421376,3648421631,DE +3648421632,3648421887,CH +3648421888,3648425983,GB +3648425984,3648430079,IT +3648430080,3648434175,NL +3648434176,3648438271,RU +3648438272,3648442367,CH +3648442368,3648443743,SE +3648443744,3648443759,PA +3648443760,3648446463,SE +3648446464,3648447055,FR +3648447056,3648447063,ES +3648447064,3648449119,FR +3648449120,3648449135,ES +3648449136,3648450559,FR +3648450560,3648454655,IT +3648454656,3648458751,NL +3648458752,3648462847,RU +3648462848,3648466943,FI +3648466944,3648469263,DE +3648469264,3648469271,NL +3648469272,3648469295,DE +3648469296,3648469311,AT +3648469312,3648471039,DE +3648471040,3648475135,PL +3648475136,3648479231,RU +3648479232,3648483327,CH +3648483328,3648487423,SK +3648487424,3648491519,FR +3648491520,3648495615,CH +3648495616,3648499711,SE +3648499712,3648503807,FR +3648503808,3648511999,DE +3648512000,3648516095,NL +3648516096,3648520191,CS +3648520192,3648782335,NL +3648782336,3649044479,ES +3649044480,3649110015,FR +3649110016,3649175551,PT +3649175552,3649241087,ES +3649241088,3649306623,TR +3649306624,3649372159,IL +3649372160,3649437695,IT +3649437696,3649568767,GB +3649568768,3649634303,BE +3649634304,3649700159,GB +3649700160,3649700247,US +3649700248,3649700251,BB +3649700252,3649700287,US +3649700288,3649700863,GB +3649700864,3649701119,US +3649701120,3649708791,GB +3649708792,3649709055,GD +3649709056,3649709287,GB +3649709288,3649709295,BB +3649709296,3649709311,AG +3649709312,3649709815,GB +3649709816,3649709823,TT +3649709824,3649765375,GB +3649830912,3649835007,NL +3649835008,3649839103,ES +3649839104,3649847295,GB +3649847296,3649855487,DE +3649855488,3649856511,GB +3649856512,3649857023,US +3649857024,3649857535,GB +3649857536,3649858047,JP +3649858048,3649859071,GB +3649859072,3649859583,US +3649859584,3649863679,SE +3649863680,3649896447,FI +3649896448,3649961983,IT +3649961984,3650093055,SE +3650093056,3650097151,JO +3650097152,3650101247,SK +3650101248,3650105343,DE +3650105344,3650109439,CH +3650109440,3650113535,UA +3650113536,3650117631,GB +3650117632,3650121727,RU +3650121728,3650125823,FR +3650125824,3650129919,DE +3650129920,3650134015,GB +3650134016,3650142207,RU +3650142208,3650150399,PL +3650150400,3650158591,NO +3650158592,3650159135,MT +3650159136,3650159151,SC +3650159152,3650162687,MT +3650162688,3650166783,RU +3650166784,3650167807,BE +3650167808,3650168063,LU +3650168064,3650170879,BE +3650170880,3650174975,DK +3650174976,3650179071,GB +3650179072,3650183167,BG +3650183168,3650187263,DE +3650187264,3650195455,GB +3650195456,3650199551,RU +3650199552,3650203647,BG +3650203648,3650207743,ES +3650207744,3650211839,SK +3650211840,3650215935,LV +3650215936,3650220031,GB +3650220032,3650224127,SA +3650224128,3650225027,US +3650225028,3650228223,GB +3650228224,3650232319,US +3650232320,3650236415,RU +3650236416,3650236671,GB +3650236672,3650236692,CH +3650236693,3650236911,GB +3650236912,3650236926,CH +3650236927,3650240511,GB +3650240512,3650244607,EE +3650244608,3650256895,GB +3650256896,3650265087,DE +3650265088,3650269183,CH +3650269184,3650273279,GB +3650273280,3650277375,IT +3650277376,3650281471,IR +3650281472,3650285567,FR +3650285568,3650289663,UA +3650289664,3650297855,RU +3650297856,3650301951,LT +3650306048,3650306623,DE +3650306624,3650306639,GE +3650306640,3650306775,DE +3650306776,3650306779,GE +3650306780,3650306783,DE +3650306784,3650306791,AT +3650306792,3650306799,DE +3650306800,3650306807,AT +3650306808,3650306943,DE +3650306944,3650306959,GB +3650306960,3650307007,DE +3650307008,3650307010,GB +3650307011,3650310143,DE +3650310144,3650314239,GB +3650314240,3650315271,DE +3650315272,3650315272,BE +3650315273,3650316711,DE +3650316712,3650316715,FR +3650316716,3650318335,DE +3650318336,3650322431,GI +3650322432,3650330623,IT +3650330624,3650334719,UA +3650334720,3650338815,GB +3650338816,3650342911,FR +3650342912,3650344879,CH +3650344880,3650344911,PT +3650344912,3650345879,CH +3650345880,3650345887,IM +3650345888,3650345903,AT +3650345904,3650345935,CH +3650345936,3650345951,PT +3650345952,3650346207,CH +3650346208,3650346239,IM +3650346240,3650347007,CH +3650347008,3650351103,GE +3650351104,3650351871,GB +3650351872,3650351879,NL +3650351880,3650351887,IT +3650351888,3650351903,GB +3650351904,3650351911,FR +3650351912,3650351919,SE +3650351920,3650351927,DK +3650351928,3650351935,DE +3650351936,3650351943,PL +3650351944,3650351951,ES +3650351952,3650351959,BE +3650351960,3650351967,ZA +3650351968,3650351975,PT +3650351976,3650351983,FI +3650351984,3650351991,NO +3650351992,3650352007,GB +3650352008,3650352015,IE +3650352016,3650355199,GB +3650355200,3650359295,CH +3650359296,3650363391,NL +3650363392,3650367487,GB +3650367488,3650371583,RU +3650371584,3650375679,ES +3650375680,3650379775,NL +3650379776,3650387967,IT +3650387968,3650392063,DE +3650392064,3650396159,NO +3650396160,3650404351,NL +3650404352,3650412543,RU +3650412544,3650416639,DE +3650416640,3650420735,BE +3650420736,3650424831,ES +3650424832,3650428927,RU +3650428928,3650433023,NL +3650433024,3650437119,FI +3650437120,3650441215,NL +3650441216,3650445311,IT +3650445312,3650449407,GB +3650449408,3650453503,NO +3650457600,3650461695,ES +3650461696,3650465791,AT +3650465792,3650469887,RU +3650469888,3650478079,NL +3650478080,3650482175,AT +3650482176,3650486271,PL +3650486272,3650502655,RU +3650502656,3650510847,SE +3650510848,3650519039,GB +3650519040,3650523135,HU +3650523136,3650527231,DE +3650527232,3650535423,SE +3650535424,3650539519,RU +3650539520,3650543615,ES +3650543616,3650551807,CH +3650551808,3650555903,FR +3650555904,3650559999,RU +3650560000,3650564095,GB +3650564096,3650568191,SE +3650568192,3650572287,RU +3650572288,3650576383,DE +3650576384,3650580479,GB +3650580480,3650584575,CH +3650584576,3650588671,RU +3650588672,3650592767,DE +3650592768,3650600959,IS +3650600960,3650605055,SE +3650605056,3650609279,DE +3650609280,3650609311,CY +3650609312,3650609407,DE +3650609408,3650609439,IQ +3650609440,3650609447,KZ +3650609448,3650609455,RU +3650609456,3650609663,DE +3650609664,3650609919,KZ +3650609920,3650610175,RU +3650610176,3650610687,KZ +3650610688,3650610943,RU +3650610944,3650611711,DE +3650611712,3650612735,KZ +3650612736,3650617343,DE +3650617344,3650682879,FI +3650682880,3650748415,PL +3650748416,3650789375,GB +3650789376,3650790143,NL +3650790144,3650879487,GB +3650879488,3650912255,RO +3650912256,3650945023,GB +3650945024,3651010559,DK +3651010560,3651076095,GB +3651076096,3651077375,DE +3651077376,3651077887,GB +3651077888,3651078143,IE +3651078144,3651078399,ES +3651078400,3651078655,IE +3651078656,3651078783,ES +3651078784,3651078911,DE +3651078912,3651079807,GB +3651079808,3651079935,ES +3651079936,3651080191,DE +3651080192,3651080831,GB +3651080832,3651081215,DE +3651081216,3651081727,GB +3651081728,3651081983,AT +3651081984,3651082751,GB +3651082752,3651083007,IE +3651083008,3651083519,GB +3651083520,3651083775,DE +3651083776,3651084031,IE +3651084032,3651084543,FR +3651084544,3651084799,IE +3651084800,3651085311,ES +3651085312,3651085567,FR +3651085568,3651086079,DE +3651086080,3651086335,IE +3651086336,3651086463,DE +3651086464,3651086591,IE +3651086592,3651086719,GR +3651086720,3651086847,DE +3651086848,3651087103,FR +3651087104,3651087615,ES +3651087616,3651087871,GB +3651087872,3651088127,DE +3651088128,3651088383,IE +3651088384,3651088639,GR +3651088640,3651088895,SG +3651088896,3651098111,DE +3651098112,3651098367,IE +3651098368,3651098623,FR +3651098624,3651101439,DE +3651101440,3651101695,FR +3651101696,3651101951,CH +3651101952,3651102207,FR +3651102208,3651102719,DE +3651102720,3651102975,GB +3651102976,3651103231,SL +3651103232,3651103487,IT +3651103488,3651103743,FR +3651103744,3651103999,IT +3651104000,3651104511,DE +3651104512,3651104767,PL +3651104768,3651105535,DE +3651105536,3651105791,IT +3651105792,3651106047,ES +3651106048,3651106559,GB +3651106560,3651106815,IE +3651106816,3651107327,DE +3651107328,3651107583,GB +3651107584,3651107839,NL +3651107840,3651107967,GB +3651107968,3651108351,IE +3651108352,3651108479,NL +3651108480,3651108543,ES +3651108544,3651108863,DE +3651108864,3651141631,EE +3651141632,3651202815,DE +3651202816,3651203071,GB +3651203072,3651207167,US +3651207168,3651207199,GB +3651207224,3651207295,GB +3651207424,3651207615,GB +3651207648,3651208959,GB +3651209216,3651209231,US +3651209232,3651209239,GB +3651209240,3651209243,DE +3651209472,3651210751,GB +3651211264,3651211775,IR +3651213824,3651214207,US +3651215360,3651215395,GB +3651215616,3651215871,GB +3651217408,3651217535,GI +3651219456,3651219967,US +3651220384,3651220479,GB +3651221504,3651221695,GB +3651223552,3651223567,GB +3651223584,3651223607,GB +3651223648,3651223663,ES +3651227136,3651227391,GB +3651230720,3651231743,MU +3651232256,3651232287,GB +3651232320,3651232383,GB +3651232448,3651232511,GB +3651233792,3651233855,GB +3651236032,3651236063,GB +3651236864,3651237631,SC +3651237888,3651238399,SC +3651239936,3651272703,GB +3651272704,3651338239,CH +3651338240,3651403775,GB +3651403776,3651534847,AE +3651534848,3651600383,NL +3651600384,3651636696,FR +3651636697,3651636697,GB +3651636698,3651665919,FR +3651665920,3651670015,ES +3651670016,3651674111,GB +3651674112,3651682303,CH +3651682304,3651686399,RU +3651686400,3651690495,NO +3651690496,3651694591,FR +3651694592,3651694719,GH +3651694720,3651694847,PT +3651694848,3651694975,NG +3651694976,3651695103,PT +3651695104,3651695359,CV +3651695360,3651695615,AO +3651695616,3651696639,PT +3651696640,3651698687,AO +3651698688,3651702783,PL +3651702784,3651706879,GB +3651706880,3651710975,MT +3651710976,3651715071,AZ +3651715072,3651719167,PL +3651719168,3651723263,CZ +3651723264,3651727359,IT +3651727360,3651731455,RU +3651731456,3651747839,GB +3651747840,3651751935,FI +3651751936,3651756031,RU +3651756032,3651764223,IT +3651764224,3651772415,CH +3651772416,3651776511,GB +3651776512,3651780607,CZ +3651780608,3651784703,TR +3651784704,3651785215,RS +3651785216,3651785227,CS +3651785228,3651785231,RS +3651785232,3651785271,CS +3651785272,3651785279,RS +3651785280,3651785295,CS +3651785296,3651785303,RS +3651785304,3651785311,CS +3651785312,3651785319,RS +3651785320,3651785327,CS +3651785328,3651785335,RS +3651785336,3651785351,CS +3651785352,3651785359,RS +3651785360,3651785391,CS +3651785392,3651785395,RS +3651785396,3651785415,CS +3651785416,3651785419,RS +3651785420,3651785455,CS +3651785456,3651785483,RS +3651785484,3651785487,CS +3651785488,3651785499,RS +3651785500,3651785503,CS +3651785504,3651785527,RS +3651785528,3651785539,CS +3651785540,3651785547,RS +3651785548,3651785559,CS +3651785560,3651785563,RS +3651785564,3651785591,CS +3651785592,3651785603,RS +3651785604,3651785611,CS +3651785612,3651785615,RS +3651785616,3651785631,CS +3651785632,3651785635,RS +3651785636,3651785647,CS +3651785648,3651785655,RS +3651785656,3651785659,CS +3651785660,3651785663,RS +3651785664,3651785699,CS +3651785700,3651785703,RS +3651785704,3651785727,CS +3651785728,3651787519,RS +3651787520,3651787591,CS +3651787592,3651787615,RS +3651787616,3651787759,CS +3651787760,3651787791,RS +3651787792,3651787799,CS +3651787800,3651787839,RS +3651787840,3651787863,CS +3651787864,3651787875,RS +3651787876,3651787883,CS +3651787884,3651787887,RS +3651787888,3651787891,CS +3651787892,3651787895,RS +3651787896,3651787903,CS +3651787904,3651787911,RS +3651787912,3651787939,CS +3651787940,3651787943,RS +3651787944,3651788039,CS +3651788040,3651788043,RS +3651788044,3651788059,CS +3651788060,3651788063,RS +3651788064,3651788159,CS +3651788160,3651788175,RS +3651788176,3651788183,CS +3651788184,3651788207,RS +3651788208,3651788239,CS +3651788240,3651788251,RS +3651788252,3651788255,CS +3651788256,3651788263,RS +3651788264,3651788279,CS +3651788280,3651788287,RS +3651788288,3651788799,CS +3651788800,3651792895,NL +3651792896,3651796991,FR +3651796992,3651813375,NL +3651813376,3651821567,RU +3651821568,3651825663,CZ +3651825664,3651829759,RU +3651829760,3651833855,NO +3651837952,3651842047,PL +3651842048,3651846143,DE +3651846144,3651850239,NO +3651850240,3651854335,RU +3651854336,3651858431,IT +3651858432,3651858687,CS +3651858688,3651858943,SC +3651858944,3651862527,CS +3651862528,3651866623,RU +3651866624,3651870719,FR +3651870720,3651874815,IT +3651874816,3651878911,PL +3651878912,3651883007,RU +3651883008,3651887103,BE +3651887104,3651891199,GB +3651891200,3651895295,DE +3651895296,3651899391,GB +3651899392,3651903487,RU +3651903488,3651907583,IT +3651907584,3651908991,IQ +3651908992,3651909311,DE +3651909312,3651909375,IQ +3651909376,3651909631,DE +3651909632,3651910655,IQ +3651910656,3651910783,DE +3651910784,3651911167,IQ +3651911168,3651911623,DE +3651911624,3651911631,IQ +3651911632,3651911643,DE +3651911644,3651911647,IR +3651911648,3651915775,DE +3651915776,3651919871,IS +3651919872,3651923967,RU +3651923968,3651928063,GB +3651928064,3651932159,IT +3651932160,3651936255,RU +3651936256,3651938175,DE +3651938176,3651938207,GB +3651938208,3651938255,DE +3651938256,3651938271,PL +3651938272,3651938943,DE +3651938944,3651938959,NL +3651938960,3651938975,DE +3651938976,3651939007,TR +3651939008,3651939071,DE +3651939072,3651939087,SE +3651939088,3651939135,DE +3651939136,3651939151,PL +3651939152,3651939167,DE +3651939168,3651939231,GB +3651939232,3651939263,DE +3651939264,3651939295,IT +3651939296,3651939327,PL +3651939328,3651939391,IT +3651939392,3651939503,DE +3651939504,3651939511,GB +3651939512,3651939519,DE +3651939520,3651939527,RU +3651939528,3651939583,PL +3651939584,3651939647,DE +3651939648,3651939711,ES +3651939712,3651939727,DE +3651939728,3651939743,PL +3651939744,3651939791,DE +3651939792,3651939799,RU +3651939800,3651940351,DE +3651940352,3651940383,TR +3651940384,3651940415,US +3651940416,3651940479,IT +3651940480,3651940543,GB +3651940544,3651940639,DE +3651940640,3651940671,BS +3651940672,3651940735,DE +3651940736,3651940743,AU +3651940744,3651940751,RU +3651940752,3651940799,DE +3651940800,3651940863,ES +3651940864,3651940927,GB +3651940928,3651940991,IT +3651940992,3651941027,DE +3651941028,3651941055,TR +3651941056,3651941087,DE +3651941088,3651941119,GB +3651941120,3651941183,DE +3651941184,3651941215,IT +3651941216,3651941249,TR +3651941250,3651941695,DE +3651941696,3651941759,IT +3651941760,3651942655,DE +3651942656,3651942719,GB +3651942720,3651942735,SE +3651942736,3651942751,US +3651942752,3651942783,DE +3651942784,3651942815,GB +3651942816,3651944447,DE +3651944448,3651948543,ES +3651948544,3651952639,FO +3651952640,3651954175,IR +3651954176,3651954431,AE +3651954432,3651958271,IR +3651958272,3651958783,UA +3651958784,3651960831,IR +3651960832,3651964927,GB +3651964928,3651969023,SK +3651969024,3651977215,DE +3651977216,3651985407,IT +3651985408,3651993599,PL +3651993600,3652001791,RU +3652001792,3652005887,HU +3652005888,3652009983,GB +3652009984,3652014079,RU +3652014080,3652018175,SA +3652018176,3652018239,IE +3652018240,3652018943,GB +3652018944,3652019167,IE +3652019168,3652019199,GB +3652019200,3652019423,IE +3652019424,3652019583,GB +3652019584,3652019599,IE +3652019600,3652019615,GB +3652019616,3652019663,IE +3652019664,3652019775,GB +3652019776,3652019791,IE +3652019792,3652019807,GB +3652019808,3652019815,IE +3652019816,3652019887,GB +3652019888,3652019935,IE +3652019936,3652019951,GB +3652019952,3652019967,IE +3652019968,3652020479,GB +3652020480,3652020735,IE +3652020736,3652020767,GB +3652020768,3652020799,IE +3652020800,3652020863,DE +3652020864,3652020991,IE +3652020992,3652021791,GB +3652021792,3652021887,IE +3652021888,3652022271,GB +3652022272,3652026367,ES +3652026368,3652028031,DE +3652028032,3652028063,US +3652028064,3652028095,CH +3652028096,3652028223,DE +3652028224,3652028255,ES +3652028256,3652031743,DE +3652031744,3652031999,US +3652032000,3652032767,DE +3652032768,3652033791,NL +3652033792,3652033855,GD +3652033856,3652033887,NL +3652033888,3652033919,VG +3652033920,3652033935,TR +3652033936,3652033951,DE +3652033952,3652033967,CH +3652033968,3652033983,NL +3652033984,3652034015,TR +3652034016,3652034047,NL +3652034048,3652034111,GD +3652034112,3652034143,TR +3652034144,3652034175,CH +3652034176,3652034207,NL +3652034208,3652034239,ES +3652034240,3652034271,VG +3652034272,3652034367,GD +3652034368,3652034383,ES +3652034384,3652034399,VG +3652034400,3652034559,GD +3652034560,3652046847,PL +3652046848,3652050499,IE +3652050500,3652050503,GB +3652050504,3652050527,IE +3652050528,3652050535,GB +3652050536,3652050567,IE +3652050568,3652050615,GB +3652050616,3652050619,IE +3652050620,3652050671,GB +3652050672,3652050679,IE +3652050680,3652050687,GB +3652050688,3652050787,IE +3652050788,3652050791,GB +3652050792,3652050943,IE +3652050944,3652055039,LI +3652055040,3652059135,NO +3652059136,3652063231,RU +3652063232,3652067327,IR +3652067328,3652071423,TR +3652071424,3652075519,BG +3652075520,3652083711,SE +3652083712,3652087807,RU +3652087808,3652095999,IT +3652096000,3652100095,BG +3652100096,3652105471,RU +3652105472,3652105535,US +3652105536,3652108287,RU +3652108288,3652116479,FR +3652116480,3652120575,TM +3652120576,3652124671,GB +3652124672,3652128767,UA +3652128768,3652136959,RU +3652136960,3652141055,IT +3652141056,3652145151,GB +3652145152,3652149247,UA +3652149248,3652153343,DE +3652153344,3652157439,SE +3652157440,3652165631,RU +3652165632,3652173823,FR +3652173824,3652177919,AT +3652177920,3652182015,CY +3652182016,3652182527,DE +3652182528,3652182783,AT +3652182784,3652186591,DE +3652186592,3652186623,CH +3652186624,3652186879,DE +3652186880,3652187007,AT +3652187008,3652190207,DE +3652190208,3652714495,GB +3652714496,3652984927,DE +3652984928,3652984935,NL +3652984936,3652985039,DE +3652985040,3652985047,FR +3652985048,3653039103,DE +3653039104,3653039359,IT +3653039360,3653238783,DE +3653238784,3653369855,CH +3653369856,3653373951,IT +3653373952,3653378047,NL +3653378048,3653382143,DE +3653382144,3653386239,CH +3653386240,3653390335,DE +3653390336,3653394431,FR +3653394432,3653402623,NL +3653402624,3653403135,AT +3653403136,3653403647,CD +3653403648,3653403903,ZW +3653403904,3653403911,UA +3653403912,3653403919,IQ +3653403920,3653403931,UA +3653403932,3653403935,GB +3653403936,3653403943,IQ +3653403944,3653403951,LB +3653403952,3653403959,IQ +3653403960,3653403967,MW +3653403968,3653403983,NG +3653403984,3653403999,UA +3653404000,3653404008,LB +3653404009,3653404015,GB +3653404016,3653404023,LB +3653404024,3653404031,GB +3653404032,3653404039,NA +3653404040,3653404055,IQ +3653404056,3653404063,GB +3653404064,3653404071,LB +3653404072,3653404079,AO +3653404080,3653404087,UA +3653404088,3653404095,LB +3653404096,3653404103,IQ +3653404104,3653404111,GB +3653404112,3653404119,MD +3653404120,3653404127,GB +3653404128,3653404135,CS +3653404136,3653404143,LY +3653404144,3653404159,GB +3653404160,3653404415,AT +3653404416,3653404543,IQ +3653404544,3653404559,NG +3653404560,3653404567,IQ +3653404568,3653404575,LY +3653404576,3653404591,TR +3653404592,3653404599,GH +3653404600,3653404607,GB +3653404608,3653404655,UA +3653404656,3653404671,GB +3653404672,3653404679,TR +3653404680,3653404687,IQ +3653404688,3653404707,GB +3653404708,3653404713,IQ +3653404714,3653404719,GB +3653404720,3653404735,LB +3653404736,3653404751,GB +3653404752,3653404759,AM +3653404760,3653404783,GB +3653404784,3653404791,IQ +3653404792,3653404799,GB +3653404800,3653404807,IQ +3653404808,3653404815,GB +3653404816,3653404831,LB +3653404832,3653404847,NG +3653404848,3653404855,GB +3653404856,3653404863,SL +3653404864,3653404871,LY +3653404872,3653404879,GB +3653404880,3653404887,UA +3653404888,3653404903,GB +3653404904,3653404911,IQ +3653404912,3653404919,LY +3653404920,3653404951,GB +3653404952,3653404959,IQ +3653404960,3653404975,UA +3653404976,3653404983,GB +3653404984,3653404991,AM +3653404992,3653405007,IQ +3653405008,3653405031,LB +3653405032,3653405039,GB +3653405040,3653405047,LB +3653405048,3653405071,IQ +3653405072,3653405087,GB +3653405088,3653405095,LY +3653405096,3653405103,NG +3653405104,3653405119,CY +3653405120,3653405135,AM +3653405136,3653405151,UA +3653405152,3653405167,GB +3653405168,3653405183,UA +3653405184,3653405439,AT +3653405440,3653405695,IQ +3653405696,3653407007,NG +3653407008,3653407015,GB +3653407016,3653407023,UG +3653407024,3653407031,KE +3653407032,3653407071,NG +3653407072,3653407087,GB +3653407088,3653407095,NG +3653407096,3653407103,GB +3653407104,3653407111,UG +3653407112,3653407119,ZM +3653407120,3653407127,ZW +3653407128,3653407151,GB +3653407152,3653407159,KE +3653407160,3653407167,GB +3653407168,3653407231,NG +3653407232,3653407359,GB +3653407360,3653407375,NG +3653407376,3653407383,UG +3653407384,3653407391,GB +3653407392,3653407399,NG +3653407400,3653407423,GB +3653407424,3653407487,ZW +3653407488,3653407615,GB +3653407616,3653407639,NG +3653407640,3653407647,ZM +3653407648,3653407679,GB +3653407680,3653407695,UG +3653407696,3653407703,CD +3653407704,3653407711,NG +3653407712,3653407727,GB +3653407728,3653407743,ZW +3653407744,3653407999,AT +3653408000,3653408023,GB +3653408024,3653408031,UG +3653408032,3653408047,ZW +3653408048,3653408055,GB +3653408056,3653408063,TZ +3653408064,3653408071,ZM +3653408072,3653408079,NG +3653408080,3653408087,MW +3653408088,3653408143,GB +3653408144,3653408151,NG +3653408152,3653408159,ZM +3653408160,3653408167,NG +3653408168,3653408175,ZW +3653408176,3653408183,KE +3653408184,3653408191,MW +3653408192,3653408215,GB +3653408216,3653408223,MW +3653408224,3653408231,GB +3653408232,3653408239,KE +3653408240,3653408247,ZM +3653408248,3653408767,GB +3653408768,3653409023,CD +3653409024,3653409279,GB +3653409280,3653409535,TZ +3653409536,3653409559,UA +3653409560,3653409567,CM +3653409568,3653409575,UA +3653409576,3653409615,GB +3653409616,3653409623,IQ +3653409624,3653409639,NG +3653409640,3653409647,GB +3653409648,3653409663,NG +3653409664,3653409791,CM +3653409792,3653409855,ZW +3653409856,3653409919,GB +3653409920,3653410047,NG +3653410048,3653410063,YT +3653410064,3653410079,UG +3653410080,3653410087,GB +3653410088,3653410095,NG +3653410096,3653410111,ZW +3653410112,3653410119,KE +3653410120,3653410127,NG +3653410128,3653410143,GB +3653410144,3653410151,ET +3653410152,3653410159,KE +3653410160,3653410175,NG +3653410176,3653410183,KE +3653410184,3653410191,MZ +3653410192,3653410199,ZW +3653410200,3653410215,GB +3653410216,3653410223,ZW +3653410224,3653410239,GB +3653410240,3653410247,SO +3653410248,3653410255,ZM +3653410256,3653410263,MW +3653410264,3653410271,NG +3653410272,3653410279,KE +3653410280,3653410295,GB +3653410296,3653410303,MW +3653410304,3653410815,GB +3653410816,3653414911,CZ +3653414912,3653419007,IT +3653419008,3653423103,IL +3653423104,3653427199,GB +3653427200,3653431295,DE +3653431296,3653435391,RU +3653435392,3653439487,DE +3653439488,3653443583,FR +3653443584,3653444351,DE +3653444352,3653444383,IT +3653444384,3653447679,DE +3653447680,3653451775,LV +3653451776,3653464063,RU +3653464064,3653468159,NL +3653468160,3653472255,GR +3653472256,3653472279,NL +3653472280,3653472291,AF +3653472292,3653474303,NL +3653474304,3653474367,US +3653474368,3653476351,NL +3653476352,3653480447,CZ +3653480448,3653484543,DK +3653484544,3653488639,TR +3653488640,3653492735,RU +3653492736,3653500927,NL +3653500928,3653505023,GB +3653505024,3653509119,KZ +3653509120,3653513215,NL +3653513216,3653517311,NO +3653517312,3653518367,AT +3653518368,3653518399,SK +3653518400,3653518479,AT +3653518480,3653518495,SK +3653518496,3653519815,AT +3653519816,3653519871,SK +3653519872,3653520191,AT +3653520192,3653520255,SK +3653520256,3653522975,AT +3653522976,3653522991,SK +3653522992,3653523199,AT +3653523200,3653523455,SK +3653523456,3653523615,AT +3653523616,3653523647,SK +3653523648,3653524551,AT +3653524552,3653524559,GR +3653524560,3653524735,AT +3653524736,3653524863,SK +3653524864,3653524959,AT +3653524960,3653525151,SK +3653525152,3653525183,AT +3653525184,3653525215,SK +3653525216,3653525503,AT +3653525504,3653533695,RU +3653533696,3653537791,HU +3653537792,3653541887,AT +3653541888,3653544959,UA +3653544960,3653545215,AT +3653545216,3653545343,UA +3653545344,3653545471,SE +3653545472,3653545727,UA +3653545728,3653545791,SE +3653545792,3653545855,UA +3653545856,3653545983,SE +3653545984,3653550079,CH +3653550080,3653554175,GB +3653554176,3653558271,CZ +3653558272,3653566463,GB +3653566464,3653570559,RU +3653570560,3653574655,NO +3653574656,3653578751,CZ +3653578752,3653582847,SE +3653582848,3653586943,PL +3653586944,3653591039,DE +3653591040,3653595135,LU +3653595136,3653599231,RU +3653599232,3653603327,BG +3653603328,3653607423,CZ +3653607424,3653611519,PL +3653611520,3653615615,HU +3653615616,3653619711,GB +3653619712,3653623295,CH +3653623296,3653623551,JP +3653623552,3653623807,US +3653623808,3653636095,RU +3653636096,3653640191,NL +3653640192,3653644031,GB +3653644032,3653644047,BE +3653644048,3653644271,GB +3653644272,3653644275,BE +3653644276,3653648383,GB +3653648384,3653652479,SE +3653652480,3653656575,RU +3653656576,3653660671,HR +3653660672,3653664767,CZ +3653664768,3653668863,UA +3653668864,3653672959,SE +3653672960,3653681151,RU +3653681152,3653685247,NL +3653685248,3653689343,DK +3653689344,3653693439,LV +3653693440,3653697535,DE +3653697536,3653705727,IT +3653705728,3653705735,SE +3653705736,3653705863,NO +3653705864,3653705871,SE +3653705872,3653705895,NO +3653705896,3653705903,BS +3653705904,3653706175,NO +3653706176,3653706191,SE +3653706192,3653706271,NO +3653706272,3653706303,SE +3653706304,3653706495,NO +3653706496,3653706751,SE +3653706752,3653710847,NO +3653710848,3653710911,SE +3653710912,3653713919,NO +3653713920,3653718015,DE +3653718016,3653722111,AT +3653722112,3653730303,LV +3653730304,3653734399,BA +3653738496,3653740295,GB +3653740296,3653740303,US +3653740304,3653744895,GB +3653744896,3653744959,AE +3653744960,3653746687,GB +3653746688,3653750783,DE +3653750784,3653754879,RU +3653754880,3653758975,UA +3653758976,3653763071,RU +3653763072,3654025215,IT +3654025216,3654034783,GB +3654034784,3654034799,LU +3654034800,3654035583,GB +3654035584,3654035591,US +3654035592,3654035607,GB +3654035608,3654035615,SE +3654035616,3654061035,GB +3654061036,3654061039,US +3654061040,3654061951,GB +3654061952,3654062079,DE +3654062080,3654066027,GB +3654066028,3654066031,MC +3654066032,3654287359,GB +3654287360,3654607871,SE +3654607872,3654608127,NO +3654608128,3654608895,SE +3654608896,3654609919,NO +3654609920,3654609927,DK +3654609928,3654612991,SE +3654612992,3654612999,RU +3654613000,3654613007,SE +3654613008,3654613015,RU +3654613016,3654613055,SE +3654613056,3654613071,RU +3654613072,3654613087,SE +3654613088,3654613151,RU +3654613152,3654613247,SE +3654613248,3654614015,NO +3654614016,3654614031,SE +3654614032,3654614047,US +3654614048,3654614079,SE +3654614080,3654614143,FI +3654614144,3654614527,SE +3654614528,3654614783,RU +3654614784,3654615039,NO +3654615040,3654811647,SE +3654811648,3654942719,ES +3654942720,3655073791,IR +3655073792,3655335935,IT +3655335936,3656229703,DE +3656229704,3656229711,ES +3656229712,3656233999,DE +3656234000,3656234007,NL +3656234008,3656234263,DE +3656234264,3656234271,US +3656234272,3656236527,DE +3656236528,3656236535,GB +3656236536,3656236543,US +3656236544,3656633487,DE +3656633488,3656633495,GB +3656633496,3656633503,US +3656633504,3656650583,DE +3656650584,3656650591,US +3656650592,3656661183,DE +3656661184,3656661199,AT +3656661200,3656661583,DE +3656661584,3656661599,AT +3656661600,3656661647,DE +3656661648,3656661679,AT +3656661680,3656662271,DE +3656662272,3656662367,AT +3656662368,3656662431,DE +3656662432,3656662463,AT +3656662464,3657433087,DE +3657433088,3659530239,CN +3659530240,3659595775,TW +3659595776,3659628543,ID +3659628544,3659661311,JP +3659661312,3659792383,TW +3659792384,3660054527,KR +3660054528,3660578815,JP +3660578816,3661103103,KR +3661103104,3663986687,CN +3663986688,3663987711,AU +3663987712,3663987967,ID +3663987968,3663989247,JP +3663989248,3663989503,VN +3663989504,3663989759,ID +3663989760,3663990271,AU +3663990272,3663990527,VN +3663990528,3663990783,JP +3663990784,3663991295,HK +3663991296,3663991551,MY +3663991552,3663991807,AU +3663991808,3663992063,JP +3663992064,3663992319,NZ +3663992320,3663992575,MY +3663992576,3663993599,NZ +3663993600,3663996159,ID +3663996160,3663996415,BD +3663996416,3663996671,TH +3663996672,3663997183,AU +3663997184,3663997439,ID +3663997440,3663997695,JP +3663997696,3663997951,AU +3663997952,3663998207,MY +3663998208,3663998463,JP +3663998464,3663998975,TH +3663998976,3663999487,IN +3663999488,3663999743,AU +3663999744,3663999999,KH +3664000000,3664000767,AU +3664000768,3664001023,ID +3664001024,3664001279,NZ +3664001280,3664001535,LK +3664001536,3664001791,MY +3664001792,3664002047,AU +3664002048,3664002303,VN +3664002304,3664002559,LK +3664002560,3664003327,ID +3664003328,3664003583,NZ +3664003584,3664003839,TH +3664003840,3664052223,AU +3664052224,3664084991,NZ +3664084992,3664117759,KR +3664117760,3664248831,HK +3664248832,3664642047,CN +3664642048,3664707583,JP +3664707584,3664773119,MY +3664773120,3666870271,JP +3666870272,3667918847,KR +3667918848,3668967423,TW +3668967424,3669491711,JP +3669491712,3669557247,TW +3669557248,3669590015,AU +3669590016,3669606399,JP +3669606400,3669614591,CN +3669614592,3669616639,NZ +3669616640,3669618687,AU +3669618688,3669620735,BD +3669620736,3669622783,JP +3669622784,3669688319,SG +3669688320,3669753855,TW +3669753856,3669822719,HK +3669822720,3669822735,US +3669822736,3670015999,HK +3670016000,3671064575,CN +3671064576,3671130111,MY +3671130112,3671195647,KR +3671195648,3671326719,TW +3671326720,3671392255,SG +3671392256,3671457791,HK +3671457792,3671588863,AU +3671588864,3672637439,JP +3672637440,3673161727,KR +3673161728,3673686015,CN +3673686016,3673751551,IN +3673751552,3673817087,CN +3673817088,3673882623,HK +3673882624,3673948159,JP +3673948160,3674210303,HK +3674210304,3674431743,JP +3674431744,3674431999,UA +3674432000,3678404607,JP +3678404608,3678535679,IN +3678535680,3678666751,JP +3678666752,3678928895,TW +3678928896,3678994431,CN +3678994432,3679027199,HK +3679027200,3679059967,JP +3679059968,3679158271,SG +3679158272,3679191039,JP +3679191040,3679453183,HK +3679453184,3679584255,TW +3679584256,3679649791,CN +3679649792,3679682559,ID +3679682560,3679715327,IN +3679715328,3679977471,TW +3679977472,3680108543,NZ +3680108544,3680124927,TW +3680124928,3680133119,PH +3680133120,3680137215,IN +3680137216,3680141311,HK +3680141312,3680174079,AU +3680174080,3680206847,TW +3680206848,3680239615,IN +3680239616,3680403455,MY +3680403456,3680436223,JP +3680436224,3680501759,MY +3680501760,3682598911,JP +3682598912,3684696063,CN +3684696064,3688366079,JP +3688366080,3689938943,CN +3689938944,3690070015,KR +3690070016,3690463231,CN +3690463232,3690987519,KR +3690987520,3695181823,JP +3695181824,3697278975,KR +3697278976,3697606655,JP +3697606656,3697655807,AU +3697655808,3697672191,CN +3697672192,3697737727,JP +3697737728,3697803263,KR +3697803264,3698327551,JP +3698327552,3698589695,CN +3698589696,3699376127,KR +3699376128,3700424703,TW +3700424704,3700752383,JP +3700752384,3700817919,KR +3700817920,3700977663,JP +3700977664,3700979711,AU +3700979712,3700981759,JP +3700981760,3701014527,CN +3701014528,3701080063,JP +3701080064,3701211135,CN +3701211136,3701252095,JP +3701252096,3701256191,AU +3701256192,3701258239,SG +3701258240,3701260287,IN +3701260288,3701293055,JP +3701293056,3701301247,AU +3701301248,3701305343,ID +3701305344,3701309439,TW +3701309440,3701473279,JP +3701473280,3704619007,CN +3704619008,3705667583,JP +3705667584,3705929727,IN +3705929728,3706060799,TW +3706060800,3706126335,KR +3706126336,3706142719,CN +3706142720,3706159103,VN +3706159104,3706191871,CN +3706191872,3706208255,SG +3706208256,3706224639,CN +3706224640,3706257407,HK +3706257408,3706322943,AU +3706322944,3706388479,CN +3706388480,3706781695,AU +3706781696,3706847231,HK +3706847232,3706978303,CN +3706978304,3707109375,AU +3707109376,3707174911,HK +3707174912,3707207679,JP +3707207680,3707208703,TW +3707208704,3707215871,AU +3707215872,3707217919,BD +3707217920,3707219967,ID +3707219968,3707222015,AU +3707222016,3707224063,JP +3707224064,3707240447,LK +3707240448,3707568127,CN +3707568128,3707633663,AU +3707633664,3707699199,JP +3707699200,3707764735,SG +3707764736,3708600319,CN +3708600320,3708616703,JP +3708616704,3708813311,CN +3708813312,3715629055,JP +3715629056,3715653631,TW +3715653632,3715655679,BD +3715655680,3715657727,IN +3715657728,3715659775,AU +3715659776,3715661823,SG +3715661824,3715674111,AU +3715674112,3715678207,HK +3715678208,3715694591,PK +3715694592,3715710975,VN +3715710976,3715719167,AU +3715719168,3715727359,PH +3715727360,3715735551,AU +3715735552,3715741695,JP +3715741696,3715743743,PH +3715743744,3715760127,JP +3715760128,3715891199,CN +3715891200,3716153343,HK +3716153344,3716169727,SG +3716169728,3716186111,TH +3716186112,3716218879,IN +3716218880,3716415487,CN +3716415488,3716431871,VN +3716431872,3716440063,KR +3716440064,3716444159,JP +3716444160,3716446207,PK +3716446208,3716448255,AU +3716448256,3716464639,JP +3716464640,3716481023,ID +3716481024,3716489215,VN +3716489216,3716493311,MY +3716493312,3716497407,KR +3716497408,3716513791,JP +3716513792,3716530175,KR +3716530176,3716536372,AU +3716536373,3716536373,AS +3716536374,3716537111,AU +3716537112,3716537119,AS +3716537120,3716537151,AU +3716537152,3716537183,AS +3716537184,3716537199,AU +3716537200,3716537215,AS +3716537216,3716537279,AU +3716537280,3716537343,AS +3716537344,3716537407,AU +3716537408,3716537471,AS +3716537472,3716537535,AU +3716537536,3716537567,HK +3716537568,3716537599,JP +3716537600,3716538367,AU +3716538368,3716546559,CN +3716546560,3716677631,IN +3716677632,3716808703,CN +3716808704,3718840319,KR +3718840320,3718905855,TW +3718905856,3719036927,JP +3719036928,3719823359,CN +3719823360,3720347647,JP +3720347648,3720859647,CN +3720859648,3720863743,AU +3720863744,3723493375,CN +3723493376,3725590527,JP +3725590528,3730833407,CN +3730833408,3732602879,KR +3732602880,3732668415,TH +3732668416,3732733951,ID +3732733952,3732799487,CN +3732799488,3732832255,PH +3732832256,3732865023,CN +3732865024,3732930559,PH +3732930560,3733979135,CN +3733979136,3734503423,JP +3734503424,3734765567,NZ +3734765568,3734896639,TW +3734896640,3735027711,JP +3735027712,3735289855,CN +3735289856,3735388159,SG +3735388160,3735404543,LK +3735404544,3735420927,ID +3735420928,3735551999,HK +3735552000,3739222015,CN +3739222016,3739570175,JP +3739570176,3739572223,ID +3739572224,3739574271,TH +3739574272,3739680767,JP +3739680768,3739697151,KR +3739697152,3739746303,JP +3739746304,3740270591,KR +3740270592,3740925951,CN +3740925952,3741024255,TW +3741024256,3741057023,KR +3741057024,3741319167,VN +3758096384,4294967295,US -- cgit v1.2.3 From 20193fc7ab16f735f35a16368bfd83e2e565456e Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 5 Jun 2009 19:41:40 -0400 Subject: Avoid a memory corruption problem related to "private" in DirPolicy. This is a posible fix for bug 996. --- ChangeLog | 3 +++ src/or/policies.c | 1 + 2 files changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index b2ba41351..29d1c0e44 100644 --- a/ChangeLog +++ b/ChangeLog @@ -88,6 +88,9 @@ Changes in version 0.2.1.14-rc - 2009-04-12 patch by Sebastian. - Avoid crashing in the presence of certain malformed descriptors. Found by lark, and by automated fuzzing. + - Avoid crashing when we have "private" in a policy specified in + a DirPolicy or SocksPolicy or ReachableAddresses option and we + re-load the policy. May fix bug 996. o Minor features: - When generating circuit events with verbose nicknames for diff --git a/src/or/policies.c b/src/or/policies.c index cb914d11f..d55e86c18 100644 --- a/src/or/policies.c +++ b/src/or/policies.c @@ -411,6 +411,7 @@ load_policy_from_option(config_line_t *config, smartlist_t **policy, memcpy(&newp, n, sizeof(newp)); newp.prt_min = 1; newp.prt_max = 65535; + newp.is_canonical = 0; c = addr_policy_get_canonical_entry(&newp); SMARTLIST_REPLACE_CURRENT(*policy, n, c); addr_policy_free(n); -- cgit v1.2.3 From 8a02f61ad622976cd9a13233e672f6def700047b Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sun, 7 Jun 2009 00:03:27 -0400 Subject: Move and fix a changelog entry. Noticed by optimist. --- ChangeLog | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 29d1c0e44..842f0c0a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -16,6 +16,9 @@ Changes in version 0.2.1.16-?? - 2009-??-?? - Fix a race condition that could cause crashes or memory corruption when running as a server with a controller listening for log messages. + - Avoid crashing when we have a policy specified in a DirPolicy or + SocksPolicy or ReachableAddresses option with ports set on it, and we + re-load the policy. May fix bug 996. o Minor bugfixes (on 0.2.1.x): - When switching back and forth between bridge mode, do not start @@ -88,9 +91,6 @@ Changes in version 0.2.1.14-rc - 2009-04-12 patch by Sebastian. - Avoid crashing in the presence of certain malformed descriptors. Found by lark, and by automated fuzzing. - - Avoid crashing when we have "private" in a policy specified in - a DirPolicy or SocksPolicy or ReachableAddresses option and we - re-load the policy. May fix bug 996. o Minor features: - When generating circuit events with verbose nicknames for -- cgit v1.2.3 From 925d80ba0d70e0b22c95cfea47230c17c1bf2a13 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 8 Jun 2009 00:00:54 -0400 Subject: Missing changelog entry about geoip --- ChangeLog | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ChangeLog b/ChangeLog index 842f0c0a6..527adc954 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,9 @@ Changes in version 0.2.1.16-?? - 2009-??-?? - Disable some debugging checks that appeared in exit node profile data. + o Minor features: + - Update to the "June 3 2009" ip-to-country file. + o Minor bugfixes (on 0.2.0.x): - Log correct error messages for DNS-related network errors on Windows. -- cgit v1.2.3 From c50098ffc546bc0875daf9139bea64d09ad49fc0 Mon Sep 17 00:00:00 2001 From: Andrew Lewman Date: Mon, 8 Jun 2009 10:27:10 -0400 Subject: update requirements to openssl 0.9.7 --- tor.spec.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tor.spec.in b/tor.spec.in index ec00415f4..54b9be092 100644 --- a/tor.spec.in +++ b/tor.spec.in @@ -72,7 +72,7 @@ %endif %if %{is_rfl} -%define ostag redflag%(sed -e 's/^.*Desktop /redflag/' -e 's/ .*$//' -e 's/\\./_/g' < /etc/redflag-release) +%define ostag %(sed -e 's/^.*Desktop /redflag/' -e 's/ .*$//' -e 's/\\./_/g' < /etc/redflag-release) %endif # Using the build date ensures that every build really does get @@ -119,11 +119,11 @@ Vendor: The Tor Project (https://torproject.org) Packager: Andrew Lewman %if %{is_suse} -Requires: openssl >= 0.9.6 -BuildRequires: openssl-devel >= 0.9.6, rpm >= 4.0, zlib-devel +Requires: openssl >= 0.9.7 +BuildRequires: openssl-devel >= 0.9.7, rpm >= 4.0, zlib-devel %else -Requires: openssl >= 0.9.6, libevent >= 1.1 -BuildRequires: openssl-devel >= 0.9.6, libevent-devel >= 1.1 +Requires: openssl >= 0.9.7 +BuildRequires: openssl-devel >= 0.9.7 %endif %if %{is_fc} BuildRequires: rpm-build >= 4.0 -- cgit v1.2.3 From 845326317d9c468012ac99fab6e78575a807ed4f Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Fri, 12 Jun 2009 11:18:02 -0400 Subject: Check answer_len in the remap_addr case of process_relay_cell_not_open. Fix an edge case where a malicious exit relay could convince a controller that the client's DNS question resolves to an internal IP address. Bug found and fixed by "optimist"; bugfix on 0.1.2.8-beta. --- ChangeLog | 5 +++++ src/or/relay.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 527adc954..bce2aa39d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,9 @@ Changes in version 0.2.1.16-?? - 2009-??-?? + o Security fixes: + - Fix an edge case where a malicious exit relay could convince a + controller that the client's DNS question resolves to an internal IP + address. Bug found and fixed by "optimist"; bugfix on 0.1.2.8-beta. + o Major performance improvements (on 0.2.0.x): - Disable and refactor some debugging checks that forced a linear scan over the whole server-side DNS cache. These accounted for over 50% diff --git a/src/or/relay.c b/src/or/relay.c index 85cd8f6c8..9657a8295 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -947,7 +947,7 @@ connection_edge_process_relay_cell_not_open( cell->payload+RELAY_HEADER_SIZE+2, /*answer*/ ttl, -1); - if (answer_type == RESOLVED_TYPE_IPV4) { + if (answer_type == RESOLVED_TYPE_IPV4 && answer_len >= 4) { uint32_t addr = ntohl(get_uint32(cell->payload+RELAY_HEADER_SIZE+2)); remap_event_helper(conn, addr); } -- cgit v1.2.3 From 7f8a6c5e92531658e54b243ab00d1f279693a28d Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 16 Jun 2009 16:12:06 -0400 Subject: Revise earlier check for correct IPv4 addr length to check for ==4. We need this to match the check in connection_ap_handshake_socks_resolved(). Found by optimist. --- src/or/relay.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/or/relay.c b/src/or/relay.c index 9657a8295..8099f4f07 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -925,7 +925,7 @@ connection_edge_process_relay_cell_not_open( 2+answer_len)); else ttl = -1; - if (answer_type == RESOLVED_TYPE_IPV4 && answer_len >= 4) { + if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) { uint32_t addr = ntohl(get_uint32(cell->payload+RELAY_HEADER_SIZE+2)); if (get_options()->ClientDNSRejectInternalAddresses && is_internal_IP(addr, 0)) { @@ -947,7 +947,7 @@ connection_edge_process_relay_cell_not_open( cell->payload+RELAY_HEADER_SIZE+2, /*answer*/ ttl, -1); - if (answer_type == RESOLVED_TYPE_IPV4 && answer_len >= 4) { + if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) { uint32_t addr = ntohl(get_uint32(cell->payload+RELAY_HEADER_SIZE+2)); remap_event_helper(conn, addr); } -- cgit v1.2.3 From 3847f54945933a11d14053b80427f268ffcfd8ad Mon Sep 17 00:00:00 2001 From: Karsten Loesing Date: Tue, 16 Jun 2009 22:07:16 +0200 Subject: Backport fix for bug 997. Backporting 6a32beb and ca8708a. --- ChangeLog | 8 ++++++++ src/or/connection_edge.c | 27 ++++++--------------------- src/or/rendclient.c | 7 +++---- src/or/rendcommon.c | 5 +++++ 4 files changed, 22 insertions(+), 25 deletions(-) diff --git a/ChangeLog b/ChangeLog index bce2aa39d..f9457edf0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -27,6 +27,14 @@ Changes in version 0.2.1.16-?? - 2009-??-?? - Avoid crashing when we have a policy specified in a DirPolicy or SocksPolicy or ReachableAddresses option with ports set on it, and we re-load the policy. May fix bug 996. + - Hidden service clients didn't use a cached service descriptor that + was older than 15 minutes, but wouldn't fetch a new one either. Now, + use a cached descriptor no matter how old it is and only fetch a new + one when all introduction points fail. Fix for bug 997. Patch from + Marcus Griep. + - Fix refetching of hidden service descriptors when all introduction + points have turned out to not work. Fixes more of bug 997. + o Minor bugfixes (on 0.2.1.x): - When switching back and forth between bridge mode, do not start diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 9b1f73791..83a7543c3 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -1683,27 +1683,12 @@ connection_ap_handshake_rewrite_and_attach(edge_connection_t *conn, if (conn->rend_data->auth_type == REND_NO_AUTH) rend_client_refetch_renddesc(conn->rend_data->onion_address); } else { /* r > 0 */ -/** How long after we receive a hidden service descriptor do we consider - * it valid? */ -#define NUM_SECONDS_BEFORE_HS_REFETCH (60*15) - if (now - entry->received < NUM_SECONDS_BEFORE_HS_REFETCH) { - conn->_base.state = AP_CONN_STATE_CIRCUIT_WAIT; - log_info(LD_REND, "Descriptor is here and fresh enough. Great."); - if (connection_ap_handshake_attach_circuit(conn) < 0) { - if (!conn->_base.marked_for_close) - connection_mark_unattached_ap(conn, END_STREAM_REASON_CANT_ATTACH); - return -1; - } - } else { - conn->_base.state = AP_CONN_STATE_RENDDESC_WAIT; - log_info(LD_REND, "Stale descriptor %s. Re-fetching.", - safe_str(conn->rend_data->onion_address)); - /* Fetch both, v0 and v2 rend descriptors in parallel. Use whichever - * arrives first. Exception: When using client authorization, only - * fetch v2 descriptors.*/ - rend_client_refetch_v2_renddesc(conn->rend_data); - if (conn->rend_data->auth_type == REND_NO_AUTH) - rend_client_refetch_renddesc(conn->rend_data->onion_address); + conn->_base.state = AP_CONN_STATE_CIRCUIT_WAIT; + log_info(LD_REND, "Descriptor is here and fresh enough. Great."); + if (connection_ap_handshake_attach_circuit(conn) < 0) { + if (!conn->_base.marked_for_close) + connection_mark_unattached_ap(conn, END_STREAM_REASON_CANT_ATTACH); + return -1; } } return 0; diff --git a/src/or/rendclient.c b/src/or/rendclient.c index 784db9dad..1103014fa 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -473,10 +473,9 @@ rend_client_refetch_renddesc(const char *query) } } -/** Start a connection to a hidden service directory to fetch a v2 - * rendezvous service descriptor for the base32-encoded service ID - * query. - */ +/** Unless we already have a descriptor for rend_query with at least + * one (possibly) working introduction point in it, start a connection to a + * hidden service directory to fetch a v2 rendezvous service descriptor. */ void rend_client_refetch_v2_renddesc(const rend_data_t *rend_query) { diff --git a/src/or/rendcommon.c b/src/or/rendcommon.c index d21eb42ef..4d7b6381a 100644 --- a/src/or/rendcommon.c +++ b/src/or/rendcommon.c @@ -966,6 +966,11 @@ rend_cache_lookup_entry(const char *query, int version, rend_cache_entry_t **e) } if (!*e) return 0; + tor_assert((*e)->parsed && (*e)->parsed->intro_nodes); + /* XXX022 hack for now, to return "not found" if there are no intro + * points remaining. See bug 997. */ + if (smartlist_len((*e)->parsed->intro_nodes) == 0) + return 0; return 1; } -- cgit v1.2.3 From 298dc95dfd84877f1e231426322c02240303815e Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 18 Jun 2009 11:08:10 -0400 Subject: tor-resolve: Don't automatically refuse .onion addresses. If the Tor is running with AutomapHostsOnResolve set, it _is_ reasonable to do a DNS lookup on a .onion address. So instead we make tor-resolve willing to try to resolve anything. Only if Tor refuses to resolve it do we suggest to the user that resolving a .onion address may not work. Fix for bug 1005. --- ChangeLog | 2 ++ src/tools/tor-resolve.c | 28 ++++++++++++++++++---------- 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index f9457edf0..f2da854be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,6 +14,8 @@ Changes in version 0.2.1.16-?? - 2009-??-?? o Minor features: - Update to the "June 3 2009" ip-to-country file. + - Do not have tor-resolve automatically refuse all .onion addresses; + if AutomapHostsOnResolve is set, this will work fine. o Minor bugfixes (on 0.2.0.x): - Log correct error messages for DNS-related network errors on diff --git a/src/tools/tor-resolve.c b/src/tools/tor-resolve.c index ca75a5a56..fe4e88241 100644 --- a/src/tools/tor-resolve.c +++ b/src/tools/tor-resolve.c @@ -107,7 +107,8 @@ build_socks_resolve_request(char **out, * Return 0 on success, -1 on error. */ static int -parse_socks4a_resolve_response(const char *response, size_t len, +parse_socks4a_resolve_response(const char *hostname, + const char *response, size_t len, uint32_t *addr_out) { uint8_t status; @@ -129,6 +130,13 @@ parse_socks4a_resolve_response(const char *response, size_t len, } if (status != 90) { log_warn(LD_NET,"Got status response '%d': socks request failed.", status); + if (!strcasecmpend(hostname, ".onion")) { + log_warn(LD_NET, + "%s is a hidden service; those don't have IP addresses. " + "To connect to a hidden service, you need to send the hostname " + "to Tor; we suggest an application that uses SOCKS 4a.",hostname); + return -1; + } return -1; } @@ -241,7 +249,8 @@ do_resolve(const char *hostname, uint32_t sockshost, uint16_t socksport, log_err(LD_NET, "Error reading SOCKS4 response."); return -1; } - if (parse_socks4a_resolve_response(reply_buf, RESPONSE_LEN_4, + if (parse_socks4a_resolve_response(hostname, + reply_buf, RESPONSE_LEN_4, result_addr)<0){ return -1; } @@ -260,6 +269,13 @@ do_resolve(const char *hostname, uint32_t sockshost, uint16_t socksport, log_warn(LD_NET,"Got SOCKS5 status response '%u': %s", (unsigned)reply_buf[1], socks5_reason_to_string(reply_buf[1])); + if (reply_buf[1] == 4 && !strcasecmpend(hostname, ".onion")) { + log_warn(LD_NET, + "%s is a hidden service; those don't have IP addresses. " + "To connect to a hidden service, you need to send the hostname " + "to Tor; we suggest an application that uses SOCKS 4a.", + hostname); + } return -1; } if (reply_buf[3] == 1) { @@ -396,14 +412,6 @@ main(int argc, char **argv) usage(); } - if (!strcasecmpend(arg[0], ".onion") && !force) { - fprintf(stderr, - "%s is a hidden service; those don't have IP addresses.\n\n" - "To connect to a hidden service, you need to send the hostname\n" - "to Tor; we suggest an application that uses SOCKS 4a.\n", arg[0]); - return 1; - } - if (network_init()<0) { log_err(LD_BUG,"Error initializing network; exiting."); return 1; -- cgit v1.2.3 From 20883f5e8343039eca08b5e2e66e0d213143e65d Mon Sep 17 00:00:00 2001 From: Karsten Loesing Date: Fri, 19 Jun 2009 15:46:13 +0200 Subject: Revert "Backport fix for bug 997." This reverts commit 3847f54945933a11d14053b80427f268ffcfd8ad. --- ChangeLog | 8 -------- src/or/connection_edge.c | 27 +++++++++++++++++++++------ src/or/rendclient.c | 7 ++++--- src/or/rendcommon.c | 5 ----- 4 files changed, 25 insertions(+), 22 deletions(-) diff --git a/ChangeLog b/ChangeLog index f2da854be..4f72328fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -29,14 +29,6 @@ Changes in version 0.2.1.16-?? - 2009-??-?? - Avoid crashing when we have a policy specified in a DirPolicy or SocksPolicy or ReachableAddresses option with ports set on it, and we re-load the policy. May fix bug 996. - - Hidden service clients didn't use a cached service descriptor that - was older than 15 minutes, but wouldn't fetch a new one either. Now, - use a cached descriptor no matter how old it is and only fetch a new - one when all introduction points fail. Fix for bug 997. Patch from - Marcus Griep. - - Fix refetching of hidden service descriptors when all introduction - points have turned out to not work. Fixes more of bug 997. - o Minor bugfixes (on 0.2.1.x): - When switching back and forth between bridge mode, do not start diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 83a7543c3..9b1f73791 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -1683,12 +1683,27 @@ connection_ap_handshake_rewrite_and_attach(edge_connection_t *conn, if (conn->rend_data->auth_type == REND_NO_AUTH) rend_client_refetch_renddesc(conn->rend_data->onion_address); } else { /* r > 0 */ - conn->_base.state = AP_CONN_STATE_CIRCUIT_WAIT; - log_info(LD_REND, "Descriptor is here and fresh enough. Great."); - if (connection_ap_handshake_attach_circuit(conn) < 0) { - if (!conn->_base.marked_for_close) - connection_mark_unattached_ap(conn, END_STREAM_REASON_CANT_ATTACH); - return -1; +/** How long after we receive a hidden service descriptor do we consider + * it valid? */ +#define NUM_SECONDS_BEFORE_HS_REFETCH (60*15) + if (now - entry->received < NUM_SECONDS_BEFORE_HS_REFETCH) { + conn->_base.state = AP_CONN_STATE_CIRCUIT_WAIT; + log_info(LD_REND, "Descriptor is here and fresh enough. Great."); + if (connection_ap_handshake_attach_circuit(conn) < 0) { + if (!conn->_base.marked_for_close) + connection_mark_unattached_ap(conn, END_STREAM_REASON_CANT_ATTACH); + return -1; + } + } else { + conn->_base.state = AP_CONN_STATE_RENDDESC_WAIT; + log_info(LD_REND, "Stale descriptor %s. Re-fetching.", + safe_str(conn->rend_data->onion_address)); + /* Fetch both, v0 and v2 rend descriptors in parallel. Use whichever + * arrives first. Exception: When using client authorization, only + * fetch v2 descriptors.*/ + rend_client_refetch_v2_renddesc(conn->rend_data); + if (conn->rend_data->auth_type == REND_NO_AUTH) + rend_client_refetch_renddesc(conn->rend_data->onion_address); } } return 0; diff --git a/src/or/rendclient.c b/src/or/rendclient.c index 1103014fa..784db9dad 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -473,9 +473,10 @@ rend_client_refetch_renddesc(const char *query) } } -/** Unless we already have a descriptor for rend_query with at least - * one (possibly) working introduction point in it, start a connection to a - * hidden service directory to fetch a v2 rendezvous service descriptor. */ +/** Start a connection to a hidden service directory to fetch a v2 + * rendezvous service descriptor for the base32-encoded service ID + * query. + */ void rend_client_refetch_v2_renddesc(const rend_data_t *rend_query) { diff --git a/src/or/rendcommon.c b/src/or/rendcommon.c index 4d7b6381a..d21eb42ef 100644 --- a/src/or/rendcommon.c +++ b/src/or/rendcommon.c @@ -966,11 +966,6 @@ rend_cache_lookup_entry(const char *query, int version, rend_cache_entry_t **e) } if (!*e) return 0; - tor_assert((*e)->parsed && (*e)->parsed->intro_nodes); - /* XXX022 hack for now, to return "not found" if there are no intro - * points remaining. See bug 997. */ - if (smartlist_len((*e)->parsed->intro_nodes) == 0) - return 0; return 1; } -- cgit v1.2.3 From f266ecbeec83397acf2dce46feebd6389d896d14 Mon Sep 17 00:00:00 2001 From: Karsten Loesing Date: Fri, 19 Jun 2009 16:26:02 +0200 Subject: Better fix for 997. --- ChangeLog | 5 +++++ src/or/connection_edge.c | 3 --- src/or/or.h | 4 ++++ src/or/rendclient.c | 9 ++++++--- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4f72328fd..b70b054be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -29,6 +29,11 @@ Changes in version 0.2.1.16-?? - 2009-??-?? - Avoid crashing when we have a policy specified in a DirPolicy or SocksPolicy or ReachableAddresses option with ports set on it, and we re-load the policy. May fix bug 996. + - Hidden service clients didn't use a cached service descriptor that + was older than 15 minutes, but wouldn't fetch a new one either, + because there was already one in the cache. Now, fetch a v2 + descriptor unless the same descriptor was added to the cache within + the last 15 minutes. Fixes bug 997; reported by Marcus Griep. o Minor bugfixes (on 0.2.1.x): - When switching back and forth between bridge mode, do not start diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 9b1f73791..1ef87dbff 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -1683,9 +1683,6 @@ connection_ap_handshake_rewrite_and_attach(edge_connection_t *conn, if (conn->rend_data->auth_type == REND_NO_AUTH) rend_client_refetch_renddesc(conn->rend_data->onion_address); } else { /* r > 0 */ -/** How long after we receive a hidden service descriptor do we consider - * it valid? */ -#define NUM_SECONDS_BEFORE_HS_REFETCH (60*15) if (now - entry->received < NUM_SECONDS_BEFORE_HS_REFETCH) { conn->_base.state = AP_CONN_STATE_CIRCUIT_WAIT; log_info(LD_REND, "Descriptor is here and fresh enough. Great."); diff --git a/src/or/or.h b/src/or/or.h index 330b2ecbe..f84485f2f 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -636,6 +636,10 @@ typedef enum { /** Length of a binary-encoded rendezvous service ID. */ #define REND_SERVICE_ID_LEN 10 +/** How long after we receive a hidden service descriptor do we consider + * it fresh? */ +#define NUM_SECONDS_BEFORE_HS_REFETCH (60*15) + /** Time period for which a v2 descriptor will be valid. */ #define REND_TIME_PERIOD_V2_DESC_VALIDITY (24*60*60) diff --git a/src/or/rendclient.c b/src/or/rendclient.c index 784db9dad..5b18a519b 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -482,8 +482,9 @@ rend_client_refetch_v2_renddesc(const rend_data_t *rend_query) { char descriptor_id[DIGEST_LEN]; int replicas_left_to_try[REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS]; - int i, tries_left; + int i, tries_left, r; rend_cache_entry_t *e = NULL; + time_t now = time(NULL); tor_assert(rend_query); /* Are we configured to fetch descriptors? */ if (!get_options()->FetchHidServDescriptors) { @@ -492,9 +493,11 @@ rend_client_refetch_v2_renddesc(const rend_data_t *rend_query) return; } /* Before fetching, check if we already have the descriptor here. */ - if (rend_cache_lookup_entry(rend_query->onion_address, -1, &e) > 0) { + r = rend_cache_lookup_entry(rend_query->onion_address, -1, &e); + if (r > 0 && now - e->received < NUM_SECONDS_BEFORE_HS_REFETCH) { log_info(LD_REND, "We would fetch a v2 rendezvous descriptor, but we " - "already have that descriptor here. Not fetching."); + "already have a fresh copy of that descriptor here. " + "Not fetching."); return; } log_debug(LD_REND, "Fetching v2 rendezvous descriptor for service %s", -- cgit v1.2.3 From 428178dda31eb07967c7e549a53940dae35b5e69 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Fri, 19 Jun 2009 09:31:07 -0400 Subject: prepare changelog for 0.2.1.16-rc --- ChangeLog | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/ChangeLog b/ChangeLog index b70b054be..86eaabd31 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -Changes in version 0.2.1.16-?? - 2009-??-?? +Changes in version 0.2.1.16-rc - 2009-06-19 o Security fixes: - Fix an edge case where a malicious exit relay could convince a controller that the client's DNS question resolves to an internal IP @@ -6,29 +6,26 @@ Changes in version 0.2.1.16-?? - 2009-??-?? o Major performance improvements (on 0.2.0.x): - Disable and refactor some debugging checks that forced a linear scan - over the whole server-side DNS cache. These accounted for over 50% - of CPU time on a relatively busy exit node's gprof profile. Found by - Jacob. + over the whole server-side DNS cache. These accounted for over 50% + of CPU time on a relatively busy exit node's gprof profile. Found + by Jacob. - Disable some debugging checks that appeared in exit node profile data. o Minor features: - Update to the "June 3 2009" ip-to-country file. - Do not have tor-resolve automatically refuse all .onion addresses; - if AutomapHostsOnResolve is set, this will work fine. + if AutomapHostsOnResolve is set in your torrc, this will work fine. o Minor bugfixes (on 0.2.0.x): - Log correct error messages for DNS-related network errors on Windows. - - Don't warn users about low port and hibernation mix when they - provide a *ListenAddress directive to fix that. Bugfix on - 0.2.1.15-rc. - - Fix a race condition that could cause crashes or memory - corruption when running as a server with a controller listening - for log messages. + - Fix a race condition that could cause crashes or memory corruption + when running as a server with a controller listening for log + messages. - Avoid crashing when we have a policy specified in a DirPolicy or - SocksPolicy or ReachableAddresses option with ports set on it, and we - re-load the policy. May fix bug 996. + SocksPolicy or ReachableAddresses option with ports set on it, + and we re-load the policy. May fix bug 996. - Hidden service clients didn't use a cached service descriptor that was older than 15 minutes, but wouldn't fetch a new one either, because there was already one in the cache. Now, fetch a v2 @@ -36,10 +33,13 @@ Changes in version 0.2.1.16-?? - 2009-??-?? the last 15 minutes. Fixes bug 997; reported by Marcus Griep. o Minor bugfixes (on 0.2.1.x): + - Don't warn users about low port and hibernation mix when they + provide a *ListenAddress directive to fix that. Bugfix on + 0.2.1.15-rc. - When switching back and forth between bridge mode, do not start gathering GeoIP data until two hours have passed. - Do not complain that the user has requested an excluded node as - an exit when the node is not really an exit. This could happen + an exit when the node is not really an exit. This could happen because the circuit was for testing, or an introduction point. Fix for bug 984. -- cgit v1.2.3 From ac3dedacce44b306ec1a9372ee54b0aabaeac8fe Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sat, 20 Jun 2009 01:14:07 -0400 Subject: Bump version to 0.2.1.16-rc --- ChangeLog | 2 +- configure.in | 2 +- contrib/tor-mingw.nsi.in | 2 +- src/win32/orconfig.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 86eaabd31..436116bd7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -Changes in version 0.2.1.16-rc - 2009-06-19 +Changes in version 0.2.1.16-rc - 2009-06-20 o Security fixes: - Fix an edge case where a malicious exit relay could convince a controller that the client's DNS question resolves to an internal IP diff --git a/configure.in b/configure.in index ceca53f07..37bccce96 100644 --- a/configure.in +++ b/configure.in @@ -5,7 +5,7 @@ dnl Copyright (c) 2007-2008, The Tor Project, Inc. dnl See LICENSE for licensing information AC_INIT -AM_INIT_AUTOMAKE(tor, 0.2.1.15-rc-dev) +AM_INIT_AUTOMAKE(tor, 0.2.1.16-rc) AM_CONFIG_HEADER(orconfig.h) AC_CANONICAL_HOST diff --git a/contrib/tor-mingw.nsi.in b/contrib/tor-mingw.nsi.in index 5d67768f6..d65347ebe 100644 --- a/contrib/tor-mingw.nsi.in +++ b/contrib/tor-mingw.nsi.in @@ -9,7 +9,7 @@ !include "FileFunc.nsh" !insertmacro GetParameters -!define VERSION "0.2.1.15-rc-dev" +!define VERSION "0.2.1.16-rc" !define INSTALLER "tor-${VERSION}-win32.exe" !define WEBSITE "https://www.torproject.org/" !define LICENSE "LICENSE" diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h index 65f21f6d3..037e86902 100644 --- a/src/win32/orconfig.h +++ b/src/win32/orconfig.h @@ -226,6 +226,6 @@ #define USING_TWOS_COMPLEMENT /* Version number of package */ -#define VERSION "0.2.1.15-rc-dev" +#define VERSION "0.2.1.16-rc" -- cgit v1.2.3