From 9f044eac77ee2245de71283e71361346ee194f25 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 20 Feb 2013 00:36:59 -0500 Subject: [PATCH 01/43] Refactor format_networkstatus_vote to avoid preallocating a buffer. This saves a lot of "are we about to overrun the buffer?" checking, and unmoots a bunch of "did we allocate enough" discussion. --- src/or/dirvote.c | 138 ++++++++++++++++------------------------------- 1 file changed, 47 insertions(+), 91 deletions(-) diff --git a/src/or/dirvote.c b/src/or/dirvote.c index bcfe2b069..bd4e2f69a 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -67,17 +67,15 @@ char * format_networkstatus_vote(crypto_pk_t *private_signing_key, networkstatus_t *v3_ns) { - size_t len; - char *status = NULL; + smartlist_t *chunks; const char *client_versions = NULL, *server_versions = NULL; - char *outp, *endp; char fingerprint[FINGERPRINT_LEN+1]; char digest[DIGEST_LEN]; uint32_t addr; - routerlist_t *rl = router_get_routerlist(); - char *version_lines = NULL; - int r; + char *client_versions_line = NULL, *server_versions_line = NULL; networkstatus_voter_info_t *voter; + char *status = NULL; + size_t status_len; tor_assert(private_signing_key); tor_assert(v3_ns->type == NS_TYPE_VOTE || v3_ns->type == NS_TYPE_OPINION); @@ -91,43 +89,20 @@ format_networkstatus_vote(crypto_pk_t *private_signing_key, client_versions = v3_ns->client_versions; server_versions = v3_ns->server_versions; - if (client_versions || server_versions) { - size_t v_len = 64; - char *cp; - if (client_versions) - v_len += strlen(client_versions); - if (server_versions) - v_len += strlen(server_versions); - version_lines = tor_malloc(v_len); - cp = version_lines; - if (client_versions) { - r = tor_snprintf(cp, v_len-(cp-version_lines), - "client-versions %s\n", client_versions); - if (r < 0) { - log_err(LD_BUG, "Insufficient memory for client-versions line"); - tor_assert(0); - } - cp += strlen(cp); - } - if (server_versions) { - r = tor_snprintf(cp, v_len-(cp-version_lines), - "server-versions %s\n", server_versions); - if (r < 0) { - log_err(LD_BUG, "Insufficient memory for server-versions line"); - tor_assert(0); - } - } + if (client_versions) { + tor_asprintf(&client_versions_line, "client-versions %s\n", + client_versions); } else { - version_lines = tor_strdup(""); + client_versions_line = tor_strdup(""); + } + if (server_versions) { + tor_asprintf(&server_versions_line, "server-versions %s\n", + server_versions); + } else { + server_versions_line = tor_strdup(""); } - len = 8192; - len += strlen(version_lines); - len += (RS_ENTRY_LEN+MICRODESC_LINE_LEN)*smartlist_len(rl->routers); - len += strlen("\ndirectory-footer\n"); - len += v3_ns->cert->cache_info.signed_descriptor_len; - - status = tor_malloc(len); + chunks = smartlist_new(); { char published[ISO_TIME_LEN+1]; char va[ISO_TIME_LEN+1]; @@ -151,7 +126,7 @@ format_networkstatus_vote(crypto_pk_t *private_signing_key, params = tor_strdup(""); tor_assert(cert); - r = tor_snprintf(status, len, + smartlist_add_asprintf(chunks, "network-status-version 3\n" "vote-status %s\n" "consensus-methods %s\n" @@ -160,7 +135,7 @@ format_networkstatus_vote(crypto_pk_t *private_signing_key, "fresh-until %s\n" "valid-until %s\n" "voting-delay %d %d\n" - "%s" /* versions */ + "%s%s" /* versions */ "known-flags %s\n" "flag-thresholds %s\n" "params %s\n" @@ -170,7 +145,8 @@ format_networkstatus_vote(crypto_pk_t *private_signing_key, methods, published, va, fu, vu, v3_ns->vote_seconds, v3_ns->dist_seconds, - version_lines, + client_versions_line, + server_versions_line, flags, flag_thresholds, params, @@ -178,88 +154,63 @@ format_networkstatus_vote(crypto_pk_t *private_signing_key, fmt_addr32(addr), voter->dir_port, voter->or_port, voter->contact); - if (r < 0) { - log_err(LD_BUG, "Insufficient memory for network status line"); - tor_assert(0); - } - tor_free(params); tor_free(flags); tor_free(flag_thresholds); tor_free(methods); - outp = status + strlen(status); - endp = status + len; if (!tor_digest_is_zero(voter->legacy_id_digest)) { char fpbuf[HEX_DIGEST_LEN+1]; base16_encode(fpbuf, sizeof(fpbuf), voter->legacy_id_digest, DIGEST_LEN); - r = tor_snprintf(outp, endp-outp, "legacy-dir-key %s\n", fpbuf); - if (r < 0) { - log_err(LD_BUG, "Insufficient memory for legacy-dir-key line"); - tor_assert(0); - } - outp += strlen(outp); + smartlist_add_asprintf(chunks, "legacy-dir-key %s\n", fpbuf); } - tor_assert(outp + cert->cache_info.signed_descriptor_len < endp); - memcpy(outp, cert->cache_info.signed_descriptor_body, - cert->cache_info.signed_descriptor_len); - - outp += cert->cache_info.signed_descriptor_len; + smartlist_add(chunks, tor_strndup(cert->cache_info.signed_descriptor_body, + cert->cache_info.signed_descriptor_len)); } SMARTLIST_FOREACH_BEGIN(v3_ns->routerstatus_list, vote_routerstatus_t *, vrs) { +#define MAX_VOTE_ROUTERSTATUS_LEN 8192 + char rs_buf[MAX_VOTE_ROUTERSTATUS_LEN]; vote_microdesc_hash_t *h; - if (routerstatus_format_entry(outp, endp-outp, &vrs->status, + if (routerstatus_format_entry(rs_buf, sizeof(rs_buf), &vrs->status, vrs->version, NS_V3_VOTE, vrs) < 0) { - log_warn(LD_BUG, "Unable to print router status."); - goto err; + log_warn(LD_BUG, "Unable to print router status; skipping"); + continue; } - outp += strlen(outp); + smartlist_add(chunks, tor_strdup(rs_buf)); for (h = vrs->microdesc; h; h = h->next) { - size_t mlen = strlen(h->microdesc_hash_line); - if (outp+mlen >= endp) { - log_warn(LD_BUG, "Can't fit microdesc line in vote."); - } - memcpy(outp, h->microdesc_hash_line, mlen+1); - outp += strlen(outp); + smartlist_add(chunks, tor_strdup(h->microdesc_hash_line)); } } SMARTLIST_FOREACH_END(vrs); - r = tor_snprintf(outp, endp-outp, "directory-footer\n"); - if (r < 0) { - log_err(LD_BUG, "Insufficient memory for directory-footer line"); - tor_assert(0); - } - outp += strlen(outp); + smartlist_add(chunks, tor_strdup("directory-footer\n")); { char signing_key_fingerprint[FINGERPRINT_LEN+1]; - if (tor_snprintf(outp, endp-outp, "directory-signature ")<0) { - log_warn(LD_BUG, "Unable to start signature line."); - goto err; - } - outp += strlen(outp); - if (crypto_pk_get_fingerprint(private_signing_key, signing_key_fingerprint, 0)<0) { log_warn(LD_BUG, "Unable to get fingerprint for signing key"); goto err; } - if (tor_snprintf(outp, endp-outp, "%s %s\n", fingerprint, - signing_key_fingerprint)<0) { - log_warn(LD_BUG, "Unable to end signature line."); - goto err; - } - outp += strlen(outp); + + smartlist_add_asprintf(chunks, "directory-signature %s %s\n", fingerprint, + signing_key_fingerprint); } + status = smartlist_join_strings(chunks, "", 0, NULL); +#define MAX_VOTE_SIGNATURE_LEN 4096 + status_len = strlen(status) + MAX_VOTE_SIGNATURE_LEN + 1; + status = tor_realloc(status, status_len); + if (router_get_networkstatus_v3_hash(status, digest, DIGEST_SHA1)<0) goto err; note_crypto_pk_op(SIGN_DIR); - if (router_append_dirobj_signature(outp,endp-outp,digest, DIGEST_LEN, + if (router_append_dirobj_signature(status+strlen(status), + status_len, + digest, DIGEST_LEN, private_signing_key)<0) { log_warn(LD_BUG, "Unable to sign networkstatus vote."); goto err; @@ -282,7 +233,12 @@ format_networkstatus_vote(crypto_pk_t *private_signing_key, err: tor_free(status); done: - tor_free(version_lines); + tor_free(client_versions_line); + tor_free(server_versions_line); + if (chunks) { + SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp)); + smartlist_free(chunks); + } return status; } From 07e26005a6cb7e47f1f90fcf6a377dfaaaa56789 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 17:20:43 -0400 Subject: [PATCH 02/43] Treat a changed IPv6 ORPort like an IPv4 one in retry_all_listeners() Fix for bug 6026 --- changes/bug6026 | 4 ++++ src/or/config.c | 3 ++- src/or/connection.c | 5 ++++- src/or/router.c | 31 ++++++++++++++++++++++++------- src/or/router.h | 5 ++++- 5 files changed, 38 insertions(+), 10 deletions(-) create mode 100644 changes/bug6026 diff --git a/changes/bug6026 b/changes/bug6026 new file mode 100644 index 000000000..de5d6ead0 --- /dev/null +++ b/changes/bug6026 @@ -0,0 +1,4 @@ + o Minor bugfixes: + - Relays now treat a changed IPv6 ORPort as sufficient reason to + publish an updated descriptor. Fix for bug 6026; bugfix for + 0.2.4.1-alpha. diff --git a/src/or/config.c b/src/or/config.c index 15138f9d7..1c48c6616 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -5561,7 +5561,8 @@ get_first_listener_addrport_string(int listener_type) to iterate all listener connections and find out in which port it ended up listening: */ if (cfg->port == CFG_AUTO_PORT) { - port = router_get_active_listener_port_by_type(listener_type); + port = router_get_active_listener_port_by_type_af(listener_type, + tor_addr_family(&cfg->addr)); if (!port) return NULL; } else { diff --git a/src/or/connection.c b/src/or/connection.c index c659e65fe..5812d8316 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -2054,6 +2054,8 @@ retry_all_listeners(smartlist_t *replaced_conns, const or_options_t *options = get_options(); int retval = 0; const uint16_t old_or_port = router_get_advertised_or_port(options); + const uint16_t old_or_port_ipv6 = + router_get_advertised_or_port_by_af(options,AF_INET6); const uint16_t old_dir_port = router_get_advertised_dir_port(options, 0); SMARTLIST_FOREACH_BEGIN(get_connection_array(), connection_t *, conn) { @@ -2082,8 +2084,9 @@ retry_all_listeners(smartlist_t *replaced_conns, smartlist_free(listeners); - /* XXXprop186 should take all advertised ports into account */ if (old_or_port != router_get_advertised_or_port(options) || + old_or_port_ipv6 != router_get_advertised_or_port_by_af(options, + AF_INET6) || old_dir_port != router_get_advertised_dir_port(options, 0)) { /* Our chosen ORPort or DirPort is not what it used to be: the * descriptor we had (if any) should be regenerated. (We won't diff --git a/src/or/router.c b/src/or/router.c index 422fe5db2..91de221b2 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -1459,13 +1459,18 @@ consider_publishable_server(int force) /** XXX not a very good interface. it's not reliable when there are multiple listeners. */ uint16_t -router_get_active_listener_port_by_type(int listener_type) +router_get_active_listener_port_by_type_af(int listener_type, + sa_family_t family) { /* Iterate all connections, find one of the right kind and return the port. Not very sophisticated or fast, but effective. */ - const connection_t *c = connection_get_by_type(listener_type); - if (c) - return c->port; + smartlist_t *conns = get_connection_array(); + SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn) { + if (conn->type == listener_type && !conn->marked_for_close && + conn->socket_family == family) { + return conn->port; + } + } SMARTLIST_FOREACH_END(conn); return 0; } @@ -1477,13 +1482,24 @@ router_get_active_listener_port_by_type(int listener_type) uint16_t router_get_advertised_or_port(const or_options_t *options) { - int port = get_primary_or_port(); + return router_get_advertised_or_port_by_af(options, AF_INET); +} + +/** As router_get_advertised_or_port(), but allows an address family argument. + */ +uint16_t +router_get_advertised_or_port_by_af(const or_options_t *options, + sa_family_t family) +{ + int port = get_first_advertised_port_by_type_af(CONN_TYPE_OR_LISTENER, + family); (void)options; /* If the port is in 'auto' mode, we have to use router_get_listener_port_by_type(). */ if (port == CFG_AUTO_PORT) - return router_get_active_listener_port_by_type(CONN_TYPE_OR_LISTENER); + return router_get_active_listener_port_by_type_af(CONN_TYPE_OR_LISTENER, + family); return port; } @@ -1503,7 +1519,8 @@ router_get_advertised_dir_port(const or_options_t *options, uint16_t dirport) return dirport; if (dirport_configured == CFG_AUTO_PORT) - return router_get_active_listener_port_by_type(CONN_TYPE_DIR_LISTENER); + return router_get_active_listener_port_by_type_af(CONN_TYPE_DIR_LISTENER, + AF_INET); return dirport_configured; } diff --git a/src/or/router.h b/src/or/router.h index fd2076af0..dc894d1a1 100644 --- a/src/or/router.h +++ b/src/or/router.h @@ -58,8 +58,11 @@ int authdir_mode_publishes_statuses(const or_options_t *options); int authdir_mode_tests_reachability(const or_options_t *options); int authdir_mode_bridge(const or_options_t *options); -uint16_t router_get_active_listener_port_by_type(int listener_type); +uint16_t router_get_active_listener_port_by_type_af(int listener_type, + sa_family_t family); uint16_t router_get_advertised_or_port(const or_options_t *options); +uint16_t router_get_advertised_or_port_by_af(const or_options_t *options, + sa_family_t family); uint16_t router_get_advertised_dir_port(const or_options_t *options, uint16_t dirport); From 0a9c17a61ad7193a051c53ea2a0cb91e012f014e Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 17 Apr 2013 11:34:15 -0400 Subject: [PATCH 03/43] Fix memory leak when sending configuration-changed event Fix for bug #8718; bugfix on 0.2.3.3-alpha. --- changes/bug8716 | 3 +++ src/or/config.c | 3 ++- src/or/control.c | 2 +- src/or/control.h | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 changes/bug8716 diff --git a/changes/bug8716 b/changes/bug8716 new file mode 100644 index 000000000..74c74f82a --- /dev/null +++ b/changes/bug8716 @@ -0,0 +1,3 @@ + o Minor bugfixes (memory leak): + - Fix a memory leak that would occur whenever a configuration + option changed. Fixes bug #8718; bugfix on 0.2.3.3-alpha. diff --git a/src/or/config.c b/src/or/config.c index 16eadf917..236955b2b 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -785,12 +785,13 @@ set_options(or_options_t *new_val, char **msg) tor_free(line); } } else { - smartlist_add(elements, (char*)options_format.vars[i].name); + smartlist_add(elements, tor_strdup(options_format.vars[i].name)); smartlist_add(elements, NULL); } } } control_event_conf_changed(elements); + SMARTLIST_FOREACH(elements, char *, cp, tor_free(cp)); smartlist_free(elements); } diff --git a/src/or/control.c b/src/or/control.c index fc7bae23e..417f6c6db 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -4347,7 +4347,7 @@ control_event_guard(const char *nickname, const char *digest, * a smartlist_t containing (key, value, ...) pairs in sequence. * value can be NULL. */ int -control_event_conf_changed(smartlist_t *elements) +control_event_conf_changed(const smartlist_t *elements) { int i; char *result; diff --git a/src/or/control.h b/src/or/control.h index f301ce91b..943d67eea 100644 --- a/src/or/control.h +++ b/src/or/control.h @@ -71,7 +71,7 @@ int control_event_server_status(int severity, const char *format, ...) CHECK_PRINTF(2,3); int control_event_guard(const char *nickname, const char *digest, const char *status); -int control_event_conf_changed(smartlist_t *elements); +int control_event_conf_changed(const smartlist_t *elements); int control_event_buildtimeout_set(const circuit_build_times_t *cbt, buildtimeout_set_event_t type); int control_event_signal(uintptr_t signal); From cd2b508f4ec22e85104065058722293a951be200 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 17 Apr 2013 11:53:52 -0400 Subject: [PATCH 04/43] Don't leak a waiting-for-certs consensus when accepting it. I believe this was introduced in 6bc071f765d2829249db52, which makes this a fix on 0.2.0.10-alpha. But my code archeology has not extended to actually testing that theory. --- changes/bug8719 | 6 ++++++ src/or/networkstatus.c | 5 +++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 changes/bug8719 diff --git a/changes/bug8719 b/changes/bug8719 new file mode 100644 index 000000000..c05b79dde --- /dev/null +++ b/changes/bug8719 @@ -0,0 +1,6 @@ + o Major bugfixes (memory leak): + - Avoid a memory leak where we would leak a consensus body when we find + that a consensus which we couldn't previously verify due to missing + certificates is now verifiable. Fixes bug 8719; bugfix on + 0.2.0.10-alpha. + diff --git a/src/or/networkstatus.c b/src/or/networkstatus.c index 2553a74e5..b78fed311 100644 --- a/src/or/networkstatus.c +++ b/src/or/networkstatus.c @@ -1893,11 +1893,12 @@ networkstatus_note_certs_arrived(void) if (!waiting->consensus) continue; if (networkstatus_check_consensus_signature(waiting->consensus, 0)>=0) { + char *waiting_body = waiting->body; if (!networkstatus_set_current_consensus( - waiting->body, + waiting_body, networkstatus_get_flavor_name(i), NSSET_WAS_WAITING_FOR_CERTS)) { - tor_free(waiting->body); + tor_free(waiting_body); } } } From cd1cdae0fac33bca359b34dae4062fe87a351661 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 18 Apr 2013 10:30:14 -0400 Subject: [PATCH 05/43] Fix some wide lines --- src/or/routerparse.c | 2 +- src/test/test.c | 3 ++- src/test/test_dir.c | 10 +++++----- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/or/routerparse.c b/src/or/routerparse.c index 370cf2682..0d535a6c3 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -1494,7 +1494,7 @@ extrainfo_parse_entry_from_string(const char *s, const char *end, extrainfo = tor_malloc_zero(sizeof(extrainfo_t)); extrainfo->cache_info.is_extrainfo = 1; if (cache_copy) - extrainfo->cache_info.signed_descriptor_body = tor_memdup_nulterm(s, end-s); + extrainfo->cache_info.signed_descriptor_body = tor_memdup_nulterm(s,end-s); extrainfo->cache_info.signed_descriptor_len = end-s; memcpy(extrainfo->cache_info.signed_descriptor_digest, digest, DIGEST_LEN); diff --git a/src/test/test.c b/src/test/test.c index 42aab4cbc..c12ba93d7 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -108,7 +108,8 @@ setup_directory(void) r = mkdir(temp_dir); } #else - tor_snprintf(temp_dir, sizeof(temp_dir), "/tmp/tor_test_%d_%s", (int) getpid(), rnd32); + tor_snprintf(temp_dir, sizeof(temp_dir), "/tmp/tor_test_%d_%s", + (int) getpid(), rnd32); r = mkdir(temp_dir, 0700); #endif if (r) { diff --git a/src/test/test_dir.c b/src/test/test_dir.c index 849bb9e71..de34b5e3b 100644 --- a/src/test/test_dir.c +++ b/src/test/test_dir.c @@ -611,7 +611,7 @@ test_dir_measured_bw_kb_cache(void) test_assert(dirserv_query_measured_bw_cache_kb(mbwl[0].node_id,NULL, NULL)); test_assert(dirserv_query_measured_bw_cache_kb(mbwl[0].node_id,&bw, NULL)); test_eq(bw, 20); - test_assert(dirserv_query_measured_bw_cache_kb(mbwl[0].node_id,NULL, &as_of)); + test_assert(dirserv_query_measured_bw_cache_kb(mbwl[0].node_id,NULL,&as_of)); test_eq(as_of, MBWC_INIT_TIME); /* Now expire it */ curr += MAX_MEASUREMENT_AGE + 1; @@ -619,7 +619,7 @@ test_dir_measured_bw_kb_cache(void) /* Check that the cache is empty */ test_eq(dirserv_get_measured_bw_cache_size(), 0); /* Check that we can't retrieve it */ - test_assert(!dirserv_query_measured_bw_cache_kb(mbwl[0].node_id, NULL, NULL)); + test_assert(!dirserv_query_measured_bw_cache_kb(mbwl[0].node_id, NULL,NULL)); /* Try caching a few things now */ dirserv_cache_measured_bw(&(mbwl[0]), curr); test_eq(dirserv_get_measured_bw_cache_size(), 1); @@ -2050,7 +2050,7 @@ test_consensus_for_umbw(networkstatus_t *con, time_t now) test_assert(con); test_assert(!con->cert); - /* test_assert(con->consensus_method >= MIN_METHOD_TO_CLIP_UNMEASURED_BW_KB); */ + // test_assert(con->consensus_method >= MIN_METHOD_TO_CLIP_UNMEASURED_BW_KB); test_assert(con->consensus_method >= 16); test_eq(4, smartlist_len(con->routerstatus_list)); /* There should be four listed routers; all voters saw the same in this */ @@ -2176,8 +2176,8 @@ test_dir_clip_unmeasured_bw_kb(void) } /** - * This version of test_dir_clip_unmeasured_bw_kb() uses a non-default choice of - * clip bandwidth. + * This version of test_dir_clip_unmeasured_bw_kb() uses a non-default choice + * of clip bandwidth. */ static void From 9246a7ca58d14a975b2788772238c5a7799d54b6 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 20 Feb 2013 00:55:34 -0500 Subject: [PATCH 06/43] Refactor routerstatus_format_entry to avoid character-buffers --- src/or/dirserv.c | 108 +++++++++++++++-------------------------- src/or/dirserv.h | 2 +- src/or/dirvote.c | 21 ++++---- src/or/networkstatus.c | 4 +- 4 files changed, 51 insertions(+), 84 deletions(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index badacd683..472827aed 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -2090,11 +2090,10 @@ version_from_platform(const char *platform) return NULL; } -/** Helper: write the router-status information in rs into buf, - * which has at least buf_len free characters. Do NUL-termination. - * Use the same format as in network-status documents. If version is - * non-NULL, add a "v" line for the platform. Return 0 on success, -1 on - * failure. +/** Helper: write the router-status information in rs into a newly + * allocated character buffer. Use the same format as in network-status + * documents. If version is non-NULL, add a "v" line for the platform. + * Return 0 on success, -1 on failure. * * The format argument has one of the following values: * NS_V2 - Output an entry suitable for a V2 NS opinion document @@ -2105,25 +2104,25 @@ version_from_platform(const char *platform) * it contains additional information for the vote. * NS_CONTROL_PORT - Output a NS document for the control port */ -int -routerstatus_format_entry(char *buf, size_t buf_len, - const routerstatus_t *rs, const char *version, +char * +routerstatus_format_entry(const routerstatus_t *rs, const char *version, routerstatus_format_type_t format, const vote_routerstatus_t *vrs) { - int r; - char *cp; char *summary; + char *result = NULL; char published[ISO_TIME_LEN+1]; char identity64[BASE64_DIGEST_LEN+1]; char digest64[BASE64_DIGEST_LEN+1]; + smartlist_t *chunks = NULL; format_iso_time(published, rs->published_on); digest_to_base64(identity64, rs->identity_digest); digest_to_base64(digest64, rs->descriptor_digest); - r = tor_snprintf(buf, buf_len, + chunks = smartlist_new(); + smartlist_add_asprintf(chunks, "r %s %s %s%s%s %s %d %d\n", rs->nickname, identity64, @@ -2133,11 +2132,6 @@ routerstatus_format_entry(char *buf, size_t buf_len, fmt_addr32(rs->addr), (int)rs->or_port, (int)rs->dir_port); - if (r<0) { - log_warn(LD_BUG, "Not enough space in buffer."); - return -1; - } - cp = buf + strlen(buf); /* TODO: Maybe we want to pass in what we need to build the rest of * this here, instead of in the caller. Then we could use the @@ -2146,25 +2140,18 @@ routerstatus_format_entry(char *buf, size_t buf_len, /* V3 microdesc consensuses don't have "a" lines. */ if (format == NS_V3_CONSENSUS_MICRODESC) - return 0; + goto done; /* Possible "a" line. At most one for now. */ if (!tor_addr_is_null(&rs->ipv6_addr)) { - r = tor_snprintf(cp, buf_len - (cp-buf), - "a %s\n", - fmt_addrport(&rs->ipv6_addr, rs->ipv6_orport)); - if (r<0) { - log_warn(LD_BUG, "Not enough space in buffer."); - return -1; - } - cp += strlen(cp); + smartlist_add_asprintf(chunks, "a %s\n", + fmt_addrport(&rs->ipv6_addr, rs->ipv6_orport)); } if (format == NS_V3_CONSENSUS) - return 0; + goto done; - /* NOTE: Whenever this list expands, be sure to increase MAX_FLAG_LINE_LEN*/ - r = tor_snprintf(cp, buf_len - (cp-buf), + smartlist_add_asprintf(chunks, "s%s%s%s%s%s%s%s%s%s%s%s%s%s\n", /* These must stay in alphabetical order. */ rs->is_authority?" Authority":"", @@ -2180,20 +2167,11 @@ routerstatus_format_entry(char *buf, size_t buf_len, rs->is_unnamed?" Unnamed":"", rs->is_v2_dir?" V2Dir":"", rs->is_valid?" Valid":""); - if (r<0) { - log_warn(LD_BUG, "Not enough space in buffer."); - return -1; - } - cp += strlen(cp); /* length of "opt v \n" */ #define V_LINE_OVERHEAD 7 if (version && strlen(version) < MAX_V_LINE_LEN - V_LINE_OVERHEAD) { - if (tor_snprintf(cp, buf_len - (cp-buf), "v %s\n", version)<0) { - log_warn(LD_BUG, "Unable to print router version."); - return -1; - } - cp += strlen(cp); + smartlist_add_asprintf(chunks, "v %s\n", version); } if (format != NS_V2) { @@ -2213,7 +2191,7 @@ routerstatus_format_entry(char *buf, size_t buf_len, log_warn(LD_BUG, "Cannot get any descriptor for %s " "(wanted descriptor %s).", id, dd); - return -1; + goto err; } /* This assert can fire for the control port, because @@ -2247,39 +2225,32 @@ routerstatus_format_entry(char *buf, size_t buf_len, tor_assert(desc); bw = router_get_advertised_bandwidth_capped(desc) / 1000; } - r = tor_snprintf(cp, buf_len - (cp-buf), - "w Bandwidth=%d\n", bw); + smartlist_add_asprintf(chunks, + "w Bandwidth=%d", bw); - if (r<0) { - log_warn(LD_BUG, "Not enough space in buffer."); - return -1; - } - cp += strlen(cp); if (format == NS_V3_VOTE && vrs && vrs->has_measured_bw) { - *--cp = '\0'; /* Kill "\n" */ - r = tor_snprintf(cp, buf_len - (cp-buf), - " Measured=%d\n", vrs->measured_bw); - if (r<0) { - log_warn(LD_BUG, "Not enough space in buffer for weight line."); - return -1; - } - cp += strlen(cp); + smartlist_add_asprintf(chunks, + " Measured=%d", vrs->measured_bw); } + smartlist_add(chunks, tor_strdup("\n")); if (desc) { summary = policy_summarize(desc->exit_policy, AF_INET); - r = tor_snprintf(cp, buf_len - (cp-buf), "p %s\n", summary); - if (r<0) { - log_warn(LD_BUG, "Not enough space in buffer."); - tor_free(summary); - return -1; - } - cp += strlen(cp); + smartlist_add_asprintf(chunks, "p %s\n", summary); tor_free(summary); } } - return 0; + done: + result = smartlist_join_strings(chunks, "", 0, NULL); + + err: + if (chunks) { + SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp)); + smartlist_free(chunks); + } + + return result; } /** Helper for sorting: compares two routerinfos first by address, and then by @@ -3054,14 +3025,15 @@ generate_v2_networkstatus_opinion(void) if (digestmap_get(omit_as_sybil, ri->cache_info.identity_digest)) clear_status_flags_on_sybil(&rs); - if (routerstatus_format_entry(outp, endp-outp, &rs, version, NS_V2, - NULL)) { - log_warn(LD_BUG, "Unable to print router status."); - tor_free(version); - goto done; + { + char *rsf = routerstatus_format_entry(&rs, version, NS_V2, NULL); + if (rsf) { + memcpy(outp, rsf, strlen(rsf)+1); + outp += strlen(outp); + tor_free(rsf); + } } tor_free(version); - outp += strlen(outp); } } SMARTLIST_FOREACH_END(ri); diff --git a/src/or/dirserv.h b/src/or/dirserv.h index 0caf55f83..bdd97d81e 100644 --- a/src/or/dirserv.h +++ b/src/or/dirserv.h @@ -129,7 +129,7 @@ size_t dirserv_estimate_data_size(smartlist_t *fps, int is_serverdescs, int compressed); size_t dirserv_estimate_microdesc_size(const smartlist_t *fps, int compressed); -int routerstatus_format_entry(char *buf, size_t buf_len, +char *routerstatus_format_entry( const routerstatus_t *rs, const char *platform, routerstatus_format_type_t format, const vote_routerstatus_t *vrs); diff --git a/src/or/dirvote.c b/src/or/dirvote.c index bd4e2f69a..a7876701a 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -171,15 +171,12 @@ format_networkstatus_vote(crypto_pk_t *private_signing_key, SMARTLIST_FOREACH_BEGIN(v3_ns->routerstatus_list, vote_routerstatus_t *, vrs) { -#define MAX_VOTE_ROUTERSTATUS_LEN 8192 - char rs_buf[MAX_VOTE_ROUTERSTATUS_LEN]; + char *rsf; vote_microdesc_hash_t *h; - if (routerstatus_format_entry(rs_buf, sizeof(rs_buf), &vrs->status, - vrs->version, NS_V3_VOTE, vrs) < 0) { - log_warn(LD_BUG, "Unable to print router status; skipping"); - continue; - } - smartlist_add(chunks, tor_strdup(rs_buf)); + rsf = routerstatus_format_entry(&vrs->status, + vrs->version, NS_V3_VOTE, vrs); + if (rsf) + smartlist_add(chunks, rsf); for (h = vrs->microdesc; h; h = h->next) { smartlist_add(chunks, tor_strdup(h->microdesc_hash_line)); @@ -1982,12 +1979,12 @@ networkstatus_compute_consensus(smartlist_t *votes, } { - char buf[4096]; + char *buf; /* Okay!! Now we can write the descriptor... */ /* First line goes into "buf". */ - routerstatus_format_entry(buf, sizeof(buf), &rs_out, NULL, - rs_format, NULL); - smartlist_add(chunks, tor_strdup(buf)); + buf = routerstatus_format_entry(&rs_out, NULL, rs_format, NULL); + if (buf) + smartlist_add(chunks, buf); } /* Now an m line, if applicable. */ if (flavor == FLAV_MICRODESC && diff --git a/src/or/networkstatus.c b/src/or/networkstatus.c index c63c76fcc..cde146907 100644 --- a/src/or/networkstatus.c +++ b/src/or/networkstatus.c @@ -2127,9 +2127,7 @@ signed_descs_update_status_from_consensus_networkstatus(smartlist_t *descs) char * networkstatus_getinfo_helper_single(const routerstatus_t *rs) { - char buf[RS_ENTRY_LEN+1]; - routerstatus_format_entry(buf, sizeof(buf), rs, NULL, NS_CONTROL_PORT, NULL); - return tor_strdup(buf); + return routerstatus_format_entry(rs, NULL, NS_CONTROL_PORT, NULL); } /** Alloc and return a string describing routerstatuses for the most From 1186628fa93386a9051f4d076f2d97ec9c5dee51 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 20 Feb 2013 01:05:51 -0500 Subject: [PATCH 07/43] Refactor v2 networkstatus generation to avoid buffer-style --- src/or/dirserv.c | 42 ++++++++++++++++++++---------------------- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 472827aed..d5b90b936 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -2908,10 +2908,10 @@ static cached_dir_t * generate_v2_networkstatus_opinion(void) { cached_dir_t *r = NULL; - size_t len, identity_pkey_len; + size_t identity_pkey_len; char *status = NULL, *client_versions = NULL, *server_versions = NULL, *identity_pkey = NULL, *hostname = NULL; - char *outp, *endp; + size_t status_len; const or_options_t *options = get_options(); char fingerprint[FINGERPRINT_LEN+1]; char published[ISO_TIME_LEN+1]; @@ -2930,6 +2930,7 @@ generate_v2_networkstatus_opinion(void) char *version_lines = NULL; smartlist_t *routers = NULL; digestmap_t *omit_as_sybil = NULL; + smartlist_t *chunks = NULL; private_key = get_server_identity_key(); @@ -2968,12 +2969,8 @@ generate_v2_networkstatus_opinion(void) version_lines = tor_strdup(""); } - len = 4096+strlen(client_versions)+strlen(server_versions); - len += identity_pkey_len*2; - len += (RS_ENTRY_LEN)*smartlist_len(rl->routers); - - status = tor_malloc(len); - tor_snprintf(status, len, + chunks = smartlist_new(); + smartlist_add_asprintf(chunks, "network-status-version 2\n" "dir-source %s %s %d\n" "fingerprint %s\n" @@ -2993,8 +2990,6 @@ generate_v2_networkstatus_opinion(void) versioning ? " Versions" : "", version_lines, identity_pkey); - outp = status + strlen(status); - endp = status + len; /* precompute this part, since we need it to decide what "stable" * means. */ @@ -3027,29 +3022,28 @@ generate_v2_networkstatus_opinion(void) { char *rsf = routerstatus_format_entry(&rs, version, NS_V2, NULL); - if (rsf) { - memcpy(outp, rsf, strlen(rsf)+1); - outp += strlen(outp); - tor_free(rsf); - } + if (rsf) + smartlist_add(chunks, rsf); } tor_free(version); } } SMARTLIST_FOREACH_END(ri); - if (tor_snprintf(outp, endp-outp, "directory-signature %s\n", - options->Nickname)<0) { - log_warn(LD_BUG, "Unable to write signature line."); - goto done; - } + smartlist_add_asprintf(chunks, "directory-signature %s\n", + options->Nickname); + + status = smartlist_join_strings(chunks, "", 0, NULL); +#define MAX_V2_OPINION_SIGNATURE_LEN 4096 + status_len = strlen(status) + MAX_V2_OPINION_SIGNATURE_LEN + 1; + status = tor_realloc(status, status_len); + if (router_get_networkstatus_v2_hash(status, digest)<0) { log_warn(LD_BUG, "Unable to hash network status"); goto done; } - outp += strlen(outp); note_crypto_pk_op(SIGN_DIR); - if (router_append_dirobj_signature(outp,endp-outp,digest,DIGEST_LEN, + if (router_append_dirobj_signature(status, status_len,digest,DIGEST_LEN, private_key)<0) { log_warn(LD_BUG, "Unable to sign router status."); goto done; @@ -3076,6 +3070,10 @@ generate_v2_networkstatus_opinion(void) } done: + if (chunks) { + SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp)); + smartlist_free(chunks); + } tor_free(client_versions); tor_free(server_versions); tor_free(version_lines); From fd93622cc897ede9c52205390bfb71e2e8588259 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 22 Feb 2013 12:17:23 -0500 Subject: [PATCH 08/43] Use chunks, not buffers, for router descriptors --- src/or/router.c | 143 ++++++++++++++++++-------------------------- src/or/router.h | 4 +- src/test/test_dir.c | 12 ++-- 3 files changed, 67 insertions(+), 92 deletions(-) diff --git a/src/or/router.c b/src/or/router.c index 95aa70a9c..1b5909eb1 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -1927,9 +1927,8 @@ router_rebuild_descriptor(int force) /* ri was allocated with tor_malloc_zero, so there is no need to * zero ri->cache_info.extra_info_digest here. */ } - ri->cache_info.signed_descriptor_body = tor_malloc(8192); - if (router_dump_router_to_string(ri->cache_info.signed_descriptor_body, 8192, - ri, get_server_identity_key()) < 0) { + if (! (ri->cache_info.signed_descriptor_body = router_dump_router_to_string( + ri, get_server_identity_key()))) { log_warn(LD_BUG, "Couldn't generate router descriptor."); routerinfo_free(ri); extrainfo_free(ei); @@ -2229,54 +2228,53 @@ get_platform_str(char *platform, size_t len) #define DEBUG_ROUTER_DUMP_ROUTER_TO_STRING /** OR only: Given a routerinfo for this router, and an identity key to sign - * with, encode the routerinfo as a signed server descriptor and write the - * result into s, using at most maxlen bytes. Return -1 on - * failure, and the number of bytes used on success. + * with, encode the routerinfo as a signed server descriptor and return a new + * string encoding the result, or NULL on failure. */ -int -router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router, +char * +router_dump_router_to_string(routerinfo_t *router, crypto_pk_t *ident_key) { - char *onion_pkey; /* Onion key, PEM-encoded. */ - char *identity_pkey; /* Identity key, PEM-encoded. */ + char *onion_pkey = NULL; /* Onion key, PEM-encoded. */ + char *identity_pkey = NULL; /* Identity key, PEM-encoded. */ char digest[DIGEST_LEN]; char published[ISO_TIME_LEN+1]; char fingerprint[FINGERPRINT_LEN+1]; int has_extra_info_digest; char extra_info_digest[HEX_DIGEST_LEN+1]; size_t onion_pkeylen, identity_pkeylen; - size_t written; - int result=0; - char *family_line; + char *family_line = NULL; char *extra_or_address = NULL; const or_options_t *options = get_options(); + smartlist_t *chunks = NULL; + char *output = NULL; + size_t output_len; /* Make sure the identity key matches the one in the routerinfo. */ if (!crypto_pk_eq_keys(ident_key, router->identity_pkey)) { log_warn(LD_BUG,"Tried to sign a router with a private key that didn't " "match router's public key!"); - return -1; + goto err; } /* record our fingerprint, so we can include it in the descriptor */ if (crypto_pk_get_fingerprint(router->identity_pkey, fingerprint, 1)<0) { log_err(LD_BUG,"Error computing fingerprint"); - return -1; + goto err; } /* PEM-encode the onion key */ if (crypto_pk_write_public_key_to_string(router->onion_pkey, &onion_pkey,&onion_pkeylen)<0) { log_warn(LD_BUG,"write onion_pkey to string failed!"); - return -1; + goto err; } /* PEM-encode the identity key */ if (crypto_pk_write_public_key_to_string(router->identity_pkey, &identity_pkey,&identity_pkeylen)<0) { log_warn(LD_BUG,"write identity_pkey to string failed!"); - tor_free(onion_pkey); - return -1; + goto err; } /* Encode the publication time. */ @@ -2311,8 +2309,9 @@ router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router, } } + chunks = smartlist_new(); /* Generate the easy portion of the router descriptor. */ - result = tor_snprintf(s, maxlen, + smartlist_add_asprintf(chunks, "router %s %s %d 0 %d\n" "%s" "platform %s\n" @@ -2347,28 +2346,11 @@ router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router, options->HidServDirectoryV2 ? "hidden-service-dir\n" : "", options->AllowSingleHopExits ? "allow-single-hop-exits\n" : ""); - tor_free(family_line); - tor_free(onion_pkey); - tor_free(identity_pkey); - tor_free(extra_or_address); - - if (result < 0) { - log_warn(LD_BUG,"descriptor snprintf #1 ran out of room!"); - return -1; - } - /* From now on, we use 'written' to remember the current length of 's'. */ - written = result; - if (options->ContactInfo && strlen(options->ContactInfo)) { const char *ci = options->ContactInfo; if (strchr(ci, '\n') || strchr(ci, '\r')) ci = escaped(ci); - result = tor_snprintf(s+written,maxlen-written, "contact %s\n", ci); - if (result<0) { - log_warn(LD_BUG,"descriptor snprintf #2 ran out of room!"); - return -1; - } - written += result; + smartlist_add_asprintf(chunks, "contact %s\n", ci); } #ifdef CURVE25519_ENABLED @@ -2377,105 +2359,94 @@ router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router, base64_encode(kbuf, sizeof(kbuf), (const char *)router->onion_curve25519_pkey->public_key, CURVE25519_PUBKEY_LEN); - result = tor_snprintf(s+written,maxlen-written, "ntor-onion-key %s", - kbuf); - if (result<0) { - log_warn(LD_BUG,"descriptor snprintf ran out of room!"); - return -1; - } - written += result; + smartlist_add_asprintf(chunks, "ntor-onion-key %s", kbuf); } #endif /* Write the exit policy to the end of 's'. */ if (!router->exit_policy || !smartlist_len(router->exit_policy)) { - strlcat(s+written, "reject *:*\n", maxlen-written); - written += strlen("reject *:*\n"); + smartlist_add(chunks, tor_strdup("reject *:*\n")); } else if (router->exit_policy) { int i; for (i = 0; i < smartlist_len(router->exit_policy); ++i) { + char pbuf[POLICY_BUF_LEN]; addr_policy_t *tmpe = smartlist_get(router->exit_policy, i); + int result; if (tor_addr_family(&tmpe->addr) == AF_INET6) continue; /* Don't include IPv6 parts of address policy */ - result = policy_write_item(s+written, maxlen-written, tmpe, 1); + result = policy_write_item(pbuf, POLICY_BUF_LEN, tmpe, 1); if (result < 0) { log_warn(LD_BUG,"descriptor policy_write_item ran out of room!"); - return -1; + goto err; } - tor_assert(result == (int)strlen(s+written)); - written += result; - if (written+2 > maxlen) { - log_warn(LD_BUG,"descriptor policy_write_item ran out of room (2)!"); - return -1; - } - s[written++] = '\n'; + smartlist_add_asprintf(chunks, "%s\n", pbuf); } } if (router->ipv6_exit_policy) { char *p6 = write_short_policy(router->ipv6_exit_policy); if (p6 && strcmp(p6, "reject 1-65535")) { - result = tor_snprintf(s+written, maxlen-written, + smartlist_add_asprintf(chunks, "ipv6-policy %s\n", p6); - if (result<0) { - log_warn(LD_BUG,"Descriptor printf of policy ran out of room"); - tor_free(p6); - return -1; - } - written += result; } tor_free(p6); } - if (written + DIROBJ_MAX_SIG_LEN > maxlen) { - /* Not enough room for signature. */ - log_warn(LD_BUG,"not enough room left in descriptor for signature!"); - return -1; - } - /* Sign the descriptor */ - strlcpy(s+written, "router-signature\n", maxlen-written); - written += strlen(s+written); - s[written] = '\0'; - if (router_get_router_hash(s, strlen(s), digest) < 0) { - return -1; + smartlist_add(chunks, tor_strdup("router-signature\n")); + + output = smartlist_join_strings(chunks, "", 0, NULL); +#define MAX_DESC_SIGNATURE_LEN 4096 + output_len = strlen(output) + MAX_DESC_SIGNATURE_LEN + 1; + output = tor_realloc(output, output_len); + + if (router_get_router_hash(output, strlen(output), digest) < 0) { + goto err; } note_crypto_pk_op(SIGN_RTR); - if (router_append_dirobj_signature(s+written,maxlen-written, + if (router_append_dirobj_signature(output, output_len, digest,DIGEST_LEN,ident_key)<0) { log_warn(LD_BUG, "Couldn't sign router descriptor"); - return -1; + goto err; } - written += strlen(s+written); - if (written+2 > maxlen) { - log_warn(LD_BUG,"Not enough room to finish descriptor."); - return -1; - } /* include a last '\n' */ - s[written] = '\n'; - s[written+1] = 0; + strlcat(output, "\n", output_len); #ifdef DEBUG_ROUTER_DUMP_ROUTER_TO_STRING { char *s_dup; const char *cp; routerinfo_t *ri_tmp; - cp = s_dup = tor_strdup(s); + cp = s_dup = tor_strdup(output); ri_tmp = router_parse_entry_from_string(cp, NULL, 1, 0, NULL); if (!ri_tmp) { log_err(LD_BUG, "We just generated a router descriptor we can't parse."); - log_err(LD_BUG, "Descriptor was: <<%s>>", s); - return -1; + log_err(LD_BUG, "Descriptor was: <<%s>>", output); + goto err; } tor_free(s_dup); routerinfo_free(ri_tmp); } #endif - return (int)written+1; + goto done; + + err: + tor_free(output); /* sets output to NULL */ + done: + if (chunks) { + SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp)); + smartlist_free(chunks); + } + tor_free(family_line); + tor_free(onion_pkey); + tor_free(identity_pkey); + tor_free(extra_or_address); + + return output; } /** Copy the primary (IPv4) OR port (IP address and TCP port) for diff --git a/src/or/router.h b/src/or/router.h index fd2076af0..7a093019f 100644 --- a/src/or/router.h +++ b/src/or/router.h @@ -90,8 +90,8 @@ int router_is_me(const routerinfo_t *router); int router_fingerprint_is_me(const char *fp); int router_pick_published_address(const or_options_t *options, uint32_t *addr); int router_rebuild_descriptor(int force); -int router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router, - crypto_pk_t *ident_key); +char *router_dump_router_to_string(routerinfo_t *router, + crypto_pk_t *ident_key); void router_get_prim_orport(const routerinfo_t *router, tor_addr_port_t *addr_port_out); void router_get_pref_orport(const routerinfo_t *router, diff --git a/src/test/test_dir.c b/src/test/test_dir.c index fbd49b710..ea0011a6d 100644 --- a/src/test/test_dir.c +++ b/src/test/test_dir.c @@ -73,7 +73,8 @@ test_dir_nicknames(void) static void test_dir_formats(void) { - char buf[8192], buf2[8192]; + char *buf = NULL; + char buf2[8192]; char platform[256]; char fingerprint[FINGERPRINT_LEN+1]; char *pk1_str = NULL, *pk2_str = NULL, *pk3_str = NULL, *cp; @@ -142,8 +143,8 @@ test_dir_formats(void) test_assert(!crypto_pk_write_public_key_to_string(pk3 , &pk3_str, &pk3_str_len)); - memset(buf, 0, 2048); - test_assert(router_dump_router_to_string(buf, 2048, r1, pk2)>0); + buf = router_dump_router_to_string(r1, pk2); + test_assert(buf); strlcpy(buf2, "router Magri 18.244.0.1 9000 0 9003\n" "or-address [1:2:3:4::]:9999\n" @@ -170,8 +171,10 @@ test_dir_formats(void) * twice */ test_streq(buf, buf2); + tor_free(buf); - test_assert(router_dump_router_to_string(buf, 2048, r1, pk2)>0); + buf = router_dump_router_to_string(r1, pk2); + test_assert(buf); cp = buf; rp1 = router_parse_entry_from_string((const char*)cp,NULL,1,0,NULL); test_assert(rp1); @@ -232,6 +235,7 @@ test_dir_formats(void) if (r2) routerinfo_free(r2); + tor_free(buf); tor_free(pk1_str); tor_free(pk2_str); tor_free(pk3_str); From cb75519bbf6d89ddaf6a6bb40a01a2dba09ad530 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 22 Feb 2013 12:53:45 -0500 Subject: [PATCH 09/43] Refactor dirobj signature generation Now we can compute the hash and signature of a dirobj before concatenating the smartlist, and we don't need to play silly games with sigbuf and realloc any more. --- src/common/crypto.c | 23 +++++++++++++++ src/common/crypto.h | 4 +++ src/or/dirserv.c | 25 +++++++--------- src/or/dirvote.c | 68 ++++++++++++++++---------------------------- src/or/router.c | 25 +++++++--------- src/or/routerparse.c | 59 +++++++++++++++++++++++++++++--------- src/or/routerparse.h | 3 ++ 7 files changed, 122 insertions(+), 85 deletions(-) diff --git a/src/common/crypto.c b/src/common/crypto.c index 22d57c7c8..aeef1e3c6 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -1631,6 +1631,29 @@ crypto_digest_assign(crypto_digest_t *into, memcpy(into,from,sizeof(crypto_digest_t)); } + +/** Given a list of strings in lst, set the len_out-byte digest + * at digest_out to the hash of the concatenation of those strings, + * plus the optional string append, computed with the algorithm + * alg. */ +void +crypto_digest_smartlist(char *digest_out, size_t len_out, + const smartlist_t *lst, const char *append, + digest_algorithm_t alg) +{ + crypto_digest_t *d; + if (alg == DIGEST_SHA1) + d = crypto_digest_new(); + else + d = crypto_digest256_new(alg); + SMARTLIST_FOREACH(lst, const char *, cp, + crypto_digest_add_bytes(d, cp, strlen(cp))); + if (append) + crypto_digest_add_bytes(d, append, strlen(append)); + crypto_digest_get_digest(d, digest_out, len_out); + crypto_digest_free(d); +} + /** Compute the HMAC-SHA-1 of the msg_len bytes in msg, using * the key of length key_len. Store the DIGEST_LEN-byte result * in hmac_out. diff --git a/src/common/crypto.h b/src/common/crypto.h index 12fcfae27..e8f6eace1 100644 --- a/src/common/crypto.h +++ b/src/common/crypto.h @@ -206,6 +206,10 @@ int crypto_digest(char *digest, const char *m, size_t len); int crypto_digest256(char *digest, const char *m, size_t len, digest_algorithm_t algorithm); int crypto_digest_all(digests_t *ds_out, const char *m, size_t len); +struct smartlist_t; +void crypto_digest_smartlist(char *digest_out, size_t len_out, + const struct smartlist_t *lst, const char *append, + digest_algorithm_t alg); const char *crypto_digest_algorithm_get_name(digest_algorithm_t alg); int crypto_digest_algorithm_parse_name(const char *name); crypto_digest_t *crypto_digest_new(void); diff --git a/src/or/dirserv.c b/src/or/dirserv.c index d5b90b936..2bbfc9a7c 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -2911,7 +2911,6 @@ generate_v2_networkstatus_opinion(void) size_t identity_pkey_len; char *status = NULL, *client_versions = NULL, *server_versions = NULL, *identity_pkey = NULL, *hostname = NULL; - size_t status_len; const or_options_t *options = get_options(); char fingerprint[FINGERPRINT_LEN+1]; char published[ISO_TIME_LEN+1]; @@ -3032,23 +3031,21 @@ generate_v2_networkstatus_opinion(void) smartlist_add_asprintf(chunks, "directory-signature %s\n", options->Nickname); - status = smartlist_join_strings(chunks, "", 0, NULL); -#define MAX_V2_OPINION_SIGNATURE_LEN 4096 - status_len = strlen(status) + MAX_V2_OPINION_SIGNATURE_LEN + 1; - status = tor_realloc(status, status_len); - - if (router_get_networkstatus_v2_hash(status, digest)<0) { - log_warn(LD_BUG, "Unable to hash network status"); - goto done; - } + crypto_digest_smartlist(digest, DIGEST_LEN, chunks, "", DIGEST_SHA1); note_crypto_pk_op(SIGN_DIR); - if (router_append_dirobj_signature(status, status_len,digest,DIGEST_LEN, - private_key)<0) { - log_warn(LD_BUG, "Unable to sign router status."); - goto done; + { + char *sig; + if (!(sig = router_get_dirobj_signature(digest,DIGEST_LEN, + private_key))) { + log_warn(LD_BUG, "Unable to sign router status."); + goto done; + } + smartlist_add(chunks, sig); } + status = smartlist_join_strings(chunks, "", 0, NULL); + { networkstatus_v2_t *ns; if (!(ns = networkstatus_v2_parse_from_string(status))) { diff --git a/src/or/dirvote.c b/src/or/dirvote.c index a7876701a..6ae494436 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -75,7 +75,6 @@ format_networkstatus_vote(crypto_pk_t *private_signing_key, char *client_versions_line = NULL, *server_versions_line = NULL; networkstatus_voter_info_t *voter; char *status = NULL; - size_t status_len; tor_assert(private_signing_key); tor_assert(v3_ns->type == NS_TYPE_VOTE || v3_ns->type == NS_TYPE_OPINION); @@ -185,6 +184,11 @@ format_networkstatus_vote(crypto_pk_t *private_signing_key, smartlist_add(chunks, tor_strdup("directory-footer\n")); + /* The digest includes everything up through the space after + * directory-signature. (Yuck.) */ + crypto_digest_smartlist(digest, DIGEST_LEN, chunks, + "directory-signature ", DIGEST_SHA1); + { char signing_key_fingerprint[FINGERPRINT_LEN+1]; if (crypto_pk_get_fingerprint(private_signing_key, @@ -197,22 +201,19 @@ format_networkstatus_vote(crypto_pk_t *private_signing_key, signing_key_fingerprint); } - status = smartlist_join_strings(chunks, "", 0, NULL); -#define MAX_VOTE_SIGNATURE_LEN 4096 - status_len = strlen(status) + MAX_VOTE_SIGNATURE_LEN + 1; - status = tor_realloc(status, status_len); - - if (router_get_networkstatus_v3_hash(status, digest, DIGEST_SHA1)<0) - goto err; note_crypto_pk_op(SIGN_DIR); - if (router_append_dirobj_signature(status+strlen(status), - status_len, - digest, DIGEST_LEN, - private_signing_key)<0) { - log_warn(LD_BUG, "Unable to sign networkstatus vote."); - goto err; + { + char *sig = router_get_dirobj_signature(digest, DIGEST_LEN, + private_signing_key); + if (!sig) { + log_warn(LD_BUG, "Unable to sign networkstatus vote."); + goto err; + } + smartlist_add(chunks, sig); } + status = smartlist_join_strings(chunks, "", 0, NULL); + { networkstatus_t *v; if (!(v = networkstatus_parse_vote_from_string(status, NULL, @@ -479,24 +480,6 @@ compute_routerstatus_consensus(smartlist_t *votes, int consensus_method, return most; } -/** Given a list of strings in lst, set the len_out-byte digest - * at digest_out to the hash of the concatenation of those strings, - * computed with the algorithm alg. */ -static void -hash_list_members(char *digest_out, size_t len_out, - smartlist_t *lst, digest_algorithm_t alg) -{ - crypto_digest_t *d; - if (alg == DIGEST_SHA1) - d = crypto_digest_new(); - else - d = crypto_digest256_new(alg); - SMARTLIST_FOREACH(lst, const char *, cp, - crypto_digest_add_bytes(d, cp, strlen(cp))); - crypto_digest_get_digest(d, digest_out, len_out); - crypto_digest_free(d); -} - /** Sorting helper: compare two strings based on their values as base-ten * positive integers. (Non-integers are treated as prior to all integers, and * compared lexically.) */ @@ -2095,12 +2078,12 @@ networkstatus_compute_consensus(smartlist_t *votes, size_t digest_len = flavor == FLAV_NS ? DIGEST_LEN : DIGEST256_LEN; const char *algname = crypto_digest_algorithm_get_name(digest_alg); - char sigbuf[4096]; + char *signature; smartlist_add(chunks, tor_strdup("directory-signature ")); /* Compute the hash of the chunks. */ - hash_list_members(digest, digest_len, chunks, digest_alg); + crypto_digest_smartlist(digest, digest_len, chunks, "", digest_alg); /* Get the fingerprints */ crypto_pk_get_fingerprint(identity_key, fingerprint, 0); @@ -2116,14 +2099,12 @@ networkstatus_compute_consensus(smartlist_t *votes, signing_key_fingerprint); } /* And the signature. */ - sigbuf[0] = '\0'; - if (router_append_dirobj_signature(sigbuf, sizeof(sigbuf), - digest, digest_len, - signing_key)) { + if (!(signature = router_get_dirobj_signature(digest, digest_len, + signing_key))) { log_warn(LD_BUG, "Couldn't sign consensus networkstatus."); goto done; } - smartlist_add(chunks, tor_strdup(sigbuf)); + smartlist_add(chunks, signature); if (legacy_id_key_digest && legacy_signing_key && consensus_method >= 3) { smartlist_add(chunks, tor_strdup("directory-signature ")); @@ -2139,14 +2120,13 @@ networkstatus_compute_consensus(smartlist_t *votes, algname, fingerprint, signing_key_fingerprint); } - sigbuf[0] = '\0'; - if (router_append_dirobj_signature(sigbuf, sizeof(sigbuf), - digest, digest_len, - legacy_signing_key)) { + + if (!(signature = router_get_dirobj_signature(digest, digest_len, + legacy_signing_key))) { log_warn(LD_BUG, "Couldn't sign consensus networkstatus."); goto done; } - smartlist_add(chunks, tor_strdup(sigbuf)); + smartlist_add(chunks, signature); } } diff --git a/src/or/router.c b/src/or/router.c index 1b5909eb1..a391cddec 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -2248,7 +2248,6 @@ router_dump_router_to_string(routerinfo_t *router, const or_options_t *options = get_options(); smartlist_t *chunks = NULL; char *output = NULL; - size_t output_len; /* Make sure the identity key matches the one in the routerinfo. */ if (!crypto_pk_eq_keys(ident_key, router->identity_pkey)) { @@ -2395,24 +2394,22 @@ router_dump_router_to_string(routerinfo_t *router, /* Sign the descriptor */ smartlist_add(chunks, tor_strdup("router-signature\n")); - output = smartlist_join_strings(chunks, "", 0, NULL); -#define MAX_DESC_SIGNATURE_LEN 4096 - output_len = strlen(output) + MAX_DESC_SIGNATURE_LEN + 1; - output = tor_realloc(output, output_len); - - if (router_get_router_hash(output, strlen(output), digest) < 0) { - goto err; - } + crypto_digest_smartlist(digest, DIGEST_LEN, chunks, "", DIGEST_SHA1); note_crypto_pk_op(SIGN_RTR); - if (router_append_dirobj_signature(output, output_len, - digest,DIGEST_LEN,ident_key)<0) { - log_warn(LD_BUG, "Couldn't sign router descriptor"); - goto err; + { + char *sig; + if (!(sig = router_get_dirobj_signature(digest, DIGEST_LEN, ident_key))) { + log_warn(LD_BUG, "Couldn't sign router descriptor"); + goto err; + } + smartlist_add(chunks, sig); } /* include a last '\n' */ - strlcat(output, "\n", output_len); + smartlist_add(chunks, tor_strdup("\n")); + + output = smartlist_join_strings(chunks, "", 0, NULL); #ifdef DEBUG_ROUTER_DUMP_ROUTER_TO_STRING { diff --git a/src/or/routerparse.c b/src/or/routerparse.c index ce2cd5c51..63f8fab10 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -683,20 +683,19 @@ router_get_extrainfo_hash(const char *s, size_t s_len, char *digest) "\nrouter-signature",'\n', DIGEST_SHA1); } -/** Helper: used to generate signatures for routers, directories and - * network-status objects. Given a digest in digest and a secret - * private_key, generate an PKCS1-padded signature, BASE64-encode it, - * surround it with -----BEGIN/END----- pairs, and write it to the - * buf_len-byte buffer at buf. Return 0 on success, -1 on - * failure. - */ -int -router_append_dirobj_signature(char *buf, size_t buf_len, const char *digest, - size_t digest_len, crypto_pk_t *private_key) +/** DOCDOC */ +char * +router_get_dirobj_signature(const char *digest, + size_t digest_len, + crypto_pk_t *private_key) { char *signature; size_t i, keysize; int siglen; + char *buf = NULL; + size_t buf_len; + /* overestimate of BEGIN/END lines total len. */ +#define BEGIN_END_OVERHEAD_LEN 64 keysize = crypto_pk_keysize(private_key); signature = tor_malloc(keysize); @@ -706,7 +705,12 @@ router_append_dirobj_signature(char *buf, size_t buf_len, const char *digest, log_warn(LD_BUG,"Couldn't sign digest."); goto err; } - if (strlcat(buf, "-----BEGIN SIGNATURE-----\n", buf_len) >= buf_len) + + /* The *2 here is a ridiculous overestimate of base-64 overhead. */ + buf_len = (siglen * 2) + BEGIN_END_OVERHEAD_LEN; + buf = tor_malloc(buf_len); + + if (strlcpy(buf, "-----BEGIN SIGNATURE-----\n", buf_len) >= buf_len) goto truncated; i = strlen(buf); @@ -719,13 +723,42 @@ router_append_dirobj_signature(char *buf, size_t buf_len, const char *digest, goto truncated; tor_free(signature); - return 0; + return buf; truncated: log_warn(LD_BUG,"tried to exceed string length."); err: tor_free(signature); - return -1; + tor_free(buf); + return NULL; +} + +/** Helper: used to generate signatures for routers, directories and + * network-status objects. Given a digest in digest and a secret + * private_key, generate an PKCS1-padded signature, BASE64-encode it, + * surround it with -----BEGIN/END----- pairs, and write it to the + * buf_len-byte buffer at buf. Return 0 on success, -1 on + * failure. + */ +int +router_append_dirobj_signature(char *buf, size_t buf_len, const char *digest, + size_t digest_len, crypto_pk_t *private_key) +{ + size_t sig_len, s_len; + char *sig = router_get_dirobj_signature(digest, digest_len, private_key); + if (!sig) { + log_warn(LD_BUG, "No signature generated"); + return -1; + } + sig_len = strlen(sig); + s_len = strlen(buf); + if (sig_len + s_len + 1 > buf_len) { + log_warn(LD_BUG, "Not enough room for signature"); + tor_free(sig); + return -1; + } + memcpy(buf+s_len, sig, sig_len+1); + return 0; } /** Return VS_RECOMMENDED if myversion is contained in diff --git a/src/or/routerparse.h b/src/or/routerparse.h index 859a691e2..8eac3a2aa 100644 --- a/src/or/routerparse.h +++ b/src/or/routerparse.h @@ -21,6 +21,9 @@ int router_get_networkstatus_v3_hash(const char *s, char *digest, int router_get_networkstatus_v3_hashes(const char *s, digests_t *digests); int router_get_extrainfo_hash(const char *s, size_t s_len, char *digest); #define DIROBJ_MAX_SIG_LEN 256 +char *router_get_dirobj_signature(const char *digest, + size_t digest_len, + crypto_pk_t *private_key); int router_append_dirobj_signature(char *buf, size_t buf_len, const char *digest, size_t digest_len, From 1ad6f979b9f74ac8fc0009b5a156ba789dd13c0f Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 22 Feb 2013 12:56:25 -0500 Subject: [PATCH 10/43] Initial changelog for less_charbuf --- changes/less_charbuf_usage | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 changes/less_charbuf_usage diff --git a/changes/less_charbuf_usage b/changes/less_charbuf_usage new file mode 100644 index 000000000..2ec42b544 --- /dev/null +++ b/changes/less_charbuf_usage @@ -0,0 +1,5 @@ + o Code simplification and refactoring: + - Avoid using character buffers when constructing most directory + objects: this approach was unweildy and error-prone. Instead, + build smartlists of strings, and concatenate them when done. + From 28ef450b2481770662dd9a8c240da22a0b4e50b7 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sat, 23 Feb 2013 02:46:40 -0500 Subject: [PATCH 11/43] Remove RS_ENTRY_LEN Nothing uses it any longer now that we use smartlists of strings for stuff that manipulates iles of formatted routerstatuses. --- src/or/dirserv.h | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/or/dirserv.h b/src/or/dirserv.h index bdd97d81e..6c2e372dc 100644 --- a/src/or/dirserv.h +++ b/src/or/dirserv.h @@ -37,20 +37,6 @@ #define MAX_WEIGHT_LINE_LEN (12+10+10+10+1) /** Maximum length of an exit policy summary line. */ #define MAX_POLICY_LINE_LEN (3+MAX_EXITPOLICY_SUMMARY_LEN) -/** Amount of space to allocate for each entry: r, s, and v lines. */ -#define RS_ENTRY_LEN \ - ( /* first line */ \ - MAX_NICKNAME_LEN+BASE64_DIGEST_LEN*2+ISO_TIME_LEN+INET_NTOA_BUF_LEN+ \ - 5*2 /* ports */ + 10 /* punctuation */ + \ - /* second line */ \ - MAX_FLAG_LINE_LEN + \ - /* weight line */ \ - MAX_WEIGHT_LINE_LEN + \ - /* p line. */ \ - MAX_POLICY_LINE_LEN + \ - /* v line. */ \ - MAX_V_LINE_LEN \ - ) int connection_dirserv_flushed_some(dir_connection_t *conn); From d2d5a7dabccf4b653434c0082df7d5c2f90b1575 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sat, 23 Feb 2013 22:37:39 -0500 Subject: [PATCH 12/43] Remove some now-needless length defines --- src/or/dirserv.h | 8 -------- src/or/dirvote.c | 3 --- 2 files changed, 11 deletions(-) diff --git a/src/or/dirserv.h b/src/or/dirserv.h index 6c2e372dc..a71ac7db0 100644 --- a/src/or/dirserv.h +++ b/src/or/dirserv.h @@ -29,14 +29,6 @@ /** Maximum allowable length of a version line in a networkstatus. */ #define MAX_V_LINE_LEN 128 -/** Length of "r Authority BadDirectory BadExit Exit Fast Guard HSDir Named - * Running Stable Unnamed V2Dir Valid\n". */ -#define MAX_FLAG_LINE_LEN 96 -/** Length of "w" line for weighting. Currently at most - * "w Bandwidth= Measured=\n" */ -#define MAX_WEIGHT_LINE_LEN (12+10+10+10+1) -/** Maximum length of an exit policy summary line. */ -#define MAX_POLICY_LINE_LEN (3+MAX_EXITPOLICY_SUMMARY_LEN) int connection_dirserv_flushed_some(dir_connection_t *conn); diff --git a/src/or/dirvote.c b/src/or/dirvote.c index 6ae494436..8ae0bb861 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -57,9 +57,6 @@ static char *make_consensus_method_list(int low, int high, const char *sep); * Voting * =====*/ -/* Overestimated. */ -#define MICRODESC_LINE_LEN 80 - /** Return a new string containing the string representation of the vote in * v3_ns, signed with our v3 signing key private_signing_key. * For v3 authorities. */ From e1128d905c7eae33d099e4287823fbd18f3c876e Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 18 Mar 2013 15:00:52 -0400 Subject: [PATCH 13/43] Fix a couple of documentation issues. --- src/common/crypto.c | 3 ++- src/or/routerparse.c | 7 ++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/common/crypto.c b/src/common/crypto.c index aeef1e3c6..b9829ecd1 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -1635,7 +1635,8 @@ crypto_digest_assign(crypto_digest_t *into, /** Given a list of strings in lst, set the len_out-byte digest * at digest_out to the hash of the concatenation of those strings, * plus the optional string append, computed with the algorithm - * alg. */ + * alg. + * out_len must be \<= DIGEST256_LEN. */ void crypto_digest_smartlist(char *digest_out, size_t len_out, const smartlist_t *lst, const char *append, diff --git a/src/or/routerparse.c b/src/or/routerparse.c index 63f8fab10..87dc608e5 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -683,7 +683,12 @@ router_get_extrainfo_hash(const char *s, size_t s_len, char *digest) "\nrouter-signature",'\n', DIGEST_SHA1); } -/** DOCDOC */ +/** Helper: used to generate signatures for routers, directories and + * network-status objects. Given a digest_len-byte digest in + * digest and a secret private_key, generate an PKCS1-padded + * signature, BASE64-encode it, surround it with -----BEGIN/END----- pairs, + * and return the new signature on success or NULL on failure. + */ char * router_get_dirobj_signature(const char *digest, size_t digest_len, From c35ef8e6e92f1d3f4e96fc71c8db6a17b812053e Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 2 Apr 2013 11:49:30 -0400 Subject: [PATCH 14/43] Test improvement: include microdesc lines in our synthetic microdesc consensuses. --- src/or/or.h | 3 ++- src/test/test_dir.c | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/src/or/or.h b/src/or/or.h index 45eb4673c..b821caf31 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2321,7 +2321,8 @@ typedef struct networkstatus_v2_t { typedef struct vote_microdesc_hash_t { /** Next element in the list, or NULL. */ struct vote_microdesc_hash_t *next; - /** The raw contents of the microdesc hash line, excluding the "m". */ + /** The raw contents of the microdesc hash line, from the "m" through the + * newline. */ char *microdesc_hash_line; } vote_microdesc_hash_t; diff --git a/src/test/test_dir.c b/src/test/test_dir.c index ea0011a6d..6652ee0b3 100644 --- a/src/test/test_dir.c +++ b/src/test/test_dir.c @@ -863,6 +863,13 @@ gen_routerstatus_for_v3ns(int idx, time_t now) /* Shouldn't happen */ test_assert(0); } + if (vrs) { + vrs->microdesc = tor_malloc_zero(sizeof(vote_microdesc_hash_t)); + tor_asprintf(&vrs->microdesc->microdesc_hash_line, + "m 9,10,11,12,13,14,15,16,17 " + "sha256=xyzajkldsdsajdadlsdjaslsdksdjlsdjsdaskdaaa%d\n", + idx); + } done: return vrs; @@ -1832,6 +1839,13 @@ gen_routerstatus_for_umbw(int idx, time_t now) /* Shouldn't happen */ test_assert(0); } + if (vrs) { + vrs->microdesc = tor_malloc_zero(sizeof(vote_microdesc_hash_t)); + tor_asprintf(&vrs->microdesc->microdesc_hash_line, + "m 9,10,11,12,13,14,15,16,17 " + "sha256=xyzajkldsdsajdadlsdjaslsdksdjlsdjsdaskdaaa%d\n", + idx); + } done: return vrs; From 6706a05b795135ea4035c36fb3c57ecff0f815fc Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 2 Apr 2013 11:58:29 -0400 Subject: [PATCH 15/43] Remove the now-unused router_get_networkstatus_v3_hash --- src/or/routerparse.c | 12 ------------ src/or/routerparse.h | 2 -- 2 files changed, 14 deletions(-) diff --git a/src/or/routerparse.c b/src/or/routerparse.c index 87dc608e5..dfbd2d54e 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -662,18 +662,6 @@ router_get_networkstatus_v3_hashes(const char *s, digests_t *digests) ' '); } -/** Set digest to the SHA-1 digest of the hash of the network-status - * string in s. Return 0 on success, -1 on failure. */ -int -router_get_networkstatus_v3_hash(const char *s, char *digest, - digest_algorithm_t alg) -{ - return router_get_hash_impl(s, strlen(s), digest, - "network-status-version", - "\ndirectory-signature", - ' ', alg); -} - /** Set digest to the SHA-1 digest of the hash of the s_len-byte * extrainfo string at s. Return 0 on success, -1 on failure. */ int diff --git a/src/or/routerparse.h b/src/or/routerparse.h index 8eac3a2aa..a5f4e370f 100644 --- a/src/or/routerparse.h +++ b/src/or/routerparse.h @@ -16,8 +16,6 @@ int router_get_router_hash(const char *s, size_t s_len, char *digest); int router_get_dir_hash(const char *s, char *digest); int router_get_runningrouters_hash(const char *s, char *digest); int router_get_networkstatus_v2_hash(const char *s, char *digest); -int router_get_networkstatus_v3_hash(const char *s, char *digest, - digest_algorithm_t algorithm); int router_get_networkstatus_v3_hashes(const char *s, digests_t *digests); int router_get_extrainfo_hash(const char *s, size_t s_len, char *digest); #define DIROBJ_MAX_SIG_LEN 256 From 0f83fcc5c239776211d0c111c628a7f95a802808 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 2 Apr 2013 12:45:12 -0400 Subject: [PATCH 16/43] Add a quick-and-dirty-test for generate_v2_networkstatus. It sure is a good thing we can run each test in its own process, or else the amount of setup I needed to do to make this thing work would have broken all the other tests. Test mocking would have made this easier to write too. --- src/or/dirserv.c | 2 +- src/or/dirserv.h | 1 + src/test/test_dir.c | 89 ++++++++++++++++++++++++++++++++++++++++++--- 3 files changed, 86 insertions(+), 6 deletions(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 2bbfc9a7c..173c8cd14 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -2904,7 +2904,7 @@ dirserv_generate_networkstatus_vote_obj(crypto_pk_t *private_key, /** For v2 authoritative directories only: Replace the contents of * the_v2_networkstatus with a newly generated network status * object. */ -static cached_dir_t * +cached_dir_t * generate_v2_networkstatus_opinion(void) { cached_dir_t *r = NULL; diff --git a/src/or/dirserv.h b/src/or/dirserv.h index a71ac7db0..cc4ac2e0a 100644 --- a/src/or/dirserv.h +++ b/src/or/dirserv.h @@ -120,6 +120,7 @@ int measured_bw_line_parse(measured_bw_line_t *out, const char *line); int measured_bw_line_apply(measured_bw_line_t *parsed_line, smartlist_t *routerstatuses); +cached_dir_t *generate_v2_networkstatus_opinion(void); #endif int dirserv_read_measured_bandwidths(const char *from_file, diff --git a/src/test/test_dir.c b/src/test/test_dir.c index 6652ee0b3..71008b5f0 100644 --- a/src/test/test_dir.c +++ b/src/test/test_dir.c @@ -12,6 +12,7 @@ #define ROUTERLIST_PRIVATE #define HIBERNATE_PRIVATE #include "or.h" +#include "config.h" #include "directory.h" #include "dirserv.h" #include "dirvote.h" @@ -2140,25 +2141,103 @@ test_dir_clip_unmeasured_bw_alt(void) test_routerstatus_for_umbw); } +extern time_t time_of_process_start; /* from main.c */ + +static void +test_dir_v2_dir(void *arg) +{ + /* Runs in a forked process: acts like a v2 directory just enough to make and + * sign a v2 networkstatus opinion */ + + cached_dir_t *v2 = NULL; + or_options_t *options = get_options_mutable(); + crypto_pk_t *id_key = pk_generate(4); + (void) arg; + + options->ORPort_set = 1; /* So we believe we're a server. */ + options->DirPort_set = 1; + options->Address = tor_strdup("99.99.99.99"); + options->Nickname = tor_strdup("TestV2Auth"); + options->ContactInfo = tor_strdup("TestV2Auth "); + { + /* Give it a DirPort */ + smartlist_t *ports = (smartlist_t *)get_configured_ports(); + port_cfg_t *port = tor_malloc_zero(sizeof(port_cfg_t)); + port->type = CONN_TYPE_DIR_LISTENER; + port->port = 9999; + smartlist_add(ports, port); + } + set_server_identity_key(id_key); + set_client_identity_key(id_key); + + /* Add a router. */ + { + was_router_added_t wra; + const char *msg = NULL; + routerinfo_t *r1 = tor_malloc_zero(sizeof(routerinfo_t)); + r1->address = tor_strdup("18.244.0.1"); + r1->addr = 0xc0a80001u; /* 192.168.0.1 */ + r1->cache_info.published_on = time(NULL)-60; + r1->or_port = 9000; + r1->dir_port = 9003; + tor_addr_parse(&r1->ipv6_addr, "1:2:3:4::"); + r1->ipv6_orport = 9999; + r1->onion_pkey = pk_generate(1); + r1->identity_pkey = pk_generate(2); + r1->bandwidthrate = 1000; + r1->bandwidthburst = 5000; + r1->bandwidthcapacity = 10000; + r1->exit_policy = NULL; + r1->nickname = tor_strdup("Magri"); + r1->platform = tor_strdup("Tor 0.2.7.7-gamma"); + r1->cache_info.routerlist_index = -1; + r1->cache_info.signed_descriptor_body = + router_dump_router_to_string(r1, r1->identity_pkey); + r1->cache_info.signed_descriptor_len = + strlen(r1->cache_info.signed_descriptor_body); + wra = router_add_to_routerlist(r1, &msg, 0, 0); + tt_int_op(wra, ==, ROUTER_ADDED_SUCCESSFULLY); + } + + /* Prevent call of rep_hist_note_router_unreachable(). */ + time_of_process_start = time(NULL); + + /* Make a directory so there's somewhere to store the thing */ +#ifdef _WIN32 + mkdir(get_fname("cached-status")); +#else + mkdir(get_fname("cached-status"), 0700); +#endif + + v2 = generate_v2_networkstatus_opinion(); + tt_assert(v2); + + done: + crypto_pk_free(id_key); + cached_dir_decref(v2); +} + + #define DIR_LEGACY(name) \ { #name, legacy_test_helper, TT_FORK, &legacy_setup, test_dir_ ## name } -#define DIR(name) \ - { #name, test_dir_##name, 0, NULL, NULL } +#define DIR(name,flags) \ + { #name, test_dir_##name, (flags), NULL, NULL } struct testcase_t dir_tests[] = { DIR_LEGACY(nicknames), DIR_LEGACY(formats), DIR_LEGACY(versions), DIR_LEGACY(fp_pairs), - DIR(split_fps), + DIR(split_fps, 0), DIR_LEGACY(measured_bw), DIR_LEGACY(param_voting), DIR_LEGACY(v3_networkstatus), - DIR(random_weighted), - DIR(scale_bw), + DIR(random_weighted, 0), + DIR(scale_bw, 0), DIR_LEGACY(clip_unmeasured_bw), DIR_LEGACY(clip_unmeasured_bw_alt), + DIR(v2_dir, TT_FORK), END_OF_TESTCASES }; From 4d672f3ae3467203e7badc214576ae7cf7ead9e5 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 2 Apr 2013 13:59:53 -0400 Subject: [PATCH 17/43] Test networkstatus_getinfo_helper_single --- src/test/test_dir.c | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/src/test/test_dir.c b/src/test/test_dir.c index 71008b5f0..42bdb9ca1 100644 --- a/src/test/test_dir.c +++ b/src/test/test_dir.c @@ -2217,6 +2217,39 @@ test_dir_v2_dir(void *arg) cached_dir_decref(v2); } +static void +test_dir_fmt_control_ns(void *arg) +{ + char *s = NULL; + routerstatus_t rs; + (void)arg; + + memset(&rs, 0, sizeof(rs)); + rs.published_on = 1364925198; + strlcpy(rs.nickname, "TetsuoMilk", sizeof(rs.nickname)); + memcpy(rs.identity_digest, "Stately, plump Buck ", DIGEST_LEN); + memcpy(rs.descriptor_digest, "Mulligan came up fro", DIGEST_LEN); + rs.addr = 0x20304050; + rs.or_port = 9001; + rs.dir_port = 9002; + rs.is_exit = 1; + rs.is_fast = 1; + rs.is_flagged_running = 1; + rs.has_bandwidth = 1; + rs.bandwidth = 1000; + + s = networkstatus_getinfo_helper_single(&rs); + tt_assert(s); + tt_str_op(s, ==, + "r TetsuoMilk U3RhdGVseSwgcGx1bXAgQnVjayA " + "TXVsbGlnYW4gY2FtZSB1cCBmcm8 2013-04-02 17:53:18 " + "32.48.64.80 9001 9002\n" + "s Exit Fast Running\n" + "w Bandwidth=1000\n"); + + done: + tor_free(s); +} #define DIR_LEGACY(name) \ { #name, legacy_test_helper, TT_FORK, &legacy_setup, test_dir_ ## name } @@ -2238,6 +2271,7 @@ struct testcase_t dir_tests[] = { DIR_LEGACY(clip_unmeasured_bw), DIR_LEGACY(clip_unmeasured_bw_alt), DIR(v2_dir, TT_FORK), + DIR(fmt_control_ns, 0), END_OF_TESTCASES }; From 992bbd02f9fef33db4fed6c704a20037fd6118d0 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 2 Apr 2013 14:45:13 -0400 Subject: [PATCH 18/43] Re-enable test for parsing and generating descriptor with exit policy Looks like I turned this off in 6ac42f5e back in 2003 and never got around to making it work again. There has been no small amount of code drift. --- src/or/router.c | 2 ++ src/test/test_dir.c | 79 ++++++++++++++++++++++++++++++++------------- 2 files changed, 59 insertions(+), 22 deletions(-) diff --git a/src/or/router.c b/src/or/router.c index a391cddec..e5d53e021 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -2235,6 +2235,8 @@ char * router_dump_router_to_string(routerinfo_t *router, crypto_pk_t *ident_key) { + /* XXXX025 Make this look entirely at its arguments, and not at globals. + */ char *onion_pkey = NULL; /* Onion key, PEM-encoded. */ char *identity_pkey = NULL; /* Identity key, PEM-encoded. */ char digest[DIGEST_LEN]; diff --git a/src/test/test_dir.c b/src/test/test_dir.c index 42bdb9ca1..668d28f44 100644 --- a/src/test/test_dir.c +++ b/src/test/test_dir.c @@ -82,9 +82,11 @@ test_dir_formats(void) size_t pk1_str_len, pk2_str_len, pk3_str_len; routerinfo_t *r1=NULL, *r2=NULL; crypto_pk_t *pk1 = NULL, *pk2 = NULL, *pk3 = NULL; - routerinfo_t *rp1 = NULL; + routerinfo_t *rp1 = NULL, *rp2 = NULL; addr_policy_t *ex1, *ex2; routerlist_t *dir1 = NULL, *dir2 = NULL; + or_options_t *options = get_options_mutable(); + const addr_policy_t *p; pk1 = pk_generate(0); pk2 = pk_generate(1); @@ -133,8 +135,8 @@ test_dir_formats(void) r2->identity_pkey = crypto_pk_dup_key(pk1); r2->bandwidthrate = r2->bandwidthburst = r2->bandwidthcapacity = 3000; r2->exit_policy = smartlist_new(); - smartlist_add(r2->exit_policy, ex2); smartlist_add(r2->exit_policy, ex1); + smartlist_add(r2->exit_policy, ex2); r2->nickname = tor_strdup("Fred"); test_assert(!crypto_pk_write_public_key_to_string(pk1, &pk1_str, @@ -144,7 +146,11 @@ test_dir_formats(void) test_assert(!crypto_pk_write_public_key_to_string(pk3 , &pk3_str, &pk3_str_len)); + /* XXXX025 router_dump_to_string should really take this from ri.*/ + options->ContactInfo = tor_strdup("Magri White " + ""); buf = router_dump_router_to_string(r1, pk2); + tor_free(options->ContactInfo); test_assert(buf); strlcpy(buf2, "router Magri 18.244.0.1 9000 0 9003\n" @@ -167,6 +173,8 @@ test_dir_formats(void) strlcat(buf2, "signing-key\n", sizeof(buf2)); strlcat(buf2, pk2_str, sizeof(buf2)); strlcat(buf2, "hidden-service-dir\n", sizeof(buf2)); + strlcat(buf2, "contact Magri White \n", + sizeof(buf2)); strlcat(buf2, "reject *:*\nrouter-signature\n", sizeof(buf2)); buf[strlen(buf2)] = '\0'; /* Don't compare the sig; it's never the same * twice */ @@ -189,35 +197,62 @@ test_dir_formats(void) test_assert(crypto_pk_cmp_keys(rp1->identity_pkey, pk2) == 0); //test_assert(rp1->exit_policy == NULL); -#if 0 - /* XXX Once we have exit policies, test this again. XXX */ - strlcpy(buf2, "router tor.tor.tor 9005 0 0 3000\n", sizeof(buf2)); + strlcpy(buf2, + "router Fred 1.1.1.1 9005 0 0\n" + "platform Tor "VERSION" on ", sizeof(buf2)); + strlcat(buf2, get_uname(), sizeof(buf2)); + strlcat(buf2, "\n" + "protocols Link 1 2 Circuit 1\n" + "published 1970-01-01 00:00:05\n" + "fingerprint ", sizeof(buf2)); + test_assert(!crypto_pk_get_fingerprint(pk1, fingerprint, 1)); + strlcat(buf2, fingerprint, sizeof(buf2)); + strlcat(buf2, "\nuptime 0\n" + "bandwidth 3000 3000 3000\n", sizeof(buf2)); + strlcat(buf2, "onion-key\n", sizeof(buf2)); strlcat(buf2, pk2_str, sizeof(buf2)); strlcat(buf2, "signing-key\n", sizeof(buf2)); strlcat(buf2, pk1_str, sizeof(buf2)); - strlcat(buf2, "accept *:80\nreject 18.*:24\n\n", sizeof(buf2)); - test_assert(router_dump_router_to_string(buf, 2048, &r2, pk2)>0); - test_streq(buf, buf2); + strlcat(buf2, "hidden-service-dir\n", sizeof(buf2)); + strlcat(buf2, "accept *:80\nreject 18.0.0.0/8:24\n", sizeof(buf2)); + strlcat(buf2, "router-signature\n", sizeof(buf2)); + buf = router_dump_router_to_string(r2, pk1); + buf[strlen(buf2)] = '\0'; /* Don't compare the sig; it's never the same + * twice */ + test_streq(buf, buf2); + tor_free(buf); + + buf = router_dump_router_to_string(r2, pk1); cp = buf; - rp2 = router_parse_entry_from_string(&cp,1); + rp2 = router_parse_entry_from_string((const char*)cp,NULL,1,0,NULL); test_assert(rp2); - test_streq(rp2->address, r2.address); - test_eq(rp2->or_port, r2.or_port); - test_eq(rp2->dir_port, r2.dir_port); - test_eq(rp2->bandwidth, r2.bandwidth); + test_streq(rp2->address, r2->address); + test_eq(rp2->or_port, r2->or_port); + test_eq(rp2->dir_port, r2->dir_port); + test_eq(rp2->bandwidthrate, r2->bandwidthrate); + test_eq(rp2->bandwidthburst, r2->bandwidthburst); + test_eq(rp2->bandwidthcapacity, r2->bandwidthcapacity); test_assert(crypto_pk_cmp_keys(rp2->onion_pkey, pk2) == 0); test_assert(crypto_pk_cmp_keys(rp2->identity_pkey, pk1) == 0); - test_eq(rp2->exit_policy->policy_type, EXIT_POLICY_ACCEPT); - test_streq(rp2->exit_policy->string, "accept *:80"); - test_streq(rp2->exit_policy->address, "*"); - test_streq(rp2->exit_policy->port, "80"); - test_eq(rp2->exit_policy->next->policy_type, EXIT_POLICY_REJECT); - test_streq(rp2->exit_policy->next->string, "reject 18.*:24"); - test_streq(rp2->exit_policy->next->address, "18.*"); - test_streq(rp2->exit_policy->next->port, "24"); - test_assert(rp2->exit_policy->next->next == NULL); + test_eq(smartlist_len(rp2->exit_policy), 2); + + p = smartlist_get(rp2->exit_policy, 0); + test_eq(p->policy_type, ADDR_POLICY_ACCEPT); + test_assert(tor_addr_is_null(&p->addr)); + test_eq(p->maskbits, 0); + test_eq(p->prt_min, 80); + test_eq(p->prt_max, 80); + + p = smartlist_get(rp2->exit_policy, 1); + test_eq(p->policy_type, ADDR_POLICY_REJECT); + test_assert(tor_addr_eq(&p->addr, &ex2->addr)); + test_eq(p->maskbits, 8); + test_eq(p->prt_min, 24); + test_eq(p->prt_max, 24); + +#if 0 /* Okay, now for the directories. */ { fingerprint_list = smartlist_new(); From cb74b5a1526188878d8e55a186f13fed164c9ffc Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 2 Apr 2013 14:54:32 -0400 Subject: [PATCH 19/43] Remove the unused pk3 variable from test_dir_formats --- src/test/test_dir.c | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/test/test_dir.c b/src/test/test_dir.c index 668d28f44..6bcb6f039 100644 --- a/src/test/test_dir.c +++ b/src/test/test_dir.c @@ -78,10 +78,10 @@ test_dir_formats(void) char buf2[8192]; char platform[256]; char fingerprint[FINGERPRINT_LEN+1]; - char *pk1_str = NULL, *pk2_str = NULL, *pk3_str = NULL, *cp; - size_t pk1_str_len, pk2_str_len, pk3_str_len; + char *pk1_str = NULL, *pk2_str = NULL, *cp; + size_t pk1_str_len, pk2_str_len; routerinfo_t *r1=NULL, *r2=NULL; - crypto_pk_t *pk1 = NULL, *pk2 = NULL, *pk3 = NULL; + crypto_pk_t *pk1 = NULL, *pk2 = NULL; routerinfo_t *rp1 = NULL, *rp2 = NULL; addr_policy_t *ex1, *ex2; routerlist_t *dir1 = NULL, *dir2 = NULL; @@ -90,9 +90,8 @@ test_dir_formats(void) pk1 = pk_generate(0); pk2 = pk_generate(1); - pk3 = pk_generate(2); - test_assert(pk1 && pk2 && pk3); + test_assert(pk1 && pk2); hibernate_set_state_for_testing_(HIBERNATE_STATE_LIVE); @@ -143,8 +142,6 @@ test_dir_formats(void) &pk1_str_len)); test_assert(!crypto_pk_write_public_key_to_string(pk2 , &pk2_str, &pk2_str_len)); - test_assert(!crypto_pk_write_public_key_to_string(pk3 , &pk3_str, - &pk3_str_len)); /* XXXX025 router_dump_to_string should really take this from ri.*/ options->ContactInfo = tor_strdup("Magri White " @@ -274,10 +271,8 @@ test_dir_formats(void) tor_free(buf); tor_free(pk1_str); tor_free(pk2_str); - tor_free(pk3_str); if (pk1) crypto_pk_free(pk1); if (pk2) crypto_pk_free(pk2); - if (pk3) crypto_pk_free(pk3); if (rp1) routerinfo_free(rp1); tor_free(dir1); /* XXXX And more !*/ tor_free(dir2); /* And more !*/ From 4b15606fa2848f5112599865eb7b15ef2178e66a Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 2 Apr 2013 14:54:54 -0400 Subject: [PATCH 20/43] Add unit test for encoding ntor key in routerinfo --- src/test/test_dir.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/test/test_dir.c b/src/test/test_dir.c index 6bcb6f039..8e498e4e9 100644 --- a/src/test/test_dir.c +++ b/src/test/test_dir.c @@ -131,6 +131,9 @@ test_dir_formats(void) r2->or_port = 9005; r2->dir_port = 0; r2->onion_pkey = crypto_pk_dup_key(pk2); + r2->onion_curve25519_pkey = tor_malloc_zero(sizeof(curve25519_public_key_t)); + curve25519_public_from_base64(r2->onion_curve25519_pkey, + "skyinAnvardNostarsNomoonNowindormistsorsnow"); r2->identity_pkey = crypto_pk_dup_key(pk1); r2->bandwidthrate = r2->bandwidthburst = r2->bandwidthcapacity = 3000; r2->exit_policy = smartlist_new(); @@ -211,6 +214,8 @@ test_dir_formats(void) strlcat(buf2, "signing-key\n", sizeof(buf2)); strlcat(buf2, pk1_str, sizeof(buf2)); strlcat(buf2, "hidden-service-dir\n", sizeof(buf2)); + strlcat(buf2, "ntor-onion-key " + "skyinAnvardNostarsNomoonNowindormistsorsnow=\n", sizeof(buf2)); strlcat(buf2, "accept *:80\nreject 18.0.0.0/8:24\n", sizeof(buf2)); strlcat(buf2, "router-signature\n", sizeof(buf2)); @@ -230,6 +235,9 @@ test_dir_formats(void) test_eq(rp2->bandwidthrate, r2->bandwidthrate); test_eq(rp2->bandwidthburst, r2->bandwidthburst); test_eq(rp2->bandwidthcapacity, r2->bandwidthcapacity); + test_memeq(rp2->onion_curve25519_pkey->public_key, + r2->onion_curve25519_pkey->public_key, + CURVE25519_PUBKEY_LEN); test_assert(crypto_pk_cmp_keys(rp2->onion_pkey, pk2) == 0); test_assert(crypto_pk_cmp_keys(rp2->identity_pkey, pk1) == 0); From 9fec0c1a95ab24f5f18d6995e30fe2111e6b7db2 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 18 Apr 2013 11:14:05 -0400 Subject: [PATCH 21/43] Remove a double-newline --- src/common/crypto.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/common/crypto.c b/src/common/crypto.c index 93a60d8c6..0ababeaea 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -1614,7 +1614,6 @@ crypto_digest_assign(crypto_digest_t *into, memcpy(into,from,sizeof(crypto_digest_t)); } - /** Given a list of strings in lst, set the len_out-byte digest * at digest_out to the hash of the concatenation of those strings, * plus the optional string append, computed with the algorithm From b933360ee848873db6c051eabe5aecd01b3f67a3 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 18 Apr 2013 22:43:52 -0400 Subject: [PATCH 22/43] Add a boolean to flag-thresholds for "we have enough measured bandwidth" Implements #8711. --- changes/bug8711 | 6 ++++++ src/or/dirserv.c | 9 +++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 changes/bug8711 diff --git a/changes/bug8711 b/changes/bug8711 new file mode 100644 index 000000000..28a1daa45 --- /dev/null +++ b/changes/bug8711 @@ -0,0 +1,6 @@ + o Minor features (authority): + - Add a "ignoring-advertised-bws" boolean to our flag-thresholds + lines to describe whether we have enough measured bandwidths to + ignore advertised bandwidth claims. Closes ticket 8711. + + diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 375572050..66a2c14f8 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -2273,12 +2273,16 @@ char * dirserv_get_flag_thresholds_line(void) { char *result=NULL; + const int measured_threshold = + get_options()->MinMeasuredBWsForAuthToIgnoreAdvertised; + const int enough_measured_bw = routers_with_measured_bw > measured_threshold; + tor_asprintf(&result, "stable-uptime=%lu stable-mtbf=%lu " "fast-speed=%lu " "guard-wfu=%.03f%% guard-tk=%lu " "guard-bw-inc-exits=%lu guard-bw-exc-exits=%lu " - "enough-mtbf=%d", + "enough-mtbf=%d ignoring-advertised-bws=%d", (unsigned long)stable_uptime, (unsigned long)stable_mtbf, (unsigned long)fast_bandwidth_kb*1000, @@ -2286,7 +2290,8 @@ dirserv_get_flag_thresholds_line(void) (unsigned long)guard_tk, (unsigned long)guard_bandwidth_including_exits_kb*1000, (unsigned long)guard_bandwidth_excluding_exits_kb*1000, - enough_mtbf_info ? 1 : 0); + enough_mtbf_info ? 1 : 0, + enough_measured_bw ? 1 : 0); return result; } From 2170f89a93a268588a50a7e754157c1f6e03b15f Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Tue, 23 Apr 2013 14:43:38 -0700 Subject: [PATCH 23/43] Bug 8235: Fix scaling adjustments. We need to subtract both the current built circuits *and* the attempted circuits from the attempt count during scaling, since *both* have already been counted there. --- src/or/circuitbuild.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 31242f6c1..43d2ffe4d 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -2491,7 +2491,7 @@ pathbias_scale_close_rates(entry_guard_t *guard) /* Verify that the counts are sane before and after scaling */ int counts_are_sane = (guard->circ_attempts >= guard->circ_successes); - guard->circ_attempts -= opened_attempts; + guard->circ_attempts -= (opened_attempts+opened_built); guard->circ_successes -= opened_built; guard->circ_attempts *= scale_ratio; @@ -2501,7 +2501,7 @@ pathbias_scale_close_rates(entry_guard_t *guard) guard->collapsed_circuits *= scale_ratio; guard->unusable_circuits *= scale_ratio; - guard->circ_attempts += opened_attempts; + guard->circ_attempts += (opened_attempts+opened_built); guard->circ_successes += opened_built; entry_guards_changed(); From c72558f396b35bb42281162198ddbd652f2155fd Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Tue, 23 Apr 2013 14:44:40 -0700 Subject: [PATCH 24/43] Changes file for 8235. --- changes/bug8253-fix | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 changes/bug8253-fix diff --git a/changes/bug8253-fix b/changes/bug8253-fix new file mode 100644 index 000000000..3d36d06c8 --- /dev/null +++ b/changes/bug8253-fix @@ -0,0 +1,6 @@ + o Minor bugfixes (log messages) + - Fix a scaling issue in the path bias accounting code that resulted in + "Bug:" log messages from either pathbias_scale_close_rates() or + pathbias_count_build_success(). This represents a bugfix on a previous + bugfix: The original fix attempted in 0.2.4.10-alpha was incomplete. + Fixes bug 8235; bugfix on 0.2.4.1-alpha. From ac22bf27d73c51ce6da5afbd2ec29a5403eea2d1 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Tue, 23 Apr 2013 17:53:53 -0700 Subject: [PATCH 25/43] Increase the pathbias state file miscounting version check. We now know the bug is present in 0.2.4.12-alpha too. It should be fixed in 0.2.4.13-alpha, though. --- src/or/entrynodes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/or/entrynodes.c b/src/or/entrynodes.c index 3234f4f3c..7a1f67d16 100644 --- a/src/or/entrynodes.c +++ b/src/or/entrynodes.c @@ -1215,7 +1215,7 @@ entry_guards_parse_state(or_state_t *state, int set, char **msg) int severity = LOG_INFO; /* If this state file was written by a Tor that would have * already fixed it, then the overcounting bug is still there.. */ - if (tor_version_as_new_as(state_version, "0.2.4.12-alpha")) { + if (tor_version_as_new_as(state_version, "0.2.4.13-alpha")) { severity = LOG_NOTICE; } log_fn(severity, LD_BUG, @@ -1280,7 +1280,7 @@ entry_guards_parse_state(or_state_t *state, int set, char **msg) int severity = LOG_INFO; /* If this state file was written by a Tor that would have * already fixed it, then the overcounting bug is still there.. */ - if (tor_version_as_new_as(state_version, "0.2.4.12-alpha")) { + if (tor_version_as_new_as(state_version, "0.2.4.13-alpha")) { severity = LOG_NOTICE; } log_fn(severity, LD_BUG, From 139d367f297575a59b96b64a633ed2b6988d60e1 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sun, 5 May 2013 18:52:53 -0400 Subject: [PATCH 26/43] Fix 8833: crash bug from using NULL node->ri in dirserv.c It appears that moria1 crashed because of one instance of this (the one in router_counts_toward_thresholds). The other instance I fixed won't actually have broken anything, but I think it's more clear this way. Fixes bug 8833; bugfix on 0.2.4.12-alpha. --- changes/bug8833 | 3 +++ src/or/dirserv.c | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 changes/bug8833 diff --git a/changes/bug8833 b/changes/bug8833 new file mode 100644 index 000000000..681a86191 --- /dev/null +++ b/changes/bug8833 @@ -0,0 +1,3 @@ + o Major bugfixes (directory authority): + - Fix a crash bug when building a consensus using an older consensus as + its basis. Fixes bug 8833. Bugfix on 0.2.4.12-alpha. diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 66a2c14f8..16f297a80 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -1889,7 +1889,7 @@ router_counts_toward_thresholds(const node_t *node, time_t now, { /* Have measured bw? */ int have_mbw = - dirserv_has_measured_bw(node->ri->cache_info.identity_digest); + dirserv_has_measured_bw(node->identity); uint64_t min_bw_kb = ABSOLUTE_MIN_BW_VALUE_TO_CONSIDER_KB; const or_options_t *options = get_options(); @@ -1959,7 +1959,7 @@ dirserv_compute_performance_thresholds(routerlist_t *rl, if (router_counts_toward_thresholds(node, now, omit_as_sybil, require_mbw)) { routerinfo_t *ri = node->ri; - const char *id = ri->cache_info.identity_digest; + const char *id = node->identity; uint32_t bw_kb; node->is_exit = (!router_exit_policy_rejects_all(ri) && exit_policy_is_general_exit(ri->exit_policy)); From a1d7f7ea503f2f739953d6a25ebb5d93981604be Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sun, 5 May 2013 18:55:19 -0400 Subject: [PATCH 27/43] Use a clearer idiom for node identity in router_counts_toward_thresholds --- src/or/dirserv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 16f297a80..8f6d9ec43 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -1898,7 +1898,7 @@ router_counts_toward_thresholds(const node_t *node, time_t now, } return node->ri && router_is_active(node->ri, node, now) && - !digestmap_get(omit_as_sybil, node->ri->cache_info.identity_digest) && + !digestmap_get(omit_as_sybil, node->identity) && (dirserv_get_credible_bandwidth_kb(node->ri) >= min_bw_kb) && (have_mbw || !require_mbw); } From 7d3fd858388ddd4916c604ed5ab3c8cfc72dfd1c Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 8 May 2013 12:59:08 -0400 Subject: [PATCH 28/43] Fix bug 8845: check the right length of memory in aes unit tests This couldn't actually be a buffer overrun unless AES somehow turned into memcpy, but still it's good to fix it. --- changes/bug8845 | 3 +++ src/test/test_crypto.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 changes/bug8845 diff --git a/changes/bug8845 b/changes/bug8845 new file mode 100644 index 000000000..ace043ab9 --- /dev/null +++ b/changes/bug8845 @@ -0,0 +1,3 @@ + o Minor bugfixes (test): + - Fix an impossible buffer overrun in the AES unit tests. Fixes bug 8845; + bugfix on 0.2.0.7-alpha. Found by eugenis. diff --git a/src/test/test_crypto.c b/src/test/test_crypto.c index fcaa0813e..f92bfd673 100644 --- a/src/test/test_crypto.c +++ b/src/test/test_crypto.c @@ -730,7 +730,7 @@ test_crypto_aes_iv(void *arg) /* Decrypt with the wrong key. */ decrypted_size = crypto_cipher_decrypt_with_iv(key2, decrypted2, 4095, encrypted1, encrypted_size); - test_memneq(plain, decrypted2, encrypted_size); + test_memneq(plain, decrypted2, decrypted_size); /* Alter the initialization vector. */ encrypted1[0] += 42; decrypted_size = crypto_cipher_decrypt_with_iv(key1, decrypted1, 4095, From 00e2310f12dfb91aca2949463b57bd6937f19166 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 8 May 2013 12:04:18 -0400 Subject: [PATCH 29/43] Don't run off the end of the array-of-freelists This is a fix for bug 8844, where eugenis correctly notes that there's a sentinel value at the end of the list-of-freelists that's never actually checked. It's a bug since the first version of the chunked buffer code back in 0.2.0.16-alpha. This would probably be a crash bug if it ever happens, but nobody's ever reported something like this, so I'm unsure whether it can occur. It would require write_to_buf, write_to_buf_zlib, read_to_buf, or read_to_buf_tls to get an input size of more than 32K. Still, it's a good idea to fix this kind of thing! --- changes/bug8844 | 6 ++++++ src/or/buffers.c | 3 ++- src/test/test.c | 12 ++++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 changes/bug8844 diff --git a/changes/bug8844 b/changes/bug8844 new file mode 100644 index 000000000..320e5f284 --- /dev/null +++ b/changes/bug8844 @@ -0,0 +1,6 @@ + o Major bugfixes: + - Prevent the get_freelists() function from running off the end of + the list of freelists if it somehow gets an unrecognized + allocation. Fixes bug 8844; bugfix on 0.2.0.16-alpha. Reported by + eugenis. + diff --git a/src/or/buffers.c b/src/or/buffers.c index ad5ab83e4..9be0476f6 100644 --- a/src/or/buffers.c +++ b/src/or/buffers.c @@ -147,7 +147,8 @@ static INLINE chunk_freelist_t * get_freelist(size_t alloc) { int i; - for (i=0; freelists[i].alloc_size <= alloc; ++i) { + for (i=0; (freelists[i].alloc_size <= alloc && + freelists[i].alloc_size); ++i ) { if (freelists[i].alloc_size == alloc) { return &freelists[i]; } diff --git a/src/test/test.c b/src/test/test.c index ddfd6337b..ae423948e 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -802,6 +802,18 @@ test_buffers(void) buf_free(buf); buf = NULL; + /* Try adding a string too long for any freelist. */ + { + char *cp = tor_malloc_zero(65536); + buf = buf_new(); + write_to_buf(cp, 65536, buf); + tor_free(cp); + + tt_int_op(buf_datalen(buf), ==, 65536); + buf_free(buf); + buf = NULL; + } + done: if (buf) buf_free(buf); From d5bd4a4763dfa74572ce6ed0b565315c43ff9f87 Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Fri, 22 Mar 2013 12:13:25 -0700 Subject: [PATCH 30/43] Implement fp_pair_map_t --- src/or/Makefile.am | 2 + src/or/Makefile.nmake | 2 +- src/or/fp_pair.c | 308 ++++++++++++++++++++++++++++++++++++++++++ src/or/fp_pair.h | 45 ++++++ 4 files changed, 356 insertions(+), 1 deletion(-) create mode 100644 src/or/fp_pair.c create mode 100644 src/or/fp_pair.h diff --git a/src/or/Makefile.am b/src/or/Makefile.am index 3cc789a1b..813227f57 100644 --- a/src/or/Makefile.am +++ b/src/or/Makefile.am @@ -32,6 +32,7 @@ libtor_a_SOURCES = \ dirvote.c \ dns.c \ dnsserv.c \ + fp_pair.c \ geoip.c \ hibernate.c \ main.c \ @@ -96,6 +97,7 @@ noinst_HEADERS = \ dnsserv.h \ eventdns.h \ eventdns_tor.h \ + fp_pair.h \ geoip.h \ hibernate.h \ main.h \ diff --git a/src/or/Makefile.nmake b/src/or/Makefile.nmake index 3181e79c2..146866ea5 100644 --- a/src/or/Makefile.nmake +++ b/src/or/Makefile.nmake @@ -11,7 +11,7 @@ LIBS = ..\..\..\build-alpha\lib\libevent.a \ LIBTOR_OBJECTS = buffers.obj circuitbuild.obj circuitlist.obj circuituse.obj \ command.obj config.obj connection.obj connection_edge.obj \ connection_or.obj control.obj cpuworker.obj directory.obj \ - dirserv.obj dirvote.obj dns.obj dnsserv.obj geoip.obj \ + dirserv.obj dirvote.obj dns.obj dnsserv.obj fp_pair.obj geoip.obj \ hibernate.obj main.obj microdesc.obj networkstatus.obj \ nodelist.obj onion.obj policies.obj reasons.obj relay.obj \ rendclient.obj rendcommon.obj rendmid.obj rendservice.obj \ diff --git a/src/or/fp_pair.c b/src/or/fp_pair.c new file mode 100644 index 000000000..4d8a835c8 --- /dev/null +++ b/src/or/fp_pair.c @@ -0,0 +1,308 @@ +/* Copyright (c) 2013, The Tor Project, Inc. */ +/* See LICENSE for licensing information */ + +#include "or.h" +#include "fp_pair.h" + +/* Define fp_pair_map_t structures */ + +struct fp_pair_map_entry_s { + HT_ENTRY(fp_pair_map_entry_s) node; + void *val; + fp_pair_t key; +}; + +struct fp_pair_map_s { + HT_HEAD(fp_pair_map_impl, fp_pair_map_entry_s) head; +}; + +/* + * Hash function and equality checker for fp_pair_map_t + */ + +/** Compare fp_pair_entry_t objects by key value. */ +static INLINE int +fp_pair_map_entries_eq(const fp_pair_map_entry_t *a, + const fp_pair_map_entry_t *b) +{ + return tor_memeq(&(a->key), &(b->key), sizeof(fp_pair_t)); +} + +/** Return a hash value for an fp_pair_entry_t. */ +static INLINE unsigned int +fp_pair_map_entry_hash(const fp_pair_map_entry_t *a) +{ + const uint32_t *p; + unsigned int hash; + + p = (const uint32_t *)(a->key.first); + /* Hashes are 20 bytes long, so 5 times uint32_t */ + hash = p[0] ^ p[1] ^ p[2] ^ p[3] ^ p[4]; + /* Now XOR in the second fingerprint */ + p = (const uint32_t *)(a->key.second); + hash ^= p[0] ^ p[1] ^ p[2] ^ p[3] ^ p[4]; + + return hash; +} + +/* + * Hash table functions for fp_pair_map_t + */ + +HT_PROTOTYPE(fp_pair_map_impl, fp_pair_map_entry_s, node, + fp_pair_map_entry_hash, fp_pair_map_entries_eq) +HT_GENERATE(fp_pair_map_impl, fp_pair_map_entry_s, node, + fp_pair_map_entry_hash, fp_pair_map_entries_eq, + 0.6, tor_malloc, tor_realloc, tor_free) + +/** Constructor to create a new empty map from fp_pair_t to void * + */ + +fp_pair_map_t * +fp_pair_map_new(void) +{ + fp_pair_map_t *result; + + result = tor_malloc(sizeof(fp_pair_map_t)); + HT_INIT(fp_pair_map_impl, &result->head); + return result; +} + +/** Set the current value for key to val; returns the previous + * value for key if one was set, or NULL if one was not. + */ + +void * +fp_pair_map_set(fp_pair_map_t *map, const fp_pair_t *key, void *val) +{ + fp_pair_map_entry_t *resolve; + fp_pair_map_entry_t search; + void *oldval; + + tor_assert(map); + tor_assert(key); + tor_assert(val); + + memcpy(&(search.key), key, sizeof(*key)); + resolve = HT_FIND(fp_pair_map_impl, &(map->head), &search); + if (resolve) { + oldval = resolve->val; + resolve->val = val; + } else { + resolve = tor_malloc_zero(sizeof(fp_pair_map_entry_t)); + memcpy(&(resolve->key), key, sizeof(*key)); + resolve->val = val; + HT_INSERT(fp_pair_map_impl, &(map->head), resolve); + oldval = NULL; + } + + return oldval; +} + +/** Set the current value for the key (first, second) to val; returns + * the previous value for key if one was set, or NULL if one was not. + */ + +void * +fp_pair_map_set_by_digests(fp_pair_map_t *map, + const char *first, const char *second, + void *val) +{ + fp_pair_t k; + + tor_assert(first); + tor_assert(second); + + memcpy(k.first, first, DIGEST_LEN); + memcpy(k.second, second, DIGEST_LEN); + + return fp_pair_map_set(map, &k, val); +} + +/** Return the current value associated with key, or NULL if no value is set. + */ + +void * +fp_pair_map_get(const fp_pair_map_t *map, const fp_pair_t *key) +{ + fp_pair_map_entry_t *resolve; + fp_pair_map_entry_t search; + void *val = NULL; + + tor_assert(map); + tor_assert(key); + + memcpy(&(search.key), key, sizeof(*key)); + resolve = HT_FIND(fp_pair_map_impl, &(map->head), &search); + if (resolve) val = resolve->val; + + return val; +} + +/** Return the current value associated the key (first, second), or + * NULL if no value is set. + */ + +void * +fp_pair_map_get_by_digests(const fp_pair_map_t *map, + const char *first, const char *second) +{ + fp_pair_t k; + + tor_assert(first); + tor_assert(second); + + memcpy(k.first, first, DIGEST_LEN); + memcpy(k.second, second, DIGEST_LEN); + + return fp_pair_map_get(map, &k); +} + +/** Remove the value currently associated with key from the map. + * Return the value if one was set, or NULL if there was no entry for + * key. The caller must free any storage associated with the + * returned value. + */ + +void * +fp_pair_map_remove(fp_pair_map_t *map, const fp_pair_t *key) +{ + fp_pair_map_entry_t *resolve; + fp_pair_map_entry_t search; + void *val = NULL; + + tor_assert(map); + tor_assert(key); + + memcpy(&(search.key), key, sizeof(*key)); + resolve = HT_REMOVE(fp_pair_map_impl, &(map->head), &search); + if (resolve) { + val = resolve->val; + tor_free(resolve); + } + + return val; +} + +/** Remove all entries from map, and deallocate storage for those entries. + * If free_val is provided, it is invoked on every value in map. + */ + +void +fp_pair_map_free(fp_pair_map_t *map, void (*free_val)(void*)) +{ + fp_pair_map_entry_t **ent, **next, *this; + + if (map) { + for (ent = HT_START(fp_pair_map_impl, &(map->head)); + ent != NULL; ent = next) { + this = *ent; + next = HT_NEXT_RMV(fp_pair_map_impl, &(map->head), ent); + if (free_val) free_val(this->val); + tor_free(this); + } + tor_assert(HT_EMPTY(&(map->head))); + HT_CLEAR(fp_pair_map_impl, &(map->head)); + tor_free(map); + } +} + +/** Return true iff map has no entries. + */ + +int +fp_pair_map_isempty(const fp_pair_map_t *map) +{ + tor_assert(map); + + return HT_EMPTY(&(map->head)); +} + +/** Return the number of items in map. + */ + +int +fp_pair_map_size(const fp_pair_map_t *map) +{ + tor_assert(map); + + return HT_SIZE(&(map->head)); +} + +/** return an iterator pointing to the start of map. + */ + +fp_pair_map_iter_t * +fp_pair_map_iter_init(fp_pair_map_t *map) +{ + tor_assert(map); + + return HT_START(fp_pair_map_impl, &(map->head)); +} + +/** Advance iter a single step to the next entry of map, and return + * its new value. + */ + +fp_pair_map_iter_t * +fp_pair_map_iter_next(fp_pair_map_t *map, fp_pair_map_iter_t *iter) +{ + tor_assert(map); + tor_assert(iter); + + return HT_NEXT(fp_pair_map_impl, &(map->head), iter); +} + +/** Advance iter a single step to the next entry of map, removing the current + * entry, and return its new value. + */ + +fp_pair_map_iter_t * +fp_pair_map_iter_next_rmv(fp_pair_map_t *map, fp_pair_map_iter_t *iter) +{ + fp_pair_map_entry_t *rmv; + + tor_assert(map); + tor_assert(iter); + tor_assert(*iter); + + rmv = *iter; + iter = HT_NEXT_RMV(fp_pair_map_impl, &(map->head), iter); + tor_free(rmv); + + return iter; +} + +/** Set *key_out and *val_out to the current entry pointed to by iter. + */ + +void +fp_pair_map_iter_get(fp_pair_map_iter_t *iter, + fp_pair_t *key_out, void **val_out) +{ + tor_assert(iter); + tor_assert(*iter); + + if (key_out) memcpy(key_out, &((*iter)->key), sizeof(fp_pair_t)); + if (val_out) *val_out = (*iter)->val; +} + +/** Return true iff iter has advanced past the last entry of its map. + */ + +int +fp_pair_map_iter_done(fp_pair_map_iter_t *iter) +{ + return (iter == NULL); +} + +/** Assert if anything has gone wrong with the internal + * representation of map. + */ + +void +fp_pair_map_assert_ok(const fp_pair_map_t *map) +{ + tor_assert(!fp_pair_map_impl_HT_REP_IS_BAD_(&(map->head))); +} + diff --git a/src/or/fp_pair.h b/src/or/fp_pair.h new file mode 100644 index 000000000..89f664a81 --- /dev/null +++ b/src/or/fp_pair.h @@ -0,0 +1,45 @@ +/* Copyright (c) 2013, The Tor Project, Inc. */ +/* See LICENSE for licensing information */ + +/** + * \file fp_pair.h + * \brief Header file for fp_pair.c. + **/ + +#ifndef _TOR_FP_PAIR_H +#define _TOR_FP_PAIR_H + +/* + * Declare fp_pair_map_t functions and structs + */ + +typedef struct fp_pair_map_entry_s fp_pair_map_entry_t; +typedef struct fp_pair_map_s fp_pair_map_t; +typedef fp_pair_map_entry_t *fp_pair_map_iter_t; + +fp_pair_map_t * fp_pair_map_new(void); +void * fp_pair_map_set(fp_pair_map_t *map, const fp_pair_t *key, void *val); +void * fp_pair_map_set_by_digests(fp_pair_map_t *map, + const char *first, const char *second, + void *val); +void * fp_pair_map_get(const fp_pair_map_t *map, const fp_pair_t *key); +void * fp_pair_map_get_by_digests(const fp_pair_map_t *map, + const char *first, const char *second); +void * fp_pair_map_remove(fp_pair_map_t *map, const fp_pair_t *key); +void fp_pair_map_free(fp_pair_map_t *map, void (*free_val)(void*)); +int fp_pair_map_isempty(const fp_pair_map_t *map); +int fp_pair_map_size(const fp_pair_map_t *map); +fp_pair_map_iter_t * fp_pair_map_iter_init(fp_pair_map_t *map); +fp_pair_map_iter_t * fp_pair_map_iter_next(fp_pair_map_t *map, + fp_pair_map_iter_t *iter); +fp_pair_map_iter_t * fp_pair_map_iter_next_rmv(fp_pair_map_t *map, + fp_pair_map_iter_t *iter); +void fp_pair_map_iter_get(fp_pair_map_iter_t *iter, + fp_pair_t *key_out, void **val_out); +int fp_pair_map_iter_done(fp_pair_map_iter_t *iter); +void fp_pair_map_assert_ok(const fp_pair_map_t *map); + +#undef DECLARE_MAP_FNS + +#endif + From fddb814feaa3d0091df03b26fa709cfba55312ed Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Thu, 9 May 2013 04:56:54 -0700 Subject: [PATCH 31/43] When downloading certificates, distinguish requesting by identity digest from requesting by ID digest, signing key pair; fixes bug 5595 --- changes/bug5595 | 8 + src/or/directory.c | 69 +++++-- src/or/dirvote.c | 2 +- src/or/router.c | 3 +- src/or/routerlist.c | 427 ++++++++++++++++++++++++++++++++++++-------- src/or/routerlist.h | 18 +- 6 files changed, 436 insertions(+), 91 deletions(-) create mode 100644 changes/bug5595 diff --git a/changes/bug5595 b/changes/bug5595 new file mode 100644 index 000000000..31f4b84b0 --- /dev/null +++ b/changes/bug5595 @@ -0,0 +1,8 @@ + o Critical bugfixes: + - Distinguish downloading an authority certificate by identity digest from + downloading one by identity digest/signing key digest pair; formerly we + always request them only by identity digest and get the newest one even + when we wanted one with a different signing key. Then we would complain + about being given a certificate we already had, and never get the one we + really wanted. Now we use the "fp-sk/" resource as well as the "fp/" + resource to request the one we want. Fixes bug 5595. diff --git a/src/or/directory.c b/src/or/directory.c index f235bf3b4..8dd5a7cdc 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -809,13 +809,34 @@ connection_dir_download_cert_failed(dir_connection_t *conn, int status) if (!conn->requested_resource) return; failed = smartlist_new(); - dir_split_resource_into_fingerprints(conn->requested_resource+3, - failed, NULL, DSR_HEX); - SMARTLIST_FOREACH(failed, char *, cp, - { - authority_cert_dl_failed(cp, status); - tor_free(cp); - }); + /* + * We have two cases download by fingerprint (resource starts + * with "fp/") or download by fingerprint/signing key pair + * (resource starts with "fp-sk/"). + */ + if (!strcmpstart(conn->requested_resource, "fp/")) { + /* Download by fingerprint case */ + dir_split_resource_into_fingerprints(conn->requested_resource + 3, + failed, NULL, DSR_HEX); + SMARTLIST_FOREACH_BEGIN(failed, char *, cp) { + /* Null signing key digest indicates download by fp only */ + authority_cert_dl_failed(cp, NULL, status); + tor_free(cp); + } SMARTLIST_FOREACH_END(cp); + } else if (!strcmpstart(conn->requested_resource, "fp-sk/")) { + /* Download by (fp,sk) pairs */ + dir_split_resource_into_fingerprint_pairs(conn->requested_resource + 5, + failed); + SMARTLIST_FOREACH_BEGIN(failed, fp_pair_t *, cp) { + authority_cert_dl_failed(cp->first, cp->second, status); + tor_free(cp); + } SMARTLIST_FOREACH_END(cp); + } else { + log_warn(LD_DIR, + "Don't know what to do with failure for cert fetch %s", + conn->requested_resource); + } + smartlist_free(failed); update_certificate_downloads(time(NULL)); @@ -1589,6 +1610,7 @@ connection_dir_client_reached_eof(dir_connection_t *conn) conn->_base.purpose == DIR_PURPOSE_FETCH_MICRODESC); int was_compressed=0; time_t now = time(NULL); + int src_code; switch (connection_fetch_from_buf_http(TO_CONN(conn), &headers, MAX_HEADERS_SIZE, @@ -1857,14 +1879,33 @@ connection_dir_client_reached_eof(dir_connection_t *conn) } log_info(LD_DIR,"Received authority certificates (size %d) from server " "'%s:%d'", (int)body_len, conn->_base.address, conn->_base.port); - if (trusted_dirs_load_certs_from_string(body, 0, 1)<0) { - log_warn(LD_DIR, "Unable to parse fetched certificates"); - /* if we fetched more than one and only some failed, the successful - * ones got flushed to disk so it's safe to call this on them */ - connection_dir_download_cert_failed(conn, status_code); + /* + * Tell trusted_dirs_load_certs_from_string() whether it was by fp + * or fp-sk pair. + */ + src_code = -1; + if (!strcmpstart(conn->requested_resource, "fp/")) { + src_code = TRUSTED_DIRS_CERTS_SRC_DL_BY_ID_DIGEST; + } else if (!strcmpstart(conn->requested_resource, "fp-sk/")) { + src_code = TRUSTED_DIRS_CERTS_SRC_DL_BY_ID_SK_DIGEST; + } + + if (src_code != -1) { + if (trusted_dirs_load_certs_from_string(body, src_code, 1)<0) { + log_warn(LD_DIR, "Unable to parse fetched certificates"); + /* if we fetched more than one and only some failed, the successful + * ones got flushed to disk so it's safe to call this on them */ + connection_dir_download_cert_failed(conn, status_code); + } else { + directory_info_has_arrived(now, 0); + log_info(LD_DIR, "Successfully loaded certificates from fetch."); + } } else { - directory_info_has_arrived(now, 0); - log_info(LD_DIR, "Successfully loaded certificates from fetch."); + log_warn(LD_DIR, + "Couldn't figure out what to do with fetched certificates for " + "unknown resource %s", + conn->requested_resource); + connection_dir_download_cert_failed(conn, status_code); } } if (conn->_base.purpose == DIR_PURPOSE_FETCH_STATUS_VOTE) { diff --git a/src/or/dirvote.c b/src/or/dirvote.c index 144859ae0..959e05a8a 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -2947,7 +2947,7 @@ dirvote_add_vote(const char *vote_body, const char **msg_out, int *status_out) /* Hey, it's a new cert! */ trusted_dirs_load_certs_from_string( vote->cert->cache_info.signed_descriptor_body, - 0 /* from_store */, 1 /*flush*/); + TRUSTED_DIRS_CERTS_SRC_FROM_VOTE, 1 /*flush*/); if (!authority_cert_get_by_digests(vote->cert->cache_info.identity_digest, vote->cert->signing_key_digest)) { log_warn(LD_BUG, "We added a cert, but still couldn't find it."); diff --git a/src/or/router.c b/src/or/router.c index 1ace8e249..c68a30923 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -758,7 +758,8 @@ init_keys(void) if (cert) { /* add my own cert to the list of known certs */ log_info(LD_DIR, "adding my own v3 cert"); if (trusted_dirs_load_certs_from_string( - cert->cache_info.signed_descriptor_body, 0, 0)<0) { + cert->cache_info.signed_descriptor_body, + TRUSTED_DIRS_CERTS_SRC_SELF, 0)<0) { log_warn(LD_DIR, "Unable to parse my own v3 cert! Failing."); return -1; } diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 3c39e362d..20d511025 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -19,6 +19,7 @@ #include "directory.h" #include "dirserv.h" #include "dirvote.h" +#include "fp_pair.h" #include "geoip.h" #include "hibernate.h" #include "main.h" @@ -38,6 +39,24 @@ /****************************************************************************/ +DECLARE_TYPED_DIGESTMAP_FNS(sdmap_, digest_sd_map_t, signed_descriptor_t) +DECLARE_TYPED_DIGESTMAP_FNS(rimap_, digest_ri_map_t, routerinfo_t) +DECLARE_TYPED_DIGESTMAP_FNS(eimap_, digest_ei_map_t, extrainfo_t) +DECLARE_TYPED_DIGESTMAP_FNS(dsmap_, digest_ds_map_t, download_status_t) +#define SDMAP_FOREACH(map, keyvar, valvar) \ + DIGESTMAP_FOREACH(sdmap_to_digestmap(map), keyvar, signed_descriptor_t *, \ + valvar) +#define RIMAP_FOREACH(map, keyvar, valvar) \ + DIGESTMAP_FOREACH(rimap_to_digestmap(map), keyvar, routerinfo_t *, valvar) +#define EIMAP_FOREACH(map, keyvar, valvar) \ + DIGESTMAP_FOREACH(eimap_to_digestmap(map), keyvar, extrainfo_t *, valvar) +#define DSMAP_FOREACH(map, keyvar, valvar) \ + DIGESTMAP_FOREACH(dsmap_to_digestmap(map), keyvar, download_status_t *, \ + valvar) + +/* Forward declaration for cert_list_t */ +typedef struct cert_list_t cert_list_t; + /* static function prototypes */ static const routerstatus_t *router_pick_directory_server_impl( dirinfo_type_t auth, int flags); @@ -56,19 +75,14 @@ static const char *signed_descriptor_get_body_impl( int with_annotations); static void list_pending_downloads(digestmap_t *result, int purpose, const char *prefix); +static void list_pending_fpsk_downloads(fp_pair_map_t *result); static void launch_dummy_descriptor_download_as_needed(time_t now, const or_options_t *options); - -DECLARE_TYPED_DIGESTMAP_FNS(sdmap_, digest_sd_map_t, signed_descriptor_t) -DECLARE_TYPED_DIGESTMAP_FNS(rimap_, digest_ri_map_t, routerinfo_t) -DECLARE_TYPED_DIGESTMAP_FNS(eimap_, digest_ei_map_t, extrainfo_t) -#define SDMAP_FOREACH(map, keyvar, valvar) \ - DIGESTMAP_FOREACH(sdmap_to_digestmap(map), keyvar, signed_descriptor_t *, \ - valvar) -#define RIMAP_FOREACH(map, keyvar, valvar) \ - DIGESTMAP_FOREACH(rimap_to_digestmap(map), keyvar, routerinfo_t *, valvar) -#define EIMAP_FOREACH(map, keyvar, valvar) \ - DIGESTMAP_FOREACH(eimap_to_digestmap(map), keyvar, extrainfo_t *, valvar) +static void download_status_reset_by_sk_in_cl(cert_list_t *cl, + const char *digest); +static int download_status_is_ready_by_sk_in_cl(cert_list_t *cl, + const char *digest, + time_t now, int max_failures); /****************************************************************************/ @@ -78,10 +92,17 @@ static smartlist_t *trusted_dir_servers = NULL; /** List of for a given authority, and download status for latest certificate. */ -typedef struct cert_list_t { - download_status_t dl_status; +struct cert_list_t { + /* + * The keys of download status map are cert->signing_key_digest for pending + * downloads by (identity digest/signing key digest) pair; functions such + * as authority_cert_get_by_digest() already assume these are unique. + */ + struct digest_ds_map_t *dl_status_map; + /* There is also a dlstatus for the download by identity key only */ + download_status_t dl_status_by_id; smartlist_t *certs; -} cert_list_t; +}; /** Map from v3 identity key digest to cert_list_t. */ static digestmap_t *trusted_dir_certs = NULL; /** True iff any key certificate in at least one member of @@ -125,6 +146,72 @@ get_n_authorities(dirinfo_type_t type) return n; } +/** Reset the download status of a specified element in a dsmap */ +static void +download_status_reset_by_sk_in_cl(cert_list_t *cl, const char *digest) +{ + download_status_t *dlstatus = NULL; + + tor_assert(cl); + tor_assert(digest); + + /* Make sure we have a dsmap */ + if (!(cl->dl_status_map)) { + cl->dl_status_map = dsmap_new(); + } + /* Look for a download_status_t in the map with this digest */ + dlstatus = dsmap_get(cl->dl_status_map, digest); + /* Got one? */ + if (!dlstatus) { + /* Insert before we reset */ + dlstatus = tor_malloc_zero(sizeof(*dlstatus)); + dsmap_set(cl->dl_status_map, digest, dlstatus); + } + tor_assert(dlstatus); + /* Go ahead and reset it */ + download_status_reset(dlstatus); +} + +/** + * Return true if the download for this signing key digest in cl is ready + * to be re-attempted. + */ +static int +download_status_is_ready_by_sk_in_cl(cert_list_t *cl, + const char *digest, + time_t now, int max_failures) +{ + int rv = 0; + download_status_t *dlstatus = NULL; + + tor_assert(cl); + tor_assert(digest); + + /* Make sure we have a dsmap */ + if (!(cl->dl_status_map)) { + cl->dl_status_map = dsmap_new(); + } + /* Look for a download_status_t in the map with this digest */ + dlstatus = dsmap_get(cl->dl_status_map, digest); + /* Got one? */ + if (dlstatus) { + /* Use download_status_is_ready() */ + rv = download_status_is_ready(dlstatus, now, max_failures); + } else { + /* + * If we don't know anything about it, return 1, since we haven't + * tried this one before. We need to create a new entry here, + * too. + */ + dlstatus = tor_malloc_zero(sizeof(*dlstatus)); + download_status_reset(dlstatus); + dsmap_set(cl->dl_status_map, digest, dlstatus); + rv = 1; + } + + return rv; +} + #define get_n_v2_authorities() get_n_authorities(V2_DIRINFO) /** Helper: Return the cert_list_t for an authority whose authority ID is @@ -138,8 +225,9 @@ get_cert_list(const char *id_digest) cl = digestmap_get(trusted_dir_certs, id_digest); if (!cl) { cl = tor_malloc_zero(sizeof(cert_list_t)); - cl->dl_status.schedule = DL_SCHED_CONSENSUS; + cl->dl_status_by_id.schedule = DL_SCHED_CONSENSUS; cl->certs = smartlist_new(); + cl->dl_status_map = dsmap_new(); digestmap_set(trusted_dir_certs, id_digest, cl); } return cl; @@ -159,7 +247,9 @@ trusted_dirs_reload_certs(void) tor_free(filename); if (!contents) return 0; - r = trusted_dirs_load_certs_from_string(contents, 1, 1); + r = trusted_dirs_load_certs_from_string( + contents, + TRUSTED_DIRS_CERTS_SRC_FROM_STORE, 1); tor_free(contents); return r; } @@ -182,17 +272,23 @@ already_have_cert(authority_cert_t *cert) } /** Load a bunch of new key certificates from the string contents. If - * from_store is true, the certificates are from the cache, and we - * don't need to flush them to disk. If flush is true, we need - * to flush any changed certificates to disk now. Return 0 on success, -1 - * if any certs fail to parse. */ + * source is TRUSTED_DIRS_CERTS_SRC_FROM_STORE, the certificates are + * from the cache, and we don't need to flush them to disk. If we are a + * dirauth loading our own cert, source is TRUSTED_DIRS_CERTS_SRC_SELF. + * Otherwise, source is download type: TRUSTED_DIRS_CERTS_SRC_DL_BY_ID_DIGEST + * or TRUSTED_DIRS_CERTS_SRC_DL_BY_ID_SK_DIGEST. If flush is true, we + * need to flush any changed certificates to disk now. Return 0 on success, + * -1 if any certs fail to parse. + */ + int -trusted_dirs_load_certs_from_string(const char *contents, int from_store, +trusted_dirs_load_certs_from_string(const char *contents, int source, int flush) { trusted_dir_server_t *ds; const char *s, *eos; int failure_code = 0; + int from_store = (source == TRUSTED_DIRS_CERTS_SRC_FROM_STORE); for (s = contents; *s; s = eos) { authority_cert_t *cert = authority_cert_parse_from_string(s, &eos); @@ -229,7 +325,18 @@ trusted_dirs_load_certs_from_string(const char *contents, int from_store, ds ? ds->nickname : "an old or new authority"); } - authority_cert_dl_failed(cert->cache_info.identity_digest, 404); + /* + * This is where we care about the source; authority_cert_dl_failed() + * needs to know whether the download was by fp or (fp,sk) pair to + * twiddle the right bit in the download map. + */ + if (source == TRUSTED_DIRS_CERTS_SRC_DL_BY_ID_DIGEST) { + authority_cert_dl_failed(cert->cache_info.identity_digest, + NULL, 404); + } else if (source == TRUSTED_DIRS_CERTS_SRC_DL_BY_ID_SK_DIGEST) { + authority_cert_dl_failed(cert->cache_info.identity_digest, + cert->signing_key_digest, 404); + } } authority_cert_free(cert); @@ -445,17 +552,53 @@ authority_cert_get_all(smartlist_t *certs_out) } /** Called when an attempt to download a certificate with the authority with - * ID id_digest fails with HTTP response code status: remember - * the failure, so we don't try again immediately. */ + * ID id_digest and, if not NULL, signed with key signing_key_digest + * fails with HTTP response code status: remember the failure, so we + * don't try again immediately. */ void -authority_cert_dl_failed(const char *id_digest, int status) +authority_cert_dl_failed(const char *id_digest, + const char *signing_key_digest, int status) { cert_list_t *cl; + download_status_t *dlstatus = NULL; + char id_digest_str[2*DIGEST_LEN+1]; + char sk_digest_str[2*DIGEST_LEN+1]; + if (!trusted_dir_certs || !(cl = digestmap_get(trusted_dir_certs, id_digest))) return; - download_status_failed(&cl->dl_status, status); + /* + * Are we noting a failed download of the latest cert for the id digest, + * or of a download by (id, signing key) digest pair? + */ + if (!signing_key_digest) { + /* Just by id digest */ + download_status_failed(&cl->dl_status_by_id, status); + } else { + /* Reset by (id, signing key) digest pair + * + * Look for a download_status_t in the map with this digest + */ + dlstatus = dsmap_get(cl->dl_status_map, signing_key_digest); + /* Got one? */ + if (dlstatus) { + download_status_failed(dlstatus, status); + } else { + /* + * Do this rather than hex_str(), since hex_str clobbers + * old results and we call twice in the param list. + */ + base16_encode(id_digest_str, sizeof(id_digest_str), + id_digest, DIGEST_LEN); + base16_encode(sk_digest_str, sizeof(sk_digest_str), + signing_key_digest, DIGEST_LEN); + log_warn(LD_DIR, + "Got failure for cert fetch with (fp,sk) = (%s,%s), with " + "status %d, but knew nothing about the download.", + id_digest_str, sk_digest_str, status); + } + } } /** Return true iff when we've been getting enough failures when trying to @@ -471,7 +614,7 @@ authority_cert_dl_looks_uncertain(const char *id_digest) !(cl = digestmap_get(trusted_dir_certs, id_digest))) return 0; - n_failures = download_status_get_n_failures(&cl->dl_status); + n_failures = download_status_get_n_failures(&cl->dl_status_by_id); return n_failures >= N_AUTH_CERT_DL_FAILURES_TO_BUG_USER; } @@ -487,20 +630,38 @@ authority_cert_dl_looks_uncertain(const char *id_digest) void authority_certs_fetch_missing(networkstatus_t *status, time_t now) { - digestmap_t *pending; + /* + * The pending_id digestmap tracks pending certificate downloads by + * identity digest; the pending_cert digestmap tracks pending downloads + * by (identity digest, signing key digest) pairs. + */ + digestmap_t *pending_id; + fp_pair_map_t *pending_cert; authority_cert_t *cert; - smartlist_t *missing_digests; + /* + * The missing_id_digests smartlist will hold a list of id digests + * we want to fetch the newest cert for; the missing_cert_digests + * smartlist will hold a list of fp_pair_t with an identity and + * signing key digest. + */ + smartlist_t *missing_cert_digests, *missing_id_digests; char *resource = NULL; cert_list_t *cl; const int cache = directory_caches_unknown_auth_certs(get_options()); + fp_pair_t *fp_tmp = NULL; + char id_digest_str[2*DIGEST_LEN+1]; + char sk_digest_str[2*DIGEST_LEN+1]; if (should_delay_dir_fetches(get_options())) return; - pending = digestmap_new(); - missing_digests = smartlist_new(); + pending_cert = fp_pair_map_new(); + pending_id = digestmap_new(); + missing_cert_digests = smartlist_new(); + missing_id_digests = smartlist_new(); - list_pending_downloads(pending, DIR_PURPOSE_FETCH_CERTIFICATE, "fp/"); + list_pending_downloads(pending_id, DIR_PURPOSE_FETCH_CERTIFICATE, "fp/"); + list_pending_fpsk_downloads(pending_cert); if (status) { SMARTLIST_FOREACH_BEGIN(status->voters, networkstatus_voter_info_t *, voter) { @@ -516,16 +677,43 @@ authority_certs_fetch_missing(networkstatus_t *status, time_t now) sig->signing_key_digest); if (cert) { if (now < cert->expires) - download_status_reset(&cl->dl_status); + download_status_reset_by_sk_in_cl(cl, sig->signing_key_digest); continue; } - if (download_status_is_ready(&cl->dl_status, now, - MAX_CERT_DL_FAILURES) && - !digestmap_get(pending, voter->identity_digest)) { - log_info(LD_DIR, "We're missing a certificate from authority " - "with signing key %s: launching request.", - hex_str(sig->signing_key_digest, DIGEST_LEN)); - smartlist_add(missing_digests, sig->identity_digest); + if (download_status_is_ready_by_sk_in_cl( + cl, sig->signing_key_digest, + now, MAX_CERT_DL_FAILURES) && + !fp_pair_map_get_by_digests(pending_cert, + voter->identity_digest, + sig->signing_key_digest)) { + /* + * Do this rather than hex_str(), since hex_str clobbers + * old results and we call twice in the param list. + */ + base16_encode(id_digest_str, sizeof(id_digest_str), + voter->identity_digest, DIGEST_LEN); + base16_encode(sk_digest_str, sizeof(sk_digest_str), + sig->signing_key_digest, DIGEST_LEN); + + if (voter->nickname) { + log_info(LD_DIR, + "We're missing a certificate from authority %s " + "(ID digest %s) with signing key %s: " + "launching request.", + voter->nickname, id_digest_str, sk_digest_str); + } else { + log_info(LD_DIR, + "We're missing a certificate from authority ID digest " + "%s with signing key %s: launching request.", + id_digest_str, sk_digest_str); + } + + /* Allocate a new fp_pair_t to append */ + fp_tmp = tor_malloc(sizeof(*fp_tmp)); + memcpy(fp_tmp->first, voter->identity_digest, sizeof(fp_tmp->first)); + memcpy(fp_tmp->second, sig->signing_key_digest, + sizeof(fp_tmp->second)); + smartlist_add(missing_cert_digests, fp_tmp); } } SMARTLIST_FOREACH_END(sig); } SMARTLIST_FOREACH_END(voter); @@ -534,60 +722,118 @@ authority_certs_fetch_missing(networkstatus_t *status, time_t now) int found = 0; if (!(ds->type & V3_DIRINFO)) continue; - if (smartlist_digest_isin(missing_digests, ds->v3_identity_digest)) + if (smartlist_digest_isin(missing_id_digests, ds->v3_identity_digest)) continue; cl = get_cert_list(ds->v3_identity_digest); SMARTLIST_FOREACH(cl->certs, authority_cert_t *, cert, { if (now < cert->expires) { /* It's not expired, and we weren't looking for something to * verify a consensus with. Call it done. */ - download_status_reset(&cl->dl_status); + download_status_reset(&(cl->dl_status_by_id)); + /* No sense trying to download it specifically by signing key hash */ + download_status_reset_by_sk_in_cl(cl, cert->signing_key_digest); found = 1; break; } }); if (!found && - download_status_is_ready(&cl->dl_status, now,MAX_CERT_DL_FAILURES) && - !digestmap_get(pending, ds->v3_identity_digest)) { - log_info(LD_DIR, "No current certificate known for authority %s; " - "launching request.", ds->nickname); - smartlist_add(missing_digests, ds->v3_identity_digest); + download_status_is_ready(&(cl->dl_status_by_id), now, + MAX_CERT_DL_FAILURES) && + !digestmap_get(pending_id, ds->v3_identity_digest)) { + log_info(LD_DIR, + "No current certificate known for authority %s " + "(ID digest %s); launching request.", + ds->nickname, hex_str(ds->v3_identity_digest, DIGEST_LEN)); + smartlist_add(missing_id_digests, ds->v3_identity_digest); } } SMARTLIST_FOREACH_END(ds); - if (!smartlist_len(missing_digests)) { - goto done; - } else { + /* Do downloads by identity digest */ + if (smartlist_len(missing_id_digests) > 0) { smartlist_t *fps = smartlist_new(); smartlist_add(fps, tor_strdup("fp/")); - SMARTLIST_FOREACH(missing_digests, const char *, d, { - char *fp; - if (digestmap_get(pending, d)) - continue; - fp = tor_malloc(HEX_DIGEST_LEN+2); - base16_encode(fp, HEX_DIGEST_LEN+1, d, DIGEST_LEN); - fp[HEX_DIGEST_LEN] = '+'; - fp[HEX_DIGEST_LEN+1] = '\0'; - smartlist_add(fps, fp); - }); - if (smartlist_len(fps) == 1) { - /* we didn't add any: they were all pending */ - SMARTLIST_FOREACH(fps, char *, cp, tor_free(cp)); - smartlist_free(fps); - goto done; + + SMARTLIST_FOREACH(missing_id_digests, const char *, d, { + char *fp; + if (digestmap_get(pending_id, d)) + continue; + fp = tor_malloc(HEX_DIGEST_LEN+2); + base16_encode(fp, HEX_DIGEST_LEN+1, d, DIGEST_LEN); + fp[HEX_DIGEST_LEN] = '+'; + fp[HEX_DIGEST_LEN+1] = '\0'; + smartlist_add(fps, fp); + }); + + if (smartlist_len(fps) > 1) { + resource = smartlist_join_strings(fps, "", 0, NULL); + resource[strlen(resource)-1] = '\0'; + directory_get_from_dirserver(DIR_PURPOSE_FETCH_CERTIFICATE, 0, + resource, PDS_RETRY_IF_NO_SERVERS); + tor_free(resource); } - resource = smartlist_join_strings(fps, "", 0, NULL); - resource[strlen(resource)-1] = '\0'; + /* else we didn't add any: they were all pending */ + SMARTLIST_FOREACH(fps, char *, cp, tor_free(cp)); smartlist_free(fps); } - directory_get_from_dirserver(DIR_PURPOSE_FETCH_CERTIFICATE, 0, - resource, PDS_RETRY_IF_NO_SERVERS); - done: - tor_free(resource); - smartlist_free(missing_digests); - digestmap_free(pending, NULL); + /* Do downloads by identity digest/signing key pair */ + if (smartlist_len(missing_cert_digests) > 0) { + smartlist_t *fp_pairs = smartlist_new(); + int need_plus = 0, offset = 0; + + smartlist_add(fp_pairs, tor_strdup("fp-sk/")); + + SMARTLIST_FOREACH_BEGIN(missing_cert_digests, const fp_pair_t *, d) { + char *fp_pair; + + if (fp_pair_map_get(pending_cert, d)) + continue; + + fp_pair = tor_malloc(2*HEX_DIGEST_LEN+3); + offset = 0; + if (need_plus) { + fp_pair[offset++] = '+'; + } else { + /* Prepend a '+' to all but the first in the list */ + need_plus = 1; + } + + /* Encode the first fingerprint */ + base16_encode(fp_pair + offset, HEX_DIGEST_LEN+1, + d->first, DIGEST_LEN); + offset += HEX_DIGEST_LEN; + /* Add a '-' to separate them */ + fp_pair[offset++] = '-'; + /* Encode the second fingerprint */ + base16_encode(fp_pair + offset, HEX_DIGEST_LEN+1, + d->second, DIGEST_LEN); + offset += HEX_DIGEST_LEN; + /* Add a NUL */ + fp_pair[offset++] = '\0'; + + /* Add it to the list of pairs to request */ + smartlist_add(fp_pairs, fp_pair); + } SMARTLIST_FOREACH_END(d); + + if (smartlist_len(fp_pairs) > 1) { + resource = smartlist_join_strings(fp_pairs, "", 0, NULL); + resource[strlen(resource)-1] = '\0'; + directory_get_from_dirserver(DIR_PURPOSE_FETCH_CERTIFICATE, 0, + resource, PDS_RETRY_IF_NO_SERVERS); + tor_free(resource); + } + /* else they were all pending */ + + SMARTLIST_FOREACH(fp_pairs, char *, p, tor_free(p)); + smartlist_free(fp_pairs); + } + + smartlist_free(missing_id_digests); + SMARTLIST_FOREACH(missing_cert_digests, fp_pair_t *, p, tor_free(p)); + smartlist_free(missing_cert_digests); + digestmap_free(pending_id, NULL); + fp_pair_map_free(pending_cert, NULL); } /* Router descriptor storage. @@ -4283,6 +4529,41 @@ list_pending_microdesc_downloads(digestmap_t *result) list_pending_downloads(result, DIR_PURPOSE_FETCH_MICRODESC, "d/"); } +/** For every certificate we are currently downloading by (identity digest, + * signing key digest) pair, set result[fp_pair] to (void *1). + */ +static void +list_pending_fpsk_downloads(fp_pair_map_t *result) +{ + const char *pfx = "fp-sk/"; + smartlist_t *tmp; + smartlist_t *conns; + const char *resource; + + tor_assert(result); + + tmp = smartlist_new(); + conns = get_connection_array(); + + SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn) { + if (conn->type == CONN_TYPE_DIR && + conn->purpose == DIR_PURPOSE_FETCH_CERTIFICATE && + !conn->marked_for_close) { + resource = TO_DIR_CONN(conn)->requested_resource; + if (!strcmpstart(resource, pfx)) + dir_split_resource_into_fingerprint_pairs(resource + strlen(pfx), + tmp); + } + } SMARTLIST_FOREACH_END(conn); + + SMARTLIST_FOREACH_BEGIN(tmp, fp_pair_t *, fp) { + fp_pair_map_set(result, fp, (void*)1); + tor_free(fp); + } SMARTLIST_FOREACH_END(fp); + + smartlist_free(tmp); +} + /** Launch downloads for all the descriptors whose digests or digests256 * are listed as digests[i] for lo <= i < hi. (Lo and hi may be out of * range.) If source is given, download from source; diff --git a/src/or/routerlist.h b/src/or/routerlist.h index 8dcc6eb02..ba6f930a5 100644 --- a/src/or/routerlist.h +++ b/src/or/routerlist.h @@ -13,7 +13,20 @@ int get_n_authorities(dirinfo_type_t type); int trusted_dirs_reload_certs(void); -int trusted_dirs_load_certs_from_string(const char *contents, int from_store, + +/* + * Pass one of these as source to trusted_dirs_load_certs_from_string() + * to indicate whence string originates; this controls error handling + * behavior such as marking downloads as failed. + */ + +#define TRUSTED_DIRS_CERTS_SRC_SELF 0 +#define TRUSTED_DIRS_CERTS_SRC_FROM_STORE 1 +#define TRUSTED_DIRS_CERTS_SRC_DL_BY_ID_DIGEST 2 +#define TRUSTED_DIRS_CERTS_SRC_DL_BY_ID_SK_DIGEST 3 +#define TRUSTED_DIRS_CERTS_SRC_FROM_VOTE 4 + +int trusted_dirs_load_certs_from_string(const char *contents, int source, int flush); void trusted_dirs_flush_certs_to_disk(void); authority_cert_t *authority_cert_get_newest_by_id(const char *id_digest); @@ -21,7 +34,8 @@ authority_cert_t *authority_cert_get_by_sk_digest(const char *sk_digest); authority_cert_t *authority_cert_get_by_digests(const char *id_digest, const char *sk_digest); void authority_cert_get_all(smartlist_t *certs_out); -void authority_cert_dl_failed(const char *id_digest, int status); +void authority_cert_dl_failed(const char *id_digest, + const char *signing_key_digest, int status); void authority_certs_fetch_missing(networkstatus_t *status, time_t now); int router_reload_router_list(void); int authority_cert_dl_looks_uncertain(const char *id_digest); From 7b6ee54bdc96faf1cc72445a6dd7a1130148129c Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Thu, 9 May 2013 08:19:48 -0700 Subject: [PATCH 32/43] Avoid duplicate downloads by (fp,sk) and by fp for authority certs when bootstrapping --- src/or/routerlist.c | 99 ++++++++++++++++++++++++++++++++------------- 1 file changed, 70 insertions(+), 29 deletions(-) diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 20d511025..15a71e47a 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -660,8 +660,57 @@ authority_certs_fetch_missing(networkstatus_t *status, time_t now) missing_cert_digests = smartlist_new(); missing_id_digests = smartlist_new(); + /* + * First, we get the lists of already pending downloads so we don't + * duplicate effort. + */ list_pending_downloads(pending_id, DIR_PURPOSE_FETCH_CERTIFICATE, "fp/"); list_pending_fpsk_downloads(pending_cert); + + /* + * Now, we download any trusted authority certs we don't have by + * identity digest only. This gets the latest cert for that authority. + */ + SMARTLIST_FOREACH_BEGIN(trusted_dir_servers, trusted_dir_server_t *, ds) { + int found = 0; + if (!(ds->type & V3_DIRINFO)) + continue; + if (smartlist_digest_isin(missing_id_digests, ds->v3_identity_digest)) + continue; + cl = get_cert_list(ds->v3_identity_digest); + SMARTLIST_FOREACH_BEGIN(cl->certs, authority_cert_t *, cert) { + if (now < cert->expires) { + /* It's not expired, and we weren't looking for something to + * verify a consensus with. Call it done. */ + download_status_reset(&(cl->dl_status_by_id)); + /* No sense trying to download it specifically by signing key hash */ + download_status_reset_by_sk_in_cl(cl, cert->signing_key_digest); + found = 1; + break; + } + } SMARTLIST_FOREACH_END(cert); + if (!found && + download_status_is_ready(&(cl->dl_status_by_id), now, + MAX_CERT_DL_FAILURES) && + !digestmap_get(pending_id, ds->v3_identity_digest)) { + log_info(LD_DIR, + "No current certificate known for authority %s " + "(ID digest %s); launching request.", + ds->nickname, hex_str(ds->v3_identity_digest, DIGEST_LEN)); + smartlist_add(missing_id_digests, ds->v3_identity_digest); + } + } SMARTLIST_FOREACH_END(ds); + + /* + * Next, if we have a consensus, scan through it and look for anything + * signed with a key from a cert we don't have. Those get downloaded + * by (fp,sk) pair, but if we don't know any certs at all for the fp + * (identity digest), and it's one of the trusted dir server certs + * we started off above or a pending download in pending_id, don't + * try to get it yet. Most likely, the one we'll get for that will + * have the right signing key too, and we'd just be downloading + * redundantly. + */ if (status) { SMARTLIST_FOREACH_BEGIN(status->voters, networkstatus_voter_info_t *, voter) { @@ -671,7 +720,28 @@ authority_certs_fetch_missing(networkstatus_t *status, time_t now) if (!cache && !trusteddirserver_get_by_v3_auth_digest(voter->identity_digest)) continue; /* We are not a cache, and we don't know this authority.*/ + + /* + * If we don't know *any* cert for this authority, and a download by ID + * is pending or we added it to missing_id_digests above, skip this + * one for now to avoid duplicate downloads. + */ cl = get_cert_list(voter->identity_digest); + if (smartlist_len(cl->certs) == 0) { + /* We have no certs at all for this one */ + + /* Do we have a download of one pending? */ + if (digestmap_get(pending_id, voter->identity_digest)) + continue; + + /* + * Are we about to launch a download of one due to the trusted + * dir server check above? + */ + if (smartlist_digest_isin(missing_id_digests, voter->identity_digest)) + continue; + } + SMARTLIST_FOREACH_BEGIN(voter->sigs, document_signature_t *, sig) { cert = authority_cert_get_by_digests(voter->identity_digest, sig->signing_key_digest); @@ -718,35 +788,6 @@ authority_certs_fetch_missing(networkstatus_t *status, time_t now) } SMARTLIST_FOREACH_END(sig); } SMARTLIST_FOREACH_END(voter); } - SMARTLIST_FOREACH_BEGIN(trusted_dir_servers, trusted_dir_server_t *, ds) { - int found = 0; - if (!(ds->type & V3_DIRINFO)) - continue; - if (smartlist_digest_isin(missing_id_digests, ds->v3_identity_digest)) - continue; - cl = get_cert_list(ds->v3_identity_digest); - SMARTLIST_FOREACH(cl->certs, authority_cert_t *, cert, { - if (now < cert->expires) { - /* It's not expired, and we weren't looking for something to - * verify a consensus with. Call it done. */ - download_status_reset(&(cl->dl_status_by_id)); - /* No sense trying to download it specifically by signing key hash */ - download_status_reset_by_sk_in_cl(cl, cert->signing_key_digest); - found = 1; - break; - } - }); - if (!found && - download_status_is_ready(&(cl->dl_status_by_id), now, - MAX_CERT_DL_FAILURES) && - !digestmap_get(pending_id, ds->v3_identity_digest)) { - log_info(LD_DIR, - "No current certificate known for authority %s " - "(ID digest %s); launching request.", - ds->nickname, hex_str(ds->v3_identity_digest, DIGEST_LEN)); - smartlist_add(missing_id_digests, ds->v3_identity_digest); - } - } SMARTLIST_FOREACH_END(ds); /* Do downloads by identity digest */ if (smartlist_len(missing_id_digests) > 0) { From c0d96bae666c1dc0c16b4df69190fa126131aa65 Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Thu, 9 May 2013 08:23:53 -0700 Subject: [PATCH 33/43] Clean up ugly constants in connection_dir_download_cert_failed(), and fix a broken one --- src/or/directory.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/or/directory.c b/src/or/directory.c index 8dd5a7cdc..f65ac87cf 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -803,6 +803,8 @@ connection_dir_bridge_routerdesc_failed(dir_connection_t *conn) static void connection_dir_download_cert_failed(dir_connection_t *conn, int status) { + const char *fp_pfx = "fp/"; + const char *fpsk_pfx = "fp-sk/"; smartlist_t *failed; tor_assert(conn->_base.purpose == DIR_PURPOSE_FETCH_CERTIFICATE); @@ -814,19 +816,20 @@ connection_dir_download_cert_failed(dir_connection_t *conn, int status) * with "fp/") or download by fingerprint/signing key pair * (resource starts with "fp-sk/"). */ - if (!strcmpstart(conn->requested_resource, "fp/")) { + if (!strcmpstart(conn->requested_resource, fp_pfx)) { /* Download by fingerprint case */ - dir_split_resource_into_fingerprints(conn->requested_resource + 3, + dir_split_resource_into_fingerprints(conn->requested_resource + + strlen(fp_pfx), failed, NULL, DSR_HEX); SMARTLIST_FOREACH_BEGIN(failed, char *, cp) { /* Null signing key digest indicates download by fp only */ authority_cert_dl_failed(cp, NULL, status); tor_free(cp); } SMARTLIST_FOREACH_END(cp); - } else if (!strcmpstart(conn->requested_resource, "fp-sk/")) { + } else if (!strcmpstart(conn->requested_resource, fpsk_pfx)) { /* Download by (fp,sk) pairs */ - dir_split_resource_into_fingerprint_pairs(conn->requested_resource + 5, - failed); + dir_split_resource_into_fingerprint_pairs(conn->requested_resource + + strlen(fpsk_pfx), failed); SMARTLIST_FOREACH_BEGIN(failed, fp_pair_t *, cp) { authority_cert_dl_failed(cp->first, cp->second, status); tor_free(cp); From 2824bf3445448fee55a0f302d7ec85a5915e8f18 Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Thu, 9 May 2013 09:31:39 -0700 Subject: [PATCH 34/43] Use tor_asprintf() and clean up string handling in authority_certs_fetch_missing() --- src/or/routerlist.c | 58 +++++++++++++++++++++++---------------------- 1 file changed, 30 insertions(+), 28 deletions(-) diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 15a71e47a..867740020 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -791,23 +791,33 @@ authority_certs_fetch_missing(networkstatus_t *status, time_t now) /* Do downloads by identity digest */ if (smartlist_len(missing_id_digests) > 0) { + int need_plus = 0; smartlist_t *fps = smartlist_new(); + smartlist_add(fps, tor_strdup("fp/")); - SMARTLIST_FOREACH(missing_id_digests, const char *, d, { - char *fp; + SMARTLIST_FOREACH_BEGIN(missing_id_digests, const char *, d) { + char *fp = NULL; + if (digestmap_get(pending_id, d)) continue; - fp = tor_malloc(HEX_DIGEST_LEN+2); - base16_encode(fp, HEX_DIGEST_LEN+1, d, DIGEST_LEN); - fp[HEX_DIGEST_LEN] = '+'; - fp[HEX_DIGEST_LEN+1] = '\0'; + + base16_encode(id_digest_str, sizeof(id_digest_str), + d, DIGEST_LEN); + + if (need_plus) { + tor_asprintf(&fp, "+%s", id_digest_str); + } else { + /* No need for tor_asprintf() in this case; first one gets no '+' */ + fp = tor_strdup(id_digest_str); + need_plus = 1; + } + smartlist_add(fps, fp); - }); + } SMARTLIST_FOREACH_END(d); if (smartlist_len(fps) > 1) { resource = smartlist_join_strings(fps, "", 0, NULL); - resource[strlen(resource)-1] = '\0'; directory_get_from_dirserver(DIR_PURPOSE_FETCH_CERTIFICATE, 0, resource, PDS_RETRY_IF_NO_SERVERS); tor_free(resource); @@ -820,46 +830,38 @@ authority_certs_fetch_missing(networkstatus_t *status, time_t now) /* Do downloads by identity digest/signing key pair */ if (smartlist_len(missing_cert_digests) > 0) { + int need_plus = 0; smartlist_t *fp_pairs = smartlist_new(); - int need_plus = 0, offset = 0; smartlist_add(fp_pairs, tor_strdup("fp-sk/")); SMARTLIST_FOREACH_BEGIN(missing_cert_digests, const fp_pair_t *, d) { - char *fp_pair; + char *fp_pair = NULL; if (fp_pair_map_get(pending_cert, d)) continue; - fp_pair = tor_malloc(2*HEX_DIGEST_LEN+3); - offset = 0; + /* Construct string encodings of the digests */ + base16_encode(id_digest_str, sizeof(id_digest_str), + d->first, DIGEST_LEN); + base16_encode(sk_digest_str, sizeof(sk_digest_str), + d->second, DIGEST_LEN); + + /* Now tor_asprintf() */ if (need_plus) { - fp_pair[offset++] = '+'; + tor_asprintf(&fp_pair, "+%s-%s", id_digest_str, sk_digest_str); } else { - /* Prepend a '+' to all but the first in the list */ + /* First one in the list doesn't get a '+' */ + tor_asprintf(&fp_pair, "%s-%s", id_digest_str, sk_digest_str); need_plus = 1; } - /* Encode the first fingerprint */ - base16_encode(fp_pair + offset, HEX_DIGEST_LEN+1, - d->first, DIGEST_LEN); - offset += HEX_DIGEST_LEN; - /* Add a '-' to separate them */ - fp_pair[offset++] = '-'; - /* Encode the second fingerprint */ - base16_encode(fp_pair + offset, HEX_DIGEST_LEN+1, - d->second, DIGEST_LEN); - offset += HEX_DIGEST_LEN; - /* Add a NUL */ - fp_pair[offset++] = '\0'; - /* Add it to the list of pairs to request */ smartlist_add(fp_pairs, fp_pair); } SMARTLIST_FOREACH_END(d); if (smartlist_len(fp_pairs) > 1) { resource = smartlist_join_strings(fp_pairs, "", 0, NULL); - resource[strlen(resource)-1] = '\0'; directory_get_from_dirserver(DIR_PURPOSE_FETCH_CERTIFICATE, 0, resource, PDS_RETRY_IF_NO_SERVERS); tor_free(resource); From 17692b2fe2f9fd7c33461c981b8d2eb511976758 Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Thu, 9 May 2013 09:33:32 -0700 Subject: [PATCH 35/43] Make warning in authority_cert_dl_failed() LD_BUG per NickM code review --- src/or/routerlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 867740020..14c44ec91 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -593,7 +593,7 @@ authority_cert_dl_failed(const char *id_digest, id_digest, DIGEST_LEN); base16_encode(sk_digest_str, sizeof(sk_digest_str), signing_key_digest, DIGEST_LEN); - log_warn(LD_DIR, + log_warn(LD_BUG, "Got failure for cert fetch with (fp,sk) = (%s,%s), with " "status %d, but knew nothing about the download.", id_digest_str, sk_digest_str, status); From ac73ceb72858da1b77406988036b15362111b8a1 Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Thu, 9 May 2013 09:41:50 -0700 Subject: [PATCH 36/43] Rephrase comment in trusted_dirs_load_certs_from_string() to reflect 5595 fix --- src/or/routerlist.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 14c44ec91..aa1660f30 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -309,9 +309,13 @@ trusted_dirs_load_certs_from_string(const char *contents, int source, from_store ? "cached" : "downloaded", ds ? ds->nickname : "an old or new authority"); - /* a duplicate on a download should be treated as a failure, since it - * probably means we wanted a different secret key or we are trying to - * replace an expired cert that has not in fact been updated. */ + /* + * A duplicate on download should be treated as a failure, so we call + * authority_cert_dl_failed() to reset the download status to make sure + * we can't try again. Since we've implemented the fp-sk mechanism + * to download certs by signing key, this should be much rarer than it + * was and is perhaps cause for concern. + */ if (!from_store) { if (authdir_mode(get_options())) { log_warn(LD_DIR, From 54f41d68e9e30ccd0ebd84a3f8e913ea9e923cfd Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Thu, 9 May 2013 10:51:48 -0700 Subject: [PATCH 37/43] Add some unit tests for fp_pair_map_t to test/containers.c based on the strmap tests --- src/test/test_containers.c | 84 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) diff --git a/src/test/test_containers.c b/src/test/test_containers.c index 45898df4e..5fee5c9a6 100644 --- a/src/test/test_containers.c +++ b/src/test/test_containers.c @@ -5,6 +5,7 @@ #include "orconfig.h" #include "or.h" +#include "fp_pair.h" #include "test.h" /** Helper: return a tristate based on comparing the strings in *a and @@ -782,6 +783,88 @@ test_container_order_functions(void) ; } +/** Run unit tests for fp_pair-to-void* map functions */ +static void +test_container_fp_pair_map(void) +{ + fp_pair_map_t *map; + fp_pair_t fp1, fp2, fp3, fp4, fp5, fp6; + void *v; + fp_pair_map_iter_t *iter; + fp_pair_t k; + + map = fp_pair_map_new(); + test_assert(map); + test_eq(fp_pair_map_size(map), 0); + test_assert(fp_pair_map_isempty(map)); + + memset(fp1.first, 0x11, DIGEST_LEN); + memset(fp1.second, 0x12, DIGEST_LEN); + memset(fp2.first, 0x21, DIGEST_LEN); + memset(fp2.second, 0x22, DIGEST_LEN); + memset(fp3.first, 0x31, DIGEST_LEN); + memset(fp3.second, 0x32, DIGEST_LEN); + memset(fp4.first, 0x41, DIGEST_LEN); + memset(fp4.second, 0x42, DIGEST_LEN); + memset(fp5.first, 0x51, DIGEST_LEN); + memset(fp5.second, 0x52, DIGEST_LEN); + memset(fp6.first, 0x61, DIGEST_LEN); + memset(fp6.second, 0x62, DIGEST_LEN); + + v = fp_pair_map_set(map, &fp1, (void*)99); + test_eq(v, NULL); + test_assert(!fp_pair_map_isempty(map)); + v = fp_pair_map_set(map, &fp2, (void*)101); + test_eq(v, NULL); + v = fp_pair_map_set(map, &fp1, (void*)100); + test_eq(v, (void*)99); + test_eq_ptr(fp_pair_map_get(map, &fp1), (void*)100); + test_eq_ptr(fp_pair_map_get(map, &fp2), (void*)101); + test_eq_ptr(fp_pair_map_get(map, &fp3), NULL); + fp_pair_map_assert_ok(map); + + v = fp_pair_map_remove(map, &fp2); + fp_pair_map_assert_ok(map); + test_eq_ptr(v, (void*)101); + test_eq_ptr(fp_pair_map_get(map, &fp2), NULL); + test_eq_ptr(fp_pair_map_remove(map, &fp2), NULL); + + fp_pair_map_set(map, &fp2, (void*)101); + fp_pair_map_set(map, &fp3, (void*)102); + fp_pair_map_set(map, &fp4, (void*)103); + test_eq(fp_pair_map_size(map), 4); + fp_pair_map_assert_ok(map); + fp_pair_map_set(map, &fp5, (void*)104); + fp_pair_map_set(map, &fp6, (void*)105); + fp_pair_map_assert_ok(map); + + /* Test iterator. */ + iter = fp_pair_map_iter_init(map); + while (!fp_pair_map_iter_done(iter)) { + fp_pair_map_iter_get(iter, &k, &v); + test_eq_ptr(v, fp_pair_map_get(map, &k)); + + if (tor_memeq(&fp2, &k, sizeof(fp2))) { + iter = fp_pair_map_iter_next_rmv(map, iter); + } else { + iter = fp_pair_map_iter_next(map, iter); + } + } + + /* Make sure we removed fp2, but not the others. */ + test_eq_ptr(fp_pair_map_get(map, &fp2), NULL); + test_eq_ptr(fp_pair_map_get(map, &fp5), (void*)104); + + fp_pair_map_assert_ok(map); + /* Clean up after ourselves. */ + fp_pair_map_free(map, NULL); + map = NULL; + + done: + if (map) + fp_pair_map_free(map, NULL); +} + #define CONTAINER_LEGACY(name) \ { #name, legacy_test_helper, 0, &legacy_setup, test_container_ ## name } @@ -796,6 +879,7 @@ struct testcase_t container_tests[] = { CONTAINER_LEGACY(strmap), CONTAINER_LEGACY(pqueue), CONTAINER_LEGACY(order_functions), + CONTAINER_LEGACY(fp_pair_map), END_OF_TESTCASES }; From f8053179c972130482b70f62695ad0b0265e377d Mon Sep 17 00:00:00 2001 From: Karsten Loesing Date: Mon, 13 May 2013 15:37:43 +0200 Subject: [PATCH 38/43] Update to the May 2013 GeoIP database. --- changes/geoip-may2013 | 3 + src/config/geoip | 20373 ++++++++++++++++++++-------------------- 2 files changed, 10221 insertions(+), 10155 deletions(-) create mode 100644 changes/geoip-may2013 diff --git a/changes/geoip-may2013 b/changes/geoip-may2013 new file mode 100644 index 000000000..ff4b98f22 --- /dev/null +++ b/changes/geoip-may2013 @@ -0,0 +1,3 @@ + o Minor features: + - Update to the May 9 2013 Maxmind GeoLite Country database. + diff --git a/src/config/geoip b/src/config/geoip index da6c3eb8b..5eba95b16 100644 --- a/src/config/geoip +++ b/src/config/geoip @@ -1,4 +1,4 @@ -# Last updated based on April 3 2013 Maxmind GeoLite Country +# Last updated based on May 9 2013 Maxmind GeoLite Country # Visit the following URL for details on the conversion: # https://gitweb.torproject.org/tor.git/blob/HEAD:/src/config/README.geoip 16777216,16777471,AU @@ -183,7 +183,9 @@ 49807360,50331647,SE 50331648,57083940,US 57083941,57083941,BE -57083942,68259583,US +57083942,68257567,US +68257568,68257599,CA +68257600,68259583,US 68259584,68259599,CA 68259600,68296775,US 68296776,68296783,MX @@ -199,7 +201,9 @@ 68438288,68438303,CA 68438304,68649143,US 68649144,68649151,CA -68649152,69156927,US +68649152,68965375,US +68965376,68965631,CA +68965632,69156927,US 69156928,69156935,US 69156936,69533951,US 69533952,69534207,CA @@ -251,7 +255,9 @@ 71667657,71667657,NL 71667658,71670208,US 71670209,71670209,NL -71670210,72348895,US +71670210,72303007,US +72303008,72303039,CA +72303040,72348895,US 72348896,72348927,CA 72348928,83886079,US 83886080,83951615,SY @@ -300,30 +306,22 @@ 84545536,84549631,GB 84549632,84551679,GE 84551680,84557823,DE -84557824,84557825,NL -84557826,84557827,RU +84557824,84557827,NL 84557828,84557831,SG 84557832,84557839,CA 84557840,84557887,US 84557888,84557951,BG 84557952,84557967,AU -84557968,84557991,US +84557968,84557983,US +84557984,84557991,NL 84557992,84557999,IT 84558000,84558015,US 84558016,84558047,JO 84558048,84558055,NL -84558056,84558127,US -84558128,84558143,RU -84558144,84558175,NL -84558176,84558191,US -84558192,84558207,HU -84558208,84558223,NL -84558224,84558239,US -84558240,84558271,TR -84558272,84558303,US -84558304,84558311,NO -84558312,84558319,NL -84558320,84558335,TR +84558056,84558063,US +84558064,84558071,NL +84558072,84558079,SA +84558080,84558335,GB 84558336,84558375,US 84558376,84558383,GR 84558384,84558415,US @@ -331,15 +329,13 @@ 84558424,84558431,IT 84558432,84558511,US 84558512,84558519,GB -84558520,84558527,US -84558528,84558543,SA +84558520,84558543,US 84558544,84558551,LV 84558552,84558559,AF 84558560,84558567,GR 84558568,84558575,BZ 84558576,84558583,RO -84558584,84558591,US -84558592,84558855,NL +84558584,84558855,NL 84558856,84558863,US 84558864,84558871,NL 84558872,84558879,IN @@ -358,8 +354,7 @@ 84558948,84558951,US 84558952,84558959,NL 84558960,84558971,US -84558972,84558973,RU -84558974,84558975,NL +84558972,84558975,NL 84558976,84559007,US 84559008,84559015,TH 84559016,84559023,BR @@ -369,7 +364,7 @@ 84559072,84559079,IT 84559080,84559095,US 84559096,84559099,LB -84559100,84559103,RU +84559100,84559103,NL 84559104,84559111,IT 84559112,84559119,AE 84559120,84559131,SY @@ -383,13 +378,12 @@ 84559184,84559191,US 84559192,84559199,GB 84559200,84559211,IN -84559212,84559215,TR +84559212,84559215,NL 84559216,84559223,JP 84559224,84559231,UA 84559232,84559247,NL 84559248,84559251,GB -84559252,84559253,MA -84559254,84559255,NL +84559252,84559255,NL 84559256,84559259,AE 84559260,84559263,NL 84559264,84559271,ES @@ -401,23 +395,22 @@ 84559328,84559335,US 84559336,84559343,TR 84559344,84559351,SA -84559352,84559367,US +84559352,84559359,NL +84559360,84559367,US 84559368,84559375,GB 84559376,84559383,SG -84559384,84559399,US +84559384,84559391,US +84559392,84559399,JO 84559400,84559403,CN -84559404,84559405,RU -84559406,84559407,NL +84559404,84559407,NL 84559408,84559415,US 84559416,84559419,RU -84559420,84559421,VG -84559422,84559423,NL +84559420,84559423,NL 84559424,84559431,LB -84559432,84559439,GB +84559432,84559439,NL 84559440,84559447,CN 84559448,84559455,GB -84559456,84559457,NL -84559458,84559459,MA +84559456,84559459,NL 84559460,84559463,GB 84559464,84559471,US 84559472,84559479,QA @@ -429,21 +422,21 @@ 84559520,84559527,ES 84559528,84559535,FI 84559536,84559543,NL -84559544,84559567,US -84559568,84559575,DE +84559544,84559559,US +84559560,84559567,MX +84559568,84559575,US 84559576,84559583,NL -84559584,84559591,US +84559584,84559591,MA 84559592,84559607,AU 84559608,84559611,PL -84559612,84559613,RU -84559614,84559615,NL +84559612,84559615,NL 84559616,84559623,AE 84559624,84559631,MA 84559632,84559647,NL 84559648,84559663,US 84559664,84559679,NL 84559680,84559711,US -84559712,84559719,NL +84559712,84559719,PK 84559720,84559727,US 84559728,84559735,NL 84559736,84559743,GB @@ -457,12 +450,12 @@ 84559864,84559867,ES 84559868,84559879,NL 84559880,84559887,GR -84559888,84559895,GB +84559888,84559895,CN 84559896,84559903,SE 84559904,84559919,NL 84559920,84559935,US 84559936,84559943,MA -84559944,84559951,US +84559944,84559951,PK 84559952,84559967,CN 84559968,84559999,US 84560000,84560007,NL @@ -473,7 +466,8 @@ 84560048,84560055,BD 84560056,84560063,NL 84560064,84560095,SE -84560096,84560111,NL +84560096,84560103,NL +84560104,84560111,RU 84560112,84560119,ES 84560120,84560127,AE 84560128,84560135,US @@ -482,7 +476,7 @@ 84560152,84560159,IN 84560160,84560207,US 84560208,84560223,JO -84560224,84560239,AE +84560224,84560239,NL 84560240,84560255,GB 84560256,84560263,KW 84560264,84560271,CY @@ -497,7 +491,7 @@ 84560368,84560375,US 84560376,84560383,AE 84560384,84560391,IL -84560392,84560399,NL +84560392,84560399,LT 84560400,84560407,BZ 84560408,84560415,AU 84560416,84560423,TR @@ -505,9 +499,9 @@ 84560544,84560551,IL 84560552,84560559,US 84560560,84560567,JP -84560568,84560575,AU +84560568,84560575,US 84560576,84560607,CN -84560608,84560623,NL +84560608,84560623,US 84560624,84560631,SE 84560632,84560635,SA 84560636,84560639,US @@ -521,12 +515,12 @@ 84560800,84560815,TR 84560816,84560823,US 84560824,84560827,RU -84560828,84560847,US -84560848,84560855,NL +84560828,84560855,US 84560856,84560859,IN 84560860,84560863,US 84560864,84560879,CN -84560880,84560895,US +84560880,84560887,US +84560888,84560895,NL 84560896,84560903,PT 84560904,84560911,SG 84560912,84560919,US @@ -543,7 +537,7 @@ 84561040,84561047,US 84561048,84561051,GB 84561052,84561055,ES -84561056,84561063,RU +84561056,84561063,US 84561064,84561079,GB 84561080,84561087,US 84561088,84561095,NL @@ -569,24 +563,25 @@ 84561388,84561391,ES 84561392,84561399,KW 84561400,84561407,MC -84561408,84561431,US +84561408,84561415,SA +84561416,84561431,US 84561432,84561435,NL 84561436,84561443,US 84561444,84561447,IE 84561448,84561455,NL -84561456,84561463,US +84561456,84561463,EG 84561464,84561471,GB 84561472,84561479,US 84561480,84561483,RU 84561484,84561487,CA 84561488,84561495,US -84561496,84561503,ES +84561496,84561503,GR 84561504,84561519,US 84561520,84561527,EE 84561528,84561543,US 84561544,84561551,CA 84561552,84561559,YE -84561560,84561567,NL +84561560,84561567,RU 84561568,84561631,US 84561632,84561639,NL 84561640,84561647,ES @@ -600,8 +595,10 @@ 84561728,84561791,US 84561792,84561903,NL 84561904,84561911,CN -84561912,84561919,US -84561920,84562431,NL +84561912,84561939,US +84561940,84561943,NL +84561944,84561951,US +84561952,84562431,NL 84562432,84562439,MA 84562440,84562447,NL 84562448,84562455,US @@ -640,9 +637,7 @@ 84562928,84562939,US 84562940,84562943,GB 84562944,84562951,DK -84562952,84562953,NL -84562954,84562955,RU -84562956,84562959,NL +84562952,84562959,NL 84562960,84562963,SE 84562964,84562975,NL 84562976,84562983,ES @@ -652,24 +647,21 @@ 84563008,84563011,TR 84563012,84563015,RU 84563016,84563019,US -84563020,84563021,RU -84563022,84563023,NL +84563020,84563023,NL 84563024,84563031,US 84563032,84563035,GB -84563036,84563037,MA -84563038,84563039,HK +84563036,84563039,NL 84563040,84563043,TR 84563044,84563047,NL 84563048,84563055,CN 84563056,84563063,GB 84563064,84563067,RO -84563068,84563071,KR +84563068,84563071,US 84563072,84563087,NL 84563088,84563095,SE 84563096,84563103,AU 84563104,84563111,CH -84563112,84563115,RU -84563116,84563123,NL +84563112,84563123,NL 84563124,84563127,AE 84563128,84563135,GB 84563136,84563143,LT @@ -679,8 +671,7 @@ 84563168,84563175,IL 84563176,84563183,NL 84563184,84563195,CA -84563196,84563197,RU -84563198,84563199,NL +84563196,84563199,NL 84563200,84563207,CH 84563208,84563211,CN 84563212,84563215,TR @@ -714,8 +705,8 @@ 84563488,84563495,AU 84563496,84563503,EG 84563504,84563511,CN -84563512,84563517,AU -84563518,84563519,NL +84563512,84563515,AU +84563516,84563519,NL 84563520,84563527,IN 84563528,84563531,CN 84563532,84563535,NL @@ -725,16 +716,14 @@ 84563576,84563583,AU 84563584,84563591,GB 84563592,84563595,RU -84563596,84563597,IN -84563598,84563599,AU +84563596,84563599,NL 84563600,84563615,DK 84563616,84563623,CN 84563624,84563627,NL 84563628,84563631,GB 84563632,84563639,US 84563640,84563647,NL -84563648,84563655,US -84563656,84563663,EG +84563648,84563663,US 84563664,84563671,SA 84563672,84563679,NL 84563680,84563683,US @@ -742,46 +731,36 @@ 84563688,84563691,AE 84563692,84563695,GB 84563696,84563703,KW -84563704,84563715,NL +84563704,84563711,US +84563712,84563715,NL 84563716,84563719,GB 84563720,84563727,RO 84563728,84563731,US 84563732,84563735,NL 84563736,84563743,CA 84563744,84563751,GB -84563752,84563807,US +84563752,84563759,NL +84563760,84563807,US 84563808,84563815,CN 84563816,84563823,NL 84563824,84563839,US 84563840,84563847,CN 84563848,84563851,IN -84563852,84563853,EG -84563854,84563855,NL +84563852,84563855,NL 84563856,84563863,US -84563864,84563865,NL -84563866,84563867,SA +84563864,84563867,NL 84563868,84563871,FI -84563872,84563875,NL +84563872,84563875,AU 84563876,84563879,RU 84563880,84563887,GB 84563888,84563895,US -84563896,84563903,NL -84563904,84563905,US -84563906,84563907,NL -84563908,84563911,RU +84563896,84563911,NL 84563912,84563915,GB -84563916,84563917,US -84563918,84563919,AE -84563920,84563927,NL +84563916,84563927,NL 84563928,84563943,ES -84563944,84563951,US -84563952,84563953,AE -84563954,84563955,NL -84563956,84563957,CN -84563958,84563959,NL +84563944,84563959,NL 84563960,84563963,GB -84563964,84563965,BZ -84563966,84563967,NL +84563964,84563967,NL 84563968,84563975,US 84563976,84563979,GB 84563980,84563983,NL @@ -819,8 +798,7 @@ 84564312,84564319,US 84564320,84564327,MA 84564328,84564331,DE -84564332,84564333,NL -84564334,84564335,US +84564332,84564335,NL 84564336,84564343,IL 84564344,84564359,TR 84564360,84564367,NL @@ -971,12 +949,9 @@ 84566248,84566271,IN 84566272,84566279,US 84566280,84566287,BZ -84566288,84566289,US -84566290,84566291,NL -84566292,84566293,US -84566294,84566295,NL -84566296,84566301,US -84566302,84566303,NL +84566288,84566295,NL +84566296,84566299,US +84566300,84566303,NL 84566304,84566311,GB 84566312,84566319,NL 84566320,84566327,US @@ -989,9 +964,7 @@ 84566368,84566387,US 84566388,84566391,NL 84566392,84566423,US -84566424,84566427,NL -84566428,84566429,US -84566430,84566431,NL +84566424,84566431,NL 84566432,84566439,CN 84566440,84566447,US 84566448,84566455,LT @@ -1133,7 +1106,7 @@ 84568888,84568895,RU 84568896,84568911,NL 84568912,84568919,CN -84568920,84568927,PA +84568920,84568927,NL 84568928,84568935,QA 84568936,84568943,IT 84568944,84568959,MX @@ -1280,8 +1253,7 @@ 84570744,84570751,SA 84570752,84570767,NL 84570768,84570771,SA -84570772,84570773,AE -84570774,84570775,NL +84570772,84570775,NL 84570776,84570779,GB 84570780,84570783,NL 84570784,84570791,IT @@ -1306,13 +1278,11 @@ 84570980,84570991,IN 84570992,84570999,US 84571000,84571007,IL -84571008,84571009,US -84571010,84571011,NL +84571008,84571011,NL 84571012,84571047,US 84571048,84571055,JO -84571056,84571073,US -84571074,84571075,GB -84571076,84571079,NL +84571056,84571071,US +84571072,84571079,NL 84571080,84571087,BR 84571088,84571103,GB 84571104,84571111,MA @@ -1328,11 +1298,11 @@ 84571200,84571207,US 84571208,84571215,HR 84571216,84571219,DK -84571220,84571223,PA +84571220,84571223,NL 84571224,84571231,PL 84571232,84571247,CN -84571248,84571261,AU -84571262,84571263,NL +84571248,84571259,AU +84571260,84571263,NL 84571264,84571295,US 84571296,84571303,AU 84571304,84571311,HU @@ -1344,8 +1314,7 @@ 84571360,84571367,UA 84571368,84571383,TR 84571384,84571387,MA -84571388,84571389,IN -84571390,84571391,KR +84571388,84571391,NL 84571392,84571407,BR 84571408,84571415,RU 84571416,84571419,BR @@ -1469,12 +1438,10 @@ 84572696,84572703,RU 84572704,84572711,US 84572712,84572715,GB -84572716,84572717,HR -84572718,84572719,NL +84572716,84572719,NL 84572720,84572727,CA 84572728,84572731,US -84572732,84572733,SA -84572734,84572735,NL +84572732,84572735,NL 84572736,84572743,EG 84572744,84572751,GB 84572752,84572759,HR @@ -1501,8 +1468,8 @@ 84572924,84573183,NL 84573184,84573191,BE 84573192,84573199,NL -84573200,84573211,US -84573212,84573215,NL +84573200,84573207,US +84573208,84573215,NL 84573216,84573231,TR 84573232,84573239,US 84573240,84573247,FR @@ -1527,8 +1494,7 @@ 84573472,84573479,PS 84573480,84573495,NL 84573496,84573499,AE -84573500,84573501,HK -84573502,84573511,NL +84573500,84573511,NL 84573512,84573515,HK 84573516,84573519,NL 84573520,84573571,US @@ -1551,10 +1517,7 @@ 84573660,84573675,US 84573676,84573679,NL 84573680,84573687,HR -84573688,84573691,NL -84573692,84573693,RO -84573694,84573697,NL -84573698,84573699,US +84573688,84573699,NL 84573700,84573703,RU 84573704,84573711,IT 84573712,84573727,AE @@ -1563,7 +1526,7 @@ 84573824,84573839,HR 84573840,84573855,GB 84573856,84573887,AE -84573888,84573919,PA +84573888,84573919,NL 84573920,84573927,BR 84573928,84573951,RU 84573952,84573983,RO @@ -1613,10 +1576,14 @@ 85362688,85364735,GB 85364736,85365767,DE 85365768,85365775,CH -85365776,85366015,DE +85365776,85365791,DE +85365792,85365823,LU +85365824,85366015,DE 85366016,85366271,LU 85366272,85366783,DE -85366784,85367807,CZ +85366784,85367295,CZ +85367296,85367551,SK +85367552,85367807,CZ 85367808,85368831,UA 85368832,85377023,RS 85377024,85385215,IR @@ -1631,7 +1598,8 @@ 85395744,85395775,NG 85395776,85396479,EU 85396480,85397503,ES -85397504,85401599,EU +85397504,85397511,TR +85397512,85401599,EU 85401600,85403647,IT 85403648,85405695,FR 85405696,85407743,RU @@ -1696,17 +1664,16 @@ 86441984,86442239,PL 86442240,86442243,GB 86442244,86442247,PL -86442248,86442255,GB +86442248,86442255,FR 86442256,86442271,PL 86442272,86442287,FR 86442288,86442291,PL 86442292,86442295,GB -86442296,86442303,DE -86442304,86442319,FR +86442296,86442319,FR 86442320,86442327,PL 86442328,86442335,FR 86442336,86442343,PT -86442344,86442351,GB +86442344,86442351,IE 86442352,86442363,FR 86442364,86442367,PL 86442368,86442415,FR @@ -1720,10 +1687,7 @@ 86442508,86442511,PL 86442512,86442527,FR 86442528,86442543,ES -86442544,86442551,FR -86442552,86442555,PL -86442556,86442559,ES -86442560,86442599,FR +86442544,86442599,FR 86442600,86442603,ES 86442604,86442623,FR 86442624,86442639,CH @@ -1731,51 +1695,53 @@ 86442656,86442663,CZ 86442664,86442667,FR 86442668,86442671,IT -86442672,86442687,FI +86442672,86442687,DE 86442688,86442691,GB 86442692,86442695,FR 86442696,86442699,ES 86442700,86442703,CH 86442704,86442711,FR 86442712,86442715,DE -86442716,86442719,BE +86442716,86442719,IT 86442720,86442723,PT 86442724,86442727,PL 86442728,86442735,IT -86442736,86442739,PL +86442736,86442739,FR 86442740,86442743,GB 86442744,86442747,IE 86442748,86442751,GB 86442752,86443039,FR 86443040,86443047,IT -86443048,86443051,IE -86443052,86443055,PL +86443048,86443055,FR 86443056,86443059,GB 86443060,86443063,PL 86443064,86443067,DE 86443068,86443135,FR 86443136,86443167,NL -86443168,86443199,PT -86443200,86443231,IT -86443232,86443295,PT -86443296,86443327,FR +86443168,86443295,FR +86443296,86443311,DE +86443312,86443327,FR 86443328,86443343,PL 86443344,86443359,IT -86443360,86443375,FR +86443360,86443363,FR +86443364,86443367,LT +86443368,86443375,FR 86443376,86443391,NL -86443392,86443407,FR -86443408,86443415,PL +86443392,86443415,FR 86443416,86443423,PT 86443424,86443427,IT -86443428,86443435,FR +86443428,86443431,NL +86443432,86443435,FR 86443436,86443439,CH 86443440,86443447,FR 86443448,86443451,IT 86443452,86443455,FI 86443456,86443487,NL -86443488,86443503,ES +86443488,86443503,FR 86443504,86443507,IT -86443508,86443539,FR +86443508,86443519,FR +86443520,86443535,IE +86443536,86443539,FR 86443540,86443543,PL 86443544,86443555,FR 86443556,86443559,PL @@ -1784,8 +1750,7 @@ 86443648,86443855,FR 86443856,86443863,PT 86443864,86443867,PL -86443868,86443871,FR -86443872,86443875,FI +86443868,86443875,FR 86443876,86443879,IE 86443880,86443883,FR 86443884,86443887,ES @@ -1797,33 +1762,30 @@ 86443980,86443983,FR 86443984,86443995,ES 86443996,86443999,PT -86444000,86444003,GB +86444000,86444003,FR 86444004,86444007,ES 86444008,86444011,FR 86444012,86444015,PL -86444016,86444031,FR -86444032,86444035,PT -86444036,86444039,BE -86444040,86444043,FR +86444016,86444043,FR 86444044,86444047,ES -86444048,86444063,LT +86444048,86444063,IE 86444064,86444071,IT 86444072,86444079,DE 86444080,86444095,FR 86444096,86444103,GB 86444104,86444111,FR 86444112,86444119,GB -86444120,86444123,FR +86444120,86444123,LT 86444124,86444127,BE -86444128,86444135,FR -86444136,86444143,IE +86444128,86444143,FR 86444144,86444151,GB 86444152,86444159,IE 86444160,86444303,FR 86444304,86444307,PL 86444308,86444315,FR 86444316,86444319,PL -86444320,86444327,ES +86444320,86444323,ES +86444324,86444327,FR 86444328,86444331,NL 86444332,86444335,ES 86444336,86444351,GB @@ -1835,68 +1797,60 @@ 86444400,86444415,ES 86444416,86444479,FR 86444480,86444487,IE -86444488,86444495,CH -86444496,86444515,FR +86444488,86444491,CH +86444492,86444515,FR 86444516,86444523,GB 86444524,86444527,FR 86444528,86444543,PL -86444544,86444547,FR -86444548,86444551,PL -86444552,86444559,FR +86444544,86444559,FR 86444560,86444567,PL 86444568,86444571,LT 86444572,86444583,FR 86444584,86444591,NL 86444592,86444595,PT 86444596,86444599,NL -86444600,86444603,IE +86444600,86444603,FR 86444604,86444639,NL 86444640,86444655,PL 86444656,86444663,ES 86444664,86444687,PL -86444688,86444691,GB -86444692,86444695,FR +86444688,86444695,FR 86444696,86444703,PL -86444704,86444719,FR -86444720,86444739,PL -86444740,86444743,FR +86444704,86444719,ES +86444720,86444735,PL +86444736,86444743,FR 86444744,86444751,GB 86444752,86444783,FR 86444784,86444791,GB -86444792,86444799,NL -86444800,86444815,GB +86444792,86444815,NL 86444816,86444835,FR 86444836,86444839,PL 86444840,86444843,DE 86444844,86444847,GB -86444848,86444871,FR +86444848,86444863,BE +86444864,86444871,FR 86444872,86444875,NL -86444876,86444879,PL -86444880,86444887,FR +86444876,86444887,FR 86444888,86444895,PL 86444896,86444903,IT 86444904,86444911,ES -86444912,86444927,FI +86444912,86444927,FR 86444928,86444931,DE 86444932,86444935,PL -86444936,86444939,NL +86444936,86444939,FR 86444940,86444943,CH 86444944,86444947,GB 86444948,86444951,PL 86444952,86444971,FR 86444972,86444975,DE -86444976,86444983,IE -86444984,86444991,FR -86444992,86445055,PT +86444976,86444983,ES +86444984,86444991,PT +86444992,86445055,FR 86445056,86445059,ES 86445060,86445071,FR 86445072,86445079,DE -86445080,86445083,BE -86445084,86445087,FR -86445088,86445091,GB -86445092,86445095,NL -86445096,86445099,IT -86445100,86445103,FI +86445080,86445087,FR +86445088,86445103,IE 86445104,86445111,CH 86445112,86445151,FR 86445152,86445167,PL @@ -1908,7 +1862,7 @@ 86445236,86445239,FR 86445240,86445247,GB 86445248,86445251,PL -86445252,86445255,IE +86445252,86445255,FR 86445256,86445263,PL 86445264,86445279,ES 86445280,86445287,FR @@ -1923,8 +1877,7 @@ 86445352,86445367,FR 86445368,86445371,IT 86445372,86445375,PL -86445376,86445423,FR -86445424,86445431,GB +86445376,86445431,FR 86445432,86445439,BE 86445440,86445455,FR 86445456,86445471,PL @@ -1938,13 +1891,12 @@ 86445532,86445551,FR 86445552,86445555,ES 86445556,86445559,GB -86445560,86445563,PL +86445560,86445563,FR 86445564,86445567,ES 86445568,86445711,FR 86445712,86445727,PL 86445728,86445735,DE -86445736,86445739,FR -86445740,86445743,ES +86445736,86445743,FR 86445744,86445759,GB 86445760,86445823,FR 86445824,86445831,NL @@ -1961,15 +1913,14 @@ 86445976,86445983,PL 86445984,86446023,FR 86446024,86446027,GB -86446028,86446031,IE -86446032,86446039,FR +86446028,86446039,FR 86446040,86446043,BE 86446044,86446047,FR 86446048,86446063,NL 86446064,86446079,PL 86446080,86446111,FR -86446112,86446127,GB -86446128,86446131,CZ +86446112,86446127,IE +86446128,86446131,FR 86446132,86446135,FI 86446136,86446175,FR 86446176,86446183,ES @@ -1981,8 +1932,8 @@ 86446416,86446427,FR 86446428,86446431,DE 86446432,86446439,PL -86446440,86446447,FR -86446448,86446455,PL +86446440,86446451,FR +86446452,86446455,PL 86446456,86446459,BE 86446460,86446463,CH 86446464,86446527,FR @@ -1998,23 +1949,22 @@ 86446576,86446579,PL 86446580,86446583,ES 86446584,86446587,IT -86446588,86446591,CZ +86446588,86446591,FR 86446592,86446599,ES 86446600,86446607,FR 86446608,86446611,ES -86446612,86446615,PL +86446612,86446615,FR 86446616,86446619,NL 86446620,86446623,DE 86446624,86446655,FR 86446656,86446675,IT -86446676,86446679,IE -86446680,86446683,PL -86446684,86446687,FR +86446676,86446687,FR 86446688,86446691,GB 86446692,86446695,PL 86446696,86446699,IT 86446700,86446707,GB -86446708,86446715,ES +86446708,86446711,FR +86446712,86446715,ES 86446716,86446719,DE 86446720,86446723,FR 86446724,86446727,IT @@ -2043,9 +1993,11 @@ 86447052,86447063,FR 86447064,86447071,GB 86447072,86447087,PL -86447088,86447091,GB +86447088,86447091,FR 86447092,86447103,ES -86447104,86447147,FR +86447104,86447119,FR +86447120,86447135,IE +86447136,86447147,FR 86447148,86447151,PL 86447152,86447167,LT 86447168,86447199,FR @@ -2057,15 +2009,15 @@ 86447256,86447263,PL 86447264,86447267,FR 86447268,86447271,PL -86447272,86447279,FR -86447280,86447283,DE +86447272,86447283,DE 86447284,86447287,FR 86447288,86447291,DE 86447292,86447295,PL 86447296,86447299,NL 86447300,86447303,ES 86447304,86447311,IE -86447312,86447335,FR +86447312,86447331,FR +86447332,86447335,IT 86447336,86447339,ES 86447340,86447343,PT 86447344,86447347,IE @@ -2073,21 +2025,16 @@ 86447352,86447355,PL 86447356,86447615,FR 86447616,86448383,GB -86448384,86448447,IE -86448448,86448479,PT -86448480,86448487,FR +86448384,86448487,FR 86448488,86448495,GB 86448496,86448503,PL -86448504,86448511,FR -86448512,86448543,IT -86448544,86448575,FR +86448504,86448575,FR 86448576,86448607,IE 86448608,86448615,FR 86448616,86448623,IE 86448624,86448631,FR 86448632,86448639,GB -86448640,86448703,ES -86448704,86448723,FR +86448640,86448723,FR 86448724,86448727,PL 86448728,86448731,NL 86448732,86448735,PL @@ -2102,7 +2049,7 @@ 86448832,86448839,NL 86448840,86448843,BE 86448844,86448847,FR -86448848,86448851,CH +86448848,86448851,DE 86448852,86448855,IT 86448856,86448859,PT 86448860,86448863,PL @@ -2113,7 +2060,7 @@ 86448884,86448887,PL 86448888,86448895,FR 86448896,86449151,GB -86449152,86449167,BE +86449152,86449167,FR 86449168,86449183,ES 86449184,86449215,FR 86449216,86449279,IE @@ -2124,27 +2071,28 @@ 86449364,86449367,DE 86449368,86449379,PL 86449380,86449383,FI -86449384,86449387,PL +86449384,86449387,FR 86449388,86449391,FI 86449392,86449399,FR 86449400,86449407,PL 86449408,86449439,FR 86449440,86449455,ES 86449456,86449471,FR -86449472,86449475,PL +86449472,86449475,GB 86449476,86449479,LT 86449480,86449487,FR 86449488,86449495,ES 86449496,86449499,FR 86449500,86449503,PL -86449504,86449535,BE -86449536,86449551,FR +86449504,86449551,FR 86449552,86449559,PL 86449560,86449563,PT 86449564,86449567,PL 86449568,86449587,FR 86449588,86449595,DE -86449596,86449651,FR +86449596,86449631,FR +86449632,86449647,GB +86449648,86449651,FR 86449652,86449655,GB 86449656,86449663,ES 86449664,86449675,FR @@ -2154,34 +2102,28 @@ 86449760,86449791,FR 86449792,86449823,PL 86449824,86449863,FR -86449864,86449879,PL -86449880,86449883,FR +86449864,86449875,PL +86449876,86449883,FR 86449884,86449887,DE 86449888,86449967,FR 86449968,86449983,PL -86449984,86449999,FR -86450000,86450003,GB +86449984,86450003,FR 86450004,86450007,PT 86450008,86450011,FR 86450012,86450015,IE 86450016,86450019,FR 86450020,86450023,PL -86450024,86450027,DE +86450024,86450027,FR 86450028,86450031,PL 86450032,86450039,FR 86450040,86450043,DE -86450044,86450047,FR +86450044,86450047,GB 86450048,86450079,PL 86450080,86450083,FR 86450084,86450087,NL -86450088,86450099,FR -86450100,86450103,DE -86450104,86450111,FR -86450112,86450115,BE -86450116,86450127,FR -86450128,86450135,PT +86450088,86450135,FR 86450136,86450139,IE -86450140,86450143,IT +86450140,86450143,FR 86450144,86450159,ES 86450160,86450163,FR 86450164,86450167,GB @@ -2193,9 +2135,8 @@ 86450236,86450239,GB 86450240,86450255,ES 86450256,86450271,BE -86450272,86450303,GB -86450304,86450319,FR -86450320,86450327,LT +86450272,86450319,FR +86450320,86450327,ES 86450328,86450335,FR 86450336,86450339,GB 86450340,86450343,FR @@ -2209,13 +2150,13 @@ 86450496,86450511,IT 86450512,86450519,FR 86450520,86450527,PL -86450528,86450591,BE +86450528,86450559,FR +86450560,86450591,BE 86450592,86450607,FR 86450608,86450615,ES 86450616,86450623,GB 86450624,86450639,IT -86450640,86450643,FR -86450644,86450647,PL +86450640,86450647,FR 86450648,86450651,ES 86450652,86450655,IT 86450656,86450815,FR @@ -2226,12 +2167,9 @@ 86450876,86450879,GB 86450880,86450911,FR 86450912,86450915,IT -86450916,86450919,PL -86450920,86450923,FR +86450916,86450923,FR 86450924,86450927,CH -86450928,86451007,FR -86451008,86451135,PT -86451136,86451151,FR +86450928,86451151,FR 86451152,86451167,PT 86451168,86451175,FR 86451176,86451183,PL @@ -2251,9 +2189,7 @@ 86451336,86451339,IT 86451340,86451359,FR 86451360,86451363,PL -86451364,86451371,FR -86451372,86451375,LT -86451376,86451383,FR +86451364,86451383,FR 86451384,86451387,PT 86451388,86451391,FR 86451392,86451395,GB @@ -2269,32 +2205,26 @@ 86451472,86451475,PL 86451476,86451487,FR 86451488,86451491,CH -86451492,86451495,FR -86451496,86451503,CZ -86451504,86451511,FR +86451492,86451511,FR 86451512,86451515,PL 86451516,86451519,NL 86451520,86451527,FR 86451528,86451531,LT 86451532,86451535,FI -86451536,86451551,DE -86451552,86451563,FR -86451564,86451567,PL +86451536,86451567,DE 86451568,86451575,FR 86451576,86451579,PT 86451580,86451583,PL -86451584,86451615,GB -86451616,86451647,IE -86451648,86451667,FR -86451668,86451671,BE +86451584,86451667,FR +86451668,86451671,PL 86451672,86451675,FR 86451676,86451679,PT -86451680,86451687,FR -86451688,86451695,PT +86451680,86451695,FR 86451696,86451703,DE 86451704,86451871,FR 86451872,86451879,PL -86451880,86451887,GB +86451880,86451883,FR +86451884,86451887,GB 86451888,86451895,ES 86451896,86451903,FR 86451904,86451967,NL @@ -2323,7 +2253,7 @@ 86452268,86452271,FR 86452272,86452279,GB 86452280,86452287,ES -86452288,86452291,FR +86452288,86452291,IT 86452292,86452295,GB 86452296,86452335,FR 86452336,86452343,NL @@ -2333,31 +2263,34 @@ 86452368,86452383,IE 86452384,86452399,ES 86452400,86452415,PL -86452416,86452447,PT -86452448,86452479,FR +86452416,86452479,FR 86452480,86452543,PT 86452544,86452575,GB 86452576,86452583,BE 86452584,86452587,ES 86452588,86452591,BE 86452592,86452607,IT -86452608,86452639,GB -86452640,86452911,FR +86452608,86452623,GB +86452624,86452671,FR +86452672,86452735,IE +86452736,86452911,FR 86452912,86452927,NL 86452928,86452943,FR 86452944,86452959,DE 86452960,86453023,FR 86453024,86453031,ES -86453032,86453039,CZ +86453032,86453039,FR 86453040,86453055,PL 86453056,86453063,FR 86453064,86453067,PL 86453068,86453071,IT 86453072,86453103,FR 86453104,86453119,PT -86453120,86453183,ES +86453120,86453183,FR 86453184,86453199,DE -86453200,86453255,FR +86453200,86453247,FR +86453248,86453251,IT +86453252,86453255,FR 86453256,86453263,BE 86453264,86453315,FR 86453316,86453319,ES @@ -2374,7 +2307,9 @@ 86453392,86453399,FR 86453400,86453407,DE 86453408,86453423,SN -86453424,86453435,FR +86453424,86453427,FR +86453428,86453431,IE +86453432,86453435,FR 86453436,86453439,ES 86453440,86453471,FR 86453472,86453503,ES @@ -2391,15 +2326,12 @@ 86453852,86453855,PL 86453856,86453871,BE 86453872,86453875,FI -86453876,86453879,DE +86453876,86453879,FR 86453880,86453887,PL 86453888,86453895,GB -86453896,86453935,FR -86453936,86453951,PT +86453896,86453951,FR 86453952,86453983,NL -86453984,86454015,FR -86454016,86454047,IE -86454048,86454111,FR +86453984,86454111,FR 86454112,86454123,PL 86454124,86454127,FR 86454128,86454143,CZ @@ -2419,33 +2351,32 @@ 86454344,86454351,PL 86454352,86454367,FI 86454368,86454383,PL -86454384,86454399,FR +86454384,86454391,CH +86454392,86454399,FR 86454400,86454527,BE 86454528,86454559,NL 86454560,86454591,FR -86454592,86454607,NL +86454592,86454607,IE 86454608,86454611,PL 86454612,86454619,FR 86454620,86454623,ES -86454624,86454687,FR +86454624,86454655,FR +86454656,86454671,IT +86454672,86454687,FR 86454688,86454691,DE 86454692,86454695,FR 86454696,86454703,PT 86454704,86454707,PL 86454708,86454711,BE -86454712,86454715,CH +86454712,86454715,FR 86454716,86454719,CZ -86454720,86454783,FR -86454784,86454815,IT -86454816,86454831,FR -86454832,86454835,ES -86454836,86454839,FR +86454720,86454839,FR 86454840,86454847,GB 86454848,86454871,FR 86454872,86454879,ES 86454880,86454887,DE 86454888,86454891,IT -86454892,86454895,NL +86454892,86454895,FR 86454896,86454899,PL 86454900,86454903,GB 86454904,86454915,FR @@ -2455,8 +2386,7 @@ 86454928,86454943,DE 86454944,86454947,FR 86454948,86454951,ES -86454952,86454959,FR -86454960,86454967,PT +86454952,86454967,FR 86454968,86454971,DE 86454972,86454975,GB 86454976,86454991,FR @@ -2479,33 +2409,29 @@ 86455628,86455631,FR 86455632,86455647,ES 86455648,86455679,NL -86455680,86455759,FR -86455760,86455763,CH -86455764,86455767,FR +86455680,86455767,FR 86455768,86455771,GB 86455772,86455775,NL 86455776,86455783,DE 86455784,86455871,FR 86455872,86455887,ES 86455888,86455903,NL -86455904,86455919,GB +86455904,86455919,FR 86455920,86455927,BE 86455928,86455931,FR 86455932,86455935,IT -86455936,86455967,IE +86455936,86455967,FR 86455968,86455999,PL 86456000,86456015,FR 86456016,86456019,GB 86456020,86456027,FR 86456028,86456031,CH 86456032,86456035,IE -86456036,86456039,DE +86456036,86456039,FR 86456040,86456043,FI -86456044,86456047,NL +86456044,86456047,FR 86456048,86456063,GB -86456064,86456111,FR -86456112,86456119,PT -86456120,86456127,FR +86456064,86456127,FR 86456128,86456143,GB 86456144,86456151,NL 86456152,86456159,DE @@ -2521,14 +2447,12 @@ 86456304,86456307,IT 86456308,86456311,FR 86456312,86456315,PT -86456316,86456319,BE -86456320,86456351,FR +86456316,86456351,FR 86456352,86456367,CH 86456368,86456371,FI 86456372,86456383,FR 86456384,86456415,PL -86456416,86456479,FR -86456480,86456511,ES +86456416,86456511,FR 86456512,86456543,GB 86456544,86456831,FR 86456832,86456847,PL @@ -2563,16 +2487,14 @@ 86457152,86457167,IT 86457168,86457175,FR 86457176,86457179,GB -86457180,86457183,IE +86457180,86457183,FR 86457184,86457187,ES 86457188,86457191,GB 86457192,86457215,ES -86457216,86457219,PL -86457220,86457235,FR +86457216,86457235,FR 86457236,86457239,PL 86457240,86457243,DE -86457244,86457247,PL -86457248,86457263,FR +86457244,86457263,FR 86457264,86457279,ES 86457280,86457295,PL 86457296,86457375,FR @@ -2582,9 +2504,7 @@ 86457392,86457395,PL 86457396,86457399,NL 86457400,86457403,GB -86457404,86457407,DE -86457408,86457423,GB -86457424,86457439,FR +86457404,86457439,FR 86457440,86457455,PL 86457456,86457459,DE 86457460,86457463,FR @@ -2599,7 +2519,7 @@ 86457656,86457663,PL 86457664,86457679,FR 86457680,86457683,PL -86457684,86457687,IT +86457684,86457687,DE 86457688,86457695,PL 86457696,86457699,FI 86457700,86457703,PL @@ -2613,15 +2533,11 @@ 86457804,86457807,BE 86457808,86457811,FR 86457812,86457815,PL -86457816,86457823,GB -86457824,86458147,FR +86457816,86458147,FR 86458148,86458151,BE 86458152,86458159,FR 86458160,86458175,PT -86458176,86458287,FR -86458288,86458291,PL -86458292,86458299,FR -86458300,86458303,PL +86458176,86458303,FR 86458304,86458335,CH 86458336,86458351,PT 86458352,86458355,FR @@ -2631,12 +2547,12 @@ 86458368,86466575,FR 86466576,86466579,FI 86466580,86466583,PL -86466584,86466587,FR -86466588,86466599,PL -86466600,86466603,FR -86466604,86466607,PT -86466608,86466615,FR -86466616,86466627,PT +86466584,86466591,FR +86466592,86466599,PL +86466600,86466611,FR +86466612,86466615,IE +86466616,86466623,FR +86466624,86466627,PT 86466628,86466631,DE 86466632,86466647,FR 86466648,86466655,GB @@ -2648,9 +2564,7 @@ 86466876,86466879,PL 86466880,86466959,FR 86466960,86466963,BE -86466964,86466967,FR -86466968,86466975,GB -86466976,86467007,FR +86466964,86467007,FR 86467008,86467023,ES 86467024,86467031,FR 86467032,86467035,PL @@ -2662,7 +2576,7 @@ 86467232,86467247,NL 86467248,86467263,IE 86467264,86467287,PL -86467288,86467291,FR +86467288,86467291,PT 86467292,86467295,NL 86467296,86467311,FR 86467312,86467319,IT @@ -2695,10 +2609,10 @@ 86468372,86468375,CH 86468376,86468383,FR 86468384,86468399,DE -86468400,86468403,GB +86468400,86468403,FR 86468404,86468407,PL 86468408,86468415,CH -86468416,86468447,IE +86468416,86468447,FR 86468448,86468479,CZ 86468480,86468527,FR 86468528,86468535,GB @@ -2728,8 +2642,7 @@ 86468736,86468759,FR 86468760,86468763,IT 86468764,86468767,NL -86468768,86468783,PL -86468784,86468787,FR +86468768,86468787,FR 86468788,86468791,NL 86468792,86468799,CH 86468800,86468831,ES @@ -2742,7 +2655,9 @@ 86469144,86469147,FR 86469148,86469151,NL 86469152,86469183,CH -86469184,86469655,FR +86469184,86469375,FR +86469376,86469631,IE +86469632,86469655,FR 86469656,86469659,DE 86469660,86469663,CH 86469664,86469679,IE @@ -2750,7 +2665,7 @@ 86469688,86469691,IE 86469692,86469695,DE 86469696,86469779,FR -86469780,86469783,CZ +86469780,86469783,DE 86469784,86469791,FR 86469792,86469795,GB 86469796,86469799,FR @@ -2767,8 +2682,7 @@ 86469900,86469903,PL 86469904,86469907,PT 86469908,86469911,GB -86469912,86469915,FR -86469916,86469919,ES +86469912,86469919,ES 86469920,86469951,FR 86469952,86470047,ES 86470048,86470079,FR @@ -2778,11 +2692,12 @@ 86470136,86470143,PL 86470144,86470159,ES 86470160,86470175,PL -86470176,86470207,IE -86470208,86470239,FR +86470176,86470207,FR +86470208,86470239,IE 86470240,86470271,PT -86470272,86470275,PL -86470276,86470291,FR +86470272,86470279,FR +86470280,86470287,PL +86470288,86470291,FR 86470292,86470295,PL 86470296,86470299,PT 86470300,86470351,FR @@ -2799,9 +2714,7 @@ 86470732,86470735,BE 86470736,86470751,GB 86470752,86470767,PT -86470768,86470847,FR -86470848,86470851,NL -86470852,86470863,FR +86470768,86470863,FR 86470864,86470867,GB 86470868,86470871,FR 86470872,86470879,CH @@ -2814,13 +2727,13 @@ 86470952,86470959,NL 86470960,86470967,FR 86470968,86470971,NL -86470972,86470979,PL +86470972,86470975,FR +86470976,86470979,PL 86470980,86470983,FR 86470984,86470991,ES -86470992,86470999,FR -86471000,86471023,NL -86471024,86471031,FR -86471032,86471039,PL +86470992,86471007,FR +86471008,86471023,NL +86471024,86471039,FR 86471040,86471047,NL 86471048,86471055,BE 86471056,86471075,FR @@ -2834,16 +2747,14 @@ 86471104,86471119,FR 86471120,86471127,IT 86471128,86471135,PL -86471136,86471167,PT +86471136,86471167,FR 86471168,86471171,IT 86471172,86471175,DE 86471176,86471179,FR 86471180,86471183,DE -86471184,86471215,FR -86471216,86471219,PL -86471220,86471223,FR +86471184,86471223,FR 86471224,86471231,ES -86471232,86471263,GB +86471232,86471263,PT 86471264,86471295,DE 86471296,86471327,GB 86471328,86471343,FR @@ -2862,8 +2773,7 @@ 86472016,86472031,IT 86472032,86472047,GB 86472048,86472051,DE -86472052,86472055,IE -86472056,86472063,FR +86472052,86472063,FR 86472064,86472095,IE 86472096,86472191,FR 86472192,86472199,LT @@ -2873,9 +2783,9 @@ 86472212,86472215,FR 86472216,86472219,DE 86472220,86472223,IE -86472224,86472227,FR -86472228,86472231,NL -86472232,86472239,PL +86472224,86472231,FR +86472232,86472235,PL +86472236,86472239,FR 86472240,86472255,ES 86472256,86472287,NL 86472288,86472291,DE @@ -2888,38 +2798,33 @@ 86472328,86472335,IT 86472336,86472343,CZ 86472344,86472347,PT -86472348,86472351,NL -86472352,86472399,FR +86472348,86472399,FR 86472400,86472403,ES 86472404,86472407,GB 86472408,86472415,FR -86472416,86472431,ES -86472432,86472471,FR +86472416,86472447,ES +86472448,86472471,FR 86472472,86472475,NL 86472476,86472479,PL 86472480,86472487,PT 86472488,86472511,FR 86472512,86472515,IT -86472516,86472519,FR -86472520,86472523,ES -86472524,86472551,FR -86472552,86472559,NL -86472560,86472575,FR +86472516,86472575,FR 86472576,86472607,BE 86472608,86472623,FR 86472624,86472639,PL 86472640,86472767,FR 86472768,86472771,PL -86472772,86472775,IE +86472772,86472775,FR 86472776,86472779,GB 86472780,86472831,FR 86472832,86472895,ES 86472896,86472927,FR 86472928,86472935,IE 86472936,86472943,ES -86472944,86472991,FR -86472992,86473023,IE -86473024,86473087,FR +86472944,86473055,FR +86473056,86473071,GB +86473072,86473087,FR 86473088,86473215,PT 86473216,86473251,FR 86473252,86473255,PL @@ -2933,8 +2838,7 @@ 86473312,86473343,GB 86473344,86473347,DE 86473348,86473359,ES -86473360,86473375,FR -86473376,86473383,CH +86473360,86473383,FR 86473384,86473391,LT 86473392,86473399,FR 86473400,86473403,PL @@ -2944,13 +2848,17 @@ 86473432,86473435,PL 86473436,86473439,CH 86473440,86473443,ES -86473444,86473727,FR +86473444,86473447,FR +86473448,86473455,PT +86473456,86473727,FR 86473728,86473731,FI 86473732,86473743,PL 86473744,86473775,FR -86473776,86473791,FI +86473776,86473791,GB 86473792,86473795,ES -86473796,86473807,FR +86473796,86473799,FR +86473800,86473803,PL +86473804,86473807,FR 86473808,86473823,GB 86473824,86473839,FR 86473840,86474111,PT @@ -2969,8 +2877,9 @@ 86474312,86474319,BE 86474320,86474323,NL 86474324,86474327,IT -86474328,86474331,FR -86474332,86474367,BE +86474328,86474331,DE +86474332,86474335,FR +86474336,86474367,BE 86474368,86474383,PL 86474384,86474391,FR 86474392,86474395,ES @@ -2984,11 +2893,9 @@ 86474532,86474551,FR 86474552,86474555,BE 86474556,86474559,PL -86474560,86474591,FR -86474592,86474623,PT -86474624,86474723,FR +86474560,86474723,FR 86474724,86474727,NL -86474728,86474731,PL +86474728,86474731,FR 86474732,86474735,IE 86474736,86474743,FR 86474744,86474747,GB @@ -3011,8 +2918,8 @@ 86507520,86573055,ES 86573056,86638591,RO 86638592,86671359,RU -86671360,86671871,JE -86671872,86673407,GB +86671360,86672383,JE +86672384,86673407,GB 86673408,86675455,DE 86675456,86677503,IT 86677504,86679551,FR @@ -3058,7 +2965,11 @@ 86837248,86839295,ES 86839296,86849535,GB 86849536,86851583,CZ -86851584,86867967,RU +86851584,86853631,RU +86853632,86854655,NL +86854656,86859775,RU +86859776,86865919,DE +86865920,86867967,EE 86867968,86872063,JO 86872064,86874111,GB 86874112,86876159,NO @@ -3091,7 +3002,8 @@ 87561600,87561727,IN 87561728,87561983,ES 87561984,87562111,IN -87562112,87562239,IN +87562112,87562175,DE +87562176,87562239,DE 87562240,87564287,UA 87564288,87566335,HU 87566336,87568383,FR @@ -3101,7 +3013,7 @@ 87588864,87589887,IR 87589888,87590143,GB 87590144,87590399,US -87590400,87590655,IT +87590400,87590655,GB 87590656,87590911,IR 87590912,87592959,RU 87592960,87597055,DK @@ -3126,14 +3038,15 @@ 87638016,87640063,UA 87640064,87642111,RS 87642112,87646207,GB -87646208,87648255,RE -87648256,87648767,FR -87648768,87649279,RE -87649280,87649535,FR -87649536,87650303,RE +87646208,87647999,FR +87648000,87648511,RE +87648512,87649791,FR +87649792,87650303,RE 87650304,87650559,FR -87650560,87651071,RE -87651072,87652351,FR +87650560,87651327,RE +87651328,87651839,FR +87651840,87652095,RE +87652096,87652351,FR 87652352,87654399,RE 87654400,87670783,PL 87670784,87672831,DE @@ -3199,7 +3112,9 @@ 88061952,88063999,PL 88064000,88080383,HU 88080384,88604671,GB -88604672,88866815,RU +88604672,88735743,RU +88735744,88737791,UA +88737792,88866815,RU 88866816,88932351,KZ 88932352,88940543,RU 88940544,88948735,GB @@ -3659,33 +3574,28 @@ 92733536,92733539,CH 92733540,92733543,FR 92733544,92733547,ES -92733548,92733551,FR +92733548,92733551,IE 92733552,92733555,PL -92733556,92733559,FR -92733560,92733563,GB +92733556,92733563,FR 92733564,92733567,DE 92733568,92733663,FR 92733664,92733695,ES -92733696,92733751,FR -92733752,92733755,GB -92733756,92733775,FR +92733696,92733775,FR 92733776,92733783,PL 92733784,92733847,FR 92733848,92733851,DE -92733852,92733855,GB -92733856,92733887,FR +92733852,92733887,FR 92733888,92733903,IT 92733904,92733919,PL -92733920,92733931,FR +92733920,92733927,FR +92733928,92733931,BE 92733932,92733935,ES -92733936,92733939,IE -92733940,92733943,FR +92733936,92733943,FR 92733944,92733951,PL 92733952,92734207,IE 92734208,92734255,FR 92734256,92734271,PL -92734272,92734275,DE -92734276,92734279,FR +92734272,92734279,FR 92734280,92734287,ES 92734288,92734295,PT 92734296,92734303,FR @@ -3700,18 +3610,14 @@ 92734496,92734511,DE 92734512,92734527,FR 92734528,92734559,BE -92734560,92734575,FR -92734576,92734579,PL -92734580,92734591,FR -92734592,92734595,DE -92734596,92734719,FR +92734560,92734719,FR 92734720,92734727,ES -92734728,92734731,FR +92734728,92734731,GB 92734732,92734735,PL 92734736,92734739,DE 92734740,92734823,FR 92734824,92734831,PL -92734832,92734847,DE +92734832,92734847,FR 92734848,92734863,CH 92734864,92734879,PL 92734880,92734975,FR @@ -3726,10 +3632,10 @@ 92735464,92735467,GB 92735468,92735471,FR 92735472,92735479,IT -92735480,92735483,PL +92735480,92735483,FR 92735484,92735487,DE 92735488,92735519,NL -92735520,92735535,FR +92735520,92735535,FI 92735536,92735543,GB 92735544,92735547,PL 92735548,92735567,FR @@ -3751,9 +3657,11 @@ 92735736,92735743,PL 92735744,92735775,FR 92735776,92735779,PL -92735780,92735791,FR +92735780,92735783,IE +92735784,92735791,FR 92735792,92735807,GB -92735808,92735815,FR +92735808,92735811,FR +92735812,92735815,IT 92735816,92735823,CZ 92735824,92735831,FR 92735832,92735839,DE @@ -3761,9 +3669,7 @@ 92735876,92735879,DE 92735880,92735883,IT 92735884,92735887,PT -92735888,92735903,FR -92735904,92735935,DE -92735936,92736335,FR +92735888,92736335,FR 92736336,92736351,GB 92736352,92736447,FR 92736448,92736479,IT @@ -3771,7 +3677,7 @@ 92736484,92736487,PL 92736488,92736491,ES 92736492,92736495,PT -92736496,92736503,FR +92736496,92736503,IE 92736504,92736511,PL 92736512,92737023,GB 92737024,92737279,ES @@ -3790,21 +3696,18 @@ 92738432,92738447,ES 92738448,92738479,FR 92738480,92738487,IT -92738488,92738511,FR -92738512,92738515,IT +92738488,92738515,FR 92738516,92738519,DE -92738520,92738531,PL +92738520,92738531,FR 92738532,92738535,NL 92738536,92738543,FR 92738544,92738559,IT -92738560,92738591,IE -92738592,92738599,FR +92738560,92738599,FR 92738600,92738603,BE 92738604,92738607,PL 92738608,92738611,ES 92738612,92738615,FI -92738616,92738655,FR -92738656,92738659,PL +92738616,92738659,FR 92738660,92738663,ES 92738664,92738683,FR 92738684,92738719,PL @@ -3816,7 +3719,7 @@ 92739356,92739359,ES 92739360,92739375,DE 92739376,92739391,FR -92739392,92739395,PL +92739392,92739395,ES 92739396,92739399,IT 92739400,92739403,PL 92739404,92739407,IE @@ -3829,9 +3732,7 @@ 92739496,92739499,PT 92739500,92739503,NL 92739504,92739507,PT -92739508,92739511,FR -92739512,92739519,IE -92739520,92739583,FR +92739508,92739583,FR 92739584,92739839,PT 92739840,92740095,ES 92740096,92740351,PT @@ -3841,12 +3742,14 @@ 92740396,92740415,FR 92740416,92740431,NL 92740432,92740447,GB -92740448,92740475,FR +92740448,92740471,FR +92740472,92740475,IT 92740476,92740479,BE -92740480,92740543,IE +92740480,92740511,ES +92740512,92740543,FR 92740544,92740575,DE 92740576,92740607,IT -92740608,92740639,PT +92740608,92740639,FR 92740640,92740671,PL 92740672,92740687,FR 92740688,92740703,ES @@ -3858,10 +3761,11 @@ 92740768,92740799,FR 92740800,92740815,PL 92740816,92740831,IE -92740832,92740863,FR +92740832,92740847,ES +92740848,92740863,FR 92740864,92741119,IT 92741120,92741151,GB -92741152,92741159,FR +92741152,92741159,ES 92741160,92741167,PL 92741168,92741183,FR 92741184,92741199,IE @@ -3875,34 +3779,28 @@ 92741264,92741271,FI 92741272,92741279,FR 92741280,92741287,PL -92741288,92741291,FR -92741292,92741295,IE -92741296,92741311,FR +92741288,92741311,FR 92741312,92741315,CZ 92741316,92741319,NL 92741320,92741327,FR 92741328,92741331,DE 92741332,92741335,ES -92741336,92741343,FR -92741344,92741351,NL -92741352,92741383,FR +92741336,92741339,FR +92741340,92741343,IE +92741344,92741383,FR 92741384,92741387,GB -92741388,92741391,FR -92741392,92741395,ES +92741388,92741395,FR 92741396,92741399,DE 92741400,92741427,FR 92741428,92741431,PL 92741432,92741455,FR -92741456,92741503,DE +92741456,92741471,DE +92741472,92741503,CZ 92741504,92741535,GB -92741536,92741539,FR -92741540,92741543,NL -92741544,92741547,PL -92741548,92742143,FR +92741536,92742143,FR 92742144,92742147,ES -92742148,92742163,PL -92742164,92742167,GB -92742168,92742191,FR +92742148,92742159,PL +92742160,92742191,FR 92742192,92742207,PL 92742208,92742239,BE 92742240,92742247,GB @@ -3911,7 +3809,8 @@ 92742256,92742271,GB 92742272,92742279,FR 92742280,92742283,IT -92742284,92742291,FR +92742284,92742287,BE +92742288,92742291,FR 92742292,92742295,NL 92742296,92742303,FR 92742304,92742319,IE @@ -3921,28 +3820,22 @@ 92742352,92742419,FR 92742420,92742423,ES 92742424,92742431,PL -92742432,92742463,FR -92742464,92742467,PL +92742432,92742467,FR 92742468,92742471,ES -92742472,92742495,FR -92742496,92742503,PT -92742504,92742511,FR -92742512,92742527,GB -92742528,92742575,FR +92742472,92742511,FR +92742512,92742527,IT +92742528,92742559,PL +92742560,92742575,FR 92742576,92742579,ES -92742580,92742583,FR -92742584,92742591,IT +92742580,92742591,FR 92742592,92742623,PT 92742624,92742639,FR 92742640,92742643,ES -92742644,92742647,PL -92742648,92742655,FR +92742644,92742655,FR 92742656,92742671,IE 92742672,92742687,FR -92742688,92742691,FI -92742692,92742695,FR -92742696,92742703,GB -92742704,92742707,FR +92742688,92742691,IE +92742692,92742707,FR 92742708,92742711,PL 92742712,92742719,FR 92742720,92742751,BE @@ -3956,22 +3849,19 @@ 92742800,92742807,IT 92742808,92742815,GB 92742816,92742819,NL -92742820,92742827,PL +92742820,92742823,DE +92742824,92742827,PL 92742828,92742839,FR 92742840,92742847,PT 92742848,92742911,FR 92742912,92743167,ES 92743168,92743207,FR 92743208,92743215,ES -92743216,92743235,FR -92743236,92743239,BE -92743240,92743243,GB -92743244,92743247,FR +92743216,92743247,FR 92743248,92743263,IE -92743264,92743271,FR -92743272,92743279,GB +92743264,92743279,FR 92743280,92743287,IT -92743288,92743291,PL +92743288,92743291,FR 92743292,92743295,GB 92743296,92743303,FR 92743304,92743311,PL @@ -3980,30 +3870,29 @@ 92743320,92743327,FR 92743328,92743335,PL 92743336,92743351,GB -92743352,92743423,FR -92743424,92743431,DE +92743352,92743431,FR 92743432,92743439,ES -92743440,92743487,FR +92743440,92743447,IT +92743448,92743487,FR 92743488,92743491,ES 92743492,92743503,FR 92743504,92743519,IT 92743520,92743527,PT 92743528,92743531,FR 92743532,92743535,PL -92743536,92743575,FR -92743576,92743579,CH -92743580,92743599,FR +92743536,92743551,FI +92743552,92743599,FR 92743600,92743607,DE 92743608,92743611,GB -92743612,92743639,FR -92743640,92743643,PL -92743644,92743647,FR +92743612,92743615,FR +92743616,92743631,IE +92743632,92743643,FR +92743644,92743647,IT 92743648,92743663,BE -92743664,92743675,FR +92743664,92743671,IT +92743672,92743675,FR 92743676,92743679,PL -92743680,92743935,GB -92743936,92743939,FR -92743940,92743943,PL +92743680,92743943,FR 92743944,92743951,ES 92743952,92743955,PT 92743956,92743967,FR @@ -4018,18 +3907,18 @@ 92744232,92744235,FR 92744236,92744239,ES 92744240,92744247,FR -92744248,92744255,DE +92744248,92744251,DE +92744252,92744255,FR 92744256,92744259,GB -92744260,92744263,IT -92744264,92744267,PL +92744260,92744267,IT 92744268,92744271,FR 92744272,92744279,LT 92744280,92744287,FR 92744288,92744291,ES 92744292,92744295,FR 92744296,92744299,NL -92744300,92744319,FR -92744320,92744323,GB +92744300,92744303,FR +92744304,92744323,GB 92744324,92744327,FI 92744328,92744335,FR 92744336,92744339,PT @@ -4037,14 +3926,15 @@ 92744344,92744351,FR 92744352,92744367,PT 92744368,92744379,FR -92744380,92744383,ES +92744380,92744383,NL 92744384,92744399,FR 92744400,92744415,PT -92744416,92744543,FR +92744416,92744431,BE +92744432,92744543,FR 92744544,92744547,BE -92744548,92744551,PL +92744548,92744551,FR 92744552,92744555,ES -92744556,92744559,CH +92744556,92744559,FR 92744560,92744563,PL 92744564,92744567,FR 92744568,92744575,BE @@ -4068,45 +3958,42 @@ 92745088,92745215,GB 92745216,92745279,FR 92745280,92745295,PT -92745296,92745311,FR -92745312,92745343,PT -92745344,92745383,FR +92745296,92745383,FR 92745384,92745391,IT -92745392,92745395,NL +92745392,92745395,FR 92745396,92745399,GB -92745400,92745403,FR -92745404,92745439,PL +92745400,92745407,FR +92745408,92745439,PL 92745440,92745471,NL 92745472,92745791,FR 92745792,92745807,PL 92745808,92745823,NL 92745824,92745839,FR -92745840,92745855,GB +92745840,92745855,CZ 92745856,92745871,FR 92745872,92745887,NL 92745888,92745903,IT 92745904,92745919,CH 92745920,92745983,PT -92745984,92746335,FR +92745984,92746303,FR +92746304,92746335,IE 92746336,92746351,GB 92746352,92746415,FR 92746416,92746431,CH -92746432,92746463,DE -92746464,92746623,FR +92746432,92746623,FR 92746624,92746639,BE -92746640,92746687,FR +92746640,92746655,FR +92746656,92746687,PT 92746688,92746719,GB 92746720,92746831,FR 92746832,92746839,PL -92746840,92746847,GB -92746848,92746943,FR +92746840,92746943,FR 92746944,92746975,PL 92746976,92747023,FR 92747024,92747039,DE 92747040,92747043,PL 92747044,92747047,CH -92747048,92747051,DE -92747052,92747103,FR +92747048,92747103,FR 92747104,92747119,CH 92747120,92747199,FR 92747200,92747203,DE @@ -4122,7 +4009,9 @@ 92747240,92747243,IE 92747244,92747247,NL 92747248,92747255,FI -92747256,92747271,PL +92747256,92747263,FR +92747264,92747267,NL +92747268,92747271,PL 92747272,92747275,NL 92747276,92747279,CZ 92747280,92747327,FR @@ -4138,34 +4027,43 @@ 92747444,92747447,GB 92747448,92747451,FR 92747452,92747455,PL -92747456,92747471,FR -92747472,92747475,PL +92747456,92747475,FR 92747476,92747479,NL 92747480,92747535,FR 92747536,92747539,CZ 92747540,92747543,CH -92747544,92747547,GB +92747544,92747547,FR 92747548,92747567,ES 92747568,92747575,PL -92747576,92747583,ES +92747576,92747583,FR 92747584,92747615,NL -92747616,92747687,FR +92747616,92747647,FR +92747648,92747679,IE +92747680,92747687,FR 92747688,92747691,NL 92747692,92747695,FR 92747696,92747699,PL 92747700,92747703,FR 92747704,92747711,GB -92747712,92748479,FR +92747712,92748295,FR +92748296,92748303,PL +92748304,92748319,CH +92748320,92748335,FR +92748336,92748351,CH +92748352,92748415,LT +92748416,92748479,FR 92748480,92748511,GB -92748512,92748803,FR +92748512,92748543,FR +92748544,92748799,PT +92748800,92748803,FR 92748804,92748807,PL 92748808,92748811,FR 92748812,92748815,PT -92748816,92748835,FR -92748836,92748839,PL +92748816,92748839,FR 92748840,92748843,GB 92748844,92748847,CH -92748848,92748859,FR +92748848,92748851,BE +92748852,92748859,FR 92748860,92748863,PL 92748864,92748887,FR 92748888,92748895,GB @@ -4174,7 +4072,7 @@ 92748984,92748991,GB 92748992,92748999,ES 92749000,92749007,PT -92749008,92749011,FI +92749008,92749011,FR 92749012,92749015,ES 92749016,92749019,GB 92749020,92749023,IT @@ -4183,9 +4081,7 @@ 92749056,92749063,FR 92749064,92749067,DE 92749068,92749071,GB -92749072,92749087,FR -92749088,92749119,PT -92749120,92749135,FR +92749072,92749135,FR 92749136,92749151,PT 92749152,92749155,PL 92749156,92749159,PT @@ -4195,12 +4091,10 @@ 92749180,92749279,FR 92749280,92749295,GB 92749296,92749299,NL -92749300,92749303,DE -92749304,92749519,FR +92749300,92749519,FR 92749520,92749531,CH 92749532,92749535,ES -92749536,92749539,IE -92749540,92749551,FR +92749536,92749551,FR 92749552,92749555,PT 92749556,92749559,FR 92749560,92749567,IT @@ -4240,7 +4134,7 @@ 92750844,92750847,FR 92750848,92750863,DE 92750864,92750879,IT -92750880,92750887,FR +92750880,92750887,CZ 92750888,92750895,PT 92750896,92750899,IT 92750900,92750903,DE @@ -4260,14 +4154,13 @@ 92751248,92751271,FR 92751272,92751275,DE 92751276,92751279,NL -92751280,92751295,PT +92751280,92751295,FR 92751296,92751311,GB 92751312,92751319,PL 92751320,92751615,FR 92751616,92751631,ES 92751632,92751647,CH -92751648,92751679,FR -92751680,92751711,PT +92751648,92751711,FR 92751712,92751807,DE 92751808,92751871,FR 92751872,92751903,GB @@ -4278,14 +4171,16 @@ 92752144,92752191,FR 92752192,92752255,ES 92752256,92752319,BE -92752320,92752431,FR +92752320,92752359,FR +92752360,92752363,NL +92752364,92752431,FR 92752432,92752447,GB -92752448,92752575,FR -92752576,92752583,IT -92752584,92752607,GB +92752448,92752583,FR +92752584,92752587,GB +92752588,92752591,FR +92752592,92752607,GB 92752608,92752611,IT -92752612,92752615,DE -92752616,92752619,PL +92752612,92752619,FR 92752620,92752631,IT 92752632,92752635,FR 92752636,92752679,PT @@ -4309,58 +4204,58 @@ 92753216,92753279,PT 92753280,92753363,CZ 92753364,92753367,GB -92753368,92753547,FR -92753548,92753551,DE +92753368,92753503,FR +92753504,92753535,GB +92753536,92753551,FR 92753552,92753567,NL 92753568,92753599,BE 92753600,92753631,FR 92753632,92753663,BE -92753664,92753667,FR -92753668,92753671,NL +92753664,92753671,FR 92753672,92753675,IT 92753676,92753679,NL -92753680,92753919,FR +92753680,92753791,FR +92753792,92753823,GB +92753824,92753855,IE +92753856,92753919,FR 92753920,92753923,CZ -92753924,92753927,GB -92753928,92753935,FR +92753924,92753935,FR 92753936,92753939,IT 92753940,92753943,FR 92753944,92753951,PT -92753952,92753983,FR -92753984,92754015,PT -92754016,92754027,FR +92753952,92754027,FR 92754028,92754031,DE -92754032,92754035,FR -92754036,92754039,GB -92754040,92754055,FR +92754032,92754055,FR 92754056,92754059,IT 92754060,92754063,PL -92754064,92754083,FR +92754064,92754079,IE +92754080,92754083,FR 92754084,92754087,BE -92754088,92754095,PL +92754088,92754091,FR +92754092,92754095,PL 92754096,92754111,CH -92754112,92754207,FR -92754208,92754239,PT -92754240,92754367,FR +92754112,92754335,FR +92754336,92754367,IE 92754368,92754431,GB 92754432,92754447,FR 92754448,92754463,GB 92754464,92754471,FR 92754472,92754479,CZ 92754480,92754495,ES -92754496,92754579,FR +92754496,92754503,FR +92754504,92754511,IT +92754512,92754543,FR +92754544,92754559,GB +92754560,92754579,FR 92754580,92754583,PL 92754584,92754623,FR 92754624,92754639,PL 92754640,92754671,IT -92754672,92755023,FR -92755024,92755027,BE -92755028,92755031,FI +92754672,92755027,FR +92755028,92755031,GB 92755032,92755135,FR 92755136,92755199,PT -92755200,92755231,FR -92755232,92755263,GB -92755264,92755279,FR +92755200,92755279,FR 92755280,92755283,PL 92755284,92755287,ES 92755288,92755295,FR @@ -4375,23 +4270,22 @@ 92755424,92755431,CH 92755432,92755439,FR 92755440,92755455,GB -92755456,92755487,IT +92755456,92755487,CH 92755488,92755503,FR 92755504,92755507,PT 92755508,92755511,GB 92755512,92755519,FR 92755520,92755527,ES -92755528,92755543,FR -92755544,92755551,PT -92755552,92755583,FR +92755528,92755583,FR 92755584,92755615,PT 92755616,92755647,FR 92755648,92755679,IT -92755680,92755711,FR +92755680,92755711,PL 92755712,92755743,DE 92755744,92755775,FI 92755776,92755839,GB -92755840,92755887,PT +92755840,92755871,FR +92755872,92755887,PT 92755888,92755903,ES 92755904,92755967,FR 92755968,92756031,PT @@ -4411,17 +4305,14 @@ 92756644,92756647,IT 92756648,92756663,FR 92756664,92756671,BE -92756672,92756735,PT -92756736,92756995,FR -92756996,92756999,IE +92756672,92756999,FR 92757000,92757007,CH 92757008,92757015,DE 92757016,92757023,FR 92757024,92757039,ES 92757040,92757047,IT -92757048,92757055,GB -92757056,92757119,FR -92757120,92757135,ES +92757048,92757119,GB +92757120,92757135,FR 92757136,92757151,GB 92757152,92757167,IT 92757168,92757247,FR @@ -4446,48 +4337,46 @@ 92758144,92758207,PT 92758208,92758223,ES 92758224,92758227,CZ -92758228,92758231,PL +92758228,92758231,FR 92758232,92758235,DE 92758236,92758303,FR 92758304,92758319,PT 92758320,92758335,FR 92758336,92758343,PL 92758344,92758347,GB -92758348,92758351,CH -92758352,92758355,FR -92758356,92758359,PL -92758360,92758363,FR +92758348,92758363,FR 92758364,92758367,CZ 92758368,92758383,ES 92758384,92758471,FR 92758472,92758479,PL 92758480,92758495,FR 92758496,92758527,CH -92758528,92758591,FR -92758592,92758631,PT +92758528,92758631,FR 92758632,92758635,DE 92758636,92758639,FR 92758640,92758655,PL 92758656,92758687,FR 92758688,92758719,DE -92758720,92758723,FR -92758724,92758727,DE +92758720,92758727,FR 92758728,92758731,PL -92758732,92758735,FR -92758736,92758743,NL -92758744,92758799,FR +92758732,92758747,FR +92758748,92758751,ES +92758752,92758783,IE +92758784,92758799,FR 92758800,92758803,DE 92758804,92758807,ES 92758808,92758811,IT 92758812,92758815,DE 92758816,92758819,FR 92758820,92758831,PL -92758832,92758843,FR +92758832,92758839,PT +92758840,92758843,CH 92758844,92758847,PL 92758848,92758855,FR 92758856,92758859,PL -92758860,92758879,ES -92758880,92758911,GB +92758860,92758863,ES +92758864,92758879,PL +92758880,92758911,FR 92758912,92758915,PL 92758916,92758919,GB 92758920,92758927,FR @@ -4498,104 +4387,89 @@ 92758944,92758967,GB 92758968,92759023,FR 92759024,92759027,PT -92759028,92759031,GB -92759032,92759035,NL -92759036,92759039,PL -92759040,92759103,FR +92759028,92759103,FR 92759104,92759119,PL -92759120,92759123,IE -92759124,92759127,FR +92759120,92759127,FR 92759128,92759135,NL -92759136,92759151,FR -92759152,92759155,IT +92759136,92759155,FR 92759156,92759159,IE -92759160,92759231,FR +92759160,92759167,FR +92759168,92759183,GB +92759184,92759231,FR 92759232,92759239,BE -92759240,92759247,FR -92759248,92759255,PL +92759240,92759251,FR +92759252,92759255,PL 92759256,92759263,FR 92759264,92759279,ES -92759280,92759287,FR -92759288,92759295,PT +92759280,92759295,FR 92759296,92759551,FI -92759552,92760063,FR -92760064,92760191,ES -92760192,92760255,FR +92759552,92760255,FR 92760256,92760287,IE 92760288,92760319,PT -92760320,92760351,IE -92760352,92760383,FR +92760320,92760383,FR 92760384,92760447,IE 92760448,92760607,FR 92760608,92760639,GB 92760640,92760679,FR 92760680,92760687,GB -92760688,92760691,FR -92760692,92760695,GB -92760696,92760719,ES +92760688,92760695,FR +92760696,92760699,ES +92760700,92760711,FR +92760712,92760715,NL +92760716,92760719,ES 92760720,92760727,FR 92760728,92760735,PT 92760736,92760743,FI 92760744,92760747,ES -92760748,92760751,CH -92760752,92760767,FR -92760768,92760831,PT +92760748,92760831,FR 92760832,92761087,IE 92761088,92761343,CH 92761344,92761415,FR 92761416,92761419,ES -92761420,92761427,PL -92761428,92761455,FR +92761420,92761455,FR 92761456,92761463,NL 92761464,92761467,IT 92761468,92761471,PL 92761472,92761503,NL -92761504,92761507,PL -92761508,92761511,FR +92761504,92761511,FR 92761512,92761515,PL 92761516,92761519,FR 92761520,92761523,GB 92761524,92761527,DE 92761528,92761531,BE 92761532,92761535,CH -92761536,92761567,FR -92761568,92761575,PT -92761576,92761599,FR +92761536,92761599,FR 92761600,92761603,ES 92761604,92761615,FR 92761616,92761631,PL -92761632,92761663,FR -92761664,92761727,PL -92761728,92761759,FR +92761632,92761759,FR 92761760,92761763,IT 92761764,92761775,FR 92761776,92761791,BE -92761792,92761863,FR -92761864,92761867,PL -92761868,92761883,FR -92761884,92761887,PL +92761792,92761887,FR 92761888,92761919,GB 92761920,92761935,FR 92761936,92761939,NL 92761940,92761943,GB 92761944,92761947,ES -92761948,92762047,FR -92762048,92762051,PL -92762052,92762055,FR +92761948,92761951,NL +92761952,92762055,FR 92762056,92762059,GB -92762060,92762127,FR +92762060,92762079,FR +92762080,92762111,IE +92762112,92762127,FR 92762128,92762135,ES 92762136,92762143,FR 92762144,92762147,PT -92762148,92762151,PL +92762148,92762151,FR 92762152,92762155,LT -92762156,92762159,IT +92762156,92762159,FR 92762160,92762163,GB 92762164,92762167,ES 92762168,92762175,FR 92762176,92762207,FI -92762208,92762211,FR -92762212,92762219,PL +92762208,92762215,FR +92762216,92762219,PL 92762220,92762223,DE 92762224,92762271,FR 92762272,92762303,DE @@ -4611,28 +4485,25 @@ 92762592,92762599,PT 92762600,92762607,NL 92762608,92762615,IT -92762616,92762619,ES -92762620,92762623,IE -92762624,92762655,FR +92762616,92762655,FR 92762656,92762687,NL 92762688,92762719,PL -92762720,92762727,PT +92762720,92762727,FR 92762728,92762735,IE 92762736,92762751,FR 92762752,92762783,GB -92762784,92762799,FR -92762800,92762815,PT -92762816,92762831,NL -92762832,92762839,FR +92762784,92762839,FR 92762840,92762847,ES -92762848,92762879,IE +92762848,92762879,FR 92762880,92762911,PL 92762912,92762943,DE 92762944,92763007,BE 92763008,92763015,FR 92763016,92763023,GB 92763024,92763039,PL -92763040,92763103,FR +92763040,92763055,FR +92763056,92763071,GB +92763072,92763103,FR 92763104,92763119,GB 92763120,92763127,FR 92763128,92763135,ES @@ -4643,14 +4514,10 @@ 92763220,92763223,FR 92763224,92763227,PL 92763228,92763231,FR -92763232,92763247,GB +92763232,92763247,IE 92763248,92763263,FR 92763264,92763271,GB -92763272,92763275,FR -92763276,92763279,ES -92763280,92763335,FR -92763336,92763339,DE -92763340,92763647,FR +92763272,92763647,FR 92763648,92763903,GB 92763904,92764159,ES 92764160,92764223,FR @@ -4662,12 +4529,7 @@ 92764396,92764399,IE 92764400,92764407,PL 92764408,92764411,LT -92764412,92764415,FR -92764416,92764479,PT -92764480,92764511,FR -92764512,92764543,IE -92764544,92764555,FR -92764556,92764559,IE +92764412,92764559,FR 92764560,92764567,ES 92764568,92764571,NL 92764572,92764575,PT @@ -4677,30 +4539,24 @@ 92764592,92764595,PL 92764596,92764599,ES 92764600,92764603,BE -92764604,92764607,PL -92764608,92764735,FR +92764604,92764735,FR 92764736,92764807,DE 92764808,92764815,BE 92764816,92764823,PT -92764824,92764827,FR -92764828,92764831,PT -92764832,92764839,CH -92764840,92764843,FR -92764844,92764847,PL -92764848,92764859,FR +92764824,92764859,FR 92764860,92764863,ES -92764864,92764927,PT +92764864,92764927,FR 92764928,92765183,GB 92765184,92765199,PT 92765200,92765203,FR 92765204,92765207,ES 92765208,92765211,NL -92765212,92765215,PL -92765216,92765247,NL +92765212,92765215,FR +92765216,92765247,IE 92765248,92765287,FR 92765288,92765291,PT 92765292,92765295,FR -92765296,92765311,CZ +92765296,92765311,IE 92765312,92765343,FR 92765344,92765347,GB 92765348,92765351,ES @@ -4709,14 +4565,14 @@ 92765368,92765371,IT 92765372,92765391,FR 92765392,92765395,IT -92765396,92765399,PL +92765396,92765399,FR 92765400,92765403,IE -92765404,92765407,BE -92765408,92765423,FR +92765404,92765423,FR 92765424,92765427,GB 92765428,92765431,DE 92765432,92765439,CH -92765440,92765447,FR +92765440,92765443,FR +92765444,92765447,ES 92765448,92765455,DE 92765456,92765459,FR 92765460,92765471,GB @@ -4725,8 +4581,7 @@ 92765568,92765571,GB 92765572,92765591,FR 92765592,92765595,DE -92765596,92765627,FR -92765628,92765631,FI +92765596,92765631,FR 92765632,92765635,ES 92765636,92765639,FR 92765640,92765647,IE @@ -4738,55 +4593,39 @@ 92765728,92765735,PL 92765736,92765739,GB 92765740,92765743,IT -92765744,92765859,FR -92765860,92765863,PT -92765864,92765867,IE -92765868,92766079,FR +92765744,92766079,FR 92766080,92766143,PT 92766144,92766175,GB -92766176,92782607,FR -92782608,92782611,NL -92782612,92782687,FR +92766176,92782687,FR 92782688,92782719,IT -92782720,92782731,FR -92782732,92782735,LT -92782736,92782739,CZ +92782720,92782739,FR 92782740,92782743,ES 92782744,92782747,FR 92782748,92782751,IT 92782752,92782755,LT 92782756,92782759,FR 92782760,92782767,PL -92782768,92782783,FR -92782784,92782787,CH -92782788,92782803,FR -92782804,92782807,PT -92782808,92782811,FR +92782768,92782811,FR 92782812,92782815,CH 92782816,92782975,FR 92782976,92782979,ES 92782980,92782999,FR 92783000,92783003,GB 92783004,92783007,PT -92783008,92783015,CZ -92783016,92783019,FR +92783008,92783019,FR 92783020,92783023,NL -92783024,92783039,PT +92783024,92783039,FR 92783040,92783043,DE 92783044,92783047,FR 92783048,92783051,GB 92783052,92783059,PL 92783060,92783063,DE -92783064,92783067,FR -92783068,92783071,DE -92783072,92783087,FR +92783064,92783087,FR 92783088,92783095,DE 92783096,92783103,IT -92783104,92783107,NL -92783108,92783111,FR +92783104,92783111,FR 92783112,92783115,NL -92783116,92783119,IE -92783120,92783143,FR +92783116,92783143,FR 92783144,92783147,ES 92783148,92783151,DE 92783152,92783155,IT @@ -4800,21 +4639,17 @@ 92783268,92783271,FI 92783272,92783279,IT 92783280,92783287,GB -92783288,92783319,FR -92783320,92783323,IT -92783324,92783359,FR +92783288,92783359,FR 92783360,92783423,ES 92783424,92783439,GB -92783440,92783447,FR -92783448,92783455,IE +92783440,92783455,FR 92783456,92783487,NL -92783488,92783491,IT -92783492,92783495,FR +92783488,92783495,FR 92783496,92783503,ES 92783504,92783515,FR 92783516,92783519,CH -92783520,92783663,FR -92783664,92783667,GB +92783520,92783647,FR +92783648,92783667,GB 92783668,92783671,FR 92783672,92783679,IT 92783680,92783711,FR @@ -4829,15 +4664,14 @@ 92783744,92783807,BE 92783808,92783871,FR 92783872,92783887,NL -92783888,92783895,PT -92783896,92783911,FR -92783912,92783919,PL +92783888,92783919,FR 92783920,92783923,LT 92783924,92783995,FR 92783996,92783999,LT 92784000,92784031,FR 92784032,92784039,NL -92784040,92784079,FR +92784040,92784047,PL +92784048,92784079,FR 92784080,92784087,PL 92784088,92784099,FR 92784100,92784103,CZ @@ -4848,7 +4682,7 @@ 92784140,92784143,PL 92784144,92784159,FR 92784160,92784191,CH -92784192,92784207,PT +92784192,92784207,FR 92784208,92784239,PL 92784240,92784247,FR 92784248,92784251,CH @@ -4859,21 +4693,16 @@ 92784300,92784303,DE 92784304,92784375,FR 92784376,92784383,PT -92784384,92784455,FR -92784456,92784463,NL -92784464,92784467,FR +92784384,92784467,FR 92784468,92784471,NL 92784472,92784479,FR 92784480,92784511,IT 92784512,92784651,FR 92784652,92784655,DE -92784656,92784659,GB -92784660,92784663,FR +92784656,92784663,FR 92784664,92784667,GB 92784668,92784671,IE -92784672,92784703,FR -92784704,92784735,GB -92784736,92784767,FR +92784672,92784767,FR 92784768,92784771,IT 92784772,92784775,NL 92784776,92784779,DE @@ -4886,32 +4715,27 @@ 92784820,92784823,DE 92784824,92784831,PT 92784832,92784895,FR -92784896,92785407,ES -92785408,92785439,FR +92784896,92785151,ES +92785152,92785439,FR 92785440,92785455,DE 92785456,92785467,FR 92785468,92785471,PL 92785472,92785503,FR 92785504,92785507,PL -92785508,92785567,FR -92785568,92785571,GB -92785572,92785599,FR +92785508,92785599,FR 92785600,92785607,GB 92785608,92785611,FR 92785612,92785615,ES -92785616,92785631,PT -92785632,92785663,FR +92785616,92785663,FR 92785664,92785667,DE 92785668,92785671,CH -92785672,92785703,FR +92785672,92785679,FR +92785680,92785687,ES +92785688,92785703,FR 92785704,92785707,LT -92785708,92785711,IT -92785712,92785727,PT -92785728,92785735,FR -92785736,92785743,PT -92785744,92785847,FR +92785708,92785847,FR 92785848,92785855,GB -92785856,92785863,PT +92785856,92785863,FR 92785864,92785871,GB 92785872,92786175,FR 92786176,92786179,GB @@ -4921,37 +4745,28 @@ 92786192,92786199,FR 92786200,92786207,BE 92786208,92786215,GB -92786216,92786219,IE -92786220,92786227,FR -92786228,92786231,FI -92786232,92786239,PT +92786216,92786239,FR 92786240,92786255,GB 92786256,92786271,FR 92786272,92786279,IT 92786280,92786287,FR 92786288,92786291,IT 92786292,92786299,GB -92786300,92786303,FR -92786304,92786311,BE -92786312,92786367,FR +92786300,92786367,FR 92786368,92786383,DE 92786384,92786415,FR 92786416,92786419,GB 92786420,92786423,NL -92786424,92786431,PT -92786432,92786463,FR +92786424,92786463,FR 92786464,92786495,PL 92786496,92786511,FR 92786512,92786515,PL 92786516,92786519,BE 92786520,92786527,FR 92786528,92786535,ES -92786536,92786539,FR -92786540,92786543,BE +92786536,92786543,FR 92786544,92786559,PT -92786560,92786623,FR -92786624,92786627,IT -92786628,92786631,FR +92786560,92786631,FR 92786632,92786639,BE 92786640,92786655,ES 92786656,92786671,PL @@ -4968,8 +4783,7 @@ 92786832,92786847,NL 92786848,92786851,FR 92786852,92786859,PL -92786860,92786879,FR -92786880,92786911,PT +92786860,92786911,FR 92786912,92786927,GB 92786928,92786935,CZ 92786936,92786943,FR @@ -4978,11 +4792,7 @@ 92786968,92786971,ES 92786972,92786975,IT 92786976,92786979,GB -92786980,92786983,NL -92786984,92786991,FR -92786992,92786999,ES -92787000,92787007,DE -92787008,92787011,IT +92786980,92787011,FR 92787012,92787015,PL 92787016,92787027,FR 92787028,92787031,GB @@ -4999,16 +4809,14 @@ 92787136,92787199,PL 92787200,92787203,FI 92787204,92787215,FR -92787216,92787247,PT +92787216,92787231,PT +92787232,92787247,FR 92787248,92787251,DE 92787252,92787255,ES -92787256,92787327,PT +92787256,92787263,PT +92787264,92787327,FR 92787328,92787331,PL -92787332,92787335,FR -92787336,92787339,GB -92787340,92787343,FR -92787344,92787359,NL -92787360,92787391,FR +92787332,92787391,FR 92787392,92787407,BE 92787408,92787423,FR 92787424,92787503,ES @@ -5018,16 +4826,16 @@ 92787536,92787543,FR 92787544,92787547,PL 92787548,92787551,FR -92787552,92787563,PT +92787552,92787555,PT +92787556,92787559,FR +92787560,92787563,PT 92787564,92787567,GB 92787568,92787615,FR 92787616,92787631,BE 92787632,92787635,FR 92787636,92787639,GB 92787640,92787647,DE -92787648,92787663,FR -92787664,92787671,DE -92787672,92787679,FR +92787648,92787679,FR 92787680,92787695,NL 92787696,92787699,FR 92787700,92787703,ES @@ -5045,13 +4853,13 @@ 92788188,92788195,PL 92788196,92788199,IT 92788200,92788203,FR -92788204,92788223,PT -92788224,92788255,FR +92788204,92788207,PT +92788208,92788255,FR 92788256,92788259,PT -92788260,92788263,ES +92788260,92788263,FR 92788264,92788271,GB 92788272,92788275,DE -92788276,92788279,BE +92788276,92788279,FR 92788280,92788283,NL 92788284,92788287,ES 92788288,92788343,FR @@ -5065,13 +4873,12 @@ 92788512,92788527,IE 92788528,92788539,FR 92788540,92788543,ES -92788544,92788607,PT +92788544,92788607,FR 92788608,92788639,NL 92788640,92788671,BE 92788672,92788683,FR 92788684,92788687,PL -92788688,92788735,FR -92788736,92788743,GB +92788688,92788743,FR 92788744,92788747,PL 92788748,92788787,FR 92788788,92788791,DE @@ -5082,17 +4889,17 @@ 92788928,92788931,BE 92788932,92788935,PL 92788936,92788943,ES -92788944,92788959,FR +92788944,92788951,GB +92788952,92788959,FR 92788960,92788963,PL 92788964,92788975,DE 92788976,92788983,PT 92788984,92788991,DE 92788992,92789007,IE -92789008,92789055,FR -92789056,92789071,CZ +92789008,92789071,FR 92789072,92789079,PL 92789080,92789083,IT -92789084,92789087,PT +92789084,92789087,FR 92789088,92789095,IT 92789096,92789119,FR 92789120,92789183,ES @@ -5129,7 +4936,7 @@ 92789484,92789487,GB 92789488,92789551,FR 92789552,92789555,ES -92789556,92789559,IE +92789556,92789559,FR 92789560,92789639,PT 92789640,92789643,IT 92789644,92789651,PL @@ -5137,53 +4944,39 @@ 92789656,92789659,ES 92789660,92789679,FR 92789680,92789695,IT -92789696,92789743,FR -92789744,92789755,PT -92789756,92789775,FR +92789696,92789775,FR 92789776,92789791,PL 92789792,92789795,GB -92789796,92789903,FR -92789904,92789907,PL -92789908,92789911,FR -92789912,92789919,NL -92789920,92789951,FR -92789952,92789983,IE -92789984,92790143,FR -92790144,92790175,IE +92789796,92790175,FR 92790176,92790191,DE 92790192,92790239,FR 92790240,92790271,IE 92790272,92790279,FR 92790280,92790283,IE 92790284,92790287,PL -92790288,92790295,CZ +92790288,92790295,FR 92790296,92790303,PT 92790304,92790335,GB 92790336,92790367,FR 92790368,92790371,PT -92790372,92790383,FR -92790384,92790399,DE -92790400,92790463,FR +92790372,92790463,FR 92790464,92790495,PT 92790496,92790511,PL -92790512,92790527,NL -92790528,92790591,FR +92790512,92790559,FR +92790560,92790591,PT 92790592,92790595,PL 92790596,92790599,GB 92790600,92790615,FR 92790616,92790619,GB 92790620,92790623,BE 92790624,92790655,PT -92790656,92790663,FR -92790664,92790671,GB -92790672,92790687,FR +92790656,92790687,FR 92790688,92790695,PL 92790696,92790703,FR 92790704,92790719,IT 92790720,92790783,FR 92790784,92790799,IE -92790800,92790803,PL -92790804,92790943,FR +92790800,92790943,FR 92790944,92790959,PT 92790960,92790975,DE 92790976,92791031,FR @@ -5195,34 +4988,27 @@ 92791216,92791223,LT 92791224,92791231,IE 92791232,92791263,FR -92791264,92791283,ES -92791284,92791287,DE -92791288,92791291,IE -92791292,92791295,PL +92791264,92791279,ES +92791280,92791283,FR +92791284,92791295,DE 92791296,92791551,GB 92791552,92791807,IE 92791808,92792063,GB 92792064,92792319,IE -92792320,92792383,CH +92792320,92792383,PT 92792384,92792415,ES 92792416,92792447,FR 92792448,92792511,ES 92792512,92792575,FR 92792576,92792831,PT -92792832,92792959,FR -92792960,92792991,CH +92792832,92792991,FR 92792992,92793023,NL 92793024,92793087,FR 92793088,92793095,CZ 92793096,92793099,BE 92793100,92793103,FR 92793104,92793119,NL -92793120,92793151,GB -92793152,92793155,DE -92793156,92793179,FR -92793180,92793183,PT -92793184,92793215,GB -92793216,92793247,IT +92793120,92793247,FR 92793248,92793279,ES 92793280,92793287,FR 92793288,92793295,DE @@ -5230,22 +5016,19 @@ 92793320,92793323,GB 92793324,92793331,FR 92793332,92793343,GB -92793344,92793887,FR -92793888,92793919,IT -92793920,92793935,FR -92793936,92793943,PT +92793344,92793943,FR 92793944,92793951,PL 92793952,92793983,FR 92793984,92794047,PL 92794048,92794143,FR 92794144,92794159,DE 92794160,92794207,NL -92794208,92794223,IE +92794208,92794223,FI 92794224,92794231,PT 92794232,92794239,ES 92794240,92794327,FR 92794328,92794335,IT -92794336,92794367,FR +92794336,92794367,IE 92794368,92794431,PL 92794432,92794463,FR 92794464,92794499,GB @@ -5285,12 +5068,11 @@ 92795552,92795559,BE 92795560,92795567,PL 92795568,92795583,IT -92795584,92795615,IE +92795584,92795615,FR 92795616,92795619,GB 92795620,92795623,PL 92795624,92795627,ES -92795628,92795631,NL -92795632,92795647,FR +92795628,92795647,FR 92795648,92795903,GB 92795904,92796159,IE 92796160,92796415,GB @@ -5299,34 +5081,30 @@ 92796428,92796431,NL 92796432,92796463,FR 92796464,92796471,GB -92796472,92796479,NL -92796480,92796511,CZ +92796472,92796511,FR 92796512,92796543,DE 92796544,92796575,PL -92796576,92796579,FR -92796580,92796583,FI +92796576,92796583,FR 92796584,92796587,PL -92796588,92796591,FR -92796592,92796607,PT -92796608,92796639,FR +92796588,92796639,FR 92796640,92796655,PT -92796656,92796687,IE +92796656,92796671,FR +92796672,92796687,GB 92796688,92796695,FR 92796696,92796703,BE 92796704,92796715,FR 92796716,92796719,PL 92796720,92796727,FR 92796728,92796735,IT -92796736,92796831,FR -92796832,92796863,IT +92796736,92796863,FR 92796864,92796879,IE 92796880,92796887,PL 92796888,92796891,FR 92796892,92796895,BE 92796896,92796903,PL -92796904,92796907,GB +92796904,92796907,FR 92796908,92796911,PL -92796912,92796919,GB +92796912,92796919,FR 92796920,92796923,BE 92796924,92796991,FR 92796992,92797023,ES @@ -5344,8 +5122,7 @@ 92797176,92797179,LT 92797180,92797183,FR 92797184,92797215,PT -92797216,92797219,FR -92797220,92797223,NL +92797216,92797223,FR 92797224,92797247,CH 92797248,92797311,FR 92797312,92797315,NL @@ -5364,10 +5141,9 @@ 92797460,92797475,FR 92797476,92797483,PL 92797484,92797487,FR -92797488,92797503,DE +92797488,92797503,GB 92797504,92797507,IT -92797508,92797511,PT -92797512,92797515,PL +92797508,92797515,FR 92797516,92797519,LT 92797520,92797523,FR 92797524,92797527,PT @@ -5380,16 +5156,16 @@ 92797800,92797803,CH 92797804,92797823,FR 92797824,92797887,PL -92797888,92797903,FR -92797904,92797911,NL +92797888,92797911,FR 92797912,92797915,GB 92797916,92797919,DE 92797920,92797951,FR 92797952,92797959,GB 92797960,92797963,FR 92797964,92797967,FI -92797968,92797987,FR -92797988,92797991,DE +92797968,92797983,FR +92797984,92797987,GB +92797988,92797991,FR 92797992,92797995,LT 92797996,92797999,CZ 92798000,92798007,CH @@ -5407,30 +5183,28 @@ 92798128,92798143,NL 92798144,92798159,PL 92798160,92798163,DE -92798164,92798175,FR -92798176,92798191,PT +92798164,92798191,FR 92798192,92798207,IT 92798208,92798211,NL 92798212,92798215,FR 92798216,92798219,CZ 92798220,92798223,FR -92798224,92798231,IE +92798224,92798231,PL 92798232,92798239,FR 92798240,92798247,PL 92798248,92798255,FR 92798256,92798271,FI 92798272,92798275,ES -92798276,92798279,NL -92798280,92798283,CH +92798276,92798283,FR 92798284,92798287,PL -92798288,92798303,PT -92798304,92798319,FR +92798288,92798319,FR 92798320,92798335,DE -92798336,92798399,ES +92798336,92798399,FR 92798400,92798415,GB 92798416,92798431,FR 92798432,92798439,PL -92798440,92798451,IT +92798440,92798447,FR +92798448,92798451,IT 92798452,92798455,FI 92798456,92798975,FR 92798976,93323263,RU @@ -5478,7 +5252,9 @@ 93652992,93655039,GB 93655040,93667327,CH 93667328,93675519,BA -93675520,93679615,IQ +93675520,93678463,IQ +93678464,93678591,US +93678592,93679615,IQ 93679616,93681663,LU 93681664,93683711,UA 93683712,93685759,AT @@ -5525,8 +5301,7 @@ 93913152,93913155,AU 93913156,93913159,CN 93913160,93913167,IL -93913168,93913183,US -93913184,93913191,NL +93913168,93913191,US 93913192,93913195,TR 93913196,93913207,US 93913208,93913223,NL @@ -5536,7 +5311,7 @@ 93913248,93913271,US 93913272,93913279,TR 93913280,93913319,US -93913320,93913327,EG +93913320,93913327,NL 93913328,93913335,US 93913336,93913343,BR 93913344,93913351,NL @@ -5546,16 +5321,17 @@ 93913384,93913391,BS 93913392,93913399,IS 93913400,93913407,CA -93913408,93913415,US +93913408,93913415,RU 93913416,93913423,IN 93913424,93913431,IL 93913432,93913435,TR -93913436,93913455,NL +93913436,93913439,NL +93913440,93913455,US 93913456,93913463,SA 93913464,93913471,NL 93913472,93913479,IE 93913480,93913487,BR -93913488,93913495,US +93913488,93913495,PL 93913496,93913503,DK 93913504,93913511,MA 93913512,93913519,DK @@ -5570,11 +5346,12 @@ 93913584,93913599,US 93913600,93913615,JO 93913616,93913623,TR -93913624,93913631,US -93913632,93913647,NL +93913624,93913631,NL +93913632,93913647,US 93913648,93913655,IN 93913656,93913663,RU -93913664,93913687,US +93913664,93913671,SA +93913672,93913687,US 93913688,93913703,IL 93913704,93913711,ZA 93913712,93913719,CA @@ -5588,29 +5365,26 @@ 93913856,93913863,EE 93913864,93913871,EG 93913872,93913887,VG -93913888,93913919,NL -93913920,93913951,US +93913888,93913951,US 93913952,93913983,JO 93913984,93914015,US 93914016,93914111,NL 93914112,93914119,NO 93914120,93914127,RU 93914128,93914135,AF -93914136,93914143,US -93914144,93914151,IL -93914152,93914159,US +93914136,93914159,US 93914160,93914167,JO -93914168,93914171,RU +93914168,93914171,SE 93914172,93914183,NL 93914184,93914191,TR 93914192,93914199,CN 93914200,93914207,US 93914208,93914215,IL -93914216,93914223,TR +93914216,93914223,US 93914224,93914231,RU -93914232,93914239,US -93914240,93914247,NL -93914248,93914263,US +93914232,93914239,CN +93914240,93914255,NL +93914256,93914263,US 93914264,93914271,IN 93914272,93914279,ZA 93914280,93914283,KW @@ -5620,35 +5394,33 @@ 93914320,93914323,US 93914324,93914327,SA 93914328,93914331,GB -93914332,93914333,TR -93914334,93914335,NL +93914332,93914335,NL 93914336,93914343,RO -93914344,93914351,NL -93914352,93914355,AU -93914356,93914357,ES -93914358,93914359,NL +93914344,93914359,NL 93914360,93914367,AE 93914368,93914375,ES 93914376,93914391,BE 93914392,93914399,US 93914400,93914407,BE -93914408,93914439,NL +93914408,93914431,NL +93914432,93914439,US 93914440,93914447,TR 93914448,93914455,US 93914456,93914463,NO 93914464,93914471,TR -93914472,93914479,NL +93914472,93914479,BR 93914480,93914487,HR 93914488,93914495,NL -93914496,93914527,GT +93914496,93914527,DK 93914528,93914543,US 93914544,93914551,QA -93914552,93914567,US +93914552,93914559,SG +93914560,93914567,US 93914568,93914571,SE 93914572,93914575,US 93914576,93914583,NO 93914584,93914587,US -93914588,93914591,TR +93914588,93914591,SA 93914592,93914599,NL 93914600,93914663,US 93914664,93914671,NL @@ -5656,8 +5428,7 @@ 93914680,93914687,IL 93914688,93914703,US 93914704,93914707,ES -93914708,93914709,US -93914710,93914711,NL +93914708,93914711,NL 93914712,93914719,US 93914720,93914727,ES 93914728,93914735,NL @@ -5678,7 +5449,7 @@ 93914944,93914959,US 93914960,93914967,NL 93914968,93914975,NO -93914976,93914983,LV +93914976,93914983,AU 93914984,93914991,JO 93914992,93914999,CA 93915000,93915007,NL @@ -5696,9 +5467,9 @@ 93915216,93915223,CA 93915224,93915231,US 93915232,93915239,GB -93915240,93915247,BR +93915240,93915247,US 93915248,93915263,NL -93915264,93915271,US +93915264,93915271,AE 93915272,93915279,NL 93915280,93915295,JP 93915296,93915303,NL @@ -5712,9 +5483,9 @@ 93915552,93915559,US 93915560,93915575,NL 93915576,93915583,US -93915584,93915615,NL -93915616,93915623,BD -93915624,93915663,NL +93915584,93915623,NL +93915624,93915631,EG +93915632,93915663,NL 93915664,93915679,US 93915680,93915807,NL 93915808,93915815,CN @@ -5722,12 +5493,10 @@ 93915832,93915839,CN 93915840,93915855,NL 93915856,93915863,US -93915864,93915879,NL -93915880,93915887,US -93915888,93915895,NL +93915864,93915871,NL +93915872,93915895,US 93915896,93915903,AT -93915904,93915911,NL -93915912,93915919,US +93915904,93915919,US 93915920,93915951,NL 93915952,93915959,CN 93915960,93915967,US @@ -5740,31 +5509,27 @@ 93916048,93916055,US 93916056,93916063,ES 93916064,93916071,US -93916072,93916127,NL +93916072,93916079,FI +93916080,93916127,NL 93916128,93916135,US 93916136,93916143,ES -93916144,93916159,NL -93916160,93916175,US +93916144,93916175,US 93916176,93916179,SA -93916180,93916183,NL +93916180,93916183,IN 93916184,93916191,FR 93916192,93916199,IL 93916200,93916207,AE 93916208,93916223,NL -93916224,93916255,US -93916256,93916287,NL -93916288,93916303,US -93916304,93916305,NL -93916306,93916307,AU -93916308,93916311,NL +93916224,93916295,US +93916296,93916303,DE +93916304,93916311,NL 93916312,93916319,US 93916320,93916323,NL 93916324,93916327,EG 93916328,93916351,US 93916352,93916383,NL 93916384,93916407,US -93916408,93916411,BD -93916412,93916415,NL +93916408,93916415,NL 93916416,93916455,US 93916456,93916463,CY 93916464,93916487,NL @@ -5777,23 +5542,34 @@ 93916544,93916607,NL 93916608,93916615,US 93916616,93916623,CY -93916624,93916655,NL -93916656,93916659,US +93916624,93916631,NL +93916632,93916639,US +93916640,93916647,NL +93916648,93916651,SA +93916652,93916659,US 93916660,93916663,NL 93916664,93916671,US -93916672,93916719,NL +93916672,93916687,NL +93916688,93916695,US +93916696,93916719,NL 93916720,93916727,CY 93916728,93916735,US 93916736,93916767,NL 93916768,93916775,US 93916776,93916783,CY -93916784,93916823,NL +93916784,93916807,NL +93916808,93916815,US +93916816,93916823,NL 93916824,93916831,CY -93916832,93916879,NL +93916832,93916839,US +93916840,93916847,NL +93916848,93916855,ES +93916856,93916863,US +93916864,93916879,NL 93916880,93916887,CY -93916888,93916895,US -93916896,93916899,BZ -93916900,93916911,NL +93916888,93916899,US +93916900,93916903,NL +93916904,93916911,US 93916912,93916919,CY 93916920,93916935,US 93916936,93916939,CY @@ -5802,16 +5578,18 @@ 93916952,93916959,NL 93916960,93916967,US 93916968,93916971,CY -93916972,93916975,US -93916976,93916991,NL +93916972,93916983,US +93916984,93916991,NL 93916992,93917003,US -93917004,93917023,NL +93917004,93917007,NL +93917008,93917015,US +93917016,93917023,NL 93917024,93917031,US 93917032,93917039,NL 93917040,93917063,US 93917064,93917071,CY 93917072,93917079,US -93917080,93917087,AE +93917080,93917087,FI 93917088,93917095,US 93917096,93917119,NL 93917120,93917135,US @@ -5819,16 +5597,20 @@ 93917144,93917167,US 93917168,93917183,NL 93917184,93917191,US -93917192,93917311,NL +93917192,93917247,NL +93917248,93917255,US +93917256,93917311,NL 93917312,93917343,US 93917344,93917359,NL -93917360,93917511,US +93917360,93917375,US +93917376,93917383,NO +93917384,93917511,US 93917512,93917519,NL 93917520,93917527,US 93917528,93917535,CN 93917536,93917539,MA 93917540,93917543,SE -93917544,93917551,US +93917544,93917551,NL 93917552,93917559,GB 93917560,93917563,NL 93917564,93917567,ES @@ -5840,8 +5622,7 @@ 93917600,93917607,GB 93917608,93917611,NL 93917612,93917615,TR -93917616,93917623,NL -93917624,93917631,US +93917616,93917631,US 93917632,93917639,GB 93917640,93917647,RS 93917648,93917655,DE @@ -5853,7 +5634,7 @@ 93917704,93917707,NL 93917708,93917711,RU 93917712,93917727,US -93917728,93917735,ES +93917728,93917735,SE 93917736,93917743,GB 93917744,93917751,NL 93917752,93917791,US @@ -5861,33 +5642,32 @@ 93917800,93917823,NL 93917824,93917855,TR 93917856,93917863,CY -93917864,93917867,NL -93917868,93917871,TR -93917872,93917907,NL +93917864,93917871,TR +93917872,93917879,NL +93917880,93917887,MA +93917888,93917907,NL 93917908,93917911,US 93917912,93917927,NL 93917928,93917935,BG 93917936,93917943,IN -93917944,93917947,NL -93917948,93917949,US -93917950,93917953,NL -93917954,93917955,US +93917944,93917955,NL 93917956,93917959,IN 93917960,93917963,TR 93917964,93917967,NL 93917968,93917975,US 93917976,93917979,NL -93917980,93917991,TR +93917980,93917983,TR +93917984,93917991,US 93917992,93917999,NL 93918000,93918007,US 93918008,93918015,TR 93918016,93918023,RS 93918024,93918031,GB -93918032,93918047,US +93918032,93918039,US +93918040,93918047,FR 93918048,93918063,GB 93918064,93918071,SE -93918072,93918073,US -93918074,93918075,NL +93918072,93918075,NL 93918076,93918079,TR 93918080,93918087,GB 93918088,93918095,CN @@ -5900,7 +5680,8 @@ 93918152,93918159,AE 93918160,93918175,NL 93918176,93918183,AE -93918184,93918199,US +93918184,93918191,US +93918192,93918199,CN 93918200,93918207,NL 93918208,93918223,US 93918224,93918231,RO @@ -5921,10 +5702,10 @@ 93918352,93918359,CN 93918360,93918363,EG 93918364,93918367,AU -93918368,93918399,NL -93918400,93918431,US +93918368,93918383,NL +93918384,93918431,US 93918432,93918439,NL -93918440,93918447,MA +93918440,93918447,ZA 93918448,93918455,NL 93918456,93918463,CN 93918464,93918471,AU @@ -5962,11 +5743,10 @@ 93918872,93918879,RU 93918880,93918887,TH 93918888,93918895,EG -93918896,93918903,HK +93918896,93918903,US 93918904,93918911,GB -93918912,93918919,NL -93918920,93918927,HK -93918928,93918935,RU +93918912,93918927,NL +93918928,93918935,FR 93918936,93918943,NL 93918944,93918975,US 93918976,93919007,MA @@ -5974,9 +5754,7 @@ 93919016,93919023,RU 93919024,93919031,US 93919032,93919039,DK -93919040,93919087,NL -93919088,93919095,AE -93919096,93919103,NL +93919040,93919103,NL 93919104,93919135,TR 93919136,93919143,US 93919144,93919147,NL @@ -6004,14 +5782,11 @@ 93919328,93919335,NL 93919336,93919343,US 93919344,93919359,NL -93919360,93919423,US -93919424,93919431,NL -93919432,93919439,US +93919360,93919439,US 93919440,93919443,AU 93919444,93919451,US 93919452,93919455,TR -93919456,93919463,US -93919464,93919471,NL +93919456,93919471,NL 93919472,93919551,US 93919552,93919583,CA 93919584,93919591,PT @@ -6023,7 +5798,7 @@ 93919632,93919639,GB 93919640,93919647,NL 93919648,93919655,US -93919656,93919659,TR +93919656,93919659,NL 93919660,93919663,US 93919664,93919671,NL 93919672,93919679,ES @@ -6038,18 +5813,16 @@ 93919752,93919759,MY 93919760,93919775,NL 93919776,93919779,US -93919780,93919781,NL -93919782,93919783,AU +93919780,93919783,NL 93919784,93919791,US 93919792,93919799,NL 93919800,93919807,US 93919808,93919811,NL 93919812,93919815,US -93919816,93919819,NL -93919820,93919821,SA -93919822,93919855,NL -93919856,93919863,US -93919864,93919911,NL +93919816,93919855,NL +93919856,93919863,ES +93919864,93919871,MA +93919872,93919911,NL 93919912,93919919,PT 93919920,93919943,US 93919944,93919991,NL @@ -6066,10 +5839,7 @@ 93920168,93920175,NL 93920176,93920183,CY 93920184,93920187,TR -93920188,93920189,ES -93920190,93920199,NL -93920200,93920201,AU -93920202,93920203,NL +93920188,93920203,NL 93920204,93920207,IL 93920208,93920215,NL 93920216,93920223,IL @@ -6082,13 +5852,11 @@ 93920396,93920407,NL 93920408,93920415,US 93920416,93920423,NL -93920424,93920431,MX +93920424,93920431,GB 93920432,93920447,US 93920448,93920463,NL 93920464,93920479,TR -93920480,93920483,US -93920484,93920487,NL -93920488,93920495,US +93920480,93920495,US 93920496,93920503,FR 93920504,93920511,NL 93920512,93920519,US @@ -6099,13 +5867,46 @@ 93920576,93920639,NL 93920640,93920643,IN 93920644,93920703,US -93920704,93920711,BZ +93920704,93920707,NL +93920708,93920711,US 93920712,93920719,NL 93920720,93920735,BZ 93920736,93920783,US -93920784,93920791,NL -93920792,93920795,US -93920796,93929471,NL +93920784,93920795,NL +93920796,93920799,US +93920800,93920831,NL +93920832,93920851,US +93920852,93920855,HR +93920856,93920879,US +93920880,93920895,NL +93920896,93920935,US +93920936,93920943,NL +93920944,93920951,US +93920952,93920959,TH +93920960,93920971,US +93920972,93920975,NL +93920976,93921031,US +93921032,93921039,RO +93921040,93921047,US +93921048,93921055,NL +93921056,93921103,US +93921104,93921111,GB +93921112,93921119,NL +93921120,93921127,US +93921128,93921131,PL +93921132,93921135,US +93921136,93921143,NL +93921144,93921175,US +93921176,93921183,NL +93921184,93921203,US +93921204,93921207,NL +93921208,93921231,US +93921232,93921247,BS +93921248,93921255,US +93921256,93921259,NL +93921260,93921271,US +93921272,93921279,TR +93921280,93929471,NL 93929472,93939711,GB 93939712,93941759,NO 93941760,93945855,CH @@ -6195,9 +5996,9 @@ 95365120,95367167,ES 95367168,95369215,IT 95369216,95371263,GB -95371264,95374847,EU -95374848,95375103,LY -95375104,95375359,EU +95371264,95374591,IT +95374592,95374847,EU +95374848,95375359,LY 95375360,95377407,NL 95377408,95387647,RU 95387648,95416319,DE @@ -6250,8 +6051,7 @@ 96145408,96149503,GB 96149504,96151551,ES 96151552,96153599,RU -96153600,96155135,PL -96155136,96155647,IE +96153600,96155647,PL 96155648,96157695,CH 96157696,96165887,RU 96165888,96167935,GP @@ -6259,7 +6059,9 @@ 96169984,96172031,GY 96172032,96174079,FR 96174080,96206847,HU -96206848,96337919,RU +96206848,96272383,RU +96272384,96288767,PA +96288768,96337919,RU 96337920,96403455,IR 96403456,96468991,AZ 96468992,96731135,RO @@ -6354,7 +6156,9 @@ 96927680,96960511,GB 96960512,96963639,DE 96963640,96963647,AT -96963648,96964607,DE +96963648,96963999,DE +96964000,96964031,IR +96964032,96964607,DE 96964608,96968703,NL 96968704,96971527,LT 96971528,96971535,CA @@ -6396,11 +6200,7 @@ 96972704,96972727,RU 96972728,96972767,LT 96972768,96972783,FR -96972784,96972786,LT -96972787,96972787,NL -96972788,96972789,LT -96972790,96972790,NL -96972791,96972799,LT +96972784,96972799,LT 96972800,96974847,DE 96974848,96985087,RU 96985088,96987135,ES @@ -6939,7 +6739,8 @@ 98738176,98740223,NO 98740224,98740735,ES 98740736,98741247,US -98741248,98742271,DE +98741248,98741503,ES +98741504,98742271,DE 98742272,98744319,GB 98744320,98746367,ES 98746368,98762751,TR @@ -6969,7 +6770,9 @@ 100335616,100401151,KZ 100401152,100532223,DE 100532224,100564991,RO -100564992,100573183,SE +100564992,100568063,SE +100568064,100568319,FR +100568320,100573183,SE 100573184,100575231,GB 100575232,100577279,SE 100577280,100579327,RU @@ -7009,16 +6812,22 @@ 135603200,135604223,CA 135604224,135606783,US 135606784,135607295,CA -135607296,135790591,US +135607296,135776255,US +135776256,135776511,GU +135776512,135790591,US 135790592,135794687,CA 135794688,136237055,US 136237056,136239103,CA 136239104,136415487,US 136415488,136415743,CA -136415744,152305663,US +136415744,136699903,US +136699904,136703999,A2 +136704000,152305663,US 152305664,152338431,GB 152338432,167772159,US -184549376,201859071,US +184549376,201673767,US +201673768,201673775,CA +201673776,201859071,US 201859072,201859087,VI 201859088,201897983,US 201897984,201898239,PR @@ -7030,21 +6839,13 @@ 202935552,202935807,PR 202935808,203625391,US 203625392,203625399,PR -203625400,203658287,US -203658288,203658303,VI -203658304,203658415,US +203625400,203658415,US 203658416,203658423,VI 203658424,203658463,US 203658464,203658471,VI -203658472,203658927,US -203658928,203658935,VI -203658936,203658943,US -203658944,203658951,PR -203658952,203658967,US -203658968,203658991,VI -203658992,203659007,US -203659008,203659263,VI -203659264,204046335,US +203658472,203659071,US +203659072,203659087,VI +203659088,204046335,US 204046336,204047103,PR 204047104,204047231,US 204047232,204047247,VI @@ -7052,7 +6853,9 @@ 204047256,204047263,VI 204047264,204047311,US 204047312,204047335,VI -204047336,204047439,US +204047336,204047391,US +204047392,204047423,VI +204047424,204047439,US 204047440,204047455,VI 204047456,204047463,US 204047464,204047471,VI @@ -7097,17 +6900,15 @@ 209867104,209867111,CA 209867112,210458623,US 210458624,210458631,PR -210458632,210785791,US -210785792,210786047,BO -210786048,211126783,US +210458632,211126783,US 211126784,211126911,PR 211126912,211263999,US 211264000,211264255,SA -211264256,211597055,US -211597056,211597071,VI -211597072,211597375,US -211597376,211597439,VI -211597440,211597719,US +211264256,211597311,US +211597312,211597343,VI +211597344,211597375,US +211597376,211597567,VI +211597568,211597719,US 211597720,211597727,VI 211597728,211597743,PR 211597744,211597775,US @@ -7138,14 +6939,13 @@ 212789192,212789215,US 212789216,212789223,VI 212789224,212791295,US -212791296,212791447,VI -212791448,212791455,US +212791296,212791439,VI +212791440,212791455,US 212791456,212791479,VI -212791480,212791551,PR +212791480,212791487,US +212791488,212791551,PR 212791552,212791815,US -212791816,212791871,VI -212791872,212791935,US -212791936,212792063,VI +212791816,212792063,VI 212792064,212792199,US 212792200,212792215,VI 212792216,212792223,US @@ -7157,8 +6957,8 @@ 212793128,212793199,US 212793200,212793207,VI 212793208,212793311,US -212793312,212793327,PR -212793328,212794575,US +212793312,212793335,PR +212793336,212794575,US 212794576,212794583,VI 212794584,212794783,US 212794784,212794791,VI @@ -7206,7 +7006,9 @@ 214698368,214698383,US 214698384,214698639,PR 214698640,214698655,VI -214698656,214698911,PR +214698656,214698831,PR +214698832,214698847,US +214698848,214698911,PR 214698912,214698927,US 214698928,214699231,PR 214699232,214699271,US @@ -7226,19 +7028,15 @@ 214699648,214699775,VI 214699776,214699799,US 214699800,214699807,PR -214699808,214699839,US -214699840,214699847,PR -214699848,214699879,US +214699808,214699879,US 214699880,214699895,PR 214699896,214699911,US 214699912,214699919,VI -214699920,214699951,US -214699952,214699959,PR -214699960,214699975,US +214699920,214699975,US 214699976,214699991,VI -214699992,214700015,US -214700016,214700023,PR -214700024,214858655,US +214699992,214778367,US +214778368,214778879,PR +214778880,214858655,US 214858656,214858671,NL 214858672,215001343,US 215001344,215001599,VI @@ -7246,12 +7044,10 @@ 215002112,215002127,VI 215002128,216417663,US 216417664,216417727,PR -216417728,218955263,US -218955264,218955391,CA -218955392,219187465,US +216417728,219187465,US 219187466,219187467,EU 219187468,219249919,US -219249920,219250175,GB +219249920,219250175,NL 219250176,219512063,US 219512064,219512319,GB 219512320,234881023,US @@ -7320,9 +7116,7 @@ 247472128,247479295,JP 247479296,247480319,CN 247480320,247482367,MY -247482368,247482879,PG -247482880,247483135,AU -247483136,247483391,PG +247482368,247483391,PG 247483392,247484415,CN 247484416,247488511,KR 247488512,247496703,JP @@ -7365,9 +7159,19 @@ 266586368,266586623,CA 266586624,266598655,US 266598656,266598911,BR -266598912,288195071,US -288195072,288198655,CA -288198656,289011535,US +266598912,288167423,US +288167424,288167935,CA +288167936,288169471,US +288169472,288169983,CA +288169984,288196607,US +288196608,288197119,CA +288197120,288197631,US +288197632,288198143,CA +288198144,288212991,US +288212992,288215039,CA +288215040,288223231,US +288223232,288227327,CA +288227328,289011535,US 289011536,289011543,IT 289011544,289406975,US 289406976,289603583,IE @@ -7424,7 +7228,9 @@ 290423808,290424831,SE 290424832,290513663,US 290513664,290513919,MY -290513920,323243895,US +290513920,290856959,US +290856960,290865151,AU +290865152,323243895,US 323243896,323243903,FR 323243904,332132119,US 332132120,332132127,IL @@ -7436,9 +7242,9 @@ 344262656,344262911,GB 344262912,344268817,US 344268818,344268818,EU -344268819,344270860,US -344270861,344270861,GB -344270862,344588543,US +344268819,344270932,US +344270933,344270933,DE +344270934,344588543,US 344588544,344589055,GB 344589056,344592895,US 344592896,344592945,GB @@ -7518,7 +7324,9 @@ 406183936,406208511,CA 406216704,406241279,US 406241280,406257663,PR -406274048,406290431,PR +406274048,406282345,PR +406282346,406282346,US +406282347,406290431,PR 406290432,406298623,US 406298624,406306815,PR 406306816,406323199,CA @@ -7552,9 +7360,7 @@ 410174836,410174839,US 410174840,410174843,CA 410174844,410174847,US -410174848,410177735,CA -410177736,410177743,US -410177744,410180643,CA +410174848,410180643,CA 410180644,410180647,US 410180648,410180695,CA 410180696,410180703,US @@ -7566,7 +7372,15 @@ 410180772,410180775,US 410180776,410186719,CA 410186720,410186723,US -410186724,410187015,CA +410186724,410186899,CA +410186900,410186903,US +410186904,410186971,CA +410186972,410186979,US +410186980,410186983,CA +410186984,410186999,US +410187000,410187003,CA +410187004,410187007,US +410187008,410187015,CA 410187016,410187023,US 410187024,410187175,CA 410187176,410187183,US @@ -7589,9 +7403,7 @@ 411664384,411680767,US 411680768,411682391,CA 411682392,411682399,US -411682400,411683863,CA -411683864,411683871,US -411683872,411684599,CA +411682400,411684599,CA 411684600,411684607,US 411684608,411688831,CA 411688832,411688863,US @@ -7629,8 +7441,7 @@ 413925376,415760383,US 415760384,416022527,CA 416022528,416059391,US -416059392,416063487,CA -416071680,416088063,CA +416059392,416088063,CA 416088064,416153599,US 416153600,416161791,BS 416161792,416219135,US @@ -7745,7 +7556,6 @@ 459472896,459505663,AU 459505664,459538431,CN 459538432,459539455,AU -459539456,459540479,TH 459540480,459541503,JP 459541504,459542527,IN 459542528,459544575,HK @@ -7824,7 +7634,8 @@ 460596224,460597247,AU 460598272,460599295,CN 460599296,460601343,IN -460601344,460602367,AF +460601344,460601599,US +460601600,460602367,AF 460602368,460603391,KH 460603392,460718079,KR 460718080,460722175,JP @@ -7997,10 +7808,13 @@ 520593408,520595455,AM 520595456,520597503,MK 520597504,520597567,DE -520597568,520597599,IT +520597568,520597583,NO +520597584,520597599,DE 520597600,520597631,HK 520597632,520597663,IT -520597664,520598047,DE +520597664,520597759,DE +520597760,520598015,GB +520598016,520598047,DE 520598048,520598079,FR 520598080,520599935,DE 520599936,520600063,US @@ -8054,9 +7868,15 @@ 520980480,520982527,IT 520982528,520984575,RU 520984576,520984831,NG -520984832,520985471,GB +520984832,520985311,GB +520985312,520985343,NG +520985344,520985471,GB 520985472,520985535,SG -520985536,520986623,GB +520985536,520985599,GB +520985600,520985631,FR +520985632,520986383,GB +520986384,520986399,NG +520986400,520986623,GB 520986624,520988671,PS 520988672,520990719,DE 520990720,520992767,RU @@ -8292,14 +8112,7 @@ 523197184,523197311,AE 523197312,523197695,BH 523197696,523198207,AE -523198208,523198247,BH -523198248,523198255,AE -523198256,523198263,BH -523198264,523198271,AE -523198272,523198279,BH -523198280,523198287,AE -523198288,523198295,BH -523198296,523198463,AE +523198208,523198463,LB 523198464,523202559,CZ 523202560,523223039,RU 523223040,523225087,AM @@ -8355,8 +8168,7 @@ 528723968,528726015,ES 528726016,528736255,RU 528736256,528740351,SK -528740352,528742143,IT -528742144,528742399,US +528740352,528742399,IT 528742400,528744447,RU 528744448,528746495,GB 528748544,528752639,CZ @@ -8474,7 +8286,9 @@ 531263488,531265535,RU 531265536,531267583,GB 531267584,531275775,UA -531275776,531277823,US +531275776,531276799,US +531276800,531277311,GB +531277312,531277823,US 531277824,531279871,RU 531279872,531281919,CZ 531281920,531283967,RU @@ -8539,13 +8353,9 @@ 531429168,531429175,IT 531429176,531429239,GB 531429240,531429247,IT -531429248,531429271,GB -531429272,531429279,IT -531429280,531429407,GB +531429248,531429407,GB 531429408,531429415,IT -531429416,531429487,GB -531429488,531429495,IT -531429496,531429879,GB +531429416,531429879,GB 531429880,531429887,IT 531429888,531429911,GB 531429912,531429919,IT @@ -8631,18 +8441,22 @@ 532341760,532342783,GB 532342784,532343039,US 532343040,532343359,GB -532343360,532343551,US -532343552,532343935,GB +532343360,532343487,US +532343488,532343935,GB 532343936,532343967,US 532343968,532344063,GB 532344064,532344575,US 532344576,532346879,GB 532346880,532347135,US 532347136,532347903,GB -532347904,532348415,US -532348416,532348927,GB +532347904,532348671,US +532348672,532348927,NL 532348928,532365311,PL -532365312,532373503,DE +532365312,532365823,AU +532365824,532366079,CN +532366080,532366335,DE +532366336,532367359,GB +532367360,532373503,DE 532373504,532375551,RU 532375552,532377599,IT 532377600,532381695,DE @@ -8701,7 +8515,9 @@ 532801536,532803583,DK 532803584,532805631,FR 532805632,532807679,SE -532807680,533200895,IT +532807680,532984575,IT +532984576,532984831,US +532984832,533200895,IT 533200896,533233663,TR 533233664,533250047,IE 533250048,533254143,RU @@ -8709,314 +8525,7 @@ 533256192,533262335,RU 533262336,533264383,ES 533264384,533266431,RU -533266432,533266435,US -533266436,533266439,CN -533266440,533266443,JP -533266444,533266447,DE -533266448,533266451,FR -533266452,533266455,GB -533266456,533266459,BR -533266460,533266463,IT -533266464,533266467,CA -533266468,533266471,IN -533266472,533266475,RU -533266476,533266479,ES -533266480,533266483,AU -533266484,533266487,MX -533266488,533266491,KR -533266492,533266495,NL -533266496,533266499,TR -533266500,533266503,ID -533266504,533266507,CH -533266508,533266511,PL -533266512,533266515,BE -533266516,533266519,SE -533266520,533266523,SA -533266524,533266527,TW -533266528,533266531,SJ -533266532,533266535,AT -533266536,533266539,AR -533266540,533266543,ZA -533266544,533266547,IR -533266548,533266551,TH -533266552,533266555,DK -533266556,533266559,GR -533266560,533266563,AE -533266564,533266567,VE -533266568,533266571,CO -533266572,533266575,FI -533266576,533266579,MV -533266580,533266583,PT -533266584,533266587,HK -533266588,533266591,SG -533266592,533266595,EG -533266596,533266599,NG -533266600,533266603,IL -533266604,533266607,IE -533266608,533266611,CL -533266612,533266615,CZ -533266616,533266619,PH -533266620,533266623,PK -533266624,533266627,RO -533266628,533266631,DZ -533266632,533266635,PE -533266636,533266639,NZ -533266640,533266643,KZ -533266644,533266647,UA -533266648,533266651,KW -533266652,533266655,QA -533266656,533266687,DE -533266688,533266691,HU -533266692,533266695,BD -533266696,533266699,VN -533266700,533266703,MA -533266704,533266707,SK -533266708,533266711,AO -533266712,533266715,IQ -533266716,533266719,LY -533266720,533266723,SD -533266724,533266727,EC -533266728,533266731,HR -533266732,533266735,SY -533266736,533266739,OM -533266740,533266743,BY -533266744,533266747,LU -533266748,533266751,AZ -533266752,533266755,DO -533266756,533266759,LK -533266760,533266763,SI -533266764,533266767,FR -533266768,533266771,BG -533266772,533266775,TN -533266776,533266779,GT -533266780,533266783,UY -533266784,533266787,LB -533266788,533266791,UZ -533266792,533266795,RS -533266796,533266799,LT -533266800,533266803,MM -533266804,533266807,CR -533266808,533266811,KE -533266812,533266815,ET -533266816,533266819,YE -533266820,533266823,PA -533266824,533266827,JO -533266828,533266831,LV -533266832,533266835,CY -533266836,533266839,TZ -533266840,533266843,CI -533266844,533266847,CM -533266848,533266851,SV -533266852,533266855,BH -533266856,533266859,TT -533266860,533266863,EE -533266864,533266867,BO -533266868,533266871,GH -533266872,533266875,PY -533266876,533266879,UG -533266880,533266883,AF -533266884,533266887,BA -533266888,533266891,ZM -533266892,533266895,HN -533266896,533266899,NP -533266900,533266903,GQ -533266904,533266907,JM -533266908,533266911,IS -533266912,533266943,DE -533266944,533266947,SN -533266948,533266951,CD -533266952,533266955,GA -533266956,533266959,US -533266960,533266963,BN -533266964,533266967,CG -533266968,533266971,AL -533266972,533266975,NA -533266976,533266979,KH -533266980,533266983,GE -533266984,533266987,MK -533266988,533266991,MU -533266992,533266995,ML -533266996,533266999,AM -533267000,533267003,PG -533267004,533267007,BF -533267008,533267011,MG -533267012,533267015,MT -533267016,533267019,TD -533267020,533267023,BS -533267024,533267027,HT -533267028,533267031,BJ -533267032,533267035,NI -533267036,533267039,LS -533267040,533267043,MN -533267044,533267047,RW -533267048,533267051,NE -533267052,533267055,TJ -533267056,533267059,ZW -533267060,533267063,MD -533267064,533267067,MW -533267068,533267071,KG -533267072,533267075,GN -533267076,533267079,BB -533267080,533267083,ME -533267084,533267087,MR -533267088,533267091,SR -533267092,533267095,SZ -533267096,533267099,FJ -533267100,533267103,TG -533267104,533267107,ER -533267108,533267111,GY -533267112,533267115,CF -533267116,533267119,SL -533267120,533267123,LS -533267124,533267127,CV -533267128,533267131,BI -533267132,533267135,MV -533267136,533267139,BZ -533267140,533267143,BT -533267144,533267147,DJ -533267148,533267151,AG -533267152,533267155,GM -533267156,533267159,LC -533267160,533267163,LR -533267164,533267167,SC -533267168,533267199,DE -533267200,533267423,US -533267424,533267455,DE -533267456,533267679,CN -533267680,533267711,DE -533267712,533267935,JP -533267936,533268223,DE -533268224,533268447,FR -533268448,533268479,DE -533268480,533268703,GB -533268704,533268735,DE -533268736,533268959,BR -533268960,533268991,DE -533268992,533269215,IT -533269216,533269247,DE -533269248,533269471,CA -533269472,533269503,DE -533269504,533269727,IN -533269728,533269759,DE -533269760,533269983,ES -533269984,533270015,DE -533270016,533270239,AU -533270240,533270271,DE -533270272,533270495,KR -533270496,533270527,DE -533270528,533270751,NL -533270752,533270783,DE -533270784,533271039,DK -533271040,533271295,EE -533271296,533271551,FO -533271552,533271807,GE -533271808,533272063,FR -533272064,533272319,DE -533272320,533272575,GI -533272576,533272831,GR -533272832,533273087,GL -533273088,533273343,GG -533273344,533273599,VA -533273600,533273855,HU -533273856,533274111,IS -533274112,533274367,IR -533274368,533274623,IQ -533274624,533274879,IE -533274880,533275135,IM -533275136,533275391,IL -533275392,533275647,IT -533275648,533275903,JE -533275904,533276159,JO -533276160,533276415,KZ -533276416,533276671,KW -533276672,533276927,KG -533276928,533277183,LV -533277184,533277439,LB -533277440,533277695,LI -533277696,533277951,LT -533277952,533278207,LU -533278208,533278463,MT -533278464,533278719,MC -533278720,533278975,ME -533278976,533279231,NL -533279232,533279487,NO -533279488,533279743,OM -533279744,533279999,PS -533280000,533280255,PL -533280256,533280511,PT -533280512,533280767,RO -533280768,533281023,RU -533281024,533281279,SM -533281280,533281535,SA -533281536,533281791,RS -533281792,533282047,SK -533282048,533282303,SI -533282304,533282559,ES -533282560,533282815,SE -533282816,533283071,CH -533283072,533283327,SY -533283328,533283583,TJ -533283584,533283839,TR -533283840,533284095,TM -533284096,533284351,UA -533284352,533284607,AE -533284608,533284863,GB -533284864,533285119,UZ -533285120,533285375,YE -533285376,533285631,AX -533285632,533285887,AL -533285888,533286143,AD -533286144,533286399,AM -533286400,533286655,AT -533286656,533286911,AZ -533286912,533287167,BH -533287168,533287423,BY -533287424,533287679,BE -533287680,533287935,BA -533287936,533288191,BG -533288192,533288447,HR -533288448,533288703,CY -533288704,533288959,CZ -533288960,533289215,DK -533289216,533289471,EE -533289472,533289727,FO -533289728,533289983,GE -533289984,533290239,FR -533290240,533290495,DE -533290496,533290751,GI -533290752,533291007,GR -533291008,533291263,GL -533291264,533291519,GG -533291520,533291775,VA -533291776,533292031,HU -533292032,533292287,IS -533292288,533292543,IR -533292544,533292799,IQ -533292800,533293055,IE -533293056,533293311,IM -533293312,533293567,IL -533293568,533293823,IT -533293824,533294079,JE -533294080,533294335,JO -533294336,533294591,KZ -533294592,533294847,KW -533294848,533295103,KG -533295104,533295359,LV -533295360,533295615,LB -533295616,533295871,LI -533295872,533296127,LT -533296128,533296383,LU -533296384,533296639,MT -533296640,533296895,MC -533296896,533297151,ME -533297152,533297407,NL -533297408,533297663,NO -533297664,533297919,OM -533297920,533298175,PT -533298176,533298431,RO -533298432,533298687,RU -533298688,533298943,SM -533298944,533299199,SA +533266432,533299199,FR 533299200,533299455,KW 533299456,533299711,KY 533299712,533299967,KZ @@ -9113,7 +8622,7 @@ 533323008,533323263,TG 533323264,533323519,TH 533323520,533323775,TJ -533323776,533324031,TK +533323776,533324031,FR 533324032,533324287,TL 533324288,533324543,TM 533324544,533324799,TN @@ -9198,8 +8707,7 @@ 533725184,533807103,SE 533807104,533811199,LT 533811200,533815295,DE -533815296,533815296,TR -533815297,533816319,CY +533815296,533816319,CY 533816320,533816320,TR 533816321,533817343,CY 533817344,533817344,TR @@ -9330,10 +8838,17 @@ 534512896,534513151,US 534513152,534513215,BS 534513216,534513279,VG -534513280,534513407,NL -534513408,534519551,DE +534513280,534513663,NL +534513664,534519295,DE +534519296,534519327,NL +534519328,534519359,PK +534519360,534519423,NL +534519424,534519455,FJ +534519456,534519487,BR +534519488,534519519,MX +534519520,534519551,CN 534519552,534519807,GB -534519808,534523903,DE +534519808,534523903,CZ 534523904,534527999,LT 534528000,534544383,DE 534544384,534546431,RO @@ -9369,7 +8884,20 @@ 539623424,539624577,NL 539624578,539624578,EU 539624579,539627519,NL -539627520,539656191,US +539627520,539629975,US +539629976,539629983,DE +539629984,539630079,GB +539630080,539630975,US +539630976,539630983,PT +539630984,539630991,FI +539630992,539630999,NO +539631000,539631007,CZ +539631008,539631015,DK +539631016,539631023,FR +539631024,539631031,ES +539631032,539631039,IE +539631040,539631047,IT +539631048,539656191,US 539656192,539660287,IN 539660288,540680895,US 540680896,540680959,BE @@ -9407,15 +8935,41 @@ 540811264,540814335,SG 540814336,540814591,AP 540814592,540815359,SG -540815360,540819455,US -540819456,540827647,CA +540815360,540821551,US +540821552,540821559,CA +540821560,540822383,US +540822384,540822399,CA +540822400,540826671,US +540826672,540826719,CA +540826720,540827135,US +540827136,540827263,CA +540827264,540827295,US +540827296,540827311,CA +540827312,540827359,US +540827360,540827375,CA +540827376,540827391,US +540827392,540827423,CA +540827424,540827471,US +540827472,540827487,CA +540827488,540827519,US +540827520,540827551,CA +540827552,540827583,US +540827584,540827647,CA 540827648,540829695,US -540829696,540831743,CA -540831744,543690751,US +540829696,540829951,CA +540829952,540830511,US +540830512,540830527,CA +540830528,540830559,US +540830560,540830575,CA +540830576,540830623,US +540830624,540830735,CA +540830736,540830815,US +540830816,540830831,CA +540830832,540830847,US +540830848,540830895,CA +540830896,543690751,US 543690752,543691007,AR -543691008,543691263,US -543691264,543691519,BR -543691520,543752191,US +543691008,543752191,US 543752192,543752447,BM 543752448,543755007,BR 543755008,543755263,CW @@ -9508,15 +9062,17 @@ 543878656,543880191,IT 543880192,543881727,NL 543881728,543883263,GB -543883264,548608767,US -548608768,548609023,PR -548609024,548616191,US -548616192,548618239,PR -548618240,586975999,US +543883264,586973439,US +586973440,586973695,CA +586973696,586975999,US 586976000,586976255,AP -586976256,587006719,US +586976256,586977023,US +586977024,586977279,AU +586977280,587006719,US 587006720,587006975,GB -587006976,603979775,US +587006976,587039487,US +587039488,587039743,NO +587039744,603979775,US 603979776,603980799,CN 603980800,603981823,NP 603981824,604110847,CN @@ -9568,8 +9124,7 @@ 620845192,620845201,DE 620845202,620845215,NL 620845216,620845439,GB -620845440,620845503,SI -620845504,620845567,GB +620845440,620845567,SI 620845568,620845823,LU 620845824,620846079,GE 620846080,620849151,GB @@ -9588,7 +9143,9 @@ 620877824,620879871,DE 620879872,620881919,GB 620881920,620888063,FR -620888064,621019135,SE +620888064,620927231,SE +620927232,620927487,CZ +620927488,621019135,SE 621019136,621150207,DE 621150208,621215743,GR 621215744,621281279,PL @@ -9638,7 +9195,9 @@ 621918208,621920255,GB 621920256,621924351,JO 621924352,621928447,NL -621928448,621932543,DE +621928448,621931519,DE +621931520,621932031,DE +621932032,621932543,DE 621932544,621934591,UA 621934592,621936639,SE 621936640,621939455,RU @@ -9647,8 +9206,8 @@ 621942528,621960703,RU 621960704,621960959,LV 621960960,621969407,RU -621971456,621971967,IM -621971968,621973503,GB +621971456,621972479,IM +621972480,621973503,GB 621973504,621975551,IE 621975552,621977599,RU 621977600,621981695,FR @@ -9806,10 +9365,7 @@ 623774208,623774719,NL 623774720,623775743,GB 623775744,623777791,IE -623777792,623778175,GB -623778176,623778239,DE -623778240,623778303,NL -623778304,623779839,GB +623777792,623779839,GB 623779840,623783935,IL 623783936,623788031,RU 623788032,623790079,HU @@ -9871,32 +9427,30 @@ 624574552,624574559,GB 624574560,624574567,US 624574568,624574575,AU -624574576,624574607,US +624574576,624574591,NL +624574592,624574599,TR +624574600,624574607,US 624574608,624574615,HK 624574616,624574623,NL 624574624,624574655,TR 624574656,624574663,US 624574664,624574671,KW 624574672,624574687,US -624574688,624574711,NL +624574688,624574703,NL +624574704,624574711,US 624574712,624574715,TR 624574716,624574719,US -624574720,624574721,NL -624574722,624574723,US +624574720,624574723,NL 624574724,624574727,TR -624574728,624574735,NL +624574728,624574735,US 624574736,624574743,GB 624574744,624574751,AE -624574752,624574799,US -624574800,624574815,NL -624574816,624574823,US +624574752,624574815,US +624574816,624574823,RU 624574824,624574831,DK -624574832,624574839,NL -624574840,624574855,US +624574832,624574855,US 624574856,624574863,GB -624574864,624574871,US -624574872,624574887,NL -624574888,624574895,US +624574864,624574895,US 624574896,624574899,IT 624574900,624574903,HK 624574904,624574911,US @@ -9914,8 +9468,7 @@ 624575040,624575047,SG 624575048,624575055,GB 624575056,624575063,CY -624575064,624575071,US -624575072,624575079,FR +624575064,624575079,US 624575080,624575087,NL 624575088,624575095,US 624575096,624575103,ES @@ -9923,10 +9476,11 @@ 624575112,624575119,IT 624575120,624575127,SA 624575128,624575135,RO -624575136,624575151,US +624575136,624575143,US +624575144,624575151,NL 624575152,624575163,MA 624575164,624575167,TR -624575168,624575175,RU +624575168,624575175,NL 624575176,624575183,ES 624575184,624575191,BE 624575192,624575199,US @@ -9940,14 +9494,14 @@ 624575264,624575279,NL 624575280,624575287,US 624575288,624575295,NL -624575296,624575303,CN +624575296,624575303,US 624575304,624575311,NL 624575312,624575335,US 624575336,624575343,SA -624575344,624575351,GB -624575352,624575359,US +624575344,624575347,GB +624575348,624575359,US 624575360,624575367,TR -624575368,624575375,US +624575368,624575375,NL 624575376,624575383,HK 624575384,624575387,TR 624575388,624575391,US @@ -9976,7 +9530,10 @@ 624575616,624575623,US 624575624,624575627,ES 624575628,624575631,EG -624575632,624575771,NL +624575632,624575679,US +624575680,624575743,NL +624575744,624575759,CN +624575760,624575771,NL 624575772,624575783,US 624575784,624575791,NL 624575792,624575799,TR @@ -9988,16 +9545,14 @@ 624575872,624575879,LB 624575880,624575895,US 624575896,624575903,DK -624575904,624575911,NL +624575904,624575911,US 624575912,624575919,CY -624575920,624575927,US +624575920,624575927,NL 624575928,624575935,ES 624575936,624575943,US 624575944,624575951,NL 624575952,624575959,NO -624575960,624575967,US -624575968,624575975,DK -624575976,624575983,US +624575960,624575983,US 624575984,624575991,GB 624575992,624575999,IT 624576000,624576011,PL @@ -10008,8 +9563,7 @@ 624576048,624576055,NL 624576056,624576063,HK 624576064,624576071,BD -624576072,624576079,NL -624576080,624576095,US +624576072,624576095,NL 624576096,624576103,CA 624576104,624576111,RU 624576112,624576119,BR @@ -10033,8 +9587,7 @@ 624576320,624576327,IT 624576328,624576335,NL 624576336,624576343,TR -624576344,624576351,NL -624576352,624576359,US +624576344,624576359,US 624576360,624576367,SE 624576368,624576383,US 624576384,624576391,NL @@ -10063,7 +9616,10 @@ 624576752,624576759,IT 624576760,624576767,NL 624576768,624576783,CA -624576784,624576823,US +624576784,624576787,TR +624576788,624576807,US +624576808,624576815,IN +624576816,624576823,US 624576824,624576831,SZ 624576832,624576863,US 624576864,624576871,IL @@ -10081,16 +9637,14 @@ 624577072,624577119,US 624577120,624577127,TR 624577128,624577135,DE -624577136,624577143,CN -624577144,624577151,US +624577136,624577151,US 624577152,624577215,GB 624577216,624577247,US 624577248,624577279,LT 624577280,624577287,US 624577288,624577295,NL -624577296,624577303,GB -624577304,624577305,TR -624577306,624577307,AU +624577296,624577303,US +624577304,624577307,NL 624577308,624577311,US 624577312,624577319,IL 624577320,624577327,NL @@ -10113,37 +9667,35 @@ 624577548,624577551,AE 624577552,624577559,US 624577560,624577567,AE -624577568,624577583,GB +624577568,624577575,US +624577576,624577583,GB 624577584,624577591,US 624577592,624577599,TR 624577600,624577607,PL -624577608,624577615,NL +624577608,624577615,RU 624577616,624577623,AE 624577624,624577631,ES 624577632,624577639,BA 624577640,624577647,EE 624577648,624577655,GB 624577656,624577663,NL -624577664,624577695,NZ +624577664,624577695,SA 624577696,624577703,BE 624577704,624577711,CA -624577712,624577727,NL -624577728,624577791,US +624577712,624577791,US 624577792,624577799,ZA 624577800,624577807,US 624577808,624577823,GB -624577824,624577831,NL +624577824,624577831,FI 624577832,624577839,BD -624577840,624577855,NL +624577840,624577855,US 624577856,624577863,GB -624577864,624577871,CN -624577872,624577887,NL -624577888,624577919,US -624577920,624577935,NL +624577864,624577871,NL +624577872,624577935,US 624577936,624577943,ZA 624577944,624577959,NL 624577960,624577967,TR -624577968,624577983,NL +624577968,624577983,US 624577984,624578015,RU 624578016,624578023,TR 624578024,624578031,US @@ -10164,11 +9716,14 @@ 624578424,624578431,US 624578432,624578511,NL 624578512,624578527,US -624578528,624578575,NL +624578528,624578563,NL +624578564,624578567,US +624578568,624578575,NL 624578576,624578583,BA 624578584,624578591,TR -624578592,624578719,US -624578720,624578735,NL +624578592,624578723,US +624578724,624578727,GB +624578728,624578735,US 624578736,624578743,SK 624578744,624578747,TR 624578748,624578751,SK @@ -10187,21 +9742,24 @@ 624578856,624578863,MY 624578864,624578871,NO 624578872,624578879,SE -624578880,624578895,NL +624578880,624578895,US 624578896,624578911,JO -624578912,624578919,IN -624578920,624578927,US +624578912,624578927,US 624578928,624578943,NL 624578944,624578955,US 624578956,624578959,SA -624578960,624578975,NL +624578960,624578967,SC +624578968,624578975,US 624578976,624578983,DE 624578984,624578991,EG 624578992,624578999,AT 624579000,624579007,NL 624579008,624579015,TR -624579016,624579055,NL -624579056,624579063,US +624579016,624579023,US +624579024,624579031,NL +624579032,624579039,BS +624579040,624579047,NL +624579048,624579063,US 624579064,624579071,GB 624579072,624579075,AE 624579076,624579079,US @@ -10216,10 +9774,12 @@ 624579144,624579167,US 624579168,624579175,AE 624579176,624579183,BG -624579184,624579239,US +624579184,624579231,US +624579232,624579239,NL 624579240,624579243,BA 624579244,624579247,HR -624579248,624579263,NL +624579248,624579255,US +624579256,624579263,PK 624579264,624579295,US 624579296,624579303,GB 624579304,624579319,NL @@ -10231,35 +9791,27 @@ 624579464,624579471,US 624579472,624579479,BD 624579480,624579487,NL -624579488,624579495,GB -624579496,624579499,US +624579488,624579499,US 624579500,624579503,GR 624579504,624579519,TR 624579520,624579527,IT 624579528,624579531,US 624579532,624579535,PT -624579536,624579567,NL +624579536,624579547,AE +624579548,624579551,TR +624579552,624579567,NL 624579568,624579615,US 624579616,624579619,SM -624579620,624579621,IN -624579622,624579623,NL +624579620,624579623,NL 624579624,624579631,US -624579632,624579635,NL -624579636,624579637,SA -624579638,624579639,NL +624579632,624579639,NL 624579640,624579647,BA 624579648,624579663,GB 624579664,624579667,US -624579668,624579671,NL -624579672,624579673,SA -624579674,624579675,NL -624579676,624579677,HR -624579678,624579679,NL +624579668,624579679,NL 624579680,624579695,US 624579696,624579703,MX -624579704,624579705,NL -624579706,624579707,AR -624579708,624579719,NL +624579704,624579719,NL 624579720,624579751,US 624579752,624579759,AU 624579760,624579775,US @@ -10269,24 +9821,18 @@ 624579808,624579815,US 624579816,624579823,BY 624579824,624579831,CN -624579832,624579835,NL -624579836,624579837,CY -624579838,624579839,NL +624579832,624579839,NL 624579840,624579847,GT -624579848,624579849,TR -624579850,624579851,AU +624579848,624579851,NL 624579852,624579855,LU 624579856,624579863,NL 624579864,624579867,EG -624579868,624579869,NL -624579870,624579871,VG +624579868,624579871,NL 624579872,624579875,TR 624579876,624579879,IN -624579880,624579889,NL -624579890,624579891,SA +624579880,624579891,NL 624579892,624579895,US -624579896,624579901,NL -624579902,624579903,SA +624579896,624579903,NL 624579904,624579935,CN 624579936,624579939,US 624579940,624579943,NL @@ -10294,45 +9840,36 @@ 624579952,624579955,PT 624579956,624579959,GB 624579960,624579971,US -624579972,624579973,NL -624579974,624579975,SA +624579972,624579975,NL 624579976,624579983,US -624579984,624579985,NL -624579986,624579987,HR -624579988,624579999,NL +624579984,624579999,NL 624580000,624580007,LB 624580008,624580015,US 624580016,624580023,GT 624580024,624580031,US -624580032,624580033,NL -624580034,624580035,CR +624580032,624580035,NL 624580036,624580047,US -624580048,624580049,SA -624580050,624580051,NL +624580048,624580051,NL 624580052,624580055,AU 624580056,624580063,US -624580064,624580067,SA -624580068,624580071,US -624580072,624580087,GT +624580064,624580067,NL +624580068,624580079,US +624580080,624580087,GT 624580088,624580091,US 624580092,624580095,NL 624580096,624580127,CA 624580128,624580131,ES -624580132,624580133,NL -624580134,624580135,BR +624580132,624580135,NL 624580136,624580143,US 624580144,624580151,SE -624580152,624580159,EG +624580152,624580159,US 624580160,624580175,NL 624580176,624580179,US 624580180,624580183,NL -624580184,624580195,US -624580196,624580199,AE +624580184,624580199,US 624580200,624580207,SA 624580208,624580211,IN -624580212,624580213,NL -624580214,624580215,AU -624580216,624580223,NL +624580212,624580223,NL 624580224,624580295,US 624580296,624580303,NL 624580304,624580319,US @@ -10348,7 +9885,7 @@ 624580456,624580463,NL 624580464,624580471,US 624580472,624580479,HK -624580480,624580487,NL +624580480,624580487,US 624580488,624580495,EE 624580496,624580503,US 624580504,624580511,NL @@ -10359,15 +9896,17 @@ 624580544,624580575,US 624580576,624580583,NL 624580584,624580591,IT -624580592,624580599,US -624580600,624580607,AU -624580608,624580911,US +624580592,624580599,RU +624580600,624580607,NL +624580608,624580671,US +624580672,624580703,NL +624580704,624580911,US 624580912,624580919,ES 624580920,624580951,US 624580952,624580955,GB 624580956,624580959,NL 624580960,624580967,CZ -624580968,624580975,GB +624580968,624580975,IN 624580976,624580983,SE 624580984,624580991,BR 624580992,624580995,RO @@ -10387,10 +9926,12 @@ 624581104,624581127,US 624581128,624581135,RO 624581136,624581151,NL -624581152,624581183,GB -624581184,624581207,NL +624581152,624581167,GB +624581168,624581199,NL +624581200,624581207,CZ 624581208,624581215,TR -624581216,624581287,US +624581216,624581247,CN +624581248,624581287,US 624581288,624581295,GB 624581296,624581303,SZ 624581304,624581319,US @@ -10404,7 +9945,7 @@ 624581416,624581423,BR 624581424,624581439,NL 624581440,624581443,GB -624581444,624581447,CN +624581444,624581447,US 624581448,624581455,NL 624581456,624581463,US 624581464,624581471,CN @@ -10415,14 +9956,16 @@ 624581504,624581511,IN 624581512,624581515,TR 624581516,624581519,NL -624581520,624581543,US -624581544,624581567,NL +624581520,624581551,US +624581552,624581567,NL 624581568,624581599,RO 624581600,624581663,US 624581664,624581671,NL 624581672,624581703,US 624581704,624581711,ES -624581712,624581887,NL +624581712,624581735,NL +624581736,624581743,US +624581744,624581887,NL 624581888,624581895,US 624581896,624581903,NL 624581904,624581927,US @@ -10431,48 +9974,48 @@ 624581952,624581991,US 624581992,624582007,ES 624582008,624582015,EG -624582016,624582031,US -624582032,624582207,NL -624582208,624582215,BA -624582216,624582223,US -624582224,624582235,NL -624582236,624582239,US -624582240,624582243,AE -624582244,624582247,NL -624582248,624582255,GB +624582016,624582047,US +624582048,624582079,NL +624582080,624582087,CA +624582088,624582111,US +624582112,624582119,NL +624582120,624582183,US +624582184,624582191,AE +624582192,624582215,US +624582216,624582223,GB +624582224,624582227,CY +624582228,624582239,BE +624582240,624582255,CA 624582256,624582263,US -624582264,624582271,CN -624582272,624582273,NL -624582274,624582275,UA -624582276,624582279,US -624582280,624582287,GB -624582288,624582295,NL -624582296,624582303,CA -624582304,624582311,US -624582312,624582319,BE -624582320,624582327,US -624582328,624582335,KW -624582336,624582343,CN -624582344,624582351,EG -624582352,624582359,KW -624582360,624582367,AF -624582368,624582375,AR -624582376,624582383,GB -624582384,624582391,AF -624582392,624582399,HR -624582400,624582463,US -624582464,624582495,AF -624582496,624582503,SA -624582504,624582511,ES -624582512,624582527,US -624582528,624582543,NL -624582544,624582559,TR -624582560,624582575,NL -624582576,624582583,EG -624582584,624582607,DK -624582608,624582615,BR -624582616,624582623,PA -624582624,624582639,NL +624582264,624582271,NL +624582272,624582279,MV +624582280,624582299,US +624582300,624582303,NL +624582304,624582319,US +624582320,624582323,GB +624582324,624582335,US +624582336,624582343,PK +624582344,624582359,VG +624582360,624582367,DE +624582368,624582383,US +624582384,624582391,ZA +624582392,624582399,SE +624582400,624582403,NL +624582404,624582407,US +624582408,624582415,IL +624582416,624582431,US +624582432,624582435,BR +624582436,624582447,US +624582448,624582455,GB +624582456,624582463,SA +624582464,624582467,TR +624582468,624582543,US +624582544,624582551,IE +624582552,624582599,US +624582600,624582607,TR +624582608,624582611,US +624582612,624582615,IL +624582616,624582639,US 624582640,624582647,CN 624582648,624582651,TR 624582652,624582759,US @@ -10595,8 +10138,7 @@ 624584160,624584167,IN 624584168,624584175,IL 624584176,624584191,US -624584192,624584193,NL -624584194,624584195,US +624584192,624584195,NL 624584196,624584199,TR 624584200,624584207,US 624584208,624584215,GB @@ -10742,8 +10284,7 @@ 624586240,624586247,US 624586248,624586255,DE 624586256,624586263,US -624586264,624586265,TR -624586266,624586267,GB +624586264,624586267,NL 624586268,624586279,US 624586280,624586287,NL 624586288,624586295,CN @@ -10796,7 +10337,7 @@ 624587264,624587295,DK 624587296,624587359,US 624587360,624587391,TR -624587392,624587455,PA +624587392,624587455,NL 624587456,624587463,PT 624587464,624587487,US 624587488,624587519,SA @@ -10994,7 +10535,7 @@ 624640112,624640115,DE 624640116,624640119,IT 624640120,624640127,DE -624640128,624640135,PT +624640128,624640135,FR 624640136,624640139,GB 624640140,624640143,FR 624640144,624640147,NL @@ -11011,10 +10552,9 @@ 624640260,624640263,DE 624640264,624640275,PL 624640276,624640283,GB -624640284,624640287,PL +624640284,624640287,FR 624640288,624640291,ES -624640292,624640295,PL -624640296,624640519,FR +624640292,624640519,FR 624640520,624640523,NL 624640524,624640527,FR 624640528,624640543,IT @@ -11027,13 +10567,14 @@ 624640640,624640703,BE 624640704,624640727,FR 624640728,624640735,DE -624640736,624640739,GB +624640736,624640739,FR 624640740,624640743,PT 624640744,624640751,FR 624640752,624640755,GB 624640756,624640759,PL 624640760,624640767,FR -624640768,624640779,IT +624640768,624640775,ES +624640776,624640779,IT 624640780,624640783,DE 624640784,624640787,ES 624640788,624640791,IT @@ -11055,17 +10596,16 @@ 624640904,624640927,FR 624640928,624640931,FI 624640932,624640935,ES -624640936,624640939,PL +624640936,624640939,FR 624640940,624640943,DE 624640944,624640951,FR -624640952,624640967,PT -624640968,624640975,FR +624640952,624640959,PT +624640960,624640975,FR 624640976,624640991,ES 624640992,624640999,GB 624641000,624641007,FR 624641008,624641023,PL -624641024,624641063,FR -624641064,624641067,NL +624641024,624641067,FR 624641068,624641071,PL 624641072,624641079,FR 624641080,624641083,ES @@ -11074,18 +10614,15 @@ 624641092,624641103,FR 624641104,624641107,PL 624641108,624641119,FR -624641120,624641131,PL -624641132,624641135,LT -624641136,624641183,FR +624641120,624641127,PL +624641128,624641183,FR 624641184,624641187,CZ 624641188,624641191,ES 624641192,624641195,PL -624641196,624641207,FR -624641208,624641211,FI -624641212,624641215,FR +624641196,624641215,FR 624641216,624641223,IE -624641224,624641247,FR -624641248,624641255,GB +624641224,624641231,PT +624641232,624641255,FR 624641256,624641259,PT 624641260,624641263,DE 624641264,624641295,FR @@ -11094,17 +10631,17 @@ 624641304,624641311,PT 624641312,624641315,GB 624641316,624641323,ES -624641324,624641327,PL +624641324,624641327,FR 624641328,624641343,IE 624641344,624641355,FR 624641356,624641359,PT 624641360,624641367,IE 624641368,624641371,FR 624641372,624641375,IT -624641376,624641823,FR +624641376,624641407,PT +624641408,624641823,FR 624641824,624641831,DE -624641832,624641839,ES -624641840,624641855,FR +624641832,624641855,FR 624641856,624641887,GB 624641888,624641983,FR 624641984,624642015,ES @@ -11117,8 +10654,8 @@ 624642056,624642063,GB 624642064,624642079,FR 624642080,624642095,PL -624642096,624642099,FR -624642100,624642111,PL +624642096,624642103,FR +624642104,624642111,PL 624642112,624642127,CH 624642128,624642135,DE 624642136,624642139,PL @@ -11137,9 +10674,7 @@ 624642292,624642299,PL 624642300,624642303,ES 624642304,624642335,IT -624642336,624642379,FR -624642380,624642383,PL -624642384,624642391,FR +624642336,624642391,FR 624642392,624642395,PL 624642396,624642407,FR 624642408,624642411,PL @@ -11168,7 +10703,7 @@ 624642660,624642663,PL 624642664,624642671,FI 624642672,624642679,PL -624642680,624642683,FR +624642680,624642683,IT 624642684,624642687,DE 624642688,624642691,FR 624642692,624642695,ES @@ -11179,32 +10714,26 @@ 624642720,624642727,FR 624642728,624642735,PL 624642736,624642739,DE -624642740,624642747,PL -624642748,624642751,DE -624642752,624642787,FR +624642740,624642787,FR 624642788,624642791,ES -624642792,624642795,PL -624642796,624642799,FR -624642800,624642815,PT -624642816,624642835,FR +624642792,624642835,FR 624642836,624642839,GB 624642840,624642843,FR 624642844,624642847,DE 624642848,624642855,GB 624642856,624642859,FR 624642860,624642863,PL -624642864,624642887,FR -624642888,624642891,LT +624642864,624642891,FR 624642892,624642895,PL 624642896,624642911,GB 624642912,624642943,FR 624642944,624642947,IT -624642948,624642951,ES +624642948,624642951,GB 624642952,624642967,FR 624642968,624642975,DE 624642976,624643007,FR 624643008,624643011,PL -624643012,624643015,GB +624643012,624643015,FR 624643016,624643019,IE 624643020,624643023,FR 624643024,624643035,IT @@ -11221,18 +10750,16 @@ 624643096,624643103,IT 624643104,624643107,FR 624643108,624643111,GB -624643112,624643115,FR -624643116,624643119,PT -624643120,624643123,IE +624643112,624643123,FR 624643124,624643131,PT 624643132,624643151,FR 624643152,624643167,ES 624643168,624643183,FR 624643184,624643187,ES -624643188,624643199,FR +624643188,624643191,GB +624643192,624643199,FR 624643200,624643203,PL -624643204,624643207,NL -624643208,624643211,PL +624643204,624643211,FR 624643212,624643215,CH 624643216,624643235,FR 624643236,624643239,PL @@ -11240,12 +10767,10 @@ 624643244,624643247,ES 624643248,624643255,IE 624643256,624643259,PL -624643260,624643263,DE -624643264,624643311,FR +624643260,624643311,FR 624643312,624643315,FI 624643316,624643319,IE -624643320,624643327,IT -624643328,624643343,FR +624643320,624643343,FR 624643344,624643347,DE 624643348,624643351,FR 624643352,624643355,PL @@ -11253,12 +10778,13 @@ 624643360,624643371,LT 624643372,624643375,FR 624643376,624643383,ES -624643384,624643423,FR +624643384,624643391,FR +624643392,624643423,IE 624643424,624643459,ES 624643460,624643487,FR 624643488,624643503,PL 624643504,624643507,NL -624643508,624643511,DE +624643508,624643511,FR 624643512,624643519,IE 624643520,624643583,DE 624643584,624643619,FR @@ -11268,15 +10794,15 @@ 624643632,624643647,ES 624643648,624643711,FR 624643712,624643727,PL -624643728,624643735,GB -624643736,624643759,FR +624643728,624643743,GB +624643744,624643759,FR 624643760,624643767,CH -624643768,624643775,FR -624643776,624643779,NL +624643768,624643779,FR 624643780,624643783,IT 624643784,624643791,FR 624643792,624643807,DE -624643808,624643815,CH +624643808,624643811,FR +624643812,624643815,CH 624643816,624643819,FR 624643820,624643823,GB 624643824,624643839,FR @@ -11289,24 +10815,24 @@ 624644128,624644131,PL 624644132,624644135,NL 624644136,624644175,FR -624644176,624644191,PL +624644176,624644191,GB 624644192,624644195,FR 624644196,624644199,PL 624644200,624644203,IT -624644204,624644207,PT +624644204,624644207,FR 624644208,624644223,BE 624644224,624644255,FR 624644256,624644271,CH 624644272,624644275,FR 624644276,624644279,DE -624644280,624644287,ES +624644280,624644283,FR +624644284,624644287,ES 624644288,624644291,FR 624644292,624644295,PL 624644296,624644299,FR 624644300,624644303,NL 624644304,624644307,IE -624644308,624644311,FR -624644312,624644319,ES +624644308,624644319,FR 624644320,624644323,NL 624644324,624644327,ES 624644328,624644331,PL @@ -11315,15 +10841,12 @@ 624644352,624644415,FR 624644416,624644439,GB 624644440,624644443,CH -624644444,624644459,FR -624644460,624644463,PL -624644464,624644479,FR +624644444,624644479,FR 624644480,624644495,FI 624644496,624644511,IT -624644512,624644519,FR -624644520,624644527,ES +624644512,624644527,FR 624644528,624644535,GB -624644536,624644543,NL +624644536,624644543,PT 624644544,624644607,FR 624644608,624644615,IE 624644616,624644619,IT @@ -11337,14 +10860,12 @@ 624644724,624644727,NL 624644728,624644735,FR 624644736,624644767,PL -624644768,624644771,FR -624644772,624644775,CH -624644776,624644783,BE +624644768,624644783,FR 624644784,624644799,IE 624644800,624644807,NL 624644808,624644823,FR 624644824,624644831,PT -624644832,624644839,PL +624644832,624644839,FR 624644840,624644843,IT 624644844,624644847,PL 624644848,624644851,ES @@ -11366,17 +10887,13 @@ 624644992,624645007,ES 624645008,624645015,GB 624645016,624645023,BE -624645024,624645135,FR -624645136,624645139,PT -624645140,624645143,FR +624645024,624645055,PT +624645056,624645143,FR 624645144,624645147,PL 624645148,624645151,GB -624645152,624645163,FR -624645164,624645167,DE -624645168,624645183,FR +624645152,624645183,FR 624645184,624645215,ES -624645216,624645247,PT -624645248,624645295,FR +624645216,624645295,FR 624645296,624645303,IE 624645304,624645311,FR 624645312,624645343,PL @@ -11390,8 +10907,7 @@ 624645488,624645495,PL 624645496,624645535,FR 624645536,624645539,PT -624645540,624645543,IT -624645544,624645547,FR +624645540,624645547,FR 624645548,624645551,PT 624645552,624645575,FR 624645576,624645579,GB @@ -11406,12 +10922,9 @@ 624645888,624645891,PL 624645892,624645895,FR 624645896,624645903,ES -624645904,624645915,FR -624645916,624645919,BE -624645920,624645951,PT -624645952,624645983,FR -624645984,624646015,PT -624646016,624646111,FR +624645904,624645907,FR +624645908,624645911,NL +624645912,624646111,FR 624646112,624646143,PL 624646144,624646175,FR 624646176,624646207,ES @@ -11420,8 +10933,8 @@ 624646228,624646231,IT 624646232,624646239,CZ 624646240,624646255,FR -624646256,624646259,DE -624646260,624646267,FR +624646256,624646263,DE +624646264,624646267,FR 624646268,624646271,FI 624646272,624646283,FR 624646284,624646287,IT @@ -11432,7 +10945,7 @@ 624646316,624646319,ES 624646320,624646339,FR 624646340,624646343,LT -624646344,624646347,IT +624646344,624646347,FR 624646348,624646351,IE 624646352,624646367,GB 624646368,624646527,FR @@ -11445,7 +10958,7 @@ 624646580,624646583,NL 624646584,624646607,FR 624646608,624646623,CZ -624646624,624646627,PT +624646624,624646627,ES 624646628,624646631,DE 624646632,624646635,FR 624646636,624646639,NL @@ -11454,8 +10967,7 @@ 624646648,624646651,IT 624646652,624646655,PL 624646656,624646659,ES -624646660,624646663,GB -624646664,624646667,FR +624646660,624646667,FR 624646668,624646671,IT 624646672,624646687,GB 624646688,624646691,FR @@ -11467,59 +10979,57 @@ 624646716,624646719,FR 624646720,624646735,ES 624646736,624646751,DE -624646752,624646759,FR -624646760,624646763,IT -624646764,624646767,FR +624646752,624646767,FR 624646768,624646787,DE 624646788,624646791,PL 624646792,624646795,IE -624646796,624646799,FR -624646800,624646815,CH +624646796,624646815,FR 624646816,624646831,IT 624646832,624646835,FR 624646836,624646839,BE 624646840,624646847,FR 624646848,624646911,DE -624646912,624646935,PL +624646912,624646927,FR +624646928,624646935,PL 624646936,624646939,FR 624646940,624646943,PL 624646944,624646951,IT -624646952,624646955,IE +624646952,624646955,FR 624646956,624646959,ES 624646960,624646987,FR 624646988,624646991,PL 624646992,624647039,FR 624647040,624647055,GB -624647056,624647087,FR +624647056,624647063,DE +624647064,624647087,FR 624647088,624647095,DE -624647096,624647103,GB +624647096,624647103,IE 624647104,624647119,FR 624647120,624647123,ES 624647124,624647127,FR 624647128,624647135,PL -624647136,624647171,FR -624647172,624647175,PL -624647176,624647183,PT +624647136,624647183,FR 624647184,624647191,PL 624647192,624647195,FR -624647196,624647231,PL -624647232,624647247,FR +624647196,624647199,PL +624647200,624647247,FR 624647248,624647263,GB 624647264,624647295,CH -624647296,624647327,NL +624647296,624647327,FR 624647328,624647359,PT 624647360,624647375,GB 624647376,624647383,LT -624647384,624647387,PL +624647384,624647387,FR 624647388,624647391,NL -624647392,624647403,GB -624647404,624647407,PT -624647408,624647423,FR -624647424,624647471,IE +624647392,624647399,FR +624647400,624647403,GB +624647404,624647423,FR +624647424,624647455,IE +624647456,624647471,FR 624647472,624647475,PL 624647476,624647479,FR 624647480,624647483,PT -624647484,624647487,NL +624647484,624647487,FR 624647488,624647495,PL 624647496,624647499,FR 624647500,624647503,PL @@ -11537,16 +11047,13 @@ 624647672,624647675,FR 624647676,624647679,ES 624647680,624647935,DE -624647936,624647999,PT +624647936,624647999,FR 624648000,624648063,IT 624648064,624648075,GB 624648076,624648079,FR 624648080,624648095,NL -624648096,624648099,FR -624648100,624648103,GB -624648104,624648107,FR -624648108,624648111,IT -624648112,624648115,IE +624648096,624648107,FR +624648108,624648115,IT 624648116,624648119,BE 624648120,624648127,FR 624648128,624648135,CH @@ -11582,32 +11089,32 @@ 624656764,624656767,PL 624656768,624656911,FR 624656912,624656927,DE -624656928,624656935,FR -624656936,624656943,BE -624656944,624656951,FR +624656928,624656951,FR 624656952,624656955,PL -624656956,624656959,DE +624656956,624656959,FR 624656960,624656991,GB 624656992,624656999,DE 624657000,624657007,FR 624657008,624657015,ES 624657016,624657019,GB 624657020,624657023,PL -624657024,624657063,FR +624657024,624657055,FR +624657056,624657063,GB 624657064,624657067,NL -624657068,624657119,FR -624657120,624657135,PL +624657068,624657087,FR +624657088,624657119,PT +624657120,624657135,FR 624657136,624657139,IT 624657140,624657143,NL 624657144,624657147,FR 624657148,624657155,PL 624657156,624657159,FR 624657160,624657167,IE -624657168,624657199,PL +624657168,624657183,FR +624657184,624657199,IE 624657200,624657215,DE -624657216,624657263,PL -624657264,624657279,BE -624657280,624657295,PL +624657216,624657279,FR +624657280,624657295,IT 624657296,624657299,DE 624657300,624657303,PL 624657304,624657311,GB @@ -11622,7 +11129,8 @@ 624657376,624657379,PL 624657380,624657383,FR 624657384,624657387,DE -624657388,624657407,FR +624657388,624657391,FR +624657392,624657407,ES 624657408,624657411,PL 624657412,624657415,FR 624657416,624657423,ES @@ -11632,11 +11140,13 @@ 624657436,624657439,FR 624657440,624657471,PL 624657472,624657475,DE -624657476,624657479,PL -624657480,624657491,FR +624657476,624657491,FR 624657492,624657495,BE 624657496,624657503,GB -624657504,624657551,FR +624657504,624657535,FR +624657536,624657539,CH +624657540,624657543,IE +624657544,624657551,FR 624657552,624657559,NL 624657560,624657567,FR 624657568,624657583,PL @@ -11651,7 +11161,7 @@ 624657644,624657651,PL 624657652,624657655,FR 624657656,624657663,GB -624657664,624657667,PT +624657664,624657667,FR 624657668,624657671,PL 624657672,624657675,NL 624657676,624657679,ES @@ -11668,14 +11178,13 @@ 624657768,624657771,FR 624657772,624657775,DE 624657776,624657779,BE -624657780,624657783,GB +624657780,624657783,FR 624657784,624657787,NL -624657788,624657803,FR -624657804,624657807,PT +624657788,624657807,FR 624657808,624657815,DE 624657816,624657819,ES 624657820,624657823,GB -624657824,624657827,ES +624657824,624657827,FR 624657828,624657831,PL 624657832,624657839,ES 624657840,624657855,NL @@ -11688,16 +11197,11 @@ 624657888,624657919,GB 624657920,624657927,PT 624657928,624657931,BE -624657932,624657935,FR -624657936,624657943,NL -624657944,624657947,FR +624657932,624657947,FR 624657948,624657951,GB -624657952,624657975,FR -624657976,624657979,GB -624657980,624658007,FR +624657952,624658007,FR 624658008,624658011,PL -624658012,624658015,FR -624658016,624658031,PT +624658012,624658031,FR 624658032,624658047,PL 624658048,624658079,FR 624658080,624658087,IE @@ -11740,13 +11244,11 @@ 624658632,624658635,IE 624658636,624658639,FR 624658640,624658659,PL -624658660,624658663,FR -624658664,624658671,GB +624658660,624658671,FR 624658672,624658675,PL 624658676,624658679,FR 624658680,624658687,PL -624658688,624658719,DE -624658720,624658751,FR +624658688,624658751,FR 624658752,624658783,NL 624658784,624658787,ES 624658788,624658791,FR @@ -11756,12 +11258,12 @@ 624658804,624658807,CZ 624658808,624658811,FR 624658812,624658815,PL -624658816,624658831,FR -624658832,624658835,CH +624658816,624658835,FR 624658836,624658839,NL 624658840,624658843,PL 624658844,624658847,GB -624658848,624658863,FR +624658848,624658855,IE +624658856,624658863,FR 624658864,624658879,ES 624658880,624658911,NL 624658912,624658927,FR @@ -11772,46 +11274,44 @@ 624658960,624658963,PL 624658964,624658967,IT 624658968,624658971,DE -624658972,624658975,FR -624658976,624658979,PL -624658980,624658983,FR +624658972,624658983,FR 624658984,624658987,PL 624658988,624658991,FR -624658992,624658995,GB -624658996,624658999,IT +624658992,624658999,PT 624659000,624659003,IE 624659004,624659007,GB 624659008,624659023,FR 624659024,624659031,ES -624659032,624659055,FR +624659032,624659039,GB +624659040,624659055,FR 624659056,624659071,IT -624659072,624659135,GB -624659136,624659279,FR +624659072,624659151,GB +624659152,624659159,NL +624659160,624659167,PT +624659168,624659199,FR +624659200,624659263,CZ +624659264,624659279,NL 624659280,624659295,GB 624659296,624659299,NL 624659300,624659303,CZ -624659304,624659307,FR -624659308,624659315,PL +624659304,624659315,FR 624659316,624659319,GB 624659320,624659323,PL -624659324,624659359,FR -624659360,624659363,ES +624659324,624659363,FR 624659364,624659367,BE -624659368,624659371,FR -624659372,624659375,IT +624659368,624659375,FR 624659376,624659383,NL 624659384,624659387,PL 624659388,624659391,IT -624659392,624659395,IE -624659396,624659407,FR +624659392,624659407,FR 624659408,624659415,PL -624659416,624659427,FR -624659428,624659431,CZ +624659416,624659423,BE +624659424,624659431,FR 624659432,624659439,FI 624659440,624659455,FR 624659456,624659487,PL -624659488,624659503,CH -624659504,624659583,FR +624659488,624659551,FR +624659552,624659583,IE 624659584,624659599,GB 624659600,624659607,FR 624659608,624659611,CZ @@ -11824,12 +11324,10 @@ 624659792,624659799,GB 624659800,624659803,FR 624659804,624659807,PT -624659808,624659811,FR -624659812,624659815,PL -624659816,624659831,FR +624659808,624659831,FR 624659832,624659839,FI 624659840,624659935,FR -624659936,624659951,BE +624659936,624659951,DE 624659952,624659959,FR 624659960,624659963,PL 624659964,624659967,PT @@ -11846,14 +11344,11 @@ 624660112,624660127,ES 624660128,624660131,FR 624660132,624660135,PL -624660136,624660139,FR +624660136,624660139,ES 624660140,624660143,GB 624660144,624660151,ES 624660152,624660155,PL -624660156,624660159,GB -624660160,624660167,FR -624660168,624660171,PL -624660172,624660191,FR +624660156,624660191,FR 624660192,624660195,CH 624660196,624660199,PL 624660200,624660479,FR @@ -11861,11 +11356,9 @@ 624660496,624660499,FR 624660500,624660503,PL 624660504,624660511,NL -624660512,624660543,PT -624660544,624660559,FR +624660512,624660559,FR 624660560,624660563,ES -624660564,624660567,FR -624660568,624660575,ES +624660564,624660575,FR 624660576,624660591,PT 624660592,624660639,FR 624660640,624660671,CH @@ -11877,12 +11370,9 @@ 624660736,624660751,FR 624660752,624660755,PT 624660756,624660759,GB -624660760,624660767,FR -624660768,624660775,DE -624660776,624660803,FR +624660760,624660803,FR 624660804,624660807,PL -624660808,624660827,FR -624660828,624660831,PL +624660808,624660831,FR 624660832,624660839,ES 624660840,624660843,FR 624660844,624660847,ES @@ -11896,23 +11386,26 @@ 624660896,624660919,FR 624660920,624660923,PL 624660924,624660991,GB -624660992,624661023,NL -624661024,624661055,ES +624660992,624661023,FR +624661024,624661055,PT 624661056,624661159,FR 624661160,624661163,IT 624661164,624661167,ES 624661168,624661175,FR -624661176,624661247,ES +624661176,624661183,ES +624661184,624661247,FR 624661248,624661255,PL 624661256,624661259,LT 624661260,624661279,FR 624661280,624661283,ES 624661284,624661311,FR 624661312,624661343,DE -624661344,624661503,FR +624661344,624661351,FR +624661352,624661359,IE +624661360,624661503,FR 624661504,624661759,DE 624661760,624661767,FR -624661768,624661771,DE +624661768,624661771,CZ 624661772,624661775,FI 624661776,624661787,FR 624661788,624661788,RO @@ -11925,9 +11418,10 @@ 624661856,624661863,FR 624661864,624661871,ES 624661872,624661875,PL -624661876,624661879,IE +624661876,624661879,FR 624661880,624661887,LT -624661888,624661915,FR +624661888,624661903,ES +624661904,624661915,FR 624661916,624661919,BE 624661920,624661935,ES 624661936,624661951,FR @@ -11935,9 +11429,7 @@ 624661956,624661959,PL 624661960,624661967,FR 624661968,624661975,DE -624661976,624661979,FR -624661980,624661983,IE -624661984,624662015,FR +624661976,624662015,FR 624662016,624662047,IT 624662048,624662111,FR 624662112,624662119,LT @@ -11948,7 +11440,7 @@ 624662180,624662183,CH 624662184,624662191,FR 624662192,624662207,GB -624662208,624662211,PL +624662208,624662211,FR 624662212,624662215,IE 624662216,624662227,FR 624662228,624662231,BE @@ -11978,19 +11470,17 @@ 624662656,624662687,FR 624662688,624662691,PT 624662692,624662695,PL -624662696,624662703,FR -624662704,624662719,CZ +624662696,624662719,FR 624662720,624662735,BE -624662736,624662739,FR -624662740,624662751,LT +624662736,624662743,FR +624662744,624662751,LT 624662752,624662755,GB 624662756,624662759,FR 624662760,624662763,IE 624662764,624662767,FR 624662768,624662783,CH 624662784,624662799,PL -624662800,624662807,FR -624662808,624662811,CH +624662800,624662811,FR 624662812,624662815,IT 624662816,624662847,PT 624662848,624662895,FR @@ -12006,13 +11496,13 @@ 624663584,624663615,FR 624663616,624663647,NL 624663648,624663663,CZ -624663664,624663667,FR -624663668,624663671,GB +624663664,624663671,FR 624663672,624663679,IT 624663680,624663683,PT 624663684,624663687,PL 624663688,624663695,GB -624663696,624663759,FR +624663696,624663711,IT +624663712,624663759,FR 624663760,624663767,ES 624663768,624663783,FR 624663784,624663787,BE @@ -12023,33 +11513,30 @@ 624663848,624663855,GB 624663856,624663863,FR 624663864,624663867,PT -624663868,624663871,PL -624663872,624663879,FR +624663868,624663879,FR 624663880,624663883,GB 624663884,624663887,NL -624663888,624663891,BE -624663892,624663895,PL -624663896,624663903,GB -624663904,624663919,FR +624663888,624663919,FR 624663920,624663935,ES 624663936,624663951,FI -624663952,624663959,FR +624663952,624663955,FR +624663956,624663959,IT 624663960,624663967,CZ 624663968,624663971,DE 624663972,624663975,PL -624663976,624663983,GB +624663976,624663983,DE 624663984,624664007,FR 624664008,624664011,IT -624664012,624664023,PL +624664012,624664015,PL +624664016,624664023,FR 624664024,624664027,GB -624664028,624664031,DE +624664028,624664031,FR 624664032,624664039,GB 624664040,624664047,BE 624664048,624664063,IE 624664064,624664067,FR 624664068,624664071,ES -624664072,624664079,PL -624664080,624664107,FR +624664072,624664107,FR 624664108,624664115,PL 624664116,624664119,ES 624664120,624664123,CH @@ -12057,7 +11544,9 @@ 624664128,624664135,BE 624664136,624664351,FR 624664352,624664367,ES -624664368,624664471,FR +624664368,624664415,FR +624664416,624664447,FI +624664448,624664471,FR 624664472,624664475,PT 624664476,624664479,FR 624664480,624664483,PL @@ -12083,11 +11572,11 @@ 624664632,624664635,PL 624664636,624664655,FR 624664656,624664659,PL -624664660,624664663,ES +624664660,624664663,FR 624664664,624664667,FI 624664668,624664671,GB 624664672,624664703,IE -624664704,624664767,IT +624664704,624664767,FR 624664768,624664775,GB 624664776,624664783,BE 624664784,624664795,IT @@ -12100,32 +11589,29 @@ 624664832,624664863,IE 624664864,624664895,FR 624664896,624664959,NL -624664960,624665087,FR -624665088,624665135,PL -624665136,624665143,FR +624664960,624665143,FR 624665144,624665147,ES 624665148,624665151,PL -624665152,624665187,FR -624665188,624665191,PL +624665152,624665191,FR 624665192,624665199,GB 624665200,624665207,PL 624665208,624665211,FR 624665212,624665215,IT 624665216,624665231,FR 624665232,624665235,PL -624665236,624665247,FR -624665248,624665259,PT +624665236,624665255,FR +624665256,624665259,PT 624665260,624665263,GB 624665264,624665271,IT 624665272,624665275,CZ -624665276,624665279,FR +624665276,624665279,IT 624665280,624665283,DE 624665284,624665287,IT 624665288,624665295,FR 624665296,624665303,GB 624665304,624665359,FR -624665360,624665367,DE -624665368,624665379,FR +624665360,624665363,DE +624665364,624665379,FR 624665380,624665383,PT 624665384,624665391,ES 624665392,624665407,PT @@ -12136,10 +11622,8 @@ 624665496,624665503,PL 624665504,624665535,FR 624665536,624665551,PL -624665552,624665555,IE -624665556,624665559,FR -624665560,624665567,CZ -624665568,624665587,FR +624665552,624665555,LT +624665556,624665587,FR 624665588,624665591,DE 624665592,624665595,FR 624665596,624665599,PL @@ -12148,19 +11632,15 @@ 624665612,624665615,ES 624665616,624665631,FR 624665632,624665647,PL -624665648,624665663,FR -624665664,624665695,PT -624665696,624665711,FR +624665648,624665711,FR 624665712,624665727,GB 624665728,624665759,FR 624665760,624665763,IT 624665764,624665767,CZ 624665768,624665771,IT -624665772,624665775,FR -624665776,624665779,PL +624665772,624665779,FR 624665780,624665783,FI -624665784,624665787,FR -624665788,624665791,PL +624665784,624665791,FR 624665792,624665795,ES 624665796,624665803,PL 624665804,624665807,FR @@ -12176,21 +11656,18 @@ 624665888,624665943,FR 624665944,624665951,PL 624665952,624665955,IE -624665956,624665959,FR -624665960,624665967,IE -624665968,624666035,FR -624666036,624666039,DE -624666040,624666043,FR +624665956,624666043,FR 624666044,624666047,GB 624666048,624666111,NL -624666112,624666367,FR -624666368,624666371,PL +624666112,624666371,FR 624666372,624666379,GB 624666380,624666383,PL 624666384,624666391,FR -624666392,624666399,GB -624666400,624666431,BE -624666432,624666655,FR +624666392,624666399,DE +624666400,624666431,FR +624666432,624666495,PT +624666496,624666623,NL +624666624,624666655,IE 624666656,624666663,GB 624666664,624666667,LT 624666668,624666671,FR @@ -12198,8 +11675,7 @@ 624666688,624666691,FR 624666692,624666695,ES 624666696,624666699,PT -624666700,624666703,CH -624666704,624666719,FR +624666700,624666719,FR 624666720,624666727,DE 624666728,624666735,FR 624666736,624666739,DE @@ -12220,30 +11696,30 @@ 624666908,624666911,FR 624666912,624666919,PT 624666920,624666923,GB -624666924,624666943,FR -624666944,624666959,GB +624666924,624666927,FR +624666928,624666943,GB +624666944,624666959,IE 624666960,624666975,PL 624666976,624666991,ES 624666992,624666995,PL 624666996,624666999,FR 624667000,624667007,CZ 624667008,624667039,BE -624667040,624667075,FR -624667076,624667079,PL +624667040,624667079,FR 624667080,624667083,IT 624667084,624667087,PL 624667088,624667103,GB 624667104,624667107,FR 624667108,624667111,PL 624667112,624667115,ES -624667116,624667119,CZ +624667116,624667119,FR 624667120,624667135,BE 624667136,624667199,FR 624667200,624667231,ES 624667232,624667263,FR 624667264,624667279,IE -624667280,624667395,FR -624667396,624667407,GB +624667280,624667399,FR +624667400,624667407,GB 624667408,624667471,FR 624667472,624667475,PT 624667476,624667479,IT @@ -12262,18 +11738,14 @@ 624667776,624667827,FR 624667828,624667831,PL 624667832,624667839,BE -624667840,624667847,FR -624667848,624667851,LT +624667840,624667851,FR 624667852,624667855,DE -624667856,624667871,FR +624667856,624667871,IT 624667872,624667879,IE 624667880,624667883,FR 624667884,624667887,IE 624667888,624667895,GB -624667896,624667899,PL -624667900,624667903,FR -624667904,624667935,PT -624667936,624667951,FR +624667896,624667951,FR 624667952,624667967,GB 624667968,624667971,DE 624667972,624667975,FR @@ -12284,8 +11756,7 @@ 624668016,624668023,FR 624668024,624668027,GB 624668028,624668043,FR -624668044,624668047,PL -624668048,624668055,GB +624668044,624668055,GB 624668056,624668063,IE 624668064,624668071,PT 624668072,624668095,PL @@ -12295,31 +11766,31 @@ 624668276,624668319,FR 624668320,624668335,GB 624668336,624668367,FR -624668368,624668383,PL -624668384,624668415,PT -624668416,624668447,FR +624668368,624668371,PL +624668372,624668375,FR +624668376,624668379,PL +624668380,624668415,FR +624668416,624668423,FI +624668424,624668447,FR 624668448,624668479,GB -624668480,624668511,DE -624668512,624668543,NL +624668480,624668543,FR 624668544,624668547,CZ 624668548,624668551,FR -624668552,624668559,IE +624668552,624668559,IT 624668560,624668575,FR 624668576,624668583,GB -624668584,624668607,FR -624668608,624668639,PT +624668584,624668639,FR 624668640,624668643,NL 624668644,624668647,IE -624668648,624668655,FR -624668656,624668659,NL -624668660,624668663,FR +624668648,624668663,FR 624668664,624668667,PL 624668668,624668671,PT 624668672,624668703,FR 624668704,624668707,PL -624668708,624668711,IE -624668712,624668767,FR -624668768,624668791,IT +624668708,624668715,FR +624668716,624668719,ES +624668720,624668783,FR +624668784,624668791,IT 624668792,624668799,IE 624668800,624668815,IT 624668816,624668927,FR @@ -12328,9 +11799,7 @@ 624668936,624668939,PL 624668940,624668959,FR 624668960,624668963,PL -624668964,624668967,FR -624668968,624668971,NL -624668972,624668995,FR +624668964,624668995,FR 624668996,624668999,NL 624669000,624669011,FR 624669012,624669015,GB @@ -12342,21 +11811,20 @@ 624669056,624669119,IT 624669120,624669127,FR 624669128,624669131,DE -624669132,624669183,FR +624669132,624669135,GB +624669136,624669183,FR 624669184,624669215,NL 624669216,624669231,FR 624669232,624669247,ES -624669248,624669251,PL -624669252,624669263,FR +624669248,624669255,DE +624669256,624669263,FR 624669264,624669271,IT -624669272,624669275,PL +624669272,624669275,FI 624669276,624669279,FR 624669280,624669295,PL 624669296,624669303,NL -624669304,624669311,FR -624669312,624669327,PL -624669328,624669343,FR -624669344,624669359,LT +624669304,624669343,FR +624669344,624669359,ES 624669360,624669367,PL 624669368,624669371,FR 624669372,624669375,PL @@ -12365,8 +11833,7 @@ 624669460,624669463,FI 624669464,624669499,FR 624669500,624669515,PL -624669516,624669519,BE -624669520,624669567,FR +624669516,624669567,FR 624669568,624669571,DE 624669572,624669579,FR 624669580,624669583,DE @@ -12379,52 +11846,46 @@ 624669712,624669727,ES 624669728,624669743,FR 624669744,624669747,IT -624669748,624669751,FR -624669752,624669755,PL -624669756,624669795,FR +624669748,624669795,FR 624669796,624669799,DE 624669800,624669807,IE 624669808,624669811,PL 624669812,624669815,FR 624669816,624669823,PL -624669824,624669871,FR -624669872,624669879,NL -624669880,624669919,FR -624669920,624669935,NL +624669824,624669855,FR +624669856,624669879,NL +624669880,624669935,FR 624669936,624669939,PL -624669940,624669943,GB -624669944,624669951,FR +624669940,624669951,FR 624669952,624669959,PL 624669960,624669963,ES 624669964,624669967,GB -624669968,624669975,NL +624669968,624669975,PT 624669976,624669983,FR 624669984,624669987,PL 624669988,624669991,ES 624669992,624669999,PL 624670000,624670003,GB 624670004,624670007,CH -624670008,624670015,PL -624670016,624670095,FR +624670008,624670011,PL +624670012,624670095,FR 624670096,624670103,PL 624670104,624670127,FR 624670128,624670131,PL -624670132,624670139,FR +624670132,624670135,FR +624670136,624670139,IE 624670140,624670143,PL -624670144,624670159,FR +624670144,624670147,FR +624670148,624670151,CZ +624670152,624670159,FR 624670160,624670167,PL 624670168,624670171,GB 624670172,624670175,ES -624670176,624670183,FI -624670184,624670191,IT -624670192,624670195,FR -624670196,624670199,CH -624670200,624670239,FR -624670240,624670255,NL -624670256,624670271,PT +624670176,624670195,FR +624670196,624670199,PT +624670200,624670271,FR 624670272,624670303,PL -624670304,624670307,NL -624670308,624670315,CH +624670304,624670315,FR 624670316,624670319,ES 624670320,624670335,FR 624670336,624670343,NL @@ -12435,19 +11896,20 @@ 624670368,624670383,PL 624670384,624670391,FR 624670392,624670395,NL -624670396,624670399,ES +624670396,624670399,CH 624670400,624670403,FR -624670404,624670407,PL +624670404,624670407,BE 624670408,624670411,FR 624670412,624670415,GB 624670416,624670431,DE -624670432,624670447,FR +624670432,624670443,IE +624670444,624670447,FR 624670448,624670463,CH 624670464,624670479,FR 624670480,624670487,GB 624670488,624670591,FR 624670592,624670599,GB -624670600,624670603,ES +624670600,624670603,FR 624670604,624670607,GB 624670608,624670615,FR 624670616,624670619,GB @@ -12458,8 +11920,7 @@ 624670664,624670667,BE 624670668,624670671,NL 624670672,624670687,ES -624670688,624670771,FR -624670772,624670775,PT +624670688,624670775,FR 624670776,624670783,CH 624670784,624670791,FR 624670792,624670803,GB @@ -12468,14 +11929,15 @@ 624670864,624670871,GB 624670872,624670879,FR 624670880,624670895,PT -624670896,624670903,CH +624670896,624670903,DE 624670904,624670911,FR 624670912,624670919,GB 624670920,624670927,FR 624670928,624670935,PL 624670936,624670959,FR 624670960,624670975,PL -624670976,624671239,GB +624670976,624671231,FR +624671232,624671239,GB 624671240,624671243,FR 624671244,624671247,PL 624671248,624671251,ES @@ -12483,16 +11945,13 @@ 624671256,624671279,FR 624671280,624671291,ES 624671292,624671423,FR -624671424,624671427,GB +624671424,624671427,ES 624671428,624671431,BE 624671432,624671439,FR 624671440,624671455,ES -624671456,624671463,NL -624671464,624671467,PL +624671456,624671467,FR 624671468,624671471,ES -624671472,624671475,FR -624671476,624671479,ES -624671480,624671483,FR +624671472,624671483,FR 624671484,624671487,GB 624671488,624671743,FR 624671744,624671775,IT @@ -12503,11 +11962,11 @@ 624671840,624671855,PL 624671856,624671887,FR 624671888,624671895,PT -624671896,624671903,DE +624671896,624671903,BE 624671904,624671919,PL 624671920,624671927,FR 624671928,624671935,IT -624671936,624671943,CZ +624671936,624671943,IE 624671944,624671967,FR 624671968,624671999,IT 624672000,624672015,FR @@ -12515,26 +11974,15 @@ 624672020,624672023,DE 624672024,624672055,FR 624672056,624672063,NL -624672064,624672067,FR -624672068,624672071,DE +624672064,624672071,FR 624672072,624672079,PL 624672080,624672083,DE -624672084,624672127,PT +624672084,624672127,FR 624672128,624672131,GB 624672132,624672135,PL -624672136,624672143,FR -624672144,624672151,PT +624672136,624672151,FR 624672152,624672159,PL -624672160,624672179,FR -624672180,624672183,IE -624672184,624672207,FR -624672208,624672223,PT -624672224,624672255,GB -624672256,624672511,FR -624672512,624672515,GB -624672516,624672523,FR -624672524,624672527,DE -624672528,624672547,FR +624672160,624672547,FR 624672548,624672551,PL 624672552,624672555,IT 624672556,624672559,DE @@ -12546,9 +11994,7 @@ 624672620,624672623,PL 624672624,624672655,FR 624672656,624672659,DE -624672660,624672735,FR -624672736,624672767,PT -624672768,624672927,FR +624672660,624672927,FR 624672928,624672943,PL 624672944,624672951,FR 624672952,624672959,ES @@ -12561,7 +12007,7 @@ 624673288,624673295,GB 624673296,624673299,FR 624673300,624673303,PT -624673304,624673307,NL +624673304,624673307,FR 624673308,624673311,BE 624673312,624673343,FR 624673344,624673375,BE @@ -12573,13 +12019,15 @@ 624673448,624673451,FR 624673452,624673455,PL 624673456,624673459,CH -624673460,624673471,PL +624673460,624673463,FR +624673464,624673471,PL 624673472,624673487,DE 624673488,624673503,PL 624673504,624673511,ES 624673512,624673535,FR 624673536,624673791,ES -624673792,624673799,PL +624673792,624673795,PL +624673796,624673799,FR 624673800,624673803,IT 624673804,624673807,DE 624673808,624673811,PL @@ -12600,11 +12048,10 @@ 624673932,624673935,FR 624673936,624673939,NL 624673940,624673943,ES -624673944,624673951,NL +624673944,624673951,FR 624673952,624673955,DE 624673956,624673959,PL -624673960,624673963,GB -624673964,624673967,DE +624673960,624673967,PT 624673968,624673983,FR 624673984,624673987,DE 624673988,624673991,ES @@ -12614,15 +12061,16 @@ 624674004,624674007,ES 624674008,624674011,IT 624674012,624674015,GB -624674016,624674047,PT +624674016,624674047,FR 624674048,624674303,ES -624674304,624674307,GB -624674308,624674311,PL +624674304,624674307,FR +624674308,624674311,DE 624674312,624674315,ES 624674316,624674351,FR 624674352,624674367,FI 624674368,624674383,DE -624674384,624674395,IT +624674384,624674391,IE +624674392,624674395,IT 624674396,624674399,PL 624674400,624674403,DE 624674404,624674407,PL @@ -12632,12 +12080,10 @@ 624674432,624674435,PL 624674436,624674447,FR 624674448,624674451,GB -624674452,624674455,ES +624674452,624674455,FR 624674456,624674459,IT 624674460,624674463,ES -624674464,624674495,FR -624674496,624674503,GB -624674504,624674511,FR +624674464,624674511,FR 624674512,624674527,NL 624674528,624674623,FR 624674624,624674655,ES @@ -12646,7 +12092,7 @@ 624674704,624674707,PL 624674708,624674711,DE 624674712,624674715,PL -624674716,624674719,BE +624674716,624674719,FR 624674720,624674739,PL 624674740,624674743,NL 624674744,624674751,ES @@ -12668,11 +12114,9 @@ 624675060,624675071,FR 624675072,624675327,DE 624675328,624675343,FR -624675344,624675347,CZ +624675344,624675347,PT 624675348,624675351,NL -624675352,624675359,PT -624675360,624675375,FR -624675376,624675383,IT +624675352,624675383,FR 624675384,624675387,NL 624675388,624675391,FR 624675392,624675423,ES @@ -12692,17 +12136,15 @@ 624675664,624675679,IT 624675680,624675683,NL 624675684,624675687,PT -624675688,624675691,PL +624675688,624675691,FR 624675692,624675695,IT 624675696,624675711,FR 624675712,624675719,ES 624675720,624675727,NL 624675728,624675731,PL -624675732,624675743,FR -624675744,624675775,BE +624675732,624675775,FR 624675776,624675787,PL -624675788,624675791,FR -624675792,624675799,GB +624675788,624675799,FR 624675800,624675803,BE 624675804,624675807,ES 624675808,624675839,GB @@ -12724,9 +12166,7 @@ 624676072,624676075,ES 624676076,624676087,FR 624676088,624676091,DE -624676092,624676095,FR -624676096,624676099,PL -624676100,624676103,FR +624676092,624676103,FR 624676104,624676111,GB 624676112,624676115,NL 624676116,624676119,GB @@ -12736,12 +12176,11 @@ 624676136,624676139,BE 624676140,624676143,FR 624676144,624676159,PL -624676160,624676175,CH +624676160,624676175,FR 624676176,624676179,NL 624676180,624676183,DE -624676184,624676191,NL -624676192,624676207,FR -624676208,624676215,ES +624676184,624676191,GB +624676192,624676215,FR 624676216,624676219,PL 624676220,624676223,ES 624676224,624676311,FR @@ -12756,8 +12195,7 @@ 624676432,624676435,PL 624676436,624676439,ES 624676440,624676447,NL -624676448,624676479,IE -624676480,624676503,FR +624676448,624676503,FR 624676504,624676507,GB 624676508,624676511,FR 624676512,624676607,ES @@ -12769,15 +12207,13 @@ 624676632,624676635,IT 624676636,624676639,FR 624676640,624676671,NL -624676672,624676687,PT -624676688,624676703,FR +624676672,624676703,FR 624676704,624676711,BE 624676712,624676715,FR 624676716,624676719,IT 624676720,624676735,FR 624676736,624676799,BE -624676800,624676863,PT -624676864,624676911,FR +624676800,624676911,FR 624676912,624676919,BE 624676920,624676923,FR 624676924,624676927,ES @@ -12792,42 +12228,41 @@ 624677120,624677255,FR 624677256,624677259,ES 624677260,624677263,NL -624677264,624677271,FR -624677272,624677279,PT -624677280,624677283,PL +624677264,624677283,FR 624677284,624677287,ES 624677288,624677303,FR 624677304,624677307,DE 624677308,624677311,IT 624677312,624677343,NL -624677344,624677367,FR -624677368,624677375,IE +624677344,624677375,FR 624677376,624677379,CH 624677380,624677383,ES -624677384,624677391,DE +624677384,624677391,FR 624677392,624677395,PT 624677396,624677403,FR 624677404,624677407,DE 624677408,624677439,GB -624677440,624677443,IE +624677440,624677443,FR 624677444,624677447,PL 624677448,624677459,FR -624677460,624677463,ES -624677464,624677467,IE +624677460,624677463,PT +624677464,624677467,FR 624677468,624677471,GB -624677472,624677519,FR +624677472,624677503,FR +624677504,624677507,NL +624677508,624677519,FR 624677520,624677535,DE 624677536,624677567,PT 624677568,624677583,FR 624677584,624677587,ES -624677588,624677599,PL +624677588,624677591,FR +624677592,624677599,PL 624677600,624677603,CH -624677604,624677607,GB +624677604,624677607,FR 624677608,624677615,CZ 624677616,624677627,PL -624677628,624677631,GB -624677632,624677671,FR -624677672,624677679,GB +624677628,624677631,BE +624677632,624677679,FR 624677680,624677683,PL 624677684,624677695,GB 624677696,624677703,FR @@ -12835,33 +12270,29 @@ 624677712,624677731,FR 624677732,624677735,PL 624677736,624677743,ES -624677744,624677751,GB -624677752,624677759,FR +624677744,624677759,FR 624677760,624677763,NL 624677764,624677767,PL 624677768,624677775,GB 624677776,624677783,DE 624677784,624677787,FR 624677788,624677791,PL -624677792,624677799,NL -624677800,624677803,GB +624677792,624677803,FR 624677804,624677807,PL -624677808,624677959,FR -624677960,624677967,IE +624677808,624677967,FR 624677968,624677983,TN 624677984,624678015,PT 624678016,624678183,FR -624678184,624678195,PL +624678184,624678187,PL +624678188,624678191,FR +624678192,624678195,LT 624678196,624678199,FR 624678200,624678239,ES 624678240,624678255,FR 624678256,624678259,PL 624678260,624678263,FR 624678264,624678279,ES -624678280,624678283,PL -624678284,624678287,FR -624678288,624678303,PT -624678304,624678319,FR +624678280,624678319,FR 624678320,624678335,ES 624678336,624678351,FR 624678352,624678355,PT @@ -12869,27 +12300,26 @@ 624678360,624678363,ES 624678364,624678367,FR 624678368,624678375,CH -624678376,624678383,ES -624678384,624678387,FR +624678376,624678387,FR 624678388,624678395,PT -624678396,624678399,FR -624678400,624678415,IE -624678416,624678463,FR +624678396,624678415,FR +624678416,624678431,GB +624678432,624678463,FR 624678464,624678479,CH 624678480,624678483,FR 624678484,624678487,ES 624678488,624678491,PT -624678492,624678511,FR +624678492,624678495,FR +624678496,624678511,IE 624678512,624678527,PL -624678528,624678559,PT +624678528,624678559,FR 624678560,624678563,IT 624678564,624678567,DE 624678568,624678591,FR 624678592,624678655,NL 624678656,624678663,FR 624678664,624678667,ES -624678668,624678671,DE -624678672,624678687,FR +624678668,624678687,FR 624678688,624678695,LT 624678696,624678703,IT 624678704,624678707,NL @@ -12905,26 +12335,23 @@ 624678752,624678783,NL 624678784,624678847,FR 624678848,624678855,GB -624678856,624678863,PL +624678856,624678863,NL 624678864,624678879,PT 624678880,624678887,PL 624678888,624678891,DE 624678892,624678895,IE 624678896,624678899,IT 624678900,624678903,GB -624678904,624678907,ES -624678908,624678911,FR +624678904,624678911,IT 624678912,624679167,GB 624679168,624679175,PL 624679176,624679183,DE 624679184,624679199,PL -624679200,624679203,GB -624679204,624679207,FR +624679200,624679207,FR 624679208,624679211,ES 624679212,624679215,IT 624679216,624679231,IE -624679232,624679247,FR -624679248,624679255,PT +624679232,624679255,FR 624679256,624679259,PL 624679260,624679263,ES 624679264,624679295,FR @@ -12937,9 +12364,7 @@ 624679332,624679335,DE 624679336,624679339,FR 624679340,624679343,DE -624679344,624679359,FR -624679360,624679391,IE -624679392,624679407,BE +624679344,624679407,FR 624679408,624679423,PL 624679424,624679679,DE 624679680,624679687,PL @@ -12947,15 +12372,13 @@ 624679712,624679743,BE 624679744,624679747,CZ 624679748,624679751,PT -624679752,624679767,PL +624679752,624679759,GB +624679760,624679767,PL 624679768,624679771,NL 624679772,624679775,PL 624679776,624679779,FR -624679780,624679783,NL -624679784,624679791,FR -624679792,624679795,PT -624679796,624679815,FR -624679816,624679819,IT +624679780,624679783,DE +624679784,624679819,FR 624679820,624679823,PL 624679824,624679827,PT 624679828,624679831,DE @@ -12973,11 +12396,9 @@ 624679912,624679915,ES 624679916,624679919,FR 624679920,624679923,BE -624679924,624679927,FR -624679928,624679935,PT -624679936,624680463,FR -624680464,624680467,PL -624680468,624680475,FR +624679924,624680447,FR +624680448,624680463,ES +624680464,624680475,FR 624680476,624680479,PL 624680480,624680499,FR 624680500,624680503,NL @@ -12989,8 +12410,9 @@ 624680564,624680567,NL 624680568,624680639,FR 624680640,624680703,FI -624680704,624680743,FR -624680744,624680747,BE +624680704,624680735,FR +624680736,624680743,IT +624680744,624680747,FR 624680748,624680751,NL 624680752,624680767,PL 624680768,624680783,CZ @@ -13011,14 +12433,13 @@ 624680996,624681023,FR 624681024,624681055,ES 624681056,624681063,PT -624681064,624681079,PL +624681064,624681071,FR +624681072,624681079,PL 624681080,624681083,DE 624681084,624681087,ES 624681088,624681095,GB 624681096,624681103,NL -624681104,624681111,FR -624681112,624681115,DE -624681116,624681151,FR +624681104,624681151,FR 624681152,624681215,PT 624681216,624681247,PL 624681248,624681255,IT @@ -13030,15 +12451,13 @@ 624681280,624681311,FR 624681312,624681327,PL 624681328,624681331,CH -624681332,624681335,PL -624681336,624681343,FR +624681332,624681343,FR 624681344,624681347,CH 624681348,624681359,FR 624681360,624681363,PL 624681364,624681367,CZ 624681368,624681375,PL -624681376,624681439,FR -624681440,624681447,GB +624681376,624681447,FR 624681448,624681451,DE 624681452,624681455,PL 624681456,624681459,GB @@ -13051,7 +12470,8 @@ 624681772,624681775,DE 624681776,624681791,FR 624681792,624681795,PL -624681796,624681807,FR +624681796,624681803,FR +624681804,624681807,IT 624681808,624681823,PL 624681824,624681855,CZ 624681856,624681919,FR @@ -13064,12 +12484,14 @@ 624681980,624681983,ES 624681984,624681999,PL 624682000,624682003,ES -624682004,624682047,FR -624682048,624682059,GB +624682004,624682007,GB +624682008,624682055,FR +624682056,624682059,GB 624682060,624682063,IE 624682064,624682071,PT 624682072,624682075,PL -624682076,624682083,FR +624682076,624682079,IT +624682080,624682083,FR 624682084,624682087,NL 624682088,624682103,FR 624682104,624682111,IE @@ -13087,11 +12509,11 @@ 624682272,624682303,FR 624682304,624682319,BE 624682320,624682323,ES -624682324,624682335,PL -624682336,624682339,FR +624682324,624682331,PL +624682332,624682339,FR 624682340,624682343,GB 624682344,624682347,PL -624682348,624682351,ES +624682348,624682351,FR 624682352,624682355,IT 624682356,624682359,FR 624682360,624682367,ES @@ -13102,8 +12524,8 @@ 624682640,624682655,BE 624682656,624682687,ES 624682688,624682751,FR -624682752,624682783,DE -624682784,624682787,ES +624682752,624682767,DE +624682768,624682787,FR 624682788,624682791,IT 624682792,624682795,DE 624682796,624682799,ES @@ -13111,15 +12533,14 @@ 624682880,624682911,GB 624682912,624682919,NL 624682920,624682927,IE -624682928,624682931,PL +624682928,624682931,DE 624682932,624682935,FR 624682936,624682939,PL 624682940,624682943,DE 624682944,624682967,PL -624682968,624682971,GB +624682968,624682971,FR 624682972,624682975,PT -624682976,624682991,IT -624682992,624683011,FR +624682976,624683011,FR 624683012,624683015,PL 624683016,624683023,ES 624683024,624683031,PL @@ -13127,11 +12548,10 @@ 624683040,624683047,BE 624683048,624683051,FR 624683052,624683055,IT -624683056,624683063,ES -624683064,624683067,FR +624683056,624683067,FR 624683068,624683071,GB 624683072,624683079,FR -624683080,624683083,PL +624683080,624683083,NL 624683084,624683087,FR 624683088,624683095,GB 624683096,624683099,NL @@ -13152,21 +12572,22 @@ 624683372,624683375,ES 624683376,624683379,PT 624683380,624683383,IT -624683384,624683491,FR +624683384,624683387,FR +624683388,624683391,ES +624683392,624683491,FR 624683492,624683495,NL 624683496,624683519,FR -624683520,624683583,PT +624683520,624683583,GB 624683584,624683631,FR 624683632,624683647,ES -624683648,624683679,FR -624683680,624683687,PT -624683688,624683695,PL +624683648,624683687,FR +624683688,624683691,DE +624683692,624683695,PL 624683696,624683759,FR 624683760,624683775,PL 624683776,624683777,FR 624683778,624683781,DE -624683782,624683783,FR -624683784,624683785,CZ +624683782,624683785,FR 624683786,624683789,DE 624683790,624683799,FR 624683800,624683803,FI @@ -13181,9 +12602,8 @@ 624683884,624683887,GB 624683888,624683895,PL 624683896,624683911,FR -624683912,624683923,PL -624683924,624683927,ES -624683928,624683943,FR +624683912,624683919,PL +624683920,624683943,FR 624683944,624683947,PL 624683948,624683951,FI 624683952,624683967,PL @@ -13191,18 +12611,14 @@ 624683972,624683975,DE 624683976,624683983,GB 624683984,624683991,PL -624683992,624683999,GB -624684000,624684007,NL -624684008,624684015,FR +624683992,624683999,IT +624684000,624684015,PT 624684016,624684019,DE -624684020,624684023,CH -624684024,624684027,FR -624684028,624684031,CH -624684032,624684039,FR +624684020,624684039,FR 624684040,624684043,DE 624684044,624684051,FR 624684052,624684055,ES -624684056,624684063,NL +624684056,624684063,IE 624684064,624684071,PT 624684072,624684079,FR 624684080,624684095,DE @@ -13219,8 +12635,7 @@ 624684160,624684163,IT 624684164,624684167,FR 624684168,624684171,IT -624684172,624684175,PL -624684176,624684187,FR +624684172,624684187,FR 624684188,624684191,PL 624684192,624684195,CH 624684196,624684199,PL @@ -13241,8 +12656,7 @@ 624684384,624684399,IE 624684400,624684415,FR 624684416,624684419,PT -624684420,624684447,FR -624684448,624684479,GB +624684420,624684479,FR 624684480,624684511,FI 624684512,624684543,NL 624684544,624684583,FR @@ -13266,9 +12680,9 @@ 624684776,624684779,IT 624684780,624684799,FR 624684800,624684803,DE -624684804,624684807,PL +624684804,624684807,FR 624684808,624684815,DE -624684816,624684831,GB +624684816,624684831,FR 624684832,624684839,PL 624684840,624684843,ES 624684844,624684847,PT @@ -13285,15 +12699,16 @@ 624684904,624684907,FR 624684908,624684911,ES 624684912,624684915,PL -624684916,624684919,FR -624684920,624684927,PL +624684916,624684923,FR +624684924,624684927,PL 624684928,624684991,FR 624684992,624685023,NL 624685024,624685027,PL 624685028,624685031,FR 624685032,624685035,PL 624685036,624685039,ES -624685040,624685047,PL +624685040,624685043,FR +624685044,624685047,PL 624685048,624685051,FR 624685052,624685055,CZ 624685056,624685059,GB @@ -13306,16 +12721,16 @@ 624685104,624685119,ES 624685120,624685167,FR 624685168,624685183,PL -624685184,624685223,FR +624685184,624685215,FR +624685216,624685219,DE +624685220,624685223,FR 624685224,624685227,ES -624685228,624685231,PL +624685228,624685231,FR 624685232,624685235,CZ 624685236,624685239,BE 624685240,624685243,IE 624685244,624685247,BE -624685248,624685279,FR -624685280,624685311,GB -624685312,624685327,FR +624685248,624685327,FR 624685328,624685343,DE 624685344,624685439,FR 624685440,624685443,PL @@ -13324,9 +12739,7 @@ 624685452,624685455,PL 624685456,624685471,CH 624685472,624685483,PL -624685484,624685503,FR -624685504,624685535,ES -624685536,624685539,FR +624685484,624685539,FR 624685540,624685543,GB 624685544,624685551,FR 624685552,624685555,ES @@ -13334,18 +12747,19 @@ 624685568,624685679,FR 624685680,624685683,PL 624685684,624685687,FI -624685688,624685695,FR -624685696,624685703,IE +624685688,624685691,FR +624685692,624685695,FI +624685696,624685703,FR 624685704,624685707,IT 624685708,624685711,DE 624685712,624685715,ES -624685716,624685719,FR -624685720,624685723,IE +624685716,624685723,FR 624685724,624685727,DE 624685728,624685759,FR 624685760,624685775,ES 624685776,624685791,FR -624685792,624685799,PL +624685792,624685795,PL +624685796,624685799,FR 624685800,624685803,GB 624685804,624685807,IT 624685808,624685815,FR @@ -13359,38 +12773,30 @@ 624685944,624685951,FR 624685952,624685967,FI 624685968,624685983,FR -624685984,624685987,IE +624685984,624685987,ES 624685988,624685991,FR 624685992,624685999,DE 624686000,624686003,LT 624686004,624686007,GB -624686008,624686015,ES -624686016,624686415,FR +624686008,624686415,FR 624686416,624686419,DE 624686420,624686439,FR 624686440,624686443,IT 624686444,624686447,PT -624686448,624686611,FR -624686612,624686615,FI +624686448,624686615,FR 624686616,624686623,PL 624686624,624686627,DE 624686628,624686663,FR 624686664,624686671,PL -624686672,624686687,FI -624686688,624686695,FR +624686672,624686695,FR 624686696,624686699,IT -624686700,624686703,PT -624686704,624686707,LT -624686708,624686711,IE +624686700,624686703,ES +624686704,624686711,GB 624686712,624686715,FR 624686716,624686719,ES -624686720,624686815,FR -624686816,624686847,GB -624686848,624686855,FR -624686856,624686859,PL +624686720,624686859,FR 624686860,624686863,CZ -624686864,624686867,CH -624686868,624686879,FR +624686864,624686879,FR 624686880,624686887,GB 624686888,624686947,FR 624686948,624686955,CZ @@ -13398,8 +12804,7 @@ 624686960,624686975,GB 624686976,624687039,FR 624687040,624687055,PL -624687056,624687071,DE -624687072,624687103,FR +624687056,624687103,FR 624687104,624687231,DE 624687232,624687295,FR 624687296,624687327,CH @@ -13410,9 +12815,7 @@ 624687616,624687619,PT 624687620,624687623,DE 624687624,624687627,GB -624687628,624687679,FR -624687680,624687695,PT -624687696,624687707,FR +624687628,624687707,FR 624687708,624687711,DE 624687712,624687783,FR 624687784,624687791,PT @@ -13421,16 +12824,13 @@ 624687824,624687827,PT 624687828,624687831,ES 624687832,624687835,CZ -624687836,624687839,ES -624687840,624687903,FR +624687836,624687903,FR 624687904,624687919,ES 624687920,624687923,PL 624687924,624687927,ES 624687928,624687967,FR 624687968,624687983,IT -624687984,624687999,FR -624688000,624688003,PL -624688004,624688015,FR +624687984,624688015,FR 624688016,624688031,GB 624688032,624688039,FR 624688040,624688047,PL @@ -13449,8 +12849,7 @@ 624688316,624688319,GB 624688320,624688323,IT 624688324,624688327,NL -624688328,624688335,PL -624688336,624688343,FR +624688328,624688343,FR 624688344,624688347,GB 624688348,624688351,FR 624688352,624688399,IE @@ -13459,12 +12858,11 @@ 624688440,624688443,ES 624688444,624688479,FR 624688480,624688483,ES -624688484,624688487,CZ -624688488,624688491,PL +624688484,624688491,FR 624688492,624688495,GB 624688496,624688575,PL 624688576,624688639,DE -624688640,624688643,PL +624688640,624688643,FR 624688644,624688647,IT 624688648,624688655,PT 624688656,624688663,NL @@ -13472,7 +12870,7 @@ 624688672,624688687,PL 624688688,624688691,FR 624688692,624688695,ES -624688696,624688699,PL +624688696,624688699,FR 624688700,624688703,FI 624688704,624688719,FR 624688720,624688723,ES @@ -13488,22 +12886,20 @@ 624688800,624688815,NL 624688816,624688831,PL 624688832,624688927,FR -624688928,624688935,PL -624688936,624688943,CH +624688928,624688943,PL 624688944,624688951,FR 624688952,624688955,LT 624688956,624688959,PL 624688960,624688975,FR 624688976,624688991,PT -624688992,624688999,FR -624689000,624689007,PT +624688992,624689007,FR 624689008,624689015,IE -624689016,624689019,NL +624689016,624689019,PT 624689020,624689023,IT 624689024,624689031,FR 624689032,624689039,FI -624689040,624689059,FR -624689060,624689063,CZ +624689040,624689055,FR +624689056,624689063,DE 624689064,624689067,ES 624689068,624689071,FR 624689072,624689075,ES @@ -13515,8 +12911,7 @@ 624689112,624689115,NL 624689116,624689119,FR 624689120,624689123,GB -624689124,624689131,FR -624689132,624689135,GB +624689124,624689135,FR 624689136,624689143,BE 624689144,624689147,DE 624689148,624689151,FR @@ -13578,7 +12973,11 @@ 625518632,625518647,NL 625518648,625519103,US 625519104,625519615,NL -625519616,625519999,US +625519616,625519758,US +625519759,625519759,NL +625519760,625519770,US +625519771,625519771,NL +625519772,625519999,US 625520000,625520071,NL 625520072,625520079,US 625520080,625520127,NL @@ -13669,15 +13068,15 @@ 628015104,628015799,FR 628015800,628015807,GB 628015808,628015831,FR -628015832,628015871,GB -628015872,628016087,FR +628015832,628015839,GB +628015840,628016087,FR 628016088,628016127,GB 628016128,628016231,FR 628016232,628016239,GB 628016240,628016319,FR 628016320,628016351,GB -628016352,628016603,FR -628016604,628016639,GB +628016352,628016607,FR +628016608,628016639,GB 628016640,628016863,FR 628016864,628016895,GB 628016896,628017107,FR @@ -13802,7 +13201,8 @@ 629883136,629883391,AU 629883392,629883903,EU 629883904,629884159,AU -629884160,629884671,EU +629884160,629884415,US +629884416,629884671,EU 629884672,629884927,AU 629884928,629886975,PL 629886976,629889023,RU @@ -13965,7 +13365,9 @@ 634075136,634077183,NL 634077184,634093567,BA 634093568,634109951,GB -634109952,634111999,IE +634109952,634110207,IE +634110208,634110463,GB +634110464,634111999,IE 634112000,634114047,RU 634114048,634116095,SE 634116096,634118143,NL @@ -13985,9 +13387,7 @@ 634208256,634216447,RU 634216448,634220543,HR 634220544,634222591,IQ -634222592,634222911,DK -634222912,634222975,NO -634222976,634224639,DK +634222592,634224639,DK 634224640,634388479,IT 634388480,634396671,SE 634396672,634398719,BA @@ -14034,7 +13434,9 @@ 635187200,635191295,FR 635191296,635195391,RS 635195392,635197439,RU -635197440,635199583,GB +635197440,635199535,GB +635199536,635199551,IT +635199552,635199583,GB 635199584,635199607,IT 635199608,635199647,GB 635199648,635199655,IT @@ -14044,9 +13446,7 @@ 635199736,635199743,IT 635199744,635199775,GB 635199776,635199783,IT -635199784,635199999,GB -635200000,635200007,IT -635200008,635200047,GB +635199784,635200047,GB 635200048,635200055,IT 635200056,635200071,GB 635200072,635200079,IT @@ -14068,9 +13468,13 @@ 635200432,635200439,IT 635200440,635200487,GB 635200488,635200495,IT -635200496,635200631,GB +635200496,635200591,GB +635200592,635200607,IT +635200608,635200631,GB 635200632,635200639,IT -635200640,635200959,GB +635200640,635200687,GB +635200688,635200695,IT +635200696,635200959,GB 635200960,635200975,IT 635200976,635200991,GB 635200992,635200999,IT @@ -14082,9 +13486,7 @@ 635201256,635201263,IT 635201264,635201383,GB 635201384,635201391,IT -635201392,635201415,GB -635201416,635201423,IT -635201424,635201463,GB +635201392,635201463,GB 635201464,635201471,IT 635201472,635203583,GB 635203584,635207679,JO @@ -14112,9 +13514,7 @@ 635287552,635289599,RU 635289600,635291647,DE 635291648,635292159,RU -635292160,635292379,KZ -635292380,635292383,RU -635292384,635292415,KZ +635292160,635292415,KZ 635292416,635293439,RU 635293440,635293583,KZ 635293584,635293695,RU @@ -14690,7 +14090,11 @@ 636186624,636188671,NL 636188672,636190719,GB 636190720,636223487,RU -636223488,636485631,IQ +636223488,636253439,IQ +636253440,636253695,US +636253696,636273407,IQ +636273408,636273663,US +636273664,636485631,IQ 636485632,636747775,SA 636747776,636780543,DE 636780544,636813311,HR @@ -14708,7 +14112,9 @@ 636968960,636975103,TR 636975104,636977151,ES 636977152,637140991,PL -637140992,637206527,SE +637140992,637185535,SE +637185536,637186047,DK +637186048,637206527,SE 637206528,637239295,NL 637239296,637272063,RO 637272064,637272831,RU @@ -14758,109 +14164,158 @@ 637403136,637534207,IR 637534208,641736703,US 641736704,641737727,CA -641737728,641737983,US -641737984,641741055,CA -641741056,641741311,US -641741312,641744895,CA -641744896,641761279,US -641761280,641765887,CA +641737728,641763071,US +641763072,641763327,CA +641763328,641765375,US +641765376,641765887,CA 641765888,641766399,US 641766400,641767423,CA -641767424,641826815,US -641826816,641827839,MX -641827840,642088959,US +641767424,641768447,US +641768448,641768959,CA +641768960,641826815,US +641826816,641827327,MX +641827328,642088959,US 642088960,642097151,CA 642097152,642695167,US 642695168,642696191,US 642696192,642793471,US -642793472,642795519,CA +642793472,642793727,CA +642793728,642793983,US +642793984,642795519,CA 642795520,642796031,CA 642796032,642796543,CA 642796544,642797055,CA 642797056,642797567,CA -642797568,642801663,US -642801664,642809855,CA -642809856,642924543,US -642924544,642926591,MX -642926592,643875071,US +642797568,642924543,US +642924544,642928639,MX +642928640,643235839,US +643235840,643244031,CA +643244032,643302911,US +643302912,643303167,CA +643303168,643875071,US 643875072,643875327,US 643875328,644048127,US 644048128,644048383,US 644048384,644049151,US 644049152,644049407,US -644049408,644055039,US -644055040,644056047,CA -644056048,644056063,US -644056064,644059135,CA -644059136,644059391,CA -644059392,644061631,CA -644061632,644061663,US -644061664,644065023,CA -644065024,644065055,US -644065056,644071679,CA -644071680,644072447,US -644072448,644073471,CA -644073472,644084223,US -644084224,644084479,GU -644084480,644093439,US +644049408,644055551,US +644055552,644055807,CA +644055808,644055935,US +644055936,644055967,CA +644055968,644056063,US +644056064,644056319,CA +644056320,644056575,US +644056576,644056831,CA +644056832,644057087,US +644057088,644057599,CA +644057600,644058111,US +644058112,644059135,CA +644059136,644059391,US +644059392,644060671,US +644060672,644061183,CA +644061184,644063231,US +644063232,644063743,CA +644063744,644063999,US +644064000,644064767,CA +644064768,644065535,US +644065536,644065791,CA +644065792,644067391,US +644067392,644067455,CA +644067456,644069631,US +644069632,644069887,CA +644069888,644070143,US +644070144,644070399,CA +644070400,644084479,US +644084480,644084607,GU +644084608,644093439,US 644093440,644093695,US 644093696,644121855,US 644121856,644122111,US -644122112,644235263,US -644235264,644243455,CA -644243456,644268543,US -644268544,644268613,CA -644268614,644268614,US -644268615,644268799,CA -644268800,644323391,US +644122112,644239359,US +644239360,644240383,CA +644240384,644247551,US +644247552,644248575,CA +644248576,644323391,US 644323392,644323407,CA -644323408,644388863,US -644388864,644390911,CA +644323408,644389375,US +644389376,644390143,CA +644390144,644390655,US +644390656,644390911,CA 644390912,644403199,US 644403200,644403711,CA -644403712,644403967,US -644403968,644404223,CA -644404224,644408063,US -644408064,644408319,CA -644408320,644413439,US -644413440,644414463,CA +644403712,644414207,US +644414208,644414463,CA 644414464,644422911,US 644422912,644423423,JP 644423424,644569087,US 644569088,644571135,PR -644571136,644581375,US -644581376,644583423,CA -644583424,644628479,US -644628480,644636671,CA -644636672,644718591,US -644718592,644722687,CA -644722688,644759551,US -644759552,644767743,CA -644767744,644833279,US -644833280,644837375,CA -644837376,644838655,US -644838656,644838783,CA -644838784,644838911,US +644571136,644582143,US +644582144,644582399,CA +644582400,644628735,US +644628736,644628991,CA +644628992,644629247,US +644629248,644629503,CA +644629504,644632319,US +644632320,644632831,CA +644632832,644634367,US +644634368,644634623,CA +644634624,644719615,US +644719616,644720639,CA +644720640,644759551,US +644759552,644759807,CA +644759808,644761343,US +644761344,644761599,CA +644761600,644763903,US +644763904,644764159,CA +644764160,644833279,US +644833280,644834303,CA +644834304,644834815,US +644834816,644835327,CA +644835328,644836351,US +644836352,644837375,CA +644837376,644838911,US 644838912,644841471,CA -644841472,644875647,US -644875648,644875775,CA -644875776,644876225,US -644876226,644876226,CA -644876227,644879329,US -644879330,644879330,CA -644879331,644890623,US -644890624,644892927,CA -644892928,644893183,US -644893184,644907007,CA -644907008,644980735,US -644980736,644988927,CA -644988928,645001215,US +644841472,644896511,US +644896512,644896767,CA +644896768,644897919,US +644897920,644897983,CA +644897984,644898879,US +644898880,644898911,CA +644898912,644899839,US +644899840,644900095,CA +644900096,644901631,US +644901632,644901887,CA +644901888,644902911,US +644902912,644903423,CA +644903424,644904959,US +644904960,644905215,CA +644905216,644981759,US +644981760,644982015,CA +644982016,644982271,US +644982272,644982527,CA +644982528,644985855,US +644985856,644986879,CA +644986880,644987135,US +644987136,644987391,CA +644987392,645001215,US 645001216,645003263,US 645003264,645185535,US -645185536,645189631,CA -645189632,645218303,US -645218304,645234687,CA -645234688,645358271,US +645185536,645186047,CA +645186048,645187327,US +645187328,645187583,CA +645187584,645188095,US +645188096,645188607,CA +645188608,645219327,US +645219328,645220351,CA +645220352,645221375,US +645221376,645222399,CA +645222400,645223423,US +645223424,645223679,CA +645223680,645225471,US +645225472,645225727,CA +645225728,645227519,US +645227520,645228287,CA +645228288,645358271,US 645358272,645358335,US 645358336,645361663,US 645361664,645361919,US @@ -14870,13 +14325,19 @@ 645482496,645484543,CA 645484544,645525503,US 645525504,645529599,CA -645529600,645547007,US -645547008,645547263,CA -645547264,645576703,US -645576704,645576959,CA -645576960,645644287,US -645644288,645645311,MX -645645312,645703679,US +645529600,645540351,US +645540352,645540607,CA +645540608,645546239,US +645546240,645548031,CA +645548032,645576703,US +645576704,645576997,CA +645576998,645576998,US +645576999,645577215,CA +645577216,645577471,US +645577472,645577727,CA +645577728,645644351,US +645644352,645644415,MX +645644416,645703679,US 645703680,645705727,MX 645705728,645731071,US 645731072,645731199,US @@ -14885,8 +14346,8 @@ 645736704,645810943,US 645810944,645811199,US 645811200,645873663,US -645873664,645881855,CA -645881856,654311423,US +645873664,645877759,CA +645877760,654311423,US 654311424,654311679,CN 654311680,654311935,AU 654311936,654376959,CN @@ -14951,7 +14412,9 @@ 692658176,692666367,ZA 692666368,692674559,TZ 692674560,692682751,ML -692682752,692690943,NG +692682752,692690431,NG +692690432,692690687,GH +692690688,692690943,NG 692690944,692707327,TZ 692707328,692715519,NG 692715520,692719615,BJ @@ -15061,7 +14524,9 @@ 692999168,693000191,SL 693000192,693001215,NG 693001216,693002239,BW -693002240,693003263,GA +693002240,693002879,GA +693002880,693003007,RW +693003008,693003263,GA 693003264,693004287,NG 693004288,693005311,CD 693005312,693006335,SD @@ -15069,6 +14534,7 @@ 693007360,693008383,NE 693008384,693009407,CF 693009408,693010431,GH +693010432,693011455,ZA 693011456,693012479,SZ 693012480,693013503,TG 693013504,693014527,ZA @@ -15082,7 +14548,7 @@ 693021696,693022719,NG 693022720,693023743,KE 693023744,693026815,ZA -693027840,693028863,CD +693026816,693028863,CD 693028864,693029887,ZA 693029888,693030911,CM 693030912,693031935,NG @@ -15199,12 +14665,13 @@ 696928256,696930303,BW 696930304,696932351,RW 696932352,696933375,BJ +696933376,696934399,ZA 696934400,696942591,BF 696942592,696950783,MR 696950784,696958975,NG 696958976,696963071,TZ -696963072,696966911,UG -696966912,696967167,TZ +696963072,696966143,UG +696966144,696967167,TZ 696967168,696971263,MZ 696971264,696975359,KE 696975360,696991743,GH @@ -15212,7 +14679,9 @@ 697008128,697040895,KE 697040896,697303039,MA 697303040,697827327,ZA -697827328,697958399,EG +697827328,697937919,EG +697937920,697939967,RU +697939968,697958399,EG 697958400,698023935,ZA 698023936,698056703,NG 698056704,698089471,EG @@ -15258,6 +14727,7 @@ 700366848,700375039,UG 700375040,700376063,CM 700376064,700377087,NE +700377088,700378111,CD 700378112,700379135,MG 700379136,700380159,NG 700380160,700381183,BW @@ -15294,9 +14764,13 @@ 700588032,700588286,KM 700588287,700588287,A2 700588288,700588543,KM -700588544,700589567,A2 +700588544,700589183,A2 +700589184,700589215,NG +700589216,700589567,A2 700589568,700589695,TZ -700589696,700592383,A2 +700589696,700590847,A2 +700590848,700591103,CM +700591104,700592383,A2 700592384,700592639,KE 700592640,700593151,A2 700593152,700594175,NG @@ -15304,15 +14778,17 @@ 700595968,700596223,CD 700596224,700604927,A2 700604928,700605183,NG -700605184,700645375,A2 +700605184,700632831,A2 +700632832,700633087,SA +700633088,700645375,A2 700645376,700710911,ZA 700710912,700776447,EG 700776448,700841983,RW 700841984,700846079,MU -700846080,700850175,NA -700850176,700851199,MU -700851200,700852223,NA -700852224,700866559,MU +700846080,700855295,NA +700855296,700858367,MU +700858368,700858623,ZA +700858624,700866559,MU 700866560,700866815,NG 700866816,700867327,MU 700867328,700867583,NG @@ -15383,19 +14859,19 @@ 701464576,701472767,MU 701472768,701480959,TG 701480960,701489151,CI -701489152,701490175,ZA +701489152,701490175,NG 701490176,701491199,AO 701491200,701492223,MU 701492224,701493247,ZA 701493248,701495295,TZ -701495296,701513727,ZA +701495296,701496319,NG +701496320,701497343,GH +701497344,701513727,ZA 701513728,701530111,LY 701530112,701546495,SN 701546496,701562879,ZA 701562880,701579263,KE -701579264,701593343,SD -701593344,701593471,AE -701593472,701595647,SD +701579264,701595647,SD 701595648,701603839,DZ 701612032,701628415,EG 701628416,701644799,GH @@ -15478,9 +14954,7 @@ 702328832,702332927,TZ 702332928,702337023,MZ 702337024,702341119,UG -702341120,702345215,KE -702345216,702346239,US -702346240,702349311,KE +702341120,702349311,KE 702349312,702353407,ZA 702353408,702357503,DZ 702357504,702365695,TZ @@ -15503,7 +14977,9 @@ 702425088,702427135,NG 702427136,702429183,ZA 702429184,702431231,TZ -702431232,702435327,NG +702431232,702433279,NG +702433280,702434303,SD +702434304,702435327,NG 702435328,702437375,MZ 702437376,702439423,TZ 702439424,702441471,MU @@ -15524,6 +15000,7 @@ 702461952,702463999,MW 702464000,702465023,BJ 702465024,702466047,CD +702466048,702467071,AO 702467072,702468095,SC 702468096,702469119,NG 702469120,702470143,ZA @@ -15536,6 +15013,7 @@ 702478336,702481407,AO 702481408,702482431,TZ 702482432,702483455,ZA +702483456,702484479,BI 702484480,702485503,TZ 702485504,702486527,EG 702487552,702488575,CM @@ -15554,7 +15032,8 @@ 702504960,702505983,MR 702505984,702507007,AO 702507008,702508031,CD -702508032,702510079,KE +702508032,702509055,SO +702509056,702510079,KE 702510080,702511103,ZM 702511104,702512127,ZA 702512128,702513151,MZ @@ -15590,7 +15069,9 @@ 702542848,702543871,ZA 702543872,702544895,BJ 702544896,702545919,ZA -702545920,703070207,TN +702545920,702941695,TN +702941696,702941951,LY +702941952,703070207,TN 703070208,703594495,EG 703594496,704118783,ZA 704118784,704380927,MA @@ -15665,8 +15146,7 @@ 772050576,772050583,TR 772050584,772054815,DE 772054816,772054847,ES -772054848,772076127,DE -772076128,772076159,EG +772054848,772076159,DE 772076160,772076175,IT 772076176,772145151,DE 772145152,772210687,ES @@ -15675,7 +15155,9 @@ 772284416,772284927,RU 772284928,772285183,UA 772285184,772285439,UZ -772285440,772286719,RU +772285440,772285695,RU +772285696,772285951,GR +772285952,772286719,RU 772286720,772286975,LB 772286976,772296703,RU 772296704,772300799,UA @@ -15766,7 +15248,9 @@ 772927488,772929535,UA 772929536,772931583,RU 772931584,772933631,UA -772933632,772933920,GB +772933632,772933887,GB +772933888,772933904,IE +772933905,772933920,GB 772933921,772933928,IE 772933929,772935679,GB 772935680,772937727,PS @@ -15802,7 +15286,11 @@ 772994944,772995071,DE 772995072,772997119,IR 772997120,772999167,BE -772999168,773001215,SI +772999168,772999551,SI +772999552,772999559,IT +772999560,773000127,SI +773000128,773000151,US +773000152,773001215,SI 773001216,773003263,NO 773003264,773005311,FR 773005312,773007359,NL @@ -15833,8 +15321,8 @@ 773052416,773054463,NL 773054464,773054719,RS 773054720,773055487,AL -773055488,773056127,RS -773056128,773056511,AL +773055488,773056255,RS +773056256,773056511,AL 773056512,773058559,IT 773058560,773060607,BE 773060608,773062655,DK @@ -15978,9 +15466,7 @@ 773634048,773636095,DE 773636096,773638143,UA 773638144,773640191,CH -773640192,773640513,ES -773640514,773640515,FR -773640516,773642239,ES +773640192,773642239,ES 773642240,773644287,HU 773644288,773646335,RU 773646336,773648383,TR @@ -15988,7 +15474,9 @@ 773650432,773652479,GB 773652480,773653503,SK 773653504,773653775,CZ -773653776,773654527,SK +773653776,773653779,SK +773653780,773653791,CZ +773653792,773654527,SK 773654528,773656575,RU 773656576,773658623,PL 773658624,773660671,DE @@ -16115,10 +15603,8 @@ 773830656,773832703,NO 773832704,773834751,FR 773834752,773835007,GB -773835008,773835519,IM -773835520,773835647,GB -773835648,773836031,IM -773836032,773836799,GB +773835008,773836543,IM +773836544,773836799,GB 773836800,773838847,FR 773838848,773840895,DE 773840896,773842943,GB @@ -16162,7 +15648,9 @@ 774001504,774001535,ES 774001536,774002687,NL 774002688,774002815,US -774002816,774002943,NL +774002816,774002842,NL +774002843,774002843,EU +774002844,774002943,NL 774002944,774003199,ES 774003200,774003263,TR 774003264,774003311,ES @@ -16241,11 +15729,13 @@ 774152192,774160383,BA 774160384,774160415,VA 774160416,774160448,LI -774160449,774160480,IM +774160449,774160458,IM +774160459,774160468,CA +774160469,774160480,MX 774160481,774160514,IS -774160515,774160547,RU +774160515,774160547,MX 774160548,774160580,AE -774160581,774160612,DK +774160581,774160612,MX 774160613,774160639,AT 774160640,774160671,GI 774160672,774160702,CY @@ -16258,7 +15748,7 @@ 774160870,774160873,CA 774160874,774160895,CR 774160896,774160927,PA -774160928,774160935,CU +774160928,774160935,MW 774160936,774160946,BS 774160947,774160956,KY 774160957,774160966,JM @@ -16316,14 +15806,14 @@ 774161398,774161402,SI 774161403,774161405,LC 774161406,774161408,VA -774161409,774161418,AU +774161409,774161418,GB 774161419,774161428,GL 774161429,774161438,HU 774161439,774161448,MK 774161449,774161458,PS 774161459,774161468,UZ 774161469,774161478,MS -774161479,774161488,US +774161479,774161488,GB 774161489,774161498,MN 774161499,774161518,US 774161519,774161528,TW @@ -16460,12 +15950,24 @@ 774162573,774162582,YT 774162583,774162592,NC 774162593,774162602,NG -774162603,774162627,US +774162603,774162622,US +774162623,774162627,MX 774162628,774162637,GB 774162638,774162642,NF -774162643,774162687,US +774162643,774162647,VN +774162648,774162652,AO +774162653,774162657,GM +774162658,774162662,US +774162663,774162667,BW +774162668,774162672,US +774162673,774162677,KG +774162678,774162682,MG +774162683,774162687,US 774162688,774162688,VA -774162689,774162778,US +774162689,774162693,US +774162694,774162698,MZ +774162699,774162703,NP +774162704,774162778,US 774162779,774162798,CA 774162799,774162803,BN 774162804,774162808,TM @@ -16560,19 +16062,19 @@ 774163371,774163380,CW 774163381,774163390,IT 774163391,774163400,GE -774163401,774163415,US +774163401,774163409,US +774163410,774163410,MX +774163411,774163415,US 774163416,774163454,IT -774163455,774164479,VA -774164480,774166527,CZ +774163455,774163455,VA +774163456,774166527,CZ 774166528,774168575,EE 774168576,774176767,PL 774176768,774179391,IT 774179392,774179407,CH 774179408,774184959,IT 774184960,774193151,GB -774193152,774206975,ES -774206976,774207231,GB -774207232,774209535,ES +774193152,774209535,ES 774209536,774217727,RU 774217728,774225919,GB 774225920,774234111,UA @@ -16581,9 +16083,7 @@ 774258688,774266879,SA 774266880,774275071,RU 774275072,774283007,IR -774283008,774283263,GB -774283264,774284287,US -774284288,774291455,GB +774283008,774291455,GB 774291456,774299647,NL 774299648,774307839,DE 774307840,774324223,RU @@ -16713,9 +16213,17 @@ 778043392,778108927,UA 778108928,778174463,RO 778174464,778239999,UA -778240000,778244351,AL -778244352,778244607,RS -778244608,778305535,AL +778240000,778241791,AL +778241792,778242047,RS +778242048,778244095,AL +778244096,778244351,RS +778244352,778248447,AL +778248448,778248703,RS +778248704,778255871,AL +778255872,778256127,RS +778256128,778304255,AL +778304256,778304511,SI +778304512,778305535,AL 778305536,778371071,IR 778371072,778436607,RU 778436608,778498047,RO @@ -16747,24 +16255,21 @@ 778666080,778666095,FR 778666096,778666099,PL 778666100,778666103,LT -778666104,778666107,GB -778666108,778666111,IE -778666112,778666119,FR +778666104,778666119,FR 778666120,778666123,GB 778666124,778666127,NL 778666128,778666135,FR -778666136,778666143,PL -778666144,778666151,FR -778666152,778666159,ES -778666160,778666191,FR +778666136,778666139,PL +778666140,778666151,FR +778666152,778666155,ES +778666156,778666191,FR 778666192,778666239,PL 778666240,778666243,PT 778666244,778666247,GB 778666248,778666259,FR 778666260,778666263,PL 778666264,778666271,CH -778666272,778666287,FR -778666288,778666295,GB +778666272,778666295,FR 778666296,778666299,ES 778666300,778666303,PL 778666304,778666367,FR @@ -16775,8 +16280,10 @@ 778666392,778666399,PL 778666400,778666479,FR 778666480,778666495,DE -778666496,778666783,IE -778666784,778666847,FR +778666496,778666751,IE +778666752,778666783,FR +778666784,778666799,BE +778666800,778666847,FR 778666848,778666863,PT 778666864,778666867,GB 778666868,778666871,FR @@ -16805,8 +16312,7 @@ 778667192,778667195,FR 778667196,778667263,PL 778667264,778667283,FR -778667284,778667287,PL -778667288,778667291,IT +778667284,778667291,PL 778667292,778667295,CH 778667296,778667327,FR 778667328,778667331,GB @@ -16814,7 +16320,8 @@ 778667336,778667343,ES 778667344,778667347,FR 778667348,778667351,GB -778667352,778667391,PL +778667352,778667359,FR +778667360,778667391,PL 778667392,778667395,FR 778667396,778667399,PL 778667400,778667407,FI @@ -16822,7 +16329,7 @@ 778667416,778667423,GB 778667424,778667455,LT 778667456,778667471,DE -778667472,778667475,PL +778667472,778667475,NL 778667476,778667479,FR 778667480,778667483,GB 778667484,778667487,NL @@ -16835,10 +16342,9 @@ 778667856,778667859,FR 778667860,778667863,PL 778667864,778667871,GB -778667872,778667879,FR -778667880,778667887,PT +778667872,778667887,FR 778667888,778667903,PL -778667904,778667911,PT +778667904,778667911,FR 778667912,778667919,BE 778667920,778667927,FR 778667928,778667931,GB @@ -16856,7 +16362,7 @@ 778668320,778668351,DE 778668352,778668359,FR 778668360,778668367,PL -778668368,778668371,DE +778668368,778668371,FR 778668372,778668375,ES 778668376,778668379,GB 778668380,778668383,FR @@ -16886,20 +16392,20 @@ 778668672,778668703,FR 778668704,778668707,PL 778668708,778668711,ES -778668712,778668719,FR +778668712,778668715,DE +778668716,778668719,FR 778668720,778668727,PT 778668728,778668731,IE 778668732,778668735,FR 778668736,778668799,IT 778668800,778668863,FR 778668864,778668895,DE -778668896,778668927,ES -778668928,778669055,FR -778669056,778669087,ES +778668896,778669055,FR +778669056,778669087,PT 778669088,778669103,FR 778669104,778669107,CZ 778669108,778669111,GB -778669112,778669115,FR +778669112,778669115,NL 778669116,778669119,DE 778669120,778669151,FI 778669152,778669207,FR @@ -16961,16 +16467,15 @@ 778670040,778670043,ES 778670044,778670047,PT 778670048,778670079,GB -778670080,778670151,FR -778670152,778670159,CH -778670160,778670163,FR +778670080,778670159,FR +778670160,778670163,NL 778670164,778670171,GB -778670172,778670175,NL +778670172,778670175,DE 778670176,778670207,GB 778670208,778670211,DE 778670212,778670223,FR -778670224,778670239,PL -778670240,778670243,NL +778670224,778670239,GB +778670240,778670243,FR 778670244,778670247,DE 778670248,778670255,CZ 778670256,778670287,FR @@ -16995,37 +16500,32 @@ 778670416,778670447,FR 778670448,778670463,GB 778670464,778670495,CZ -778670496,778670511,IE +778670496,778670511,FR 778670512,778670519,GB 778670520,778670523,FR 778670524,778670527,PT -778670528,778670559,FR -778670560,778670563,PL -778670564,778670567,FI -778670568,778670575,FR +778670528,778670571,FR +778670572,778670575,DE 778670576,778670591,IT -778670592,778671103,ES -778671104,778671127,GB +778670592,778671103,FR +778671104,778671119,IT +778671120,778671127,GB 778671128,778671135,FR 778671136,778671167,BE -778671168,778671171,DE -778671172,778671175,FR +778671168,778671175,FR 778671176,778671183,ES 778671184,778671203,FR 778671204,778671207,FI 778671208,778671211,FR 778671212,778671215,PL 778671216,778671247,FR -778671248,778671263,PL -778671264,778671279,GB -778671280,778671311,FR +778671248,778671263,CH +778671264,778671311,FR 778671312,778671327,PT 778671328,778671331,ES 778671332,778671335,DE 778671336,778671343,BE -778671344,778671631,FR -778671632,778671647,PL -778671648,778671807,FR +778671344,778671807,FR 778671808,778671839,IE 778671840,778671871,FR 778671872,778671875,DE @@ -17058,23 +16558,20 @@ 778672512,778672527,PL 778672528,778672543,FR 778672544,778672559,DE -778672560,778672563,GB +778672560,778672563,FR 778672564,778672567,IT 778672568,778672639,FR 778672640,778672703,DE 778672704,778672767,CH 778672768,778672803,FR 778672804,778672807,DE -778672808,778672811,PL -778672812,778672815,ES +778672808,778672815,FR 778672816,778672819,IT 778672820,778672823,ES 778672824,778672831,DE 778672832,778672851,FR 778672852,778672879,PL -778672880,778672887,FR -778672888,778672891,ES -778672892,778672911,FR +778672880,778672911,FR 778672912,778672919,PL 778672920,778672927,FR 778672928,778672959,DE @@ -17082,7 +16579,7 @@ 778673080,778673083,ES 778673084,778673087,PT 778673088,778673119,FR -778673120,778673151,ES +778673120,778673151,PT 778673152,778673187,FR 778673188,778673191,DE 778673192,778673195,ES @@ -17099,12 +16596,9 @@ 778673312,778673315,CH 778673316,778673319,FR 778673320,778673327,IT -778673328,778673343,FR -778673344,778673359,PL -778673360,778673375,GB -778673376,778673387,FR +778673328,778673387,FR 778673388,778673391,DE -778673392,778673407,FR +778673392,778673407,CH 778673408,778673663,PL 778673664,778673711,FR 778673712,778673719,PT @@ -17121,7 +16615,7 @@ 778673888,778673903,FR 778673904,778673911,IT 778673912,778673915,FR -778673916,778673919,ES +778673916,778673919,DE 778673920,778674175,NL 778674176,778674367,FR 778674368,778674387,DE @@ -17132,9 +16626,8 @@ 778674432,778674435,PL 778674436,778674439,ES 778674440,778674447,PL -778674448,778674451,IT -778674452,778674455,PL -778674456,778674459,IT +778674448,778674451,DE +778674452,778674459,PL 778674460,778674463,FI 778674464,778674471,CH 778674472,778674475,BE @@ -17151,7 +16644,7 @@ 778674536,778674539,PT 778674540,778674543,PL 778674544,778674559,DE -778674560,778674575,FR +778674560,778674575,IT 778674576,778674583,NL 778674584,778674587,DE 778674588,778674623,FR @@ -17165,9 +16658,7 @@ 778674816,778674847,FR 778674848,778674863,IT 778674864,778674879,FI -778674880,778674911,FR -778674912,778674943,IE -778674944,778674975,FR +778674880,778674975,FR 778674976,778674979,BE 778674980,778674983,DE 778674984,778674999,FR @@ -17178,15 +16669,14 @@ 778675080,778675087,ES 778675088,778675159,FR 778675160,778675163,PL -778675164,778675167,GB -778675168,778675199,FR +778675164,778675199,FR 778675200,778675207,ES -778675208,778675215,PL +778675208,778675215,FR 778675216,778675219,PT 778675220,778675223,FR 778675224,778675227,CZ -778675228,778675235,FR -778675236,778675243,PL +778675228,778675239,FR +778675240,778675243,PL 778675244,778675247,DE 778675248,778675359,FR 778675360,778675367,DE @@ -17206,24 +16696,26 @@ 778675476,778675479,ES 778675480,778675483,CH 778675484,778675487,PT -778675488,778675495,PL +778675488,778675491,PL +778675492,778675495,IE 778675496,778675499,DE 778675500,778675503,PL 778675504,778675507,DE 778675508,778675511,GB 778675512,778675519,PL -778675520,778675535,NL -778675536,778675543,ES +778675520,778675543,ES 778675544,778675551,FR 778675552,778675555,PL 778675556,778675559,FR 778675560,778675567,DE -778675568,778675579,FR +778675568,778675575,FR +778675576,778675579,NL 778675580,778675583,GB 778675584,778675599,FR 778675600,778675615,GB 778675616,778675619,PL -778675620,778675627,ES +778675620,778675623,ES +778675624,778675627,GB 778675628,778675631,PL 778675632,778675639,ES 778675640,778675647,DE @@ -17291,8 +16783,8 @@ 778676368,778676383,GB 778676384,778676415,FR 778676416,778676423,ES -778676424,778676431,PL -778676432,778676439,FR +778676424,778676427,PL +778676428,778676439,FR 778676440,778676443,PL 778676444,778676447,CH 778676448,778676463,FR @@ -17340,17 +16832,16 @@ 778676832,778676847,FR 778676848,778676851,NL 778676852,778676855,LT -778676856,778676859,IE +778676856,778676859,BE 778676860,778676863,DE 778676864,778676991,PL 778676992,778676995,FR 778676996,778676999,PL 778677000,778677003,FR -778677004,778677007,GB +778677004,778677007,PT 778677008,778677031,FR 778677032,778677039,ES -778677040,778677055,PL -778677056,778677063,IT +778677040,778677063,PL 778677064,778677075,FR 778677076,778677079,DE 778677080,778677083,IT @@ -17358,8 +16849,7 @@ 778677088,778677099,FR 778677100,778677103,PL 778677104,778677107,GB -778677108,778677111,PL -778677112,778677115,FR +778677108,778677115,FR 778677116,778677119,NL 778677120,778677123,DE 778677124,778677127,GB @@ -17372,10 +16862,7 @@ 778677216,778677247,PL 778677248,778677251,FR 778677252,778677259,ES -778677260,778677311,FR -778677312,778677327,PL -778677328,778677331,FI -778677332,778677335,FR +778677260,778677335,FR 778677336,778677339,CH 778677340,778677343,CZ 778677344,778677375,FR @@ -17384,7 +16871,7 @@ 778677400,778677403,PT 778677404,778677407,CZ 778677408,778677411,CH -778677412,778677427,PL +778677412,778677427,FR 778677428,778677431,DE 778677432,778677435,FR 778677436,778677439,PL @@ -17417,12 +16904,12 @@ 778677728,778677855,FR 778677856,778677859,ES 778677860,778677863,LT -778677864,778677871,CH +778677864,778677871,FR 778677872,778677875,PL 778677876,778677879,IT 778677880,778677883,LT 778677884,778677887,BE -778677888,778677903,ES +778677888,778677903,FR 778677904,778677919,PT 778677920,778677923,CH 778677924,778677927,PT @@ -17439,11 +16926,11 @@ 778678016,778678019,PL 778678020,778678023,DE 778678024,778678027,ES -778678028,778678035,FR +778678028,778678031,FR +778678032,778678035,IT 778678036,778678039,PL 778678040,778678043,GB -778678044,778678047,PL -778678048,778678119,FR +778678044,778678119,FR 778678120,778678127,IT 778678128,778678143,FR 778678144,778678159,GB @@ -17479,8 +16966,7 @@ 778678976,778679007,FR 778679008,778679023,PL 778679024,778679031,NL -778679032,778679035,FR -778679036,778679039,PL +778679032,778679039,FR 778679040,778679047,DE 778679048,778679055,PL 778679056,778679071,BE @@ -17499,9 +16985,7 @@ 778679208,778679211,FR 778679212,778679215,FI 778679216,778679231,PT -778679232,778679263,ES -778679264,778679267,PT -778679268,778679279,FR +778679232,778679279,FR 778679280,778679295,ES 778679296,778679491,FR 778679492,778679495,PL @@ -17526,13 +17010,9 @@ 778679872,778679903,PL 778679904,778679911,FR 778679912,778679915,ES -778679916,778679919,FR -778679920,778679935,GB -778679936,778680079,FR -778680080,778680087,GB -778680088,778680091,FR +778679916,778680091,FR 778680092,778680095,PL -778680096,778680111,IT +778680096,778680111,ES 778680112,778680127,IE 778680128,778680143,IT 778680144,778680147,FR @@ -17544,17 +17024,18 @@ 778680184,778680191,IT 778680192,778680195,FR 778680196,778680199,DE -778680200,778680203,NL +778680200,778680203,PL 778680204,778680207,ES 778680208,778680227,FR 778680228,778680231,IE 778680232,778680255,FR 778680256,778680271,IT -778680272,778680287,GB +778680272,778680287,IE 778680288,778680471,FR 778680472,778680475,ES 778680476,778680479,IE -778680480,778680575,FR +778680480,778680559,FR +778680560,778680575,IT 778680576,778680639,NL 778680640,778680643,FR 778680644,778680647,PT @@ -17580,14 +17061,13 @@ 778681412,778681419,GB 778681420,778681423,FR 778681424,778681431,FI -778681432,778681435,IE +778681432,778681435,IT 778681436,778681439,FR -778681440,778681455,GB +778681440,778681455,IE 778681456,778681459,NL 778681460,778681463,PL 778681464,778681471,ES -778681472,778681479,FR -778681480,778681483,IE +778681472,778681483,FR 778681484,778681487,PL 778681488,778681491,FR 778681492,778681495,IE @@ -17606,30 +17086,29 @@ 778681584,778681587,PL 778681588,778681591,FR 778681592,778681595,ES -778681596,778681599,FR +778681596,778681599,PL 778681600,778681615,DE 778681616,778681619,ES 778681620,778681623,DE 778681624,778681631,ES -778681632,778681639,PL -778681640,778681643,FR -778681644,778681647,DE +778681632,778681643,FR +778681644,778681647,IE 778681648,778681655,FR 778681656,778681667,DE 778681668,778681671,FR 778681672,778681675,GB 778681676,778681679,FR -778681680,778681695,GB +778681680,778681695,NL 778681696,778681707,FR 778681708,778681711,ES 778681712,778681727,FR -778681728,778681743,ES +778681728,778681743,GB 778681744,778681747,FR 778681748,778681751,IT 778681752,778681759,FR 778681760,778681763,CZ 778681764,778681767,NL -778681768,778681771,PL +778681768,778681771,FR 778681772,778681775,IT 778681776,778681779,GB 778681780,778681791,FR @@ -17642,7 +17121,7 @@ 778681872,778681887,IT 778681888,778681903,LT 778681904,778681919,NL -778681920,778681983,GB +778681920,778681983,FR 778681984,778681999,PT 778682000,778682015,FR 778682016,778682031,PL @@ -17662,12 +17141,9 @@ 778682144,778682175,FR 778682176,778682191,IT 778682192,778682207,GB -778682208,778682239,FR -778682240,778682243,NL +778682208,778682243,FR 778682244,778682247,LT -778682248,778682251,FR -778682252,778682255,CZ -778682256,778682295,FR +778682248,778682295,FR 778682296,778682299,PL 778682300,778682319,FR 778682320,778682323,DE @@ -17687,7 +17163,8 @@ 778690720,778690727,FR 778690728,778690735,PL 778690736,778690751,PT -778690752,778690787,DE +778690752,778690783,GB +778690784,778690787,DE 778690788,778690791,GB 778690792,778690799,DE 778690800,778690815,FR @@ -17698,7 +17175,7 @@ 778690932,778690935,ES 778690936,778690943,FR 778690944,778690959,GB -778690960,778690975,PL +778690960,778690975,FR 778690976,778690983,PT 778690984,778690991,BE 778690992,778690999,IT @@ -17716,8 +17193,7 @@ 778691344,778691359,ES 778691360,778691375,FR 778691376,778691391,PL -778691392,778691423,PT -778691424,778691427,FR +778691392,778691427,FR 778691428,778691431,GB 778691432,778691435,BE 778691436,778691439,FR @@ -17726,13 +17202,12 @@ 778691456,778691459,NL 778691460,778691471,FR 778691472,778691479,PL -778691480,778691487,GB -778691488,778691519,FR +778691480,778691519,FR 778691520,778691583,GB 778691584,778691599,IE 778691600,778691615,FR 778691616,778691623,DE -778691624,778691627,ES +778691624,778691627,FR 778691628,778691631,PL 778691632,778691711,FR 778691712,778691727,GB @@ -17745,24 +17220,26 @@ 778691776,778691791,GB 778691792,778691795,DE 778691796,778691799,FR -778691800,778691803,ES +778691800,778691803,BE 778691804,778691807,FR -778691808,778691839,ES +778691808,778691839,DE 778691840,778691855,IE 778691856,778691967,FR 778691968,778691971,NL -778691972,778691975,FR +778691972,778691975,CZ 778691976,778691983,ES 778691984,778691987,CH 778691988,778691991,IT 778691992,778691999,FR 778692000,778692007,ES 778692008,778692015,FR -778692016,778692019,IE +778692016,778692019,PT 778692020,778692023,GB 778692024,778692031,FR 778692032,778692039,DE -778692040,778692063,PL +778692040,778692047,NL +778692048,778692055,FR +778692056,778692063,PL 778692064,778692095,CH 778692096,778692103,CZ 778692104,778692107,PL @@ -17775,8 +17252,7 @@ 778692200,778692207,ES 778692208,778692287,FR 778692288,778692351,IE -778692352,778692383,FR -778692384,778692387,ES +778692352,778692387,FR 778692388,778692391,GB 778692392,778692479,FR 778692480,778692483,PL @@ -17793,7 +17269,7 @@ 778692592,778692607,ES 778692608,778692615,FR 778692616,778692619,PL -778692620,778692623,IE +778692620,778692623,FR 778692624,778692639,NL 778692640,778692647,FR 778692648,778692651,DE @@ -17811,13 +17287,11 @@ 778692740,778692743,PL 778692744,778692747,PT 778692748,778692751,ES -778692752,778692767,GB +778692752,778692767,NL 778692768,778692783,ES 778692784,778692787,PL 778692788,778692791,IT -778692792,778692799,FR -778692800,778692807,IE -778692808,778692811,FR +778692792,778692811,FR 778692812,778692815,DE 778692816,778692823,NL 778692824,778692827,IT @@ -17828,19 +17302,18 @@ 778692848,778692863,DE 778692864,778692879,FR 778692880,778692883,PL -778692884,778692887,FR +778692884,778692887,ES 778692888,778692891,PL 778692892,778692895,GB 778692896,778692911,FR 778692912,778692927,NL 778692928,778692935,FR 778692936,778692943,PL -778692944,778692967,FR -778692968,778692975,GB +778692944,778692975,FR 778692976,778692983,DE 778692984,778692991,FR -778692992,778693023,GB -778693024,778693027,PL +778692992,778693007,GB +778693008,778693027,PL 778693028,778693031,ES 778693032,778693035,PL 778693036,778693039,GB @@ -17866,7 +17339,7 @@ 778693172,778693183,FR 778693184,778693215,IT 778693216,778693223,PL -778693224,778693227,PT +778693224,778693227,FR 778693228,778693231,IT 778693232,778693235,DE 778693236,778693239,PL @@ -17874,7 +17347,7 @@ 778693244,778693247,PL 778693248,778693279,FR 778693280,778693295,DE -778693296,778693311,CH +778693296,778693311,ES 778693312,778693327,IT 778693328,778693343,PL 778693344,778693375,FR @@ -17905,15 +17378,12 @@ 778693772,778693775,FR 778693776,778693791,IT 778693792,778693795,PL -778693796,778693823,FR -778693824,778693839,GB -778693840,778693855,FR -778693856,778693887,DE +778693796,778693887,FR 778693888,778693891,GB 778693892,778693895,FR 778693896,778693899,ES -778693900,778693903,NL -778693904,778693919,FR +778693900,778693903,FR +778693904,778693919,IE 778693920,778693927,CH 778693928,778693931,PL 778693932,778693935,DE @@ -17922,8 +17392,8 @@ 778693972,778693975,PL 778693976,778693983,PT 778693984,778694015,IE -778694016,778694147,FR -778694148,778694155,PL +778694016,778694151,FR +778694152,778694155,PL 778694156,778694159,FR 778694160,778694163,GB 778694164,778694167,PL @@ -17933,9 +17403,7 @@ 778694192,778694195,BE 778694196,778694199,NL 778694200,778694203,IT -778694204,778694207,FR -778694208,778694239,IE -778694240,778694291,FR +778694204,778694291,FR 778694292,778694295,DE 778694296,778694299,FR 778694300,778694303,PL @@ -17952,65 +17420,59 @@ 778694464,778694479,FR 778694480,778694511,IT 778694512,778694515,PL -778694516,778694519,ES -778694520,778694543,FR +778694516,778694543,FR 778694544,778694555,DE -778694556,778694559,NL +778694556,778694559,FR 778694560,778694563,PL -778694564,778694567,FR -778694568,778694575,GB +778694564,778694575,FR 778694576,778694591,PT 778694592,778694623,FR 778694624,778694627,PL -778694628,778694639,FR +778694628,778694631,FR +778694632,778694639,PT 778694640,778694643,PL 778694644,778694647,PT 778694648,778694695,FR 778694696,778694699,NL -778694700,778694703,GB -778694704,778694719,FR +778694700,778694719,FR 778694720,778694783,IT -778694784,778694827,FR +778694784,778694799,PT +778694800,778694827,FR 778694828,778694831,PL 778694832,778694839,IT -778694840,778694847,PL +778694840,778694847,GB 778694848,778694959,FR 778694960,778694975,ES 778694976,778695007,FR -778695008,778695039,ES +778695008,778695039,PT 778695040,778695071,IT 778695072,778695075,BE 778695076,778695079,PL 778695080,778695087,FR 778695088,778695103,PT 778695104,778695167,PL -778695168,778695183,FR -778695184,778695191,GB -778695192,778695199,FR +778695168,778695199,FR 778695200,778695203,PL 778695204,778695207,ES -778695208,778695215,FR -778695216,778695231,DE -778695232,778695299,FR +778695208,778695231,FR +778695232,778695295,PT +778695296,778695299,FR 778695300,778695303,IT 778695304,778695307,PL 778695308,778695319,FR -778695320,778695323,DE +778695320,778695323,FI 778695324,778695327,IT 778695328,778695331,IE 778695332,778695335,GB 778695336,778695343,FR 778695344,778695347,PL 778695348,778695351,ES -778695352,778695383,FR -778695384,778695399,DE -778695400,778695415,GB -778695416,778695423,IT -778695424,778695431,PT -778695432,778695439,ES +778695352,778695375,FR +778695376,778695391,FI +778695392,778695423,IE +778695424,778695439,FR 778695440,778695447,FI -778695448,778695455,NL -778695456,778695471,FR +778695448,778695471,FR 778695472,778695475,PL 778695476,778695479,ES 778695480,778695487,PT @@ -18021,14 +17483,14 @@ 778695552,778695555,BE 778695556,778695559,CH 778695560,778695563,DE -778695564,778695575,PL +778695564,778695567,PL +778695568,778695575,FR 778695576,778695579,ES 778695580,778695583,FI -778695584,778695615,FR -778695616,778695623,DE +778695584,778695623,DE 778695624,778695627,CZ 778695628,778695631,FR -778695632,778695647,GB +778695632,778695647,PL 778695648,778695663,FR 778695664,778695679,NL 778695680,778695743,PT @@ -18038,9 +17500,7 @@ 778695768,778695775,ES 778695776,778695795,FR 778695796,778695799,ES -778695800,778695839,FR -778695840,778695871,DE -778695872,778695903,FR +778695800,778695903,FR 778695904,778695911,FI 778695912,778695923,FR 778695924,778695927,CZ @@ -18060,13 +17520,13 @@ 778696252,778696255,NL 778696256,778696263,IT 778696264,778696287,ES -778696288,778696335,DE +778696288,778696319,FR +778696320,778696335,DE 778696336,778696339,PL 778696340,778696343,FR 778696344,778696347,CH 778696348,778696351,PL -778696352,778696383,ES -778696384,778696415,IE +778696352,778696415,IE 778696416,778696479,FR 778696480,778696483,PL 778696484,778696487,FR @@ -18074,20 +17534,14 @@ 778696496,778696499,ES 778696500,778696503,FR 778696504,778696511,IT -778696512,778696543,DE -778696544,778696559,FR +778696512,778696559,FR 778696560,778696567,PT 778696568,778696575,ES 778696576,778696591,FR 778696592,778696639,IE 778696640,778696643,ES 778696644,778696647,NL -778696648,778696655,FR -778696656,778696659,NL -778696660,778696663,CH -778696664,778696667,FI -778696668,778696671,IE -778696672,778696699,FR +778696648,778696699,FR 778696700,778696703,GB 778696704,778696959,FR 778696960,778696975,IT @@ -18097,11 +17551,10 @@ 778696988,778696995,NL 778696996,778696999,PL 778697000,778697007,FR -778697008,778697015,IE +778697008,778697015,DE 778697016,778697019,PL 778697020,778697023,ES -778697024,778697035,FR -778697036,778697039,GB +778697024,778697039,FR 778697040,778697055,IT 778697056,778697059,DE 778697060,778697063,FR @@ -18120,14 +17573,14 @@ 778697184,778697251,FR 778697252,778697255,GB 778697256,778697259,FR -778697260,778697263,CZ +778697260,778697263,PT 778697264,778697271,NL -778697272,778697279,PL +778697272,778697279,FR 778697280,778697287,IE 778697288,778697291,FR 778697292,778697295,IT -778697296,778697307,NL -778697308,778697311,GB +778697296,778697303,NL +778697304,778697311,GB 778697312,778697343,PL 778697344,778697347,IE 778697348,778697351,PL @@ -18138,14 +17591,12 @@ 778697388,778697391,ES 778697392,778697407,GB 778697408,778697415,PT -778697416,778697423,BE -778697424,778697431,FR +778697416,778697431,FR 778697432,778697435,PL 778697436,778697439,GB 778697440,778697471,FR 778697472,778697479,IE -778697480,778697483,LT -778697484,778697499,FR +778697480,778697499,FR 778697500,778697519,IE 778697520,778697523,ES 778697524,778697567,FR @@ -18158,8 +17609,8 @@ 778697684,778697695,FR 778697696,778697727,NL 778697728,778697791,FI -778697792,778697807,FR -778697808,778697815,PL +778697792,778697811,PL +778697812,778697815,GB 778697816,778697819,FR 778697820,778697823,IT 778697824,778697847,FR @@ -18174,8 +17625,7 @@ 778697960,778697967,ES 778697968,778697975,FR 778697976,778697983,FI -778697984,778698239,NL -778698240,778698243,FR +778697984,778698243,FR 778698244,778698247,GB 778698248,778698251,ES 778698252,778698255,PL @@ -18200,20 +17650,19 @@ 778698512,778698519,FI 778698520,778698531,FR 778698532,778698535,CH -778698536,778698539,PL -778698540,778698543,FR +778698536,778698543,FR 778698544,778698551,DE -778698552,778698555,PL +778698552,778698555,FR 778698556,778698559,IT 778698560,778698627,FR 778698628,778698631,ES 778698632,778698635,GB -778698636,778698639,ES +778698636,778698639,FR 778698640,778698643,NL 778698644,778698647,PL 778698648,778698655,ES 778698656,778698667,FR -778698668,778698671,ES +778698668,778698671,NL 778698672,778698675,FR 778698676,778698679,PL 778698680,778698683,FR @@ -18513,9 +17962,7 @@ 780992512,781058047,IT 781058048,781123583,DE 781123584,781189119,IR -781189120,781223423,NL -781223424,781223679,GB -781223680,781320191,NL +781189120,781320191,NL 781320192,781451263,RU 781451264,781455359,PL 781455360,781459455,UA @@ -18618,9 +18065,7 @@ 782449680,782449703,BA 782449704,782449711,SI 782449712,782449719,BA -782449720,782449727,SI -782449728,782449735,BA -782449736,782449759,SI +782449720,782449759,SI 782449760,782449791,BA 782449792,782449807,SI 782449808,782449879,BA @@ -18644,24 +18089,24 @@ 782630912,782647295,MD 782647296,782663679,RU 782663680,782663935,GB -782663936,782665471,GB +782663936,782665471,SC 782665472,782666751,GB 782666752,782667007,US -782667008,782667519,GB +782667008,782667519,SC 782667520,782667775,LU -782667776,782671103,GB -782671104,782671359,GB -782671360,782671871,GB +782667776,782671103,SC +782671104,782671359,SC +782671360,782671871,SC 782671872,782672383,CA 782672384,782672639,BG 782672640,782672895,RO -782672896,782673663,GB +782672896,782673663,SC 782673664,782675455,NL 782675456,782676991,DE 782676992,782678015,US 782678016,782678527,RU 782678528,782678783,UA -782678784,782680063,GB +782678784,782680063,SC 782680064,782696447,RU 782696448,782711039,DE 782711040,782711103,CH @@ -18714,8 +18159,8 @@ 783222784,783223807,CH 783223808,783224063,RU 783224064,783224319,GB -783224320,783224831,PL -783224832,783226879,UA +783224320,783224832,PL +783224833,783226879,UA 783226880,783230975,RU 783230976,783233023,PL 783233024,783235071,GB @@ -18940,9 +18385,7 @@ 786788352,786792447,CZ 786792448,786796543,RU 786796544,786800639,PL -786800640,786803967,US -786803968,786804223,UA -786804224,786804735,US +786800640,786804735,US 786804736,786808831,RU 786808832,786812927,BG 786812928,786817023,RU @@ -18966,29 +18409,27 @@ 786915328,786917375,SK 786917376,786919423,RO 786919424,786919431,IT -786919432,786919695,GB -786919696,786919703,IT -786919704,786919879,GB +786919432,786919535,GB +786919536,786919543,IT +786919544,786919879,GB 786919880,786919887,IT -786919888,786920143,GB -786920144,786920151,IT -786920152,786920167,GB -786920168,786920175,IT -786920176,786920191,GB +786919888,786920191,GB 786920192,786920199,IT 786920200,786920343,GB 786920344,786920351,IT 786920352,786920495,GB 786920496,786920503,IT -786920504,786920583,GB -786920584,786920591,IT -786920592,786920703,GB +786920504,786920703,GB 786920704,786920711,IT -786920712,786920839,GB -786920840,786920847,IT -786920848,786921015,GB +786920712,786920831,GB +786920832,786920847,IT +786920848,786920855,GB +786920856,786920863,IT +786920864,786921015,GB 786921016,786921023,IT -786921024,786921471,GB +786921024,786921391,GB +786921392,786921399,IT +786921400,786921471,GB 786921472,786923519,ES 786923520,786925567,FR 786925568,786926335,DE @@ -19044,8 +18485,8 @@ 787095552,787095567,EU 787095568,787095615,CH 787095616,787095647,EU -787095648,787095663,CH -787095664,787095807,EU +787095648,787095679,CH +787095680,787095807,EU 787095808,787096063,CH 787096064,787096575,EU 787096576,787098367,CH @@ -19108,31 +18549,29 @@ 787333120,787349503,DE 787349504,787365887,BG 787365888,787382271,PL -787382272,787382527,GP -787382528,787382783,FR -787382784,787383039,GP -787383040,787383295,FR -787383296,787384575,GP -787384576,787385087,FR -787385088,787385343,GP -787385344,787385599,FR -787385600,787385855,GP -787385856,787386879,FR -787386880,787387391,MQ -787387392,787389183,FR +787382272,787383295,FR +787383296,787384319,GP +787384320,787384831,FR +787384832,787386367,GP +787386368,787386623,MQ +787386624,787386879,FR +787386880,787387135,MQ +787387136,787387391,FR +787387392,787387647,MQ +787387648,787388159,FR +787388160,787388415,MQ +787388416,787389183,FR 787389184,787390719,MQ 787390720,787391487,FR 787391488,787391999,MQ 787392000,787392255,FR 787392256,787392511,MQ -787392512,787392767,GP -787392768,787394047,FR -787394048,787394303,GP -787394304,787395071,FR -787395072,787395583,GF -787395584,787396095,FR -787396096,787396607,GF -787396608,787397887,FR +787392512,787394559,FR +787394560,787395583,GF +787395584,787395839,FR +787395840,787396607,GF +787396608,787397631,FR +787397632,787397887,MQ 787397888,787398143,GF 787398144,787398655,FR 787398656,787415039,PL @@ -19168,25 +18607,18 @@ 787750912,787759103,US 787759104,787767295,NL 787767296,787771391,US -787771392,787773183,NL +787771392,787772927,NL +787772928,787772991,BE +787772992,787773183,NL 787773184,787773311,BE 787773312,787773439,NL 787773440,787773823,BE 787773824,787773951,NL 787773952,787774015,BE -787774016,787774207,NL -787774208,787774719,BE -787774720,787774735,NL -787774736,787774960,BE -787774961,787774967,NL -787774968,787774983,BE -787774984,787775007,NL -787775008,787775023,BE -787775024,787775039,NL -787775040,787775103,BE -787775104,787775166,NL -787775167,787775184,BE -787775185,787775487,NL +787774016,787774079,NL +787774080,787774111,BE +787774112,787774207,NL +787774208,787775487,BE 787775488,787808255,DE 787808256,787841023,IR 787841024,787843071,RU @@ -19208,13 +18640,19 @@ 787873792,787877887,SE 787877888,787878000,SE 787878001,787878014,SE -787878015,787878256,SE +787878015,787878015,SE +787878016,787878143,SE +787878144,787878207,SE +787878208,787878223,SE +787878224,787878256,SE 787878257,787878270,SE 787878271,787878399,SE 787878400,787878526,SE 787878527,787878768,SE 787878769,787878782,SE -787878783,787879024,SE +787878783,787878975,SE +787878976,787878991,SE +787878992,787879024,SE 787879025,787879038,SE 787879039,787879183,SE 787879184,787879191,SE @@ -19222,8 +18660,8 @@ 787879281,787879294,SE 787879295,787879536,SE 787879537,787879550,SE -787879551,787879792,SE -787879793,787879806,SE +787879551,787879679,SE +787879680,787879806,SE 787879807,787879935,SE 787879936,787881727,SE 787881728,787881983,SE @@ -19234,10 +18672,10 @@ 787891200,787891711,SE 787891712,787891824,SE 787891825,787891838,SE -787891839,787891967,SE -787891968,787892223,SE -787892224,787894271,SE -787894272,787896319,US +787891839,787891855,SE +787891856,787891871,SE +787891872,787891967,SE +787891968,787896319,SE 787896320,787896412,SE 787896413,787896413,SE 787896414,787896423,SE @@ -19247,13 +18685,13 @@ 787896447,787896495,SE 787896496,787896511,SE 787896512,787896703,SE -787896704,787896958,SE -787896959,787896959,SE -787896960,787897023,SE -787897024,787897071,SE -787897072,787897072,SE -787897073,787897087,SE -787897088,787897343,SE +787896704,787896831,SE +787896832,787896933,SE +787896934,787896934,SE +787896935,787896944,SE +787896945,787896958,SE +787896959,787897023,SE +787897024,787897343,SE 787897344,787897456,SE 787897457,787897470,SE 787897471,787897599,SE @@ -19330,7 +18768,11 @@ 788312448,788312479,US 788312480,788312511,BR 788312512,788312543,NL -788312544,788316159,FR +788312544,788314111,FR +788314112,788314367,LU +788314368,788314623,NL +788314624,788315135,FR +788315136,788316159,LU 788316160,788320255,NL 788320256,788324351,UA 788324352,788328447,CZ @@ -19344,7 +18786,9 @@ 788344832,788353023,DE 788353024,788357119,PS 788357120,788361215,CZ -788361216,788365311,DE +788361216,788364799,DE +788364800,788365055,SK +788365056,788365311,DE 788365312,788369407,IQ 788369408,788371711,DE 788371712,788371715,AT @@ -19385,9 +18829,7 @@ 788455424,788457471,FR 788457472,788459519,IT 788459520,788461567,RU -788461568,788462079,JE -788462080,788462335,GB -788462336,788463103,JE +788461568,788463103,JE 788463104,788465663,GB 788465664,788467711,CZ 788467712,788469759,NO @@ -19404,7 +18846,11 @@ 788488192,788490239,RU 788490240,788492287,NL 788492288,788494335,GB -788494336,788496383,SE +788494336,788494591,US +788494592,788495103,SE +788495104,788495615,US +788495616,788495871,GB +788495872,788496383,SE 788496384,788498431,FR 788498432,788500479,RU 788500480,788502527,AL @@ -19491,7 +18937,7 @@ 830341120,830406655,NP 830406656,830472191,AU 830472192,830472447,CN -830472448,830472703,AU +830472448,830472703,TH 830472704,830473215,CN 830474240,830475263,SG 830475264,830476287,AU @@ -19641,8 +19087,12 @@ 839113216,839113471,CA 839113472,839122431,US 839122432,839122495,CA -839122496,839360511,US -839360512,839368703,NL +839122496,839352319,US +839352320,839353343,NL +839353344,839360511,US +839360512,839366911,NL +839366912,839367167,CZ +839367168,839368703,NL 839368704,839385087,CZ 839385088,840161595,US 840161596,840161596,US @@ -19694,9 +19144,7 @@ 845089408,845089535,PR 845089536,845283327,US 845283328,845545471,CA -845545472,846439770,US -846439771,846439778,RO -846439779,846441780,US +845545472,846441780,US 846441781,846441790,RO 846441791,846441792,US 846441793,846441801,RO @@ -19710,7 +19158,11 @@ 846529792,846530047,US 846530048,846537727,US 846537728,846537983,US -846537984,846542847,US +846537984,846540031,US +846540032,846540287,US +846540288,846541055,US +846541056,846541311,US +846541312,846542847,US 846542848,846543103,US 846543104,846543615,US 846543616,846543871,US @@ -19718,7 +19170,9 @@ 846544128,846544383,US 846544384,846546943,US 846546944,846547199,US -846547200,846561279,US +846547200,846548991,US +846548992,846549247,US +846549248,846561279,US 846561280,846594047,CA 846594048,846626815,US 846626816,846627071,CN @@ -19736,19 +19190,21 @@ 889192448,897238054,DE 897238055,897238055,EU 897238056,905969663,DE -905969664,920911871,US -920911872,920977407,IE -920977408,921174015,US -921174016,921239551,BR -921239552,922091519,US +905969664,920125439,US +920125440,920256511,IE +920256512,920911871,US +920911872,921042943,IE +921042944,921174015,US +921174016,921255935,BR +921255936,922091519,US 922091520,922189311,IE 922189312,922189567,EU 922189568,922222591,IE -922222592,922353663,JP -922353664,922419199,US +922222592,922419199,JP 922419200,922484735,SG -922484736,922550271,AU -922550272,956301311,US +922484736,922615807,AU +922615808,922746879,SG +922746880,956301311,US 956301312,959447039,EU 959447040,959512575,US 959512576,960629507,EU @@ -19758,8 +19214,12 @@ 960640771,960643365,EU 960643366,960643367,GB 960643368,960647167,EU -960647168,960651263,GB -960651264,960676607,EU +960647168,960649215,GB +960649216,960651263,EU +960651264,960653311,GB +960653312,960671743,EU +960671744,960673791,DE +960673792,960676607,EU 960676608,960676863,PL 960676864,960692223,EU 960692224,960724991,FR @@ -19891,7 +19351,11 @@ 962416640,962461695,EU 962461696,962469887,IE 962469888,962527231,TR -962527232,973078527,EU +962527232,972743935,EU +972743936,972744191,FR +972744192,972746495,EU +972746496,972746751,GB +972746752,973078527,EU 973078528,973209599,JP 973209600,973275135,IN 973275136,973471743,JP @@ -20069,20 +19533,18 @@ 1023238144,1023246335,ID 1023246336,1023279103,CN 1023279104,1023311871,IN -1023311872,1023316991,US +1023311872,1023315711,US +1023315712,1023315967,AU +1023315968,1023316991,US 1023316992,1023317247,AU -1023317248,1023317759,US -1023317760,1023318015,IN -1023318016,1023323903,US +1023317248,1023323903,US 1023323904,1023324159,AU 1023324160,1023328255,US 1023328256,1023344639,JP 1023344640,1023410175,CN 1023410176,1023672319,IN 1023672320,1023688703,HK -1023688704,1023692031,MM -1023692032,1023692287,SG -1023692288,1023692799,MM +1023688704,1023692799,MM 1023692800,1023696895,CN 1023696896,1023705087,MY 1023705088,1023717375,JP @@ -20133,8 +19595,8 @@ 1024367424,1024367487,PH 1024367488,1024370687,JP 1024370688,1024371199,PH -1024371200,1024375295,JP -1024375296,1024375807,AU +1024371200,1024375551,JP +1024375552,1024375807,AU 1024375808,1024376831,JP 1024376832,1024393215,PH 1024393216,1024458751,HK @@ -20207,11 +19669,11 @@ 1031415040,1031415295,US 1031415296,1031798783,JP 1031798784,1035993087,CN -1035993088,1037410303,JP -1037410304,1037415679,US +1035993088,1037415679,JP 1037415680,1037415935,AP -1037415936,1037418495,US -1037418496,1037565951,JP +1037415936,1037416447,JP +1037416448,1037416959,US +1037416960,1037565951,JP 1037565952,1038614527,TW 1038614528,1039007743,CN 1039007744,1039138815,HK @@ -20361,7 +19823,9 @@ 1041695904,1041695999,GB 1041696000,1041696871,FR 1041696872,1041696879,GB -1041696880,1041697699,FR +1041696880,1041697103,FR +1041697104,1041697111,GB +1041697112,1041697699,FR 1041697700,1041697703,GB 1041697704,1041698047,FR 1041698048,1041698077,GB @@ -20446,23 +19910,23 @@ 1041706128,1041706223,FR 1041706224,1041706231,IT 1041706232,1041706239,GB -1041706240,1041709463,FR -1041709464,1041709471,GB -1041709472,1041709479,FR -1041709480,1041709487,GB -1041709488,1041709751,FR +1041706240,1041707807,FR +1041707808,1041707815,GB +1041707816,1041708023,FR +1041708024,1041708031,GB +1041708032,1041709751,FR 1041709752,1041709759,GB 1041709760,1041709767,FR 1041709768,1041709775,GB -1041709776,1041709903,FR -1041709904,1041709911,GB -1041709912,1041709919,FR +1041709776,1041709791,FR +1041709792,1041709815,GB +1041709816,1041709919,FR 1041709920,1041709927,GB -1041709928,1041709935,FR -1041709936,1041709943,GB -1041709944,1041710007,FR -1041710008,1041710015,GB -1041710016,1041710047,FR +1041709928,1041709959,FR +1041709960,1041709967,GB +1041709968,1041710015,FR +1041710016,1041710023,GB +1041710024,1041710047,FR 1041710048,1041710055,GB 1041710056,1041710391,FR 1041710392,1041710407,GB @@ -20480,21 +19944,11 @@ 1041710736,1041710751,GB 1041710752,1041710775,FR 1041710776,1041710783,GB -1041710784,1041711487,FR -1041711488,1041711519,GB -1041711520,1041711535,FR -1041711536,1041711543,GB -1041711544,1041711551,FR -1041711552,1041711567,GB -1041711568,1041711583,FR -1041711584,1041711599,GB -1041711600,1041711879,FR -1041711880,1041711887,GB -1041711888,1041711943,FR -1041711944,1041711951,GB -1041711952,1041712063,FR -1041712064,1041712095,GB -1041712096,1041712975,FR +1041710784,1041711495,FR +1041711496,1041711519,GB +1041711520,1041711559,FR +1041711560,1041711567,GB +1041711568,1041712975,FR 1041712976,1041712983,GB 1041712984,1041713095,FR 1041713096,1041713103,GB @@ -20510,29 +19964,35 @@ 1041714096,1041714103,GB 1041714104,1041714111,FR 1041714112,1041714175,GB -1041714176,1041715495,FR +1041714176,1041714511,FR +1041714512,1041714519,GB +1041714520,1041714871,FR +1041714872,1041714879,GB +1041714880,1041714895,FR +1041714896,1041714927,GB +1041714928,1041715495,FR 1041715496,1041715503,GB -1041715504,1041715527,FR -1041715528,1041715535,GB -1041715536,1041715583,FR +1041715504,1041715551,FR +1041715552,1041715567,GB +1041715568,1041715583,FR 1041715584,1041715615,GB -1041715616,1041715631,FR -1041715632,1041715647,GB -1041715648,1041715807,FR +1041715616,1041715647,FR +1041715648,1041715663,GB +1041715664,1041715679,FR +1041715680,1041715711,GB +1041715712,1041715807,FR 1041715808,1041715823,GB -1041715824,1041715863,FR -1041715864,1041715870,GB -1041715871,1041715903,FR -1041715904,1041715911,GB +1041715824,1041715871,FR +1041715872,1041715911,GB 1041715912,1041715943,FR 1041715944,1041715951,GB -1041715952,1041715999,FR -1041716000,1041716015,GB +1041715952,1041715991,FR +1041715992,1041715999,GB +1041716000,1041716007,FR +1041716008,1041716015,GB 1041716016,1041716047,FR 1041716048,1041716095,GB -1041716096,1041716439,FR -1041716440,1041716447,GB -1041716448,1041716503,FR +1041716096,1041716503,FR 1041716504,1041716511,GB 1041716512,1041716519,FR 1041716520,1041716527,GB @@ -20557,8 +20017,8 @@ 1041718168,1041718199,FR 1041718200,1041718223,GB 1041718224,1041718231,FR -1041718232,1041718263,GB -1041718264,1041718279,FR +1041718232,1041718255,GB +1041718256,1041718279,FR 1041718280,1041718287,BE 1041718288,1041718343,FR 1041718344,1041718351,GB @@ -20570,15 +20030,17 @@ 1041718464,1041718479,GB 1041718480,1041718495,FR 1041718496,1041718503,GB -1041718504,1041718895,FR -1041718896,1041718911,GB +1041718504,1041718887,FR +1041718888,1041718911,GB 1041718912,1041718935,FR 1041718936,1041718943,GB 1041718944,1041718975,FR 1041718976,1041718991,GB 1041718992,1041718999,FR 1041719000,1041719007,GB -1041719008,1041719167,FR +1041719008,1041719095,FR +1041719096,1041719103,GB +1041719104,1041719167,FR 1041719168,1041719175,GB 1041719176,1041719203,FR 1041719204,1041719231,GB @@ -20586,11 +20048,19 @@ 1041719248,1041719263,GB 1041719264,1041719487,FR 1041719488,1041719519,GB -1041719520,1041720111,FR +1041719520,1041719543,FR +1041719544,1041719551,GB +1041719552,1041720111,FR 1041720112,1041720119,GB -1041720120,1041720191,FR -1041720192,1041720319,GB -1041720320,1041721343,FR +1041720120,1041720199,FR +1041720200,1041720319,GB +1041720320,1041720895,FR +1041720896,1041720927,GB +1041720928,1041720959,FR +1041720960,1041721023,GB +1041721024,1041721047,FR +1041721048,1041721087,GB +1041721088,1041721343,FR 1041721344,1041721359,GB 1041721360,1041721391,FR 1041721392,1041721407,GB @@ -20600,8 +20070,14 @@ 1041721776,1041721791,GB 1041721792,1041721815,FR 1041721816,1041721823,GB -1041721824,1041722367,FR -1041722368,1041722383,GB +1041721824,1041722175,FR +1041722176,1041722191,GB +1041722192,1041722207,FR +1041722208,1041722215,GB +1041722216,1041722223,FR +1041722224,1041722239,GB +1041722240,1041722279,FR +1041722280,1041722383,GB 1041722384,1041722391,FR 1041722392,1041722399,GB 1041722400,1041722423,FR @@ -20618,7 +20094,9 @@ 1041722984,1041723007,GB 1041723008,1041723047,FR 1041723048,1041723135,GB -1041723136,1041723359,FR +1041723136,1041723231,FR +1041723232,1041723247,GB +1041723248,1041723359,FR 1041723360,1041723391,GB 1041723392,1041723671,FR 1041723672,1041723775,GB @@ -20628,29 +20106,23 @@ 1041723888,1041723903,GB 1041723904,1041724671,FR 1041724672,1041724927,GB -1041724928,1041725015,FR -1041725016,1041725023,GB -1041725024,1041725119,FR -1041725120,1041725167,GB -1041725168,1041725175,FR -1041725176,1041725183,GB -1041725184,1041725951,FR +1041724928,1041725951,FR 1041725952,1041725959,GB -1041725960,1041726063,FR +1041725960,1041726047,FR +1041726048,1041726055,GB +1041726056,1041726063,FR 1041726064,1041726079,GB 1041726080,1041726127,FR 1041726128,1041726151,GB -1041726152,1041726159,FR -1041726160,1041726167,GB -1041726168,1041726535,FR +1041726152,1041726535,FR 1041726536,1041726543,GB 1041726544,1041726599,FR 1041726600,1041726607,GB 1041726608,1041726639,FR 1041726640,1041726655,GB 1041726656,1041726671,FR -1041726672,1041726687,GB -1041726688,1041726719,FR +1041726672,1041726679,GB +1041726680,1041726719,FR 1041726720,1041726727,GB 1041726728,1041726735,FR 1041726736,1041726751,GB @@ -20736,9 +20208,7 @@ 1041736488,1041736495,GB 1041736496,1041736527,FR 1041736528,1041736535,GB -1041736536,1041736543,FR -1041736544,1041736551,GB -1041736552,1041736591,FR +1041736536,1041736591,FR 1041736592,1041736599,GB 1041736600,1041736607,FR 1041736608,1041736631,GB @@ -20920,7 +20390,19 @@ 1041743832,1041743847,GB 1041743848,1041743863,FR 1041743864,1041743871,GB -1041743872,1041744903,FR +1041743872,1041744391,FR +1041744392,1041744407,GB +1041744408,1041744415,FR +1041744416,1041744447,GB +1041744448,1041744479,FR +1041744480,1041744559,GB +1041744560,1041744575,FR +1041744576,1041744583,GB +1041744584,1041744599,FR +1041744600,1041744607,GB +1041744608,1041744623,FR +1041744624,1041744639,GB +1041744640,1041744903,FR 1041744904,1041744911,GB 1041744912,1041744919,FR 1041744920,1041744927,GB @@ -20977,7 +20459,9 @@ 1041751344,1041751359,GB 1041751360,1041751391,FR 1041751392,1041751423,GB -1041751424,1041751567,FR +1041751424,1041751447,FR +1041751448,1041751455,GB +1041751456,1041751567,FR 1041751568,1041751575,GB 1041751576,1041751695,FR 1041751696,1041751719,GB @@ -20989,13 +20473,7 @@ 1041753320,1041753343,GB 1041753344,1041753407,FR 1041753408,1041753503,GB -1041753504,1041754143,FR -1041754144,1041754151,GB -1041754152,1041754175,FR -1041754176,1041754191,GB -1041754192,1041754239,FR -1041754240,1041754247,GB -1041754248,1041754423,FR +1041753504,1041754423,FR 1041754424,1041754431,GB 1041754432,1041754455,FR 1041754456,1041754463,GB @@ -21019,7 +20497,17 @@ 1041756592,1041756607,GB 1041756608,1041756655,FR 1041756656,1041756663,GB -1041756664,1041757439,FR +1041756664,1041757023,FR +1041757024,1041757055,GB +1041757056,1041757087,FR +1041757088,1041757095,GB +1041757096,1041757111,FR +1041757112,1041757127,GB +1041757128,1041757151,FR +1041757152,1041757159,GB +1041757160,1041757167,FR +1041757168,1041757179,GB +1041757180,1041757439,FR 1041757440,1041757447,GB 1041757448,1041757479,FR 1041757480,1041757487,GB @@ -21150,14 +20638,14 @@ 1042875408,1042875423,NL 1042875424,1042875455,GB 1042875456,1042875903,NL -1042875904,1042876287,GB -1042876288,1042876415,NL +1042875904,1042876159,GB +1042876160,1042876415,NL 1042876416,1042876479,GB 1042876480,1042876647,NL 1042876648,1042876663,GB 1042876664,1042876671,NL 1042876672,1042876927,DE -1042876928,1042877183,GB +1042876928,1042877183,NL 1042877184,1042877951,DE 1042877952,1042878207,NL 1042878208,1042878463,GB @@ -21174,9 +20662,8 @@ 1042888960,1042889215,NL 1042889216,1042889471,DE 1042889472,1042889983,NL -1042889984,1042890143,GB -1042890144,1042890239,NL -1042890240,1042890495,GB +1042889984,1042890239,GB +1042890240,1042890495,NL 1042890496,1042890751,FR 1042890752,1042890815,GB 1042890816,1042890819,FR @@ -21215,8 +20702,7 @@ 1042894560,1042894591,DE 1042894592,1042894783,NL 1042894784,1042894847,DE -1042894848,1042895103,NL -1042895104,1042895231,GB +1042894848,1042895231,NL 1042895232,1042895359,DE 1042895360,1042895615,NL 1042895616,1042895871,GB @@ -21351,8 +20837,8 @@ 1043470128,1043470223,NL 1043470224,1043470271,GB 1043470272,1043470303,NL -1043470304,1043470335,GB -1043470336,1043470847,NL +1043470304,1043470463,GB +1043470464,1043470847,NL 1043470848,1043472383,GB 1043472384,1043472395,DE 1043472396,1043472399,GB @@ -21366,7 +20852,9 @@ 1043472496,1043472503,GB 1043472504,1043472743,DE 1043472744,1043472751,GB -1043472752,1043472895,DE +1043472752,1043472783,DE +1043472784,1043472791,GB +1043472792,1043472895,DE 1043472896,1043473151,GB 1043473152,1043473247,DE 1043473248,1043473255,GB @@ -21380,8 +20868,8 @@ 1043474032,1043474047,GB 1043474048,1043474455,DE 1043474456,1043474463,GB -1043474464,1043474487,DE -1043474488,1043474495,GB +1043474464,1043474479,DE +1043474480,1043474495,GB 1043474496,1043474499,DE 1043474500,1043474503,GB 1043474504,1043474623,DE @@ -21613,8 +21101,7 @@ 1043892240,1043892255,A2 1043892256,1043892287,MZ 1043892288,1043892479,A2 -1043892480,1043892735,CD -1043892736,1043892991,MZ +1043892480,1043892991,CD 1043892992,1043893567,A2 1043893568,1043893583,NG 1043893584,1043894559,A2 @@ -21662,7 +21149,17 @@ 1044013272,1044013287,NL 1044013288,1044013375,BE 1044013376,1044013567,NL -1044013568,1044013839,BE +1044013568,1044013575,BE +1044013576,1044013583,NL +1044013584,1044013615,BE +1044013616,1044013623,NL +1044013624,1044013639,BE +1044013640,1044013647,NL +1044013648,1044013655,BE +1044013656,1044013663,NL +1044013664,1044013735,BE +1044013736,1044013743,NL +1044013744,1044013839,BE 1044013840,1044013847,NL 1044013848,1044013959,BE 1044013960,1044013967,NL @@ -21698,8 +21195,12 @@ 1044016672,1044016703,NL 1044016704,1044016783,BE 1044016784,1044016799,NL -1044016800,1044017407,BE -1044017408,1044017983,NL +1044016800,1044017167,BE +1044017168,1044017279,NL +1044017280,1044017359,BE +1044017360,1044017383,NL +1044017384,1044017399,BE +1044017400,1044017983,NL 1044017984,1044017999,BE 1044018000,1044018007,NL 1044018008,1044018031,BE @@ -21775,40 +21276,8 @@ 1044019932,1044019939,BE 1044019940,1044019955,NL 1044019956,1044019963,BE -1044019964,1044019979,NL -1044019980,1044019987,BE -1044019988,1044019991,NL -1044019992,1044019995,BE -1044019996,1044020003,NL -1044020004,1044020015,BE -1044020016,1044020019,NL -1044020020,1044020031,BE -1044020032,1044020035,NL -1044020036,1044020039,BE -1044020040,1044020047,NL -1044020048,1044020059,BE -1044020060,1044020071,NL -1044020072,1044020075,BE -1044020076,1044020083,NL -1044020084,1044020127,BE -1044020128,1044020131,NL -1044020132,1044020147,BE -1044020148,1044020151,NL -1044020152,1044020155,BE -1044020156,1044020159,NL -1044020160,1044020163,BE -1044020164,1044020167,NL -1044020168,1044020187,BE -1044020188,1044020199,NL -1044020200,1044020203,BE -1044020204,1044020219,NL -1044020220,1044020255,BE -1044020256,1044020263,NL -1044020264,1044020303,BE -1044020304,1044020319,NL -1044020320,1044020351,BE -1044020352,1044020359,NL -1044020360,1044020511,BE +1044019964,1044019967,NL +1044019968,1044020511,BE 1044020512,1044020551,NL 1044020552,1044020567,BE 1044020568,1044020591,NL @@ -21963,9 +21432,7 @@ 1044455424,1044463615,EE 1044463616,1044479999,SE 1044480000,1044488191,CH -1044488192,1044494911,SK -1044494912,1044494943,SR -1044494944,1044496383,SK +1044488192,1044496383,SK 1044496384,1044512767,EE 1044512768,1044578303,DK 1044578304,1044578559,DE @@ -22055,23 +21522,29 @@ 1044643328,1044643839,GB 1044643840,1044652031,DE 1044652032,1044660223,LY -1044660224,1044664895,GR +1044660224,1044660479,GR +1044660480,1044660735,US +1044660736,1044663295,GR +1044663296,1044663551,US +1044663552,1044664895,GR 1044664896,1044664959,IR 1044664960,1044665535,GR 1044665536,1044665551,IQ 1044665552,1044665855,GR 1044665856,1044666367,US -1044666368,1044667647,GR -1044667648,1044667903,US -1044667904,1044668415,GR +1044666368,1044668415,GR 1044668416,1044676607,BA 1044676608,1044684799,RU 1044684800,1044692991,HU -1044692992,1044697087,AT +1044692992,1044695935,AT +1044695936,1044696062,DE +1044696063,1044697087,AT 1044697088,1044697343,DE 1044697344,1044697855,AT -1044697856,1044698367,DE -1044698368,1044698623,AT +1044697856,1044698303,DE +1044698304,1044698315,AT +1044698316,1044698343,DE +1044698344,1044698623,AT 1044698624,1044699135,DE 1044699136,1044701183,AT 1044701184,1044709375,EG @@ -22137,9 +21610,7 @@ 1044930752,1044930795,GB 1044930796,1044930799,BE 1044930800,1044930807,GB -1044930808,1044930911,BE -1044930912,1044930927,DE -1044930928,1044931343,BE +1044930808,1044931343,BE 1044931344,1044931359,GB 1044931360,1044931375,BE 1044931376,1044931391,GB @@ -22224,8 +21695,10 @@ 1044933184,1044933215,BE 1044933216,1044933227,GB 1044933228,1044933231,BE -1044933232,1044933279,GB -1044933280,1044933303,BE +1044933232,1044933293,GB +1044933294,1044933294,BE +1044933295,1044933295,GB +1044933296,1044933303,BE 1044933304,1044933311,GB 1044933312,1044933359,BE 1044933360,1044933375,GB @@ -22236,8 +21709,8 @@ 1044933440,1044933487,BE 1044933488,1044933495,GB 1044933496,1044933503,BE -1044933504,1044933519,GB -1044933520,1044933551,BE +1044933504,1044933527,GB +1044933528,1044933551,BE 1044933552,1044933555,GB 1044933556,1044933583,BE 1044933584,1044933599,GB @@ -22295,16 +21768,8 @@ 1044935356,1044935391,GB 1044935392,1044935407,BE 1044935408,1044935423,GB -1044935424,1044935743,BE -1044935744,1044935751,GB -1044935752,1044935839,BE -1044935840,1044935847,GB -1044935848,1044935851,BE -1044935852,1044935871,GB -1044935872,1044935879,BE -1044935880,1044935887,GB -1044935888,1044935895,BE -1044935896,1044936095,GB +1044935424,1044935935,BE +1044935936,1044936095,GB 1044936096,1044936103,BE 1044936104,1044936111,GB 1044936112,1044936123,BE @@ -22320,7 +21785,9 @@ 1044936456,1044936463,FR 1044936464,1044936487,BE 1044936488,1044936503,GB -1044936504,1044937183,BE +1044936504,1044936967,BE +1044936968,1044936975,GB +1044936976,1044937183,BE 1044937184,1044937187,GB 1044937188,1044937287,BE 1044937288,1044937343,GB @@ -22411,7 +21878,15 @@ 1045020544,1045020639,ES 1045020640,1045020655,GB 1045020656,1045020671,ES -1045020672,1045037055,NO +1045020672,1045022735,NO +1045022736,1045022743,SE +1045022744,1045022751,NO +1045022752,1045022807,SE +1045022808,1045022879,NO +1045022880,1045022895,SE +1045022896,1045022915,NO +1045022916,1045022919,SE +1045022920,1045037055,NO 1045037056,1045118975,GR 1045118976,1045119231,US 1045119232,1045119743,AL @@ -22458,9 +21933,9 @@ 1045447168,1045447231,HU 1045447232,1045447295,SK 1045447296,1045447311,HU -1045447312,1045447519,SK -1045447520,1045447551,HU -1045447552,1045448255,SK +1045447312,1045447423,SK +1045447424,1045447679,HU +1045447680,1045448255,SK 1045448256,1045448263,HU 1045448264,1045448703,SK 1045448704,1045448767,HU @@ -22694,9 +22169,9 @@ 1046366808,1046366815,PL 1046366816,1046385103,IT 1046385104,1046385111,A2 -1046385112,1046391807,IT -1046391808,1046392319,US -1046392320,1046413311,IT +1046385112,1046391295,IT +1046391296,1046391807,US +1046391808,1046413311,IT 1046413312,1046446079,SE 1046446080,1046479535,DE 1046479536,1046479551,GB @@ -22718,7 +22193,11 @@ 1046481536,1046481919,GB 1046481920,1046481959,DE 1046481960,1046481967,GB -1046481968,1046482751,DE +1046481968,1046482207,DE +1046482208,1046482239,GB +1046482240,1046482335,DE +1046482336,1046482367,GB +1046482368,1046482751,DE 1046482752,1046482943,GB 1046482944,1046483231,DE 1046483232,1046483471,GB @@ -22740,11 +22219,19 @@ 1046485128,1046485135,GB 1046485136,1046485159,DE 1046485160,1046485167,GB -1046485168,1046486287,DE +1046485168,1046485279,DE +1046485280,1046485287,GB +1046485288,1046485367,DE +1046485368,1046485375,GB +1046485376,1046485495,DE +1046485496,1046485503,GB +1046485504,1046486287,DE 1046486288,1046486295,GB 1046486296,1046486375,DE 1046486376,1046486383,GB -1046486384,1046491223,DE +1046486384,1046487551,DE +1046487552,1046487807,US +1046487808,1046491223,DE 1046491224,1046491231,GB 1046491232,1046491319,DE 1046491320,1046491327,GB @@ -22786,10 +22273,12 @@ 1046493600,1046493631,GB 1046493632,1046493639,DE 1046493640,1046493695,GB -1046493696,1046493951,DE +1046493696,1046493703,DE +1046493704,1046493711,GB +1046493712,1046493951,DE 1046493952,1046493983,GB -1046493984,1046494007,DE -1046494008,1046494015,GB +1046493984,1046493999,DE +1046494000,1046494015,GB 1046494016,1046494031,DE 1046494032,1046494039,GB 1046494040,1046494087,DE @@ -22922,8 +22411,12 @@ 1046516288,1046516735,GB 1046516736,1046516751,DE 1046516752,1046516767,GB -1046516768,1046516775,DE -1046516776,1046516991,GB +1046516768,1046516783,DE +1046516784,1046516799,GB +1046516800,1046516815,DE +1046516816,1046516823,GB +1046516824,1046516831,DE +1046516832,1046516991,GB 1046516992,1046517031,DE 1046517032,1046517039,GB 1046517040,1046517087,DE @@ -22932,18 +22425,30 @@ 1046518272,1046518783,GB 1046518784,1046519039,DE 1046519040,1046519167,GB -1046519168,1046519607,DE +1046519168,1046519295,DE +1046519296,1046519303,GB +1046519304,1046519463,DE +1046519464,1046519471,GB +1046519472,1046519607,DE 1046519608,1046519623,GB 1046519624,1046519799,DE 1046519800,1046524159,GB -1046524160,1046525183,DE -1046525184,1046525215,GB -1046525216,1046525247,DE -1046525248,1046525311,GB -1046525312,1046525343,DE -1046525344,1046525439,GB +1046524160,1046525255,DE +1046525256,1046525263,GB +1046525264,1046525271,DE +1046525272,1046525311,GB +1046525312,1046525375,DE +1046525376,1046525439,GB 1046525440,1046525695,DE -1046525696,1046526591,GB +1046525696,1046525743,GB +1046525744,1046525759,DE +1046525760,1046525815,GB +1046525816,1046525863,DE +1046525864,1046525879,GB +1046525880,1046525887,DE +1046525888,1046525895,GB +1046525896,1046525903,DE +1046525904,1046526591,GB 1046526592,1046526599,DE 1046526600,1046526631,GB 1046526632,1046526635,DE @@ -23016,17 +22521,19 @@ 1046536352,1046536663,GB 1046536664,1046536667,DE 1046536668,1046536959,GB -1046536960,1046537023,DE -1046537024,1046537055,GB -1046537056,1046537151,DE -1046537152,1046537215,GB +1046536960,1046537039,DE +1046537040,1046537055,GB +1046537056,1046537155,DE +1046537156,1046537175,GB +1046537176,1046537183,DE +1046537184,1046537215,GB 1046537216,1046537727,DE 1046537728,1046537983,GB 1046537984,1046538239,DE -1046538240,1046538431,GB -1046538432,1046538447,DE -1046538448,1046538463,GB -1046538464,1046538495,DE +1046538240,1046538383,GB +1046538384,1046538391,DE +1046538392,1046538407,GB +1046538408,1046538495,DE 1046538496,1046538751,GB 1046538752,1046539775,DE 1046539776,1046540031,GB @@ -23035,15 +22542,21 @@ 1046540544,1046541567,DE 1046541568,1046541631,GB 1046541632,1046541695,DE -1046541696,1046541727,GB -1046541728,1046541783,DE +1046541696,1046541703,GB +1046541704,1046541711,DE +1046541712,1046541735,GB +1046541736,1046541743,DE +1046541744,1046541759,GB +1046541760,1046541783,DE 1046541784,1046541807,GB 1046541808,1046543103,DE -1046543104,1046543263,GB -1046543264,1046543295,DE -1046543296,1046543327,GB -1046543328,1046543343,DE -1046543344,1046543359,GB +1046543104,1046543231,GB +1046543232,1046543239,DE +1046543240,1046543247,GB +1046543248,1046543295,DE +1046543296,1046543311,GB +1046543312,1046543319,DE +1046543320,1046543359,GB 1046543360,1046543615,DE 1046543616,1046544127,GB 1046544128,1046544383,DE @@ -23180,8 +22693,7 @@ 1047166976,1047199743,FR 1047199744,1047265279,DK 1047265280,1047273471,NL -1047273472,1047277567,DE -1047277568,1047281663,CZ +1047273472,1047281663,DE 1047281664,1047289855,TR 1047289856,1047295351,RS 1047295352,1047295359,HU @@ -23411,7 +22923,7 @@ 1047782752,1047782783,NO 1047782784,1047782815,FI 1047782816,1047782831,SE -1047782832,1047782847,EU +1047782832,1047782847,DE 1047782848,1047782911,SE 1047782912,1047785471,EU 1047785472,1047787007,DE @@ -23481,24 +22993,22 @@ 1048246272,1048248319,NO 1048248320,1048313855,IT 1048313856,1048510463,GB -1048510464,1048537087,SE -1048537088,1048539135,DK -1048539136,1048575999,SE +1048510464,1048575999,SE 1048576000,1048584191,DE 1048584192,1048592383,IL 1048592384,1048600575,IT 1048600576,1048601599,UA 1048601600,1048602111,RU 1048602112,1048602247,PL -1048602248,1048604671,UA +1048602248,1048603135,UA +1048603136,1048603191,LV +1048603192,1048604671,UA 1048604672,1048604687,EE 1048604688,1048604751,UA 1048604752,1048604759,EE 1048604760,1048604927,UA -1048604928,1048604945,LT -1048604946,1048604963,UA -1048604964,1048604967,LT -1048604968,1048604971,UA +1048604928,1048604943,LT +1048604944,1048604971,UA 1048604972,1048604991,LT 1048604992,1048605071,UA 1048605072,1048605079,LT @@ -23590,7 +23100,9 @@ 1048845856,1048845863,DE 1048845864,1048845903,NL 1048845904,1048845911,DE -1048845912,1048846343,NL +1048845912,1048846127,NL +1048846128,1048846135,DE +1048846136,1048846343,NL 1048846344,1048846351,DE 1048846352,1048846383,NL 1048846384,1048846391,DE @@ -23599,10 +23111,12 @@ 1048846592,1048846647,NL 1048846648,1048846663,DE 1048846664,1048846687,NL -1048846688,1048846695,DE -1048846696,1048846719,NL +1048846688,1048846703,DE +1048846704,1048846719,NL 1048846720,1048846727,DE -1048846728,1048846847,NL +1048846728,1048846799,NL +1048846800,1048846807,DE +1048846808,1048846847,NL 1048846848,1048847359,DE 1048847360,1048847423,NL 1048847424,1048847431,DE @@ -23618,11 +23132,7 @@ 1048847848,1048847855,DE 1048847856,1048847863,NL 1048847864,1048847871,DE -1048847872,1048847927,NL -1048847928,1048847935,DE -1048847936,1048848111,NL -1048848112,1048848127,DE -1048848128,1048848135,NL +1048847872,1048848135,NL 1048848136,1048848143,DE 1048848144,1048848223,NL 1048848224,1048848231,DE @@ -23639,18 +23149,22 @@ 1048848600,1048848623,NL 1048848624,1048848631,DE 1048848632,1048848703,NL -1048848704,1048848711,DE -1048848712,1048848735,NL +1048848704,1048848719,DE +1048848720,1048848735,NL 1048848736,1048848743,DE -1048848744,1048848831,NL -1048848832,1048848839,DE -1048848840,1048848895,NL +1048848744,1048848823,NL +1048848824,1048848839,DE +1048848840,1048848855,NL +1048848856,1048848863,DE +1048848864,1048848895,NL 1048848896,1048849407,DE 1048849408,1048849559,NL 1048849560,1048849567,DE 1048849568,1048849599,NL 1048849600,1048849607,DE -1048849608,1048849783,NL +1048849608,1048849615,NL +1048849616,1048849623,DE +1048849624,1048849783,NL 1048849784,1048849791,DE 1048849792,1048849839,NL 1048849840,1048849847,DE @@ -23666,9 +23180,7 @@ 1048850152,1048850159,DE 1048850160,1048850263,NL 1048850264,1048850271,DE -1048850272,1048850711,NL -1048850712,1048850719,DE -1048850720,1048850959,NL +1048850272,1048850959,NL 1048850960,1048850967,DE 1048850968,1048851015,NL 1048851016,1048851023,DE @@ -23682,7 +23194,9 @@ 1048851352,1048851359,DE 1048851360,1048851391,NL 1048851392,1048851399,DE -1048851400,1048851471,NL +1048851400,1048851415,NL +1048851416,1048851423,DE +1048851424,1048851471,NL 1048851472,1048851479,DE 1048851480,1048851495,NL 1048851496,1048851511,DE @@ -23842,7 +23356,9 @@ 1048858968,1048858975,DE 1048858976,1048859095,NL 1048859096,1048859103,DE -1048859104,1048859455,NL +1048859104,1048859151,NL +1048859152,1048859159,DE +1048859160,1048859455,NL 1048859456,1048859463,DE 1048859464,1048859495,NL 1048859496,1048859503,DE @@ -23864,7 +23380,9 @@ 1048860488,1048860495,DE 1048860496,1048860511,NL 1048860512,1048860519,DE -1048860520,1048860591,NL +1048860520,1048860575,NL +1048860576,1048860583,DE +1048860584,1048860591,NL 1048860592,1048860599,DE 1048860600,1048860607,NL 1048860608,1048860615,DE @@ -23905,8 +23423,8 @@ 1048862296,1048862327,NL 1048862328,1048862335,DE 1048862336,1048862343,NL -1048862344,1048862351,DE -1048862352,1048862391,NL +1048862344,1048862359,DE +1048862360,1048862391,NL 1048862392,1048862399,DE 1048862400,1048862423,NL 1048862424,1048862431,DE @@ -23928,7 +23446,9 @@ 1048862936,1048862943,DE 1048862944,1048862951,NL 1048862952,1048862959,DE -1048862960,1048863055,NL +1048862960,1048863031,NL +1048863032,1048863039,DE +1048863040,1048863055,NL 1048863056,1048863063,DE 1048863064,1048863111,NL 1048863112,1048863119,DE @@ -23946,7 +23466,9 @@ 1048863376,1048863383,DE 1048863384,1048863391,NL 1048863392,1048863399,DE -1048863400,1048863487,NL +1048863400,1048863415,NL +1048863416,1048863423,DE +1048863424,1048863487,NL 1048863488,1048863495,DE 1048863496,1048863575,NL 1048863576,1048863591,DE @@ -24002,7 +23524,9 @@ 1048867016,1048867023,DE 1048867024,1048867031,NL 1048867032,1048867039,DE -1048867040,1048867207,NL +1048867040,1048867183,NL +1048867184,1048867191,DE +1048867192,1048867207,NL 1048867208,1048867215,DE 1048867216,1048867271,NL 1048867272,1048867279,DE @@ -24034,7 +23558,9 @@ 1048869288,1048869295,DE 1048869296,1048869367,NL 1048869368,1048869375,DE -1048869376,1048869479,NL +1048869376,1048869415,NL +1048869416,1048869423,DE +1048869424,1048869479,NL 1048869480,1048869487,DE 1048869488,1048869503,NL 1048869504,1048869519,DE @@ -24042,8 +23568,8 @@ 1048869544,1048869551,DE 1048869552,1048869615,NL 1048869616,1048869623,DE -1048869624,1048869687,NL -1048869688,1048869695,DE +1048869624,1048869679,NL +1048869680,1048869695,DE 1048869696,1048869759,NL 1048869760,1048869767,DE 1048869768,1048869775,NL @@ -24072,8 +23598,10 @@ 1048870280,1048870287,DE 1048870288,1048870399,NL 1048870400,1048870911,DE -1048870912,1048871095,NL -1048871096,1048871103,DE +1048870912,1048871055,NL +1048871056,1048871063,DE +1048871064,1048871087,NL +1048871088,1048871103,DE 1048871104,1048871135,NL 1048871136,1048871143,DE 1048871144,1048871223,NL @@ -24082,7 +23610,9 @@ 1048871304,1048871311,DE 1048871312,1048871319,NL 1048871320,1048871327,DE -1048871328,1048871935,NL +1048871328,1048871479,NL +1048871480,1048871495,DE +1048871496,1048871935,NL 1048871936,1048872703,DE 1048872704,1048872735,NL 1048872736,1048872743,DE @@ -24098,7 +23628,9 @@ 1048873288,1048873303,DE 1048873304,1048873359,NL 1048873360,1048873367,DE -1048873368,1048873743,NL +1048873368,1048873391,NL +1048873392,1048873399,DE +1048873400,1048873743,NL 1048873744,1048873751,DE 1048873752,1048873791,NL 1048873792,1048873799,DE @@ -24106,7 +23638,13 @@ 1048873864,1048873871,DE 1048873872,1048873935,NL 1048873936,1048873951,DE -1048873952,1048874295,NL +1048873952,1048874015,NL +1048874016,1048874023,DE +1048874024,1048874103,NL +1048874104,1048874111,DE +1048874112,1048874151,NL +1048874152,1048874159,DE +1048874160,1048874295,NL 1048874296,1048874303,DE 1048874304,1048874327,NL 1048874328,1048874335,DE @@ -24210,7 +23748,9 @@ 1048878664,1048878671,DE 1048878672,1048878703,NL 1048878704,1048878711,DE -1048878712,1048878735,NL +1048878712,1048878719,NL +1048878720,1048878727,DE +1048878728,1048878735,NL 1048878736,1048878743,DE 1048878744,1048878751,NL 1048878752,1048878759,DE @@ -24294,12 +23834,14 @@ 1048882280,1048882287,DE 1048882288,1048882311,NL 1048882312,1048882319,DE -1048882320,1048882495,NL +1048882320,1048882479,NL +1048882480,1048882487,DE +1048882488,1048882495,NL 1048882496,1048882503,DE 1048882504,1048882543,NL 1048882544,1048882551,DE -1048882552,1048882575,NL -1048882576,1048882591,DE +1048882552,1048882567,NL +1048882568,1048882591,DE 1048882592,1048882663,NL 1048882664,1048882679,DE 1048882680,1048882703,NL @@ -24330,7 +23872,9 @@ 1048883400,1048883407,DE 1048883408,1048883455,NL 1048883456,1048883463,DE -1048883464,1048883679,NL +1048883464,1048883655,NL +1048883656,1048883663,DE +1048883664,1048883679,NL 1048883680,1048883687,DE 1048883688,1048883711,NL 1048883712,1048883719,DE @@ -24362,7 +23906,9 @@ 1048885112,1048885127,DE 1048885128,1048885175,NL 1048885176,1048885183,DE -1048885184,1048885343,NL +1048885184,1048885271,NL +1048885272,1048885279,DE +1048885280,1048885343,NL 1048885344,1048885351,DE 1048885352,1048885471,NL 1048885472,1048885479,DE @@ -24390,7 +23936,9 @@ 1048886200,1048886207,DE 1048886208,1048886239,NL 1048886240,1048886247,DE -1048886248,1048886343,NL +1048886248,1048886263,NL +1048886264,1048886271,DE +1048886272,1048886343,NL 1048886344,1048886351,DE 1048886352,1048886367,NL 1048886368,1048886375,DE @@ -24402,7 +23950,9 @@ 1048886584,1048886591,DE 1048886592,1048886615,NL 1048886616,1048886623,DE -1048886624,1048886871,NL +1048886624,1048886839,NL +1048886840,1048886847,DE +1048886848,1048886871,NL 1048886872,1048886879,DE 1048886880,1048886887,NL 1048886888,1048886911,DE @@ -24476,7 +24026,9 @@ 1048893112,1048893127,DE 1048893128,1048893455,NL 1048893456,1048893463,DE -1048893464,1048893591,NL +1048893464,1048893487,NL +1048893488,1048893495,DE +1048893496,1048893591,NL 1048893592,1048893607,DE 1048893608,1048893655,NL 1048893656,1048893663,DE @@ -24520,10 +24072,10 @@ 1048894856,1048894863,DE 1048894864,1048894887,NL 1048894888,1048894911,DE -1048894912,1048895031,NL -1048895032,1048895039,DE -1048895040,1048895079,NL -1048895080,1048895087,DE +1048894912,1048895023,NL +1048895024,1048895039,DE +1048895040,1048895071,NL +1048895072,1048895087,DE 1048895088,1048895263,NL 1048895264,1048895279,DE 1048895280,1048895439,NL @@ -24565,8 +24117,8 @@ 1048896536,1048896591,NL 1048896592,1048896607,DE 1048896608,1048896647,NL -1048896648,1048896655,DE -1048896656,1048896671,NL +1048896648,1048896663,DE +1048896664,1048896671,NL 1048896672,1048896679,DE 1048896680,1048896687,NL 1048896688,1048896695,DE @@ -24608,25 +24160,13 @@ 1048897896,1048897903,DE 1048897904,1048897975,NL 1048897976,1048897983,DE -1048897984,1048898327,NL -1048898328,1048898335,DE -1048898336,1048898359,NL -1048898360,1048898367,DE -1048898368,1048898447,NL -1048898448,1048898455,DE -1048898456,1048898543,NL -1048898544,1048898551,DE -1048898552,1048898663,NL +1048897984,1048898287,NL +1048898288,1048898295,DE +1048898296,1048898663,NL 1048898664,1048898679,DE 1048898680,1048898719,NL 1048898720,1048898727,DE -1048898728,1048898943,NL -1048898944,1048898951,DE -1048898952,1048898991,NL -1048898992,1048898999,DE -1048899000,1048899047,NL -1048899048,1048899063,DE -1048899064,1048899095,NL +1048898728,1048899095,NL 1048899096,1048899103,DE 1048899104,1048899271,NL 1048899272,1048899279,DE @@ -24676,8 +24216,8 @@ 1048901168,1048901175,DE 1048901176,1048901199,NL 1048901200,1048901207,DE -1048901208,1048901247,NL -1048901248,1048901255,DE +1048901208,1048901239,NL +1048901240,1048901255,DE 1048901256,1048901311,NL 1048901312,1048901319,DE 1048901320,1048901327,NL @@ -24703,9 +24243,7 @@ 1048902400,1048902447,NL 1048902448,1048902455,DE 1048902456,1048902527,NL -1048902528,1048902535,DE -1048902536,1048902543,NL -1048902544,1048902551,DE +1048902528,1048902551,DE 1048902552,1048902583,NL 1048902584,1048902591,DE 1048902592,1048902639,NL @@ -24718,7 +24256,9 @@ 1048902784,1048902791,DE 1048902792,1048902799,NL 1048902800,1048902807,DE -1048902808,1048903071,NL +1048902808,1048902983,NL +1048902984,1048902991,DE +1048902992,1048903071,NL 1048903072,1048903079,DE 1048903080,1048903095,NL 1048903096,1048903103,DE @@ -24774,7 +24314,7 @@ 1048981824,1048982015,EU 1048982016,1048982527,DE 1048982528,1048982783,EU -1048982784,1048983039,DE +1048982784,1048983039,FR 1048983040,1048983167,EU 1048983168,1048983423,DE 1048983424,1048983487,EU @@ -24815,9 +24355,7 @@ 1049009648,1049009662,DE 1049009663,1049009663,EU 1049009664,1049012223,DE -1049012224,1049012224,EU -1049012225,1049012226,DE -1049012227,1049012735,EU +1049012224,1049012735,EU 1049012736,1049014319,DE 1049014320,1049014783,EU 1049014784,1049016847,DE @@ -24828,8 +24366,8 @@ 1049018368,1049018623,EU 1049018624,1049021343,DE 1049021344,1049021375,US -1049021376,1049026559,DE -1049026560,1049026815,EU +1049021376,1049024767,DE +1049024768,1049026815,EU 1049026816,1049031999,DE 1049032000,1049032031,EU 1049032032,1049032175,DE @@ -25089,7 +24627,9 @@ 1050246720,1050246735,BE 1050246736,1050272511,DE 1050272512,1050272767,EU -1050272768,1050332441,DE +1050272768,1050320231,DE +1050320232,1050320239,GB +1050320240,1050332441,DE 1050332442,1050332442,GB 1050332443,1050340607,DE 1050340608,1050340639,US @@ -25114,20 +24654,22 @@ 1050667776,1050672479,DE 1050672480,1050672487,SG 1050672488,1050673151,DE -1050673152,1050684095,FR +1050673152,1050683711,FR +1050683712,1050683719,DK +1050683720,1050684095,FR 1050684096,1050684103,GB 1050684104,1050702623,FR 1050702624,1050702631,DE -1050702632,1050725463,FR -1050725464,1050725471,GB -1050725472,1050726335,FR -1050726336,1050726343,DE -1050726344,1050768551,FR +1050702632,1050722831,FR +1050722832,1050722839,DE +1050722840,1050768551,FR 1050768552,1050768558,CH 1050768559,1050804223,FR 1050804224,1050869759,MK 1050869760,1050935295,NL -1050935296,1050940927,EU +1050935296,1050938623,EU +1050938624,1050939135,ES +1050939136,1050940927,EU 1050940928,1050941183,ES 1050941184,1050943231,EU 1050943232,1050943487,ES @@ -25215,7 +24757,9 @@ 1051312128,1051328511,GR 1051328512,1051460095,GB 1051460096,1051460351,ES -1051460352,1051525119,GB +1051460352,1051503871,GB +1051503872,1051504127,FR +1051504128,1051525119,GB 1051525120,1051533311,MT 1051533312,1051541503,NG 1051541504,1051549345,GB @@ -25235,9 +24779,7 @@ 1051578248,1051578255,FR 1051578256,1051578303,GB 1051578304,1051578335,NL -1051578336,1051584207,GB -1051584208,1051584223,BE -1051584224,1051590655,GB +1051578336,1051590655,GB 1051590656,1051721727,ES 1051721728,1051729919,RU 1051729920,1051738111,FI @@ -25475,13 +25017,21 @@ 1052042312,1052042367,EU 1052042368,1052042431,DE 1052042432,1052042479,EU -1052042480,1052042751,DE +1052042480,1052042519,DE +1052042520,1052042559,EU +1052042560,1052042575,DE +1052042576,1052042583,EU +1052042584,1052042687,DE +1052042688,1052042703,EU +1052042704,1052042751,DE 1052042752,1052042815,EU 1052042816,1052042863,DE 1052042864,1052043007,EU 1052043008,1052043103,DE 1052043104,1052043111,EU -1052043112,1052043263,DE +1052043112,1052043127,DE +1052043128,1052043167,EU +1052043168,1052043263,DE 1052043264,1052043527,EU 1052043528,1052043535,DE 1052043536,1052043551,EU @@ -25515,7 +25065,8 @@ 1052049184,1052049407,EU 1052049408,1052057599,PL 1052057600,1052065791,RU -1052065792,1052082175,SE +1052065792,1052081151,SE +1052081152,1052082175,NL 1052082176,1052090367,DE 1052090368,1052098559,PL 1052098560,1052103575,SE @@ -26369,9 +25920,11 @@ 1052661760,1052662271,SE 1052662272,1052665343,GB 1052665344,1052665599,SE -1052665600,1052675839,GB -1052675840,1052676095,IE -1052676096,1052684575,GB +1052665600,1052667903,GB +1052667904,1052668063,US +1052668064,1052668079,GB +1052668080,1052668159,US +1052668160,1052684575,GB 1052684576,1052684607,IT 1052684608,1052706815,GB 1052706816,1052712959,NL @@ -26412,7 +25965,9 @@ 1053138944,1053147135,FI 1053147136,1053163519,SK 1053163520,1053294591,DK -1053294592,1053294847,EU +1053294592,1053294599,EU +1053294600,1053294607,AT +1053294608,1053294847,EU 1053294848,1053295103,AT 1053295104,1053295391,EU 1053295392,1053295423,AT @@ -26436,7 +25991,11 @@ 1053300104,1053300111,EU 1053300112,1053300735,GB 1053300736,1053300991,CH -1053300992,1053301279,FR +1053300992,1053301055,FR +1053301056,1053301071,EU +1053301072,1053301135,FR +1053301136,1053301167,EU +1053301168,1053301279,FR 1053301280,1053301287,EU 1053301288,1053301295,FR 1053301296,1053301303,EU @@ -26465,14 +26024,7 @@ 1053306880,1053307903,EU 1053307904,1053308543,GB 1053308544,1053308671,EU -1053308672,1053308687,GB -1053308688,1053308703,EU -1053308704,1053308711,GB -1053308712,1053308767,EU -1053308768,1053308831,GB -1053308832,1053308839,EU -1053308840,1053308863,GB -1053308864,1053308927,EU +1053308672,1053308927,GB 1053308928,1053308991,ZA 1053308992,1053309183,EU 1053309184,1053309951,ZA @@ -26527,9 +26079,7 @@ 1053326432,1053326447,GB 1053326448,1053326451,BE 1053326452,1053326455,EU -1053326456,1053326463,BE -1053326464,1053326471,EU -1053326472,1053326479,BE +1053326456,1053326479,BE 1053326480,1053326527,EU 1053326528,1053326543,BE 1053326544,1053326559,EU @@ -26646,8 +26196,8 @@ 1053353264,1053353279,IE 1053353280,1053353331,GB 1053353332,1053353343,EU -1053353344,1053353407,GB -1053353408,1053353983,EU +1053353344,1053353439,GB +1053353440,1053353983,EU 1053353984,1053354239,IL 1053354240,1053354495,EU 1053354496,1053354655,IL @@ -26701,9 +26251,13 @@ 1053821440,1053821447,GB 1053821448,1053821567,EU 1053821568,1053821695,GB -1053821696,1053824015,EU +1053821696,1053823999,EU +1053824000,1053824007,DE +1053824008,1053824015,EU 1053824016,1053824023,DE -1053824024,1053824127,EU +1053824024,1053824063,EU +1053824064,1053824095,DE +1053824096,1053824127,EU 1053824128,1053824255,NL 1053824256,1053825023,EU 1053825024,1053825791,ES @@ -26859,20 +26413,17 @@ 1054181376,1054182399,DE 1054182400,1054183423,GB 1054183424,1054186240,DE -1054186241,1054187519,GB -1054187520,1054189823,BG +1054186241,1054186495,GB +1054186496,1054187264,DE +1054187265,1054187519,GB +1054187520,1054187775,RO +1054187776,1054189823,BG 1054189824,1054190079,RO -1054190080,1054195711,BG +1054190080,1054195199,BG +1054195200,1054195455,RO +1054195456,1054195711,BG 1054195712,1054212095,BE -1054212096,1054248959,DE -1054248960,1054249007,FR -1054249008,1054249015,DE -1054249016,1054249031,FR -1054249032,1054249039,DE -1054249040,1054249199,FR -1054249200,1054249207,DE -1054249208,1054249215,FR -1054249216,1054277631,DE +1054212096,1054277631,DE 1054277632,1054343167,KW 1054343168,1054351359,NL 1054351360,1054359551,UA @@ -26880,11 +26431,8 @@ 1054367744,1054375935,FI 1054375936,1054381055,GB 1054381056,1054381567,EG -1054381568,1054381583,SG -1054381584,1054381599,HK -1054381600,1054381615,GB -1054381616,1054381631,US -1054381632,1054382079,GB +1054381568,1054381823,US +1054381824,1054382079,GB 1054382080,1054382335,SG 1054382336,1054384127,GB 1054384128,1054400511,DE @@ -26914,14 +26462,8 @@ 1054671416,1054671423,IE 1054671424,1054671431,EU 1054671432,1054671439,IE -1054671440,1054672159,EU -1054672160,1054672175,IE -1054672176,1054672255,EU -1054672256,1054672287,IE -1054672288,1054672319,EU -1054672320,1054672335,US -1054672336,1054672367,IE -1054672368,1054672383,EU +1054671440,1054672127,EU +1054672128,1054672383,DE 1054672384,1054672447,IE 1054672448,1054672719,EU 1054672720,1054672727,IE @@ -26965,15 +26507,9 @@ 1054946048,1054946303,A2 1054946304,1054948253,DE 1054948254,1054948254,EU -1054948255,1054949727,DE -1054949728,1054949735,US -1054949736,1054949807,DE +1054948255,1054949807,DE 1054949808,1054949815,ES -1054949816,1054971487,DE -1054971488,1054971503,AT -1054971504,1054971511,DE -1054971512,1054971519,AT -1054971520,1054973951,DE +1054949816,1054973951,DE 1054973952,1054974207,EU 1054974208,1054978815,DE 1054978816,1054979071,FR @@ -27189,9 +26725,7 @@ 1056875616,1056875623,IE 1056875624,1056875639,GB 1056875640,1056875671,IE -1056875672,1056876031,GB -1056876032,1056876047,IE -1056876048,1056964607,GB +1056875672,1056964607,GB 1056964608,1061227263,US 1061227264,1061227774,BO 1061227775,1061518015,US @@ -27236,9 +26770,7 @@ 1062597376,1062597631,PR 1062597632,1062636287,US 1062636288,1062636351,GB -1062636352,1062691159,US -1062691160,1062691167,AF -1062691168,1062725103,US +1062636352,1062725103,US 1062725104,1062725111,IL 1062725112,1062871551,US 1062871552,1062872319,PR @@ -27339,13 +26871,17 @@ 1064221952,1064222207,MX 1064222208,1064231023,US 1064231024,1064231039,CA -1064231040,1064306087,US +1064231040,1064240319,US +1064240320,1064240383,NL +1064240384,1064306087,US 1064306088,1064306095,AU 1064306096,1064402687,US 1064402688,1064402751,CA 1064402752,1064445183,US 1064445184,1064445439,PK -1064445440,1064973055,US +1064445440,1064778343,US +1064778344,1064778351,CA +1064778352,1064973055,US 1064973056,1064973183,AU 1064973184,1065049471,US 1065049472,1065049535,CA @@ -27379,23 +26915,29 @@ 1065906176,1065908223,KY 1065908224,1065926815,US 1065926816,1065926831,CA -1065926832,1066311679,US +1065926832,1066255871,US +1066255872,1066256383,US +1066256384,1066257407,US +1066257408,1066257663,US +1066257664,1066260735,US +1066260736,1066260991,US +1066260992,1066311679,US 1066311680,1066315775,CA 1066315776,1066332159,US 1066332160,1066336255,CA 1066336256,1066352639,US -1066352640,1066355711,JM +1066352640,1066354943,JM +1066354944,1066355199,BB +1066355200,1066355711,JM 1066355712,1066355967,BB 1066355968,1066369023,JM -1066369024,1066439055,US -1066439056,1066439071,CA -1066439072,1066439087,US -1066439088,1066439095,CA -1066439096,1066473807,US -1066473808,1066473823,CA -1066473824,1066535679,US +1066369024,1066473807,US +1066473808,1066473815,CA +1066473816,1066535679,US 1066535680,1066535687,GB -1066535688,1066771303,US +1066535688,1066674719,US +1066674720,1066674727,CA +1066674728,1066771303,US 1066771304,1066771319,ME 1066771320,1066828279,US 1066828280,1066828287,IN @@ -27415,8 +26957,8 @@ 1066831072,1066831079,JP 1066831080,1066831199,US 1066831200,1066831231,JP -1066831232,1067237887,US -1067237888,1067238399,JP +1066831232,1067238143,US +1067238144,1067238399,JP 1067238400,1067473471,US 1067473472,1067473535,CA 1067473536,1067474751,US @@ -27512,7 +27054,9 @@ 1068167440,1068167447,GB 1068167448,1068175871,US 1068175872,1068176383,YE -1068176384,1068199935,US +1068176384,1068198879,US +1068198880,1068198911,IN +1068198912,1068199935,US 1068199936,1068204031,CA 1068204032,1068230655,US 1068230656,1068230911,CO @@ -27526,14 +27070,14 @@ 1068346368,1068346879,YE 1068346880,1068419071,US 1068419072,1068421119,CO -1068421120,1068425983,US +1068421120,1068422143,US +1068422144,1068422399,CA +1068422400,1068425983,US 1068425984,1068426239,EC 1068426240,1068462079,US 1068462080,1068462335,PR 1068462336,1068473343,US -1068473344,1068473855,BB -1068473856,1068474111,US -1068474112,1068474367,BB +1068473344,1068474367,BB 1068474368,1068480159,US 1068480160,1068480191,IN 1068480192,1068480431,US @@ -27837,9 +27381,15 @@ 1072707328,1072707583,IN 1072707584,1072710327,US 1072710328,1072710335,DE -1072710336,1072712479,US +1072710336,1072711479,US +1072711480,1072711487,DE +1072711488,1072711519,US +1072711520,1072711535,DE +1072711536,1072712479,US 1072712480,1072712495,IL -1072712496,1072715943,US +1072712496,1072714519,US +1072714520,1072714527,DE +1072714528,1072715943,US 1072715944,1072715951,IL 1072715952,1072718031,US 1072718032,1072718039,DE @@ -27847,11 +27397,7 @@ 1072725072,1072725079,NZ 1072725080,1072725311,US 1072725312,1072725343,DE -1072725344,1072727039,US -1072727040,1072727047,JM -1072727048,1072727215,US -1072727216,1072727223,JM -1072727224,1072773559,US +1072725344,1072773559,US 1072773560,1072773567,JP 1072773568,1072774335,US 1072774336,1072774367,JP @@ -27938,8 +27484,8 @@ 1072940032,1072942079,CA 1072942080,1072942143,US 1072942144,1072942335,CA -1072942336,1072942591,US -1072942592,1072955391,CA +1072942336,1072943103,US +1072943104,1072955391,CA 1072955392,1073022975,US 1073022976,1073025791,HN 1073025792,1073026047,NI @@ -27986,7 +27532,9 @@ 1073381464,1073381471,US 1073381472,1073381631,NL 1073381632,1073381887,EU -1073381888,1073383727,US +1073381888,1073383519,US +1073383520,1073383551,SV +1073383552,1073383727,US 1073383728,1073383735,CA 1073383736,1073383839,US 1073383840,1073383871,VE @@ -28010,7 +27558,13 @@ 1073385152,1073385183,BR 1073385184,1073385279,US 1073385280,1073385311,BR -1073385312,1073390207,US +1073385312,1073389575,US +1073389576,1073389583,CA +1073389584,1073389599,US +1073389600,1073389631,GB +1073389632,1073389783,US +1073389784,1073389791,CL +1073389792,1073390207,US 1073390208,1073390215,CA 1073390216,1073390271,US 1073390272,1073390303,CA @@ -28139,9 +27693,7 @@ 1074701584,1074701591,CA 1074701592,1074701599,US 1074701600,1074701631,CA -1074701632,1074702783,US -1074702784,1074702847,CA -1074702848,1074703615,US +1074701632,1074703615,US 1074703616,1074703871,GB 1074703872,1074704383,US 1074704384,1074704639,GB @@ -28244,9 +27796,7 @@ 1075579008,1075579039,GB 1075579040,1075579047,NO 1075579048,1075579059,GB -1075579060,1075579747,NO -1075579748,1075579751,GB -1075579752,1075579935,NO +1075579060,1075579935,NO 1075579936,1075579943,GB 1075579944,1075579967,NO 1075579968,1075579975,GB @@ -28276,11 +27826,17 @@ 1075583584,1075583591,NL 1075583592,1075583647,NO 1075583648,1075583663,NL -1075583664,1075584071,NO +1075583664,1075583743,NO +1075583744,1075583759,NL +1075583760,1075583783,NO +1075583784,1075583791,NL +1075583792,1075583903,NO +1075583904,1075583911,NL +1075583912,1075584071,NO 1075584072,1075584095,NL -1075584096,1075584695,NO -1075584696,1075584711,NL -1075584712,1075585023,NO +1075584096,1075584355,NO +1075584356,1075584367,NL +1075584368,1075585023,NO 1075585024,1075593967,US 1075593968,1075593983,CA 1075593984,1075594975,US @@ -28295,8 +27851,11 @@ 1075597024,1075597039,CA 1075597040,1075597167,US 1075597168,1075597183,CA -1075597184,1075597567,US -1075597568,1075597599,CA +1075597184,1075597375,US +1075597376,1075597407,CA +1075597408,1075597439,IL +1075597440,1075597551,US +1075597552,1075597599,CA 1075597600,1075598367,US 1075598368,1075598383,CA 1075598384,1075598943,US @@ -28426,15 +27985,12 @@ 1075997184,1075997519,CA 1075997520,1075997535,US 1075997536,1075997695,CA -1075997696,1075997823,CR -1075997824,1075997919,US +1075997696,1075997919,US 1075997920,1075997935,CA 1075997936,1075997951,US 1075997952,1075998103,CA 1075998104,1075998207,US -1075998208,1075998351,CA -1075998352,1075998431,US -1075998432,1075999231,CA +1075998208,1075999231,CA 1075999232,1075999999,US 1076000000,1076000255,CA 1076000256,1076000767,US @@ -28525,9 +28081,7 @@ 1076010736,1076011007,CA 1076011008,1076018303,US 1076018304,1076018367,BR -1076018368,1076024307,US -1076024308,1076024315,CA -1076024316,1076026367,US +1076018368,1076026367,US 1076026368,1076026591,CA 1076026592,1076026623,US 1076026624,1076026879,CA @@ -28594,7 +28148,9 @@ 1076030600,1076030607,US 1076030608,1076030623,CA 1076030624,1076030631,US -1076030632,1076030975,CA +1076030632,1076030783,CA +1076030784,1076030847,US +1076030848,1076030975,CA 1076030976,1076031743,US 1076031744,1076031999,CA 1076032000,1076032255,US @@ -28749,9 +28305,7 @@ 1076233178,1076233178,TC 1076233179,1076281695,US 1076281696,1076281727,TH -1076281728,1076282111,US -1076282112,1076282143,AU -1076282144,1076282351,US +1076281728,1076282351,US 1076282352,1076282367,CA 1076282368,1076283903,US 1076283904,1076284159,NO @@ -28771,7 +28325,9 @@ 1076294656,1076294687,CY 1076294688,1076294703,US 1076294704,1076294719,NO -1076294720,1076295167,US +1076294720,1076295071,US +1076295072,1076295087,NL +1076295088,1076295167,US 1076295168,1076295199,CY 1076295200,1076306463,US 1076306464,1076306479,GB @@ -28913,15 +28469,9 @@ 1077844384,1077844391,US 1077844392,1077848575,US 1077848576,1077848831,GR -1077848832,1077851375,US -1077851376,1077851383,FR -1077851384,1077851471,US -1077851472,1077851487,HK -1077851488,1077852671,US +1077848832,1077852671,US 1077852672,1077852927,CA -1077852928,1077856127,US -1077856128,1077856191,AU -1077856192,1077857279,US +1077852928,1077857279,US 1077857280,1077857535,CA 1077857536,1077857567,US 1077857568,1077857575,IT @@ -28933,9 +28483,7 @@ 1077863208,1077863215,NG 1077863216,1077865983,US 1077865984,1077866239,CA -1077866240,1077867655,US -1077867656,1077867663,CK -1077867664,1077868031,US +1077866240,1077868031,US 1077868032,1077868159,IT 1077868160,1077868831,US 1077868832,1077868847,AE @@ -29308,7 +28856,9 @@ 1078280896,1078281087,US 1078281088,1078281279,CA 1078281280,1078281295,US -1078281296,1078281711,CA +1078281296,1078281663,CA +1078281664,1078281679,US +1078281680,1078281711,CA 1078281712,1078281719,US 1078281720,1078282119,CA 1078282120,1078282223,US @@ -29372,11 +28922,7 @@ 1078285936,1078285943,US 1078285944,1078286047,CA 1078286048,1078286079,US -1078286080,1078286111,CA -1078286112,1078286115,US -1078286116,1078286143,CA -1078286144,1078286207,US -1078286208,1078286335,CA +1078286080,1078286335,CA 1078286336,1078286351,US 1078286352,1078286367,CA 1078286368,1078286463,US @@ -29428,19 +28974,13 @@ 1078428032,1078428159,AU 1078428160,1078428999,US 1078429000,1078429007,MX -1078429008,1078429623,US -1078429624,1078429631,AU -1078429632,1078429695,US +1078429008,1078429695,US 1078429696,1078429951,GR 1078429952,1078430095,US 1078430096,1078430111,AE -1078430112,1078430159,US -1078430160,1078430167,FJ -1078430168,1078432095,US -1078432096,1078432103,JP -1078432104,1078432151,US -1078432152,1078432159,JP -1078432160,1078432223,US +1078430112,1078431231,US +1078431232,1078431359,AI +1078431360,1078432223,US 1078432224,1078432239,AE 1078432240,1078432767,US 1078432768,1078432775,GB @@ -29450,7 +28990,9 @@ 1078433317,1078433317,US 1078433318,1078433631,US 1078433632,1078433663,CN -1078433664,1078434759,US +1078433664,1078434271,US +1078434272,1078434303,GR +1078434304,1078434759,US 1078434760,1078434767,BE 1078434768,1078434775,US 1078434776,1078434783,JP @@ -29460,15 +29002,9 @@ 1078435424,1078435455,HK 1078435456,1078435871,US 1078435872,1078435879,US -1078435880,1078436719,US -1078436720,1078436727,JP -1078436728,1078436767,US +1078435880,1078436767,US 1078436768,1078436799,GB -1078436800,1078437471,US -1078437472,1078437479,JP -1078437480,1078437567,US -1078437568,1078437599,HK -1078437600,1078438399,US +1078436800,1078438399,US 1078438400,1078438655,CA 1078438656,1078438911,US 1078438912,1078439167,CN @@ -29490,7 +29026,9 @@ 1078454704,1078454719,AT 1078454720,1078455343,US 1078455344,1078455359,AT -1078455360,1078456319,US +1078455360,1078455551,US +1078455552,1078455807,NL +1078455808,1078456319,US 1078456320,1078460415,CA 1078460416,1078504959,US 1078504960,1078505471,CA @@ -29542,7 +29080,9 @@ 1078743040,1078746111,CO 1078746112,1078747135,PE 1078747136,1078749183,CL -1078749184,1078751231,PE +1078749184,1078750231,PE +1078750232,1078750239,CA +1078750240,1078751231,PE 1078751232,1078753279,CO 1078753280,1078755327,AR 1078755328,1078757375,PE @@ -29720,9 +29260,7 @@ 1079325696,1079325727,US 1079325728,1079325871,CA 1079325872,1079325887,US -1079325888,1079325991,CA -1079325992,1079325999,US -1079326000,1079327616,CA +1079325888,1079327616,CA 1079327617,1079327617,US 1079327618,1079328503,CA 1079328504,1079328511,US @@ -29736,8 +29274,7 @@ 1079379456,1079379711,US 1079379712,1079380927,CA 1079380928,1079380991,US -1079380992,1079381119,PA -1079381120,1079381503,CA +1079380992,1079381503,CA 1079381504,1079381535,US 1079381536,1079381599,CA 1079381600,1079381631,WS @@ -29790,7 +29327,8 @@ 1079397888,1079398399,US 1079398400,1079399583,CA 1079399584,1079399599,US -1079399600,1079400447,CA +1079399600,1079399935,CA +1079399936,1079400447,US 1079400448,1079400511,FR 1079400512,1079400575,CA 1079400576,1079400639,US @@ -29842,7 +29380,8 @@ 1079413568,1079414271,CA 1079414272,1079415039,US 1079415040,1079415295,HN -1079415296,1079421951,CA +1079415296,1079415807,US +1079415808,1079421951,CA 1079421952,1079422207,US 1079422208,1079422239,CA 1079422240,1079422271,US @@ -29874,7 +29413,9 @@ 1079567104,1079567359,US 1079567360,1079567615,AU 1079567616,1079574527,US -1079574528,1079578623,PR +1079574528,1079576487,PR +1079576488,1079576495,US +1079576496,1079578623,PR 1079578624,1079585391,US 1079585392,1079585407,IN 1079585408,1079623679,US @@ -29887,13 +29428,13 @@ 1079827872,1079827887,RU 1079827888,1079861247,US 1079861248,1079865343,CA -1079865344,1079943999,US -1079944000,1079944031,AU -1079944032,1079953567,US +1079865344,1079953567,US 1079953568,1079953599,GB 1079953600,1079962879,US 1079962880,1079963135,GB -1079963136,1080024319,US +1079963136,1080021999,US +1080022000,1080022007,GT +1080022008,1080024319,US 1080024320,1080024575,CA 1080024576,1080030527,US 1080030528,1080030591,AR @@ -29907,30 +29448,25 @@ 1080498666,1080498687,GB 1080498688,1080501503,US 1080501504,1080501759,EU -1080501760,1080508415,US -1080508416,1080516607,GB -1080516608,1080524799,US -1080524800,1080543231,IN -1080543232,1080549375,US +1080501760,1080512511,US +1080512512,1080516607,GB +1080516608,1080518655,US +1080518656,1080519679,GB +1080519680,1080524799,US +1080524800,1080537087,IN +1080537088,1080549375,US 1080549376,1080557567,IN -1080557568,1080565759,US -1080565760,1080573951,JP -1080573952,1080581631,US -1080581632,1080581887,SG +1080557568,1080569343,US +1080569344,1080569599,JP +1080569600,1080569730,US +1080569731,1080569731,JP +1080569732,1080581887,US 1080581888,1080582143,AP -1080582144,1080589311,US -1080589312,1080589567,SG -1080589568,1080590335,US +1080582144,1080590335,US 1080590336,1080598527,IN 1080598528,1080606719,US -1080606720,1080614911,AU -1080614912,1080615679,US -1080615680,1080615935,AU -1080615936,1080621311,US -1080621312,1080621567,AU -1080621568,1080622079,US -1080622080,1080622335,AU -1080622336,1080722827,US +1080606720,1080623103,AU +1080623104,1080722827,US 1080722828,1080722837,IT 1080722838,1080722993,US 1080722994,1080723003,CA @@ -30072,10 +29608,8 @@ 1080989952,1080990207,A2 1080990208,1080999935,US 1080999936,1081016319,CA -1081016320,1081037311,US -1081037312,1081037567,CA -1081037568,1081038335,US -1081038336,1081040895,CA +1081016320,1081036799,US +1081036800,1081040895,CA 1081040896,1081047580,US 1081047581,1081047581,US 1081047582,1081122559,US @@ -30191,7 +29725,13 @@ 1081410048,1081410559,US 1081410560,1081411583,PR 1081411584,1081413119,US -1081413120,1081413631,PR +1081413120,1081413375,PR +1081413376,1081413527,US +1081413528,1081413535,CA +1081413536,1081413567,US +1081413568,1081413575,CA +1081413576,1081413599,US +1081413600,1081413631,PR 1081413632,1081416191,US 1081416192,1081416447,PR 1081416448,1081419327,US @@ -30314,27 +29854,9 @@ 1081608576,1081608583,CA 1081608584,1081609823,US 1081609824,1081609831,LK -1081609832,1081611415,US -1081611416,1081611423,IN -1081611424,1081611511,US -1081611512,1081611519,IN -1081611520,1081611815,US -1081611816,1081611823,IN -1081611824,1081611831,US -1081611832,1081611839,IN -1081611840,1081611847,US -1081611848,1081611855,IN -1081611856,1081611903,US -1081611904,1081611911,IN -1081611912,1081611919,US -1081611920,1081611927,IN +1081609832,1081611927,US 1081611928,1081611935,LK -1081611936,1081611943,IN -1081611944,1081612015,US -1081612016,1081612023,IN -1081612024,1081612159,US -1081612160,1081612191,IN -1081612192,1081612655,US +1081611936,1081612655,US 1081612656,1081612663,CA 1081612664,1081612671,IN 1081612672,1081618047,US @@ -30347,7 +29869,9 @@ 1081625672,1081625679,CA 1081625680,1081625775,US 1081625776,1081625783,CA -1081625784,1081633919,US +1081625784,1081630903,US +1081630904,1081630911,CA +1081630912,1081633919,US 1081633920,1081634047,IN 1081634048,1081872663,US 1081872664,1081872671,FI @@ -30355,17 +29879,15 @@ 1081912608,1081912639,DE 1081912640,1081927135,US 1081927136,1081927143,GB -1081927144,1081978623,US -1081978624,1081978631,CH -1081978632,1082091263,US +1081927144,1082091263,US 1082091264,1082091271,CN -1082091272,1082093679,US +1082091272,1082091999,US +1082092000,1082092007,CA +1082092008,1082093679,US 1082093680,1082093695,AU 1082093696,1082097055,US 1082097056,1082097071,CA -1082097072,1082131199,US -1082131200,1082131455,AS -1082131456,1082138623,US +1082097072,1082138623,US 1082138624,1082139409,A2 1082139410,1082139410,ZA 1082139411,1082140671,A2 @@ -30385,11 +29907,7 @@ 1082347641,1082347644,CA 1082347645,1082347740,US 1082347741,1082347744,IN -1082347745,1082347882,US -1082347883,1082347886,IN -1082347887,1082347892,US -1082347893,1082347896,IN -1082347897,1082348005,US +1082347745,1082348005,US 1082348006,1082348009,IN 1082348010,1082348104,US 1082348105,1082348108,FR @@ -30423,10 +29941,10 @@ 1082350656,1082350671,IT 1082350672,1082350911,US 1082350912,1082350943,RU -1082350944,1082351361,US +1082350944,1082351359,US +1082351360,1082351361,AE 1082351362,1082351362,SA -1082351363,1082351487,US -1082351488,1082351615,AU +1082351363,1082351615,AE 1082351616,1082419455,US 1082419456,1082419711,A2 1082419712,1082679807,US @@ -30473,15 +29991,11 @@ 1083265024,1083265279,CA 1083265280,1083396095,US 1083396096,1083400191,BM -1083400192,1083413247,US -1083413248,1083413375,CA -1083413376,1083417727,US +1083400192,1083417727,US 1083417728,1083417791,CA 1083417792,1083437055,US 1083437056,1083441151,CA -1083441152,1083486911,US -1083486912,1083486943,IS -1083486944,1083618602,US +1083441152,1083618602,US 1083618603,1083618611,DE 1083618612,1083618714,US 1083618715,1083618725,BR @@ -30616,23 +30130,23 @@ 1087016960,1087021055,CA 1087021056,1087375103,US 1087375104,1087375359,BR -1087375360,1087379455,US -1087379456,1087379711,GB -1087379712,1087385855,US +1087375360,1087385855,US 1087385856,1087386111,EU -1087386112,1087395327,US -1087395328,1087395503,GB +1087386112,1087393791,US +1087393792,1087395503,GB 1087395504,1087395511,US -1087395512,1087395583,GB -1087395584,1087399167,US +1087395512,1087395839,GB +1087395840,1087399167,US 1087399168,1087399423,GB 1087399424,1087401727,US -1087401728,1087401791,GB +1087401728,1087401791,MX 1087401792,1087401855,US 1087401856,1087401887,MX 1087401888,1087401919,US 1087401920,1087401983,MX -1087401984,1087419903,US +1087401984,1087405407,US +1087405408,1087405423,MX +1087405424,1087419903,US 1087419904,1087420159,CA 1087420160,1087432599,US 1087432600,1087432607,FR @@ -30644,9 +30158,7 @@ 1087443552,1087443583,DE 1087443584,1087444223,US 1087444224,1087444479,GB -1087444480,1087445503,US -1087445504,1087445759,GB -1087445760,1087461734,US +1087444480,1087461734,US 1087461735,1087461735,IN 1087461736,1087464945,US 1087464946,1087464949,GB @@ -30654,75 +30166,76 @@ 1087466490,1087466493,GB 1087466494,1087467291,US 1087467292,1087467295,BR -1087467296,1087496703,US +1087467296,1087495519,US +1087495520,1087495535,TW +1087495536,1087496703,US 1087496704,1087496959,CA 1087496960,1087497855,US 1087497856,1087497887,CA -1087497888,1087514879,US -1087514880,1087515135,BB -1087515136,1087515647,US -1087515648,1087516671,BB -1087516672,1087554751,US +1087497888,1087515391,US +1087515392,1087516159,BB +1087516160,1087554751,US 1087554752,1087554759,IL -1087554760,1087580927,US -1087580928,1087581183,BR -1087581184,1087596031,US +1087554760,1087596031,US 1087596032,1087596287,DE 1087596288,1087608319,US 1087608320,1087608575,GB 1087608576,1087643723,US 1087643724,1087643727,FR -1087643728,1087651839,US -1087651840,1087655935,VE -1087655936,1087678623,US +1087643728,1087654271,US +1087654272,1087654399,VE +1087654400,1087678623,US 1087678624,1087678655,GB 1087678656,1087686655,US 1087686656,1087686911,PR 1087686912,1087695319,US 1087695320,1087695323,GB -1087695324,1087714335,US +1087695324,1087708671,US +1087708672,1087708927,AU +1087708928,1087714335,US 1087714336,1087714367,NL 1087714368,1087715327,US 1087715328,1087717375,PA -1087717376,1087717631,US -1087717632,1087717858,GB +1087717376,1087717858,GB 1087717859,1087717859,US -1087717860,1087717887,GB -1087717888,1087726096,US +1087717860,1087719423,GB +1087719424,1087726096,US 1087726097,1087726097,GB 1087726098,1087729663,US 1087729664,1087733759,PR 1087733760,1087735639,US 1087735640,1087735647,GB -1087735648,1087746079,US +1087735648,1087738879,US +1087738880,1087739135,AR +1087739136,1087746079,US 1087746080,1087746083,HK 1087746084,1087758335,US 1087758336,1087766527,PR -1087766528,1087799787,US +1087766528,1087788543,US +1087788544,1087788799,CA +1087788800,1087799787,US 1087799788,1087799791,CH 1087799792,1087825663,US 1087825664,1087825919,SA -1087825920,1087839231,US -1087839232,1087839743,GB -1087839744,1087854079,US -1087854080,1087854591,GB -1087854592,1087862783,US +1087825920,1087836415,US +1087836416,1087836671,FR +1087836672,1087839231,US +1087839232,1087840255,GB +1087840256,1087854079,US +1087854080,1087854335,GB +1087854336,1087862783,US 1087862784,1087864831,PA 1087864832,1087873023,US -1087873024,1087873535,CA -1087873536,1087873791,US -1087873792,1087874559,CA +1087873024,1087874559,CA 1087874560,1087874815,US -1087874816,1087875071,CA -1087875072,1087883263,US +1087874816,1087876607,CA +1087876608,1087876863,US +1087876864,1087877119,CA +1087877120,1087883263,US 1087883264,1087883519,AR -1087883520,1087883999,US -1087884000,1087884025,GB -1087884026,1087884026,US -1087884027,1087884031,GB -1087884032,1087918511,US -1087918512,1087918519,PR -1087918520,1087950111,US +1087883520,1087884001,US +1087884002,1087884002,GB +1087884003,1087950111,US 1087950112,1087950119,PR 1087950120,1088012767,US 1088012768,1088012775,PR @@ -30868,7 +30381,9 @@ 1089393296,1089393407,CA 1089393408,1089468415,US 1089468416,1089468671,A2 -1089468672,1089482927,US +1089468672,1089469807,US +1089469808,1089469823,CA +1089469824,1089482927,US 1089482928,1089482935,CA 1089482936,1089486591,US 1089486592,1089486607,CA @@ -30892,15 +30407,15 @@ 1089574320,1089574327,CA 1089574328,1089576623,US 1089576624,1089576631,CA -1089576632,1089579519,US +1089576632,1089579215,US +1089579216,1089579223,VI +1089579224,1089579519,US 1089579520,1089580031,VE 1089580032,1089581287,US 1089581288,1089581295,CA 1089581296,1089585919,US 1089585920,1089585951,CA -1089585952,1089587999,US -1089588000,1089588015,IN -1089588016,1089593615,US +1089585952,1089593615,US 1089593616,1089593623,CA 1089593624,1089595279,US 1089595280,1089595287,CA @@ -30926,11 +30441,11 @@ 1089721024,1089721087,CA 1089721088,1089721503,US 1089721504,1089721519,CA -1089721520,1089721727,US -1089721728,1089721791,CA -1089721792,1089723823,US +1089721520,1089723823,US 1089723824,1089723831,CA -1089723832,1089881599,US +1089723832,1089746927,US +1089746928,1089746943,CA +1089746944,1089881599,US 1089881600,1089882111,GB 1089882112,1089882623,US 1089882624,1089883135,GB @@ -30970,9 +30485,7 @@ 1090428928,1090445311,US 1090445312,1090447359,CA 1090447360,1090447487,US -1090447488,1090448127,CA -1090448128,1090448255,US -1090448256,1090453503,CA +1090447488,1090453503,CA 1090453504,1090497903,US 1090497904,1090497919,AU 1090497920,1091683357,US @@ -31046,9 +30559,7 @@ 1091798784,1091799039,CN 1091799040,1091799719,US 1091799720,1091799727,SG -1091799728,1091800319,US -1091800320,1091800327,JP -1091800328,1091802111,US +1091799728,1091802111,US 1091802112,1091802367,CA 1091802368,1091803135,US 1091803136,1091803391,CN @@ -31060,9 +30571,7 @@ 1091807232,1091807487,CA 1091807488,1091807999,US 1091808000,1091808511,CA -1091808512,1091809375,US -1091809376,1091809391,GB -1091809392,1091812351,US +1091808512,1091812351,US 1091812352,1091812607,CN 1091812608,1091960831,US 1091960832,1092026367,CA @@ -31096,9 +30605,7 @@ 1093055488,1093055871,AR 1093055872,1093055887,US 1093055888,1093055903,KH -1093055904,1093056111,US -1093056112,1093056127,SY -1093056128,1093056167,US +1093055904,1093056167,US 1093056168,1093056175,RO 1093056176,1093056447,US 1093056448,1093056463,FR @@ -31273,7 +30780,9 @@ 1093126544,1093126639,CA 1093126640,1093126655,US 1093126656,1093127167,CA -1093127168,1093127423,US +1093127168,1093127191,US +1093127192,1093127199,CA +1093127200,1093127423,US 1093127424,1093127455,CA 1093127456,1093127551,US 1093127552,1093127615,CA @@ -31320,9 +30829,7 @@ 1093139680,1093139695,US 1093139696,1093140223,CA 1093140224,1093320191,US -1093320192,1093320255,PR -1093320256,1093320287,US -1093320288,1093320447,PR +1093320192,1093320447,PR 1093320448,1093697535,US 1093697536,1093699071,BB 1093699072,1093700607,GD @@ -31351,13 +30858,13 @@ 1093740336,1093740351,SG 1093740352,1093741599,US 1093741600,1093741607,ES -1093741608,1093743743,US -1093743744,1093743807,CA -1093743808,1093747839,US +1093741608,1093747839,US 1093747840,1093747903,US 1093747904,1093748799,US 1093748800,1093748863,CN -1093748864,1094441727,US +1093748864,1093966216,US +1093966217,1093966217,NL +1093966218,1094441727,US 1094441728,1094441983,US 1094441984,1094565887,US 1094565888,1094582271,CA @@ -31447,7 +30954,9 @@ 1097131472,1097727999,US 1097728000,1097729151,CA 1097729152,1097729167,US -1097729168,1097731447,CA +1097729168,1097730847,CA +1097730848,1097730855,US +1097730856,1097731447,CA 1097731448,1097731455,GB 1097731456,1097736191,CA 1097736192,1097768959,US @@ -31457,7 +30966,9 @@ 1097834496,1097837197,US 1097837198,1097837198,AE 1097837199,1097896191,US -1097896192,1097896711,VI +1097896192,1097896519,VI +1097896520,1097896527,US +1097896528,1097896711,VI 1097896712,1097896719,US 1097896720,1097897215,VI 1097897216,1097913295,US @@ -31466,9 +30977,7 @@ 1097947136,1097949183,VI 1097949184,1097951231,US 1097951232,1097953279,VI -1097953280,1098083895,US -1098083896,1098083903,ME -1098083904,1098187599,US +1097953280,1098187599,US 1098187600,1098187607,GB 1098187608,1098188047,US 1098188048,1098188055,CA @@ -31551,7 +31060,9 @@ 1101542400,1101542911,CO 1101542912,1101574655,US 1101574656,1101575167,EC -1101575168,1101635327,US +1101575168,1101617679,US +1101617680,1101617687,CA +1101617688,1101635327,US 1101635328,1101635583,HN 1101635584,1101650431,US 1101650432,1101650943,HN @@ -31708,9 +31219,7 @@ 1103676160,1103676175,AU 1103676176,1103678831,US 1103678832,1103678847,AU -1103678848,1103769367,US -1103769368,1103769375,LU -1103769376,1103929055,US +1103678848,1103929055,US 1103929056,1103929063,MX 1103929064,1103930879,US 1103930880,1103931135,MX @@ -31722,9 +31231,7 @@ 1103996928,1103997439,EC 1103997440,1104003455,US 1104003456,1104003583,PH -1104003584,1104033439,US -1104033440,1104033471,GB -1104033472,1104075703,US +1104003584,1104075703,US 1104075704,1104075711,CH 1104075712,1104081391,US 1104081392,1104081399,PR @@ -31756,25 +31263,25 @@ 1104875336,1104875351,AF 1104875352,1104881087,US 1104881088,1104881151,PH -1104881152,1104916991,US -1104916992,1104917247,AS -1104917248,1105034495,US +1104881152,1105034495,US 1105034496,1105034751,IT 1105034752,1105099519,US 1105099520,1105099775,EC -1105099776,1105142463,US -1105142464,1105142471,MN -1105142472,1105143039,US +1105099776,1105143039,US 1105143040,1105143047,MN 1105143048,1105153215,US 1105153216,1105153279,PH -1105153280,1105196775,US -1105196776,1105196783,AF -1105196784,1106305663,US +1105153280,1106305663,US 1106305664,1106305671,CA 1106305672,1106306047,US 1106306048,1106306079,CA -1106306080,1106349599,US +1106306080,1106320175,US +1106320176,1106320183,CA +1106320184,1106323631,US +1106323632,1106323639,AF +1106323640,1106323655,US +1106323656,1106323663,AF +1106323664,1106349599,US 1106349600,1106349607,UM 1106349608,1106469695,US 1106469696,1106469759,CO @@ -31788,9 +31295,7 @@ 1106495304,1106495319,GB 1106495320,1106532887,US 1106532888,1106532895,TW -1106532896,1106547743,US -1106547744,1106547759,DK -1106547760,1106685047,US +1106532896,1106685047,US 1106685048,1106685055,CA 1106685056,1106758655,US 1106758656,1106759167,EC @@ -31874,9 +31379,7 @@ 1108055400,1108055407,US 1108055408,1108055423,CA 1108055424,1108055439,US -1108055440,1108055455,CA -1108055456,1108055471,US -1108055472,1108055519,CA +1108055440,1108055519,CA 1108055520,1108055551,US 1108055552,1108055903,CA 1108055904,1108055919,US @@ -31977,7 +31480,9 @@ 1109711176,1109711183,HT 1109711184,1109712767,US 1109712768,1109712895,A2 -1109712896,1109772223,US +1109712896,1109738495,US +1109738496,1109738623,VA +1109738624,1109772223,US 1109772224,1109772239,HK 1109772240,1109774175,US 1109774176,1109774183,CA @@ -32020,7 +31525,9 @@ 1109954352,1109954367,ES 1109954368,1110126591,US 1110126592,1110130687,CA -1110130688,1110310911,US +1110130688,1110307903,US +1110307904,1110307967,AU +1110307968,1110310911,US 1110310912,1110376447,CA 1110376448,1110415929,US 1110415930,1110415930,US @@ -32164,7 +31671,19 @@ 1110540288,1110573055,CA 1110573056,1110578431,PR 1110578432,1110578687,US -1110578688,1110638591,PR +1110578688,1110579711,PR +1110579712,1110580223,US +1110580224,1110587391,PR +1110587392,1110587903,US +1110587904,1110588159,PR +1110588160,1110591487,US +1110591488,1110591743,PR +1110591744,1110591999,US +1110592000,1110592255,PR +1110592256,1110593535,US +1110593536,1110594559,PR +1110594560,1110595583,US +1110595584,1110638591,PR 1110638592,1110654463,US 1110654464,1110654719,HT 1110654720,1110663167,US @@ -32235,7 +31754,9 @@ 1112906368,1112906375,BR 1112906376,1112906431,US 1112906432,1112906439,GB -1112906440,1112907775,US +1112906440,1112906943,US +1112906944,1112906959,BR +1112906960,1112907775,US 1112907776,1112907783,CA 1112907784,1112907919,US 1112907920,1112907935,EG @@ -32348,21 +31869,20 @@ 1114537984,1114550271,CA 1114550272,1114579831,US 1114579832,1114579832,US -1114579833,1114628995,US +1114579833,1114612991,US +1114612992,1114613247,AU +1114613248,1114628995,US 1114628996,1114628996,US -1114628997,1114653951,US -1114653952,1114653983,MO -1114653984,1114681343,US +1114628997,1114681343,US 1114681344,1114685439,CA 1114685440,1114730495,US 1114730496,1114734591,CA 1114734592,1114875647,US -1114875648,1114876159,CA -1114876160,1114876447,US +1114875648,1114875903,CA +1114875904,1114876447,US 1114876448,1114876463,CA 1114876464,1114876479,AD -1114876480,1114876511,US -1114876512,1114876543,CA +1114876480,1114876543,US 1114876544,1114876575,GB 1114876576,1114876911,US 1114876912,1114876927,AD @@ -32390,9 +31910,7 @@ 1114881472,1114881535,CY 1114881536,1114928863,US 1114928864,1114928871,GB -1114928872,1114929071,US -1114929072,1114929087,RU -1114929088,1114930175,US +1114928872,1114930175,US 1114930176,1114930303,GB 1114930304,1114967311,US 1114967312,1114967327,GB @@ -32421,9 +31939,7 @@ 1115136000,1115144191,CA 1115144192,1115705343,US 1115705344,1115709439,CA -1115709440,1115768351,US -1115768352,1115768367,CA -1115768368,1115774799,US +1115709440,1115774799,US 1115774800,1115774815,A2 1115774816,1115783167,US 1115783168,1115791359,CA @@ -32452,9 +31968,7 @@ 1116158720,1116159519,US 1116159520,1116159535,BR 1116159536,1116168191,US -1116168192,1116175103,CA -1116175104,1116175135,JM -1116175136,1116176383,CA +1116168192,1116176383,CA 1116176384,1116425393,US 1116425394,1116425394,US 1116425395,1116538687,US @@ -32467,7 +31981,9 @@ 1117142272,1117142527,CA 1117142528,1117167855,US 1117167856,1117167871,GB -1117167872,1117189951,US +1117167872,1117169503,US +1117169504,1117169535,CA +1117169536,1117189951,US 1117189952,1117190015,KR 1117190016,1117195991,US 1117195992,1117195999,A2 @@ -32517,7 +32033,9 @@ 1117815296,1117815551,CN 1117815552,1117817919,US 1117817920,1117817983,CA -1117817984,1117819631,US +1117817984,1117818975,US +1117818976,1117818991,HK +1117818992,1117819631,US 1117819632,1117819647,AE 1117819648,1117822463,US 1117822464,1117822527,CA @@ -32528,9 +32046,7 @@ 1117824000,1117824511,GR 1117824512,1117829375,US 1117829376,1117829631,GR -1117829632,1117831359,US -1117831360,1117831423,A2 -1117831424,1117978623,US +1117829632,1117978623,US 1117978624,1117979503,CA 1117979504,1117979519,US 1117979520,1117982639,CA @@ -32547,9 +32063,7 @@ 1117985424,1117985447,US 1117985448,1117985463,CA 1117985464,1117985471,US -1117985472,1117986591,CA -1117986592,1117986607,US -1117986608,1117986815,CA +1117985472,1117986815,CA 1117986816,1117995007,US 1117995008,1117999103,CA 1117999104,1118027783,US @@ -32635,13 +32149,7 @@ 1118141952,1118141967,CN 1118141968,1118142063,US 1118142064,1118142079,IN -1118142080,1118151423,US -1118151424,1118151431,ES -1118151432,1118151463,US -1118151464,1118151471,CR -1118151472,1118151631,US -1118151632,1118151647,MX -1118151648,1118152239,US +1118142080,1118152239,US 1118152240,1118152255,AW 1118152256,1118152271,PR 1118152272,1118152287,US @@ -32659,24 +32167,19 @@ 1118153552,1118153567,DE 1118153568,1118153679,US 1118153680,1118153695,VE -1118153696,1118153871,US -1118153872,1118153887,CO -1118153888,1118153919,US -1118153920,1118153935,PA -1118153936,1118153951,TT -1118153952,1118154063,US +1118153696,1118154063,US 1118154064,1118154079,MX 1118154080,1118154207,US 1118154208,1118154223,CL 1118154224,1118155999,US 1118156000,1118156015,GT -1118156016,1118158079,US -1118158080,1118158087,PA -1118158088,1118158319,US -1118158320,1118158323,SV -1118158324,1118158331,US -1118158332,1118158335,SV -1118158336,1118158847,US +1118156016,1118156543,US +1118156544,1118156559,UY +1118156560,1118156607,US +1118156608,1118156623,ES +1118156624,1118156703,US +1118156704,1118156719,DK +1118156720,1118158847,US 1118158848,1118167039,CA 1118167040,1118474239,US 1118474240,1118474535,CA @@ -32700,7 +32203,7 @@ 1118476832,1118476887,CA 1118476888,1118476895,US 1118476896,1118478335,CA -1118478336,1118511103,US +1118478336,1118515199,US 1118515200,1118519295,CA 1118519296,1118527487,US 1118527488,1118531583,CA @@ -32745,7 +32248,11 @@ 1118793968,1118793983,HT 1118793984,1118794127,US 1118794128,1118794143,NO -1118794144,1118795791,US +1118794144,1118794799,US +1118794800,1118794815,PR +1118794816,1118794959,US +1118794960,1118794975,JM +1118794976,1118795791,US 1118795792,1118795807,AG 1118795808,1118795895,US 1118795896,1118795903,CY @@ -32780,13 +32287,18 @@ 1118966000,1118966007,NG 1118966008,1118966015,A2 1118966016,1118966271,BR -1118966272,1118966311,SV -1118966312,1118966319,A2 +1118966272,1118966279,A2 +1118966280,1118966287,SV +1118966288,1118966295,A2 +1118966296,1118966303,SV +1118966304,1118966319,A2 1118966320,1118966327,SV 1118966328,1118966335,SR 1118966336,1118966351,SV 1118966352,1118966367,A2 -1118966368,1118966399,SV +1118966368,1118966375,SV +1118966376,1118966383,A2 +1118966384,1118966399,SV 1118966400,1118966407,A2 1118966408,1118966415,SV 1118966416,1118966423,NI @@ -32853,14 +32365,15 @@ 1118967800,1118967807,RW 1118967808,1118967839,A2 1118967840,1118967847,LB -1118967848,1118967903,A2 -1118967904,1118968015,SA +1118967848,1118967935,A2 +1118967936,1118968015,SA 1118968016,1118968039,A2 1118968040,1118968047,LB 1118968048,1118968063,A2 1118968064,1118968095,SA 1118968096,1118968111,A2 -1118968112,1118968127,LB +1118968112,1118968119,LB +1118968120,1118968127,A2 1118968128,1118968159,SA 1118968160,1118968175,LB 1118968176,1118968183,AE @@ -32873,19 +32386,9 @@ 1118968296,1118968303,A2 1118968304,1118968319,AE 1118968320,1118968575,SR -1118968576,1118968831,A2 -1118968832,1118968895,SA -1118968896,1118968927,A2 -1118968928,1118968975,SA -1118968976,1118968991,A2 -1118968992,1118969007,SA -1118969008,1118969023,A2 -1118969024,1118969055,SA -1118969056,1118969087,A2 -1118969088,1118969215,SA -1118969216,1118969279,A2 -1118969280,1118969343,SA -1118969344,1118969367,A2 +1118968576,1118968927,A2 +1118968928,1118968959,SA +1118968960,1118969367,A2 1118969368,1118969375,NI 1118969376,1118969599,A2 1118969600,1118969727,GY @@ -33141,7 +32644,9 @@ 1119167360,1119167367,CA 1119167368,1119167407,US 1119167408,1119167415,CA -1119167416,1119168023,US +1119167416,1119167495,US +1119167496,1119167503,CA +1119167504,1119168023,US 1119168024,1119168031,CA 1119168032,1119168351,US 1119168352,1119168359,AF @@ -33461,8 +32966,8 @@ 1120489984,1120490239,CA 1120490240,1120490751,US 1120490752,1120490783,GB -1120490784,1120491263,US -1120491264,1120491775,CA +1120490784,1120491519,US +1120491520,1120491775,CA 1120491776,1120492415,US 1120492416,1120492543,FR 1120492544,1120493055,CA @@ -33564,9 +33069,7 @@ 1120878592,1120886783,US 1120886784,1120886911,CA 1120886912,1120887039,NG -1120887040,1120888127,CA -1120888128,1120888159,US -1120888160,1120894975,CA +1120887040,1120894975,CA 1120894976,1120911359,US 1120911360,1120919551,CA 1120919552,1121005567,US @@ -33576,15 +33079,7 @@ 1121010000,1121038335,US 1121038336,1121042431,CA 1121042432,1121230847,US -1121230848,1121232119,CA -1121232120,1121232127,US -1121232128,1121233455,CA -1121233456,1121233463,US -1121233464,1121233471,DE -1121233472,1121233575,CA -1121233576,1121233583,US -1121233584,1121233599,DE -1121233600,1121239039,CA +1121230848,1121239039,CA 1121239040,1121247231,US 1121247232,1121247239,CA 1121247240,1121247255,AG @@ -33614,11 +33109,11 @@ 1121247712,1121247719,CW 1121247720,1121247743,CA 1121247744,1121247775,BZ -1121247776,1121247823,CA -1121247824,1121247855,AG +1121247776,1121247839,CA +1121247840,1121247855,AG 1121247856,1121247967,CA 1121247968,1121247999,CR -1121248000,1121248007,AG +1121248000,1121248007,CA 1121248008,1121248015,BZ 1121248016,1121248039,CA 1121248040,1121248047,AG @@ -33631,8 +33126,8 @@ 1121248096,1121248111,PH 1121248112,1121248127,CW 1121248128,1121248135,MT -1121248136,1121248159,CA -1121248160,1121248255,AG +1121248136,1121248191,CA +1121248192,1121248255,AG 1121248256,1121248287,CA 1121248288,1121248311,BZ 1121248312,1121248319,MT @@ -33700,8 +33195,7 @@ 1121251088,1121251095,CY 1121251096,1121251103,CA 1121251104,1121251119,BZ -1121251120,1121251135,CA -1121251136,1121251167,AG +1121251120,1121251167,CA 1121251168,1121251199,VG 1121251200,1121251271,CA 1121251272,1121251279,PH @@ -33738,8 +33232,7 @@ 1121251968,1121251983,MT 1121251984,1121251991,CA 1121251992,1121251999,AG -1121252000,1121252095,CA -1121252096,1121252359,AG +1121252000,1121252359,CA 1121252360,1121252367,ZA 1121252368,1121252375,GG 1121252376,1121252383,MT @@ -33761,7 +33254,11 @@ 1121654864,1121654879,IN 1121654880,1121654975,US 1121654976,1121654991,FR -1121654992,1121656063,US +1121654992,1121655439,US +1121655440,1121655447,IN +1121655448,1121655455,US +1121655456,1121655463,IN +1121655464,1121656063,US 1121656064,1121656095,NZ 1121656096,1121714975,US 1121714976,1121714991,AU @@ -33793,7 +33290,9 @@ 1122101376,1122101383,CO 1122101384,1122101471,US 1122101472,1122101479,VE -1122101480,1122126745,US +1122101480,1122103471,US +1122103472,1122103479,BE +1122103480,1122126745,US 1122126746,1122126753,CH 1122126754,1122140159,US 1122140160,1122148351,CA @@ -33838,9 +33337,7 @@ 1122495232,1122495999,PR 1122496000,1122497327,US 1122497328,1122497343,BR -1122497344,1122497375,US -1122497376,1122497391,PR -1122497392,1122497535,US +1122497344,1122497535,US 1122497536,1122498047,PR 1122498048,1122498559,US 1122498560,1122499071,PR @@ -33873,11 +33370,7 @@ 1123589632,1123589887,DE 1123589888,1123590143,US 1123590144,1123598335,VI -1123598336,1123598495,CA -1123598496,1123598559,US -1123598560,1123598943,CA -1123598944,1123598975,US -1123598976,1123599551,CA +1123598336,1123599551,CA 1123599552,1123599631,US 1123599632,1123599743,CA 1123599744,1123599775,US @@ -33936,8 +33429,8 @@ 1123670016,1123671039,US 1123671040,1123672063,PY 1123672064,1123694591,US -1123694592,1123694847,CA -1123694848,1123778559,US +1123694592,1123696639,CA +1123696640,1123778559,US 1123794944,1123795199,DO 1123795200,1123801087,US 1123801088,1123801343,RU @@ -34137,63 +33630,9 @@ 1125454280,1125454303,US 1125454304,1125454323,NO 1125454324,1125454327,SG -1125454328,1125454411,US -1125454412,1125454527,NO -1125454528,1125454591,US +1125454328,1125454591,US 1125454592,1125454847,A2 -1125454848,1125455359,US -1125455360,1125455363,CA -1125455364,1125455395,US -1125455396,1125455399,NO -1125455400,1125455423,US -1125455424,1125455427,ES -1125455428,1125455431,GB -1125455432,1125455435,US -1125455436,1125455439,ES -1125455440,1125455443,CA -1125455444,1125455447,US -1125455448,1125455451,NO -1125455452,1125455475,US -1125455476,1125455479,NO -1125455480,1125455491,US -1125455492,1125455495,GB -1125455496,1125455499,CA -1125455500,1125455507,US -1125455508,1125455515,ES -1125455516,1125455519,US -1125455520,1125455523,ES -1125455524,1125455527,US -1125455528,1125455531,GB -1125455532,1125455535,NO -1125455536,1125455543,US -1125455544,1125455547,ES -1125455548,1125455551,VG -1125455552,1125455555,ES -1125455556,1125455559,US -1125455560,1125455563,NZ -1125455564,1125455567,ES -1125455568,1125455571,US -1125455572,1125455575,NO -1125455576,1125455579,CW -1125455580,1125456131,US -1125456132,1125456135,NO -1125456136,1125456139,A2 -1125456140,1125456163,US -1125456164,1125456167,NO -1125456168,1125456175,US -1125456176,1125456179,NO -1125456180,1125456191,US -1125456192,1125456195,GB -1125456196,1125456199,NO -1125456200,1125456203,CW -1125456204,1125456207,US -1125456208,1125456211,SG -1125456212,1125456231,US -1125456232,1125456239,ES -1125456240,1125456247,GB -1125456248,1125456259,CW -1125456260,1125456263,ES -1125456264,1125474303,US +1125454848,1125474303,US 1125474304,1125478399,CA 1125478400,1125481215,US 1125481216,1125481727,CA @@ -34268,7 +33707,9 @@ 1125543888,1125543903,US 1125543904,1125543919,CA 1125543920,1125545983,US -1125548032,1125550079,CA +1125548032,1125548291,CA +1125548292,1125548351,US +1125548352,1125550079,CA 1125550080,1125550335,US 1125550336,1125552127,CA 1125552128,1125572607,US @@ -34368,9 +33809,7 @@ 1130536960,1130539007,GU 1130539008,1132582463,US 1132582464,1132582479,CA -1132582480,1132698119,US -1132698120,1132698127,CA -1132698128,1132713607,US +1132582480,1132713607,US 1132713608,1132713615,CA 1132713616,1132947431,US 1132947432,1132947439,CA @@ -34438,22 +33877,22 @@ 1137256192,1137256203,IT 1137256204,1137261119,US 1137261120,1137261183,IT -1137261184,1137278975,US +1137261184,1137272831,US +1137272832,1137273087,CA +1137273088,1137278975,US 1137278976,1137283071,CA 1137283072,1137287167,US 1137287168,1137295359,CA -1137295360,1137340927,US +1137295360,1137336255,US +1137336256,1137336263,PL +1137336264,1137340927,US 1137340928,1137340959,PL 1137340960,1137369087,US 1137369088,1137369167,CA 1137369168,1137369175,US 1137369176,1137369183,CA 1137369184,1137369223,US -1137369224,1137369359,CA -1137369360,1137369375,US -1137369376,1137369519,CA -1137369520,1137369535,US -1137369536,1137370111,CA +1137369224,1137370111,CA 1137370112,1137376255,US 1137376256,1137376335,CA 1137376336,1137376351,US @@ -34494,19 +33933,11 @@ 1137705384,1137705391,NL 1137705392,1137705447,CA 1137705448,1137705455,US -1137705456,1137705727,CA -1137705728,1137705735,US -1137705736,1137705767,CA -1137705768,1137705791,US -1137705792,1137705879,CA -1137705880,1137705887,US -1137705888,1137705903,CA -1137705904,1137705911,US -1137705912,1137705943,CA -1137705944,1137705951,US -1137705952,1137706399,CA -1137706400,1137706431,US -1137706432,1137707519,CA +1137705456,1137706239,CA +1137706240,1137706311,US +1137706312,1137706319,CA +1137706320,1137706495,US +1137706496,1137707519,CA 1137707520,1137707575,US 1137707576,1137707583,NL 1137707584,1137707623,CA @@ -34553,7 +33984,21 @@ 1137709904,1137709911,US 1137709912,1137709959,CA 1137709960,1137709967,NL -1137709968,1137710847,CA +1137709968,1137710087,CA +1137710088,1137710095,US +1137710096,1137710151,CA +1137710152,1137710159,US +1137710160,1137710175,CA +1137710176,1137710183,US +1137710184,1137710191,CA +1137710192,1137710199,NL +1137710200,1137710215,CA +1137710216,1137710231,US +1137710232,1137710239,NL +1137710240,1137710247,US +1137710248,1137710295,CA +1137710296,1137710311,US +1137710312,1137710847,CA 1137710848,1137710959,US 1137710960,1137710967,CA 1137710968,1137711135,US @@ -34639,21 +34084,13 @@ 1137713104,1137713111,CA 1137713112,1137713127,US 1137713128,1137713135,CA -1137713136,1137724495,US -1137724496,1137724511,CA -1137724512,1137724543,US -1137724544,1137724575,CA -1137724576,1137724607,US -1137724608,1137724623,CA -1137724624,1137724655,US -1137724656,1137724687,CA -1137724688,1137724703,US -1137724704,1137724719,CA -1137724720,1137724847,US +1137713136,1137724559,US +1137724560,1137724575,CA +1137724576,1137724671,US +1137724672,1137724687,CA +1137724688,1137724847,US 1137724848,1137724863,CA -1137724864,1137724911,US -1137724912,1137724927,CA -1137724928,1137726015,US +1137724864,1137726015,US 1137726016,1137726023,CL 1137726024,1137758207,US 1137758208,1137758463,GB @@ -34745,7 +34182,9 @@ 1138164368,1138164375,PH 1138164376,1138164399,FR 1138164400,1138164511,CA -1138164512,1138164543,FR +1138164512,1138164527,FR +1138164528,1138164535,CA +1138164536,1138164543,FR 1138164544,1138164583,CA 1138164584,1138164591,NZ 1138164592,1138164655,CA @@ -34813,13 +34252,17 @@ 1138196480,1138204671,CA 1138204672,1138212863,US 1138212864,1138216959,CA -1138216960,1138337167,US +1138216960,1138225479,US +1138225480,1138225487,CN +1138225488,1138271087,US +1138271088,1138271103,TN +1138271104,1138337167,US 1138337168,1138337183,GB 1138337184,1138337199,US 1138337200,1138337207,SG -1138337208,1138372607,US -1138372608,1138376703,AS -1138376704,1138419711,US +1138337208,1138373375,US +1138373376,1138373631,AS +1138373632,1138419711,US 1138419712,1138419967,DE 1138419968,1138499583,US 1138499584,1138503679,CA @@ -35110,13 +34553,13 @@ 1139167232,1139167743,US 1139167744,1139168895,PR 1139168896,1139169279,US -1139169280,1139170047,PR -1139170048,1139170303,US -1139170304,1139170559,PR -1139170560,1139170815,US -1139170816,1139171327,PR +1139169280,1139170303,PR +1139170304,1139171071,US +1139171072,1139171327,PR 1139171328,1139175423,GT -1139175424,1139179519,US +1139175424,1139175679,US +1139175680,1139175935,PR +1139175936,1139179519,US 1139179520,1139195903,CA 1139195904,1139216383,US 1139216384,1139220479,CA @@ -35147,9 +34590,7 @@ 1145259264,1145259327,IN 1145259328,1145260031,US 1145260032,1145260095,IN -1145260096,1145260623,US -1145260624,1145260631,IN -1145260632,1145261055,US +1145260096,1145261055,US 1145261056,1145261119,IN 1145261120,1145261311,US 1145261312,1145261375,IN @@ -35163,11 +34604,15 @@ 1145333192,1145333199,CN 1145333200,1145333215,US 1145333216,1145333223,CN -1145333224,1145333343,US -1145333344,1145333351,US -1145333352,1145333879,US -1145333880,1145333887,CN -1145333888,1145334023,US +1145333224,1145333319,US +1145333320,1145333327,US +1145333328,1145333343,CN +1145333344,1145333351,CN +1145333352,1145333359,CN +1145333360,1145333367,US +1145333368,1145333375,PA +1145333376,1145333503,BD +1145333504,1145334023,US 1145334024,1145334027,US 1145334028,1145334151,US 1145334152,1145334167,CN @@ -35192,12 +34637,12 @@ 1145413632,1145421823,US 1145421824,1145430015,CA 1145430016,1145475071,US -1145475072,1145476887,CA -1145476888,1145476895,US -1145476896,1145479167,CA +1145475072,1145479167,CA 1145479168,1145484031,US 1145484032,1145484063,VG -1145484064,1145503743,US +1145484064,1145485343,US +1145485344,1145485351,CA +1145485352,1145503743,US 1145503744,1145520127,CA 1145520128,1145552895,US 1145552896,1145556991,CA @@ -35272,7 +34717,9 @@ 1152084480,1152084991,IN 1152084992,1152116479,US 1152116480,1152116735,CA -1152116736,1152581631,US +1152116736,1152116991,US +1152116992,1152117247,CA +1152117248,1152581631,US 1152581632,1152614399,CA 1152614400,1152778239,US 1152778240,1152843775,CA @@ -35491,15 +34938,11 @@ 1158732885,1158736241,US 1158736242,1158736249,IN 1158736250,1158774783,US -1158774784,1158776947,CA -1158776948,1158776951,US -1158776952,1158784319,CA +1158774784,1158784319,CA 1158784320,1158784327,US 1158784328,1158784367,CA 1158784368,1158784375,US -1158784376,1158784703,CA -1158784704,1158784767,US -1158784768,1158791167,CA +1158784376,1158791167,CA 1158791168,1158794239,BM 1158794240,1158794495,US 1158794496,1158799359,BM @@ -35514,7 +34957,15 @@ 1158999672,1158999863,CA 1158999864,1158999871,US 1158999872,1159004159,CA -1159004160,1159117567,US +1159004160,1159102719,US +1159102720,1159102975,US +1159102976,1159112703,US +1159112704,1159113983,US +1159113984,1159115519,US +1159115520,1159115775,US +1159115776,1159117055,US +1159117056,1159117311,US +1159117312,1159117567,US 1159117568,1159117823,US 1159117824,1159213055,US 1159213056,1159217151,CA @@ -35565,7 +35016,9 @@ 1159264960,1159264975,BR 1159264976,1159269119,US 1159269120,1159269375,AR -1159269376,1159274495,US +1159269376,1159273215,US +1159273216,1159273343,CA +1159273344,1159274495,US 1159274496,1159274751,GB 1159274752,1159276799,US 1159276800,1159277055,A2 @@ -35579,9 +35032,9 @@ 1159300608,1159300863,SE 1159300864,1159318015,US 1159318016,1159318047,GB -1159318048,1159347199,US -1159347200,1159347455,AU -1159347456,1159348223,US +1159318048,1159343615,US +1159343616,1159343871,GB +1159343872,1159348223,US 1159348224,1159356415,CA 1159356416,1159421951,US 1159421952,1159430143,CA @@ -35672,9 +35125,11 @@ 1159656488,1159656495,BR 1159656496,1159657023,US 1159657024,1159657039,AU -1159657040,1159668479,US -1159668480,1159668735,CA -1159668736,1159673471,US +1159657040,1159659071,US +1159659072,1159659079,IN +1159659080,1159672319,US +1159672320,1159672831,US +1159672832,1159673471,US 1159673472,1159673503,CA 1159673504,1159676927,US 1159676928,1159677183,US @@ -35778,9 +35233,7 @@ 1160408320,1160408575,CA 1160408576,1160409599,US 1160409600,1160410111,CO -1160410112,1160410287,US -1160410288,1160410303,DO -1160410304,1160410447,US +1160410112,1160410447,US 1160410448,1160410463,UY 1160410464,1160410479,TT 1160410480,1160410495,US @@ -35838,14 +35291,8 @@ 1160496624,1160503295,US 1160503296,1160503871,A2 1160503872,1160503903,US -1160503904,1160504159,A2 -1160504160,1160504175,US -1160504176,1160504191,A2 -1160504192,1160504207,AU -1160504208,1160504287,A2 -1160504288,1160504303,US -1160504304,1160504319,A2 -1160504320,1160504383,US +1160503904,1160504063,A2 +1160504064,1160504383,US 1160504384,1160504511,A2 1160504512,1160504543,NP 1160504544,1160504575,AF @@ -35856,21 +35303,22 @@ 1160542208,1160542239,LB 1160542240,1160543327,US 1160543328,1160543359,MX -1160543360,1160547839,US +1160543360,1160544055,US +1160544056,1160544071,CA +1160544072,1160544135,US +1160544136,1160544143,LB +1160544144,1160547839,US 1160547840,1160548351,MX 1160548352,1160563199,US -1160563200,1160563711,MP +1160563200,1160563455,GU +1160563456,1160563711,MP 1160563712,1160609791,US 1160609792,1160610815,MX 1160610816,1160660417,US 1160660418,1160660418,US -1160660419,1160661639,US -1160661640,1160661647,GB -1160661648,1160662743,US +1160660419,1160662743,US 1160662744,1160662751,GB -1160662752,1160663679,US -1160663680,1160663711,HK -1160663712,1160665623,US +1160662752,1160665623,US 1160665624,1160665631,GB 1160665632,1160665807,US 1160665808,1160665815,GB @@ -35897,7 +35345,13 @@ 1160687272,1160687279,US 1160687280,1160687583,CA 1160687584,1160687591,US -1160687592,1160688555,CA +1160687592,1160688191,CA +1160688192,1160688199,US +1160688200,1160688255,CA +1160688256,1160688263,US +1160688264,1160688351,CA +1160688352,1160688359,US +1160688360,1160688555,CA 1160688556,1160688578,US 1160688579,1160688687,CA 1160688688,1160688695,US @@ -35927,7 +35381,11 @@ 1160689835,1160689846,US 1160689847,1160689861,CA 1160689862,1160689887,US -1160689888,1160690349,CA +1160689888,1160689943,CA +1160689944,1160689971,US +1160689972,1160690103,CA +1160690104,1160690175,US +1160690176,1160690349,CA 1160690350,1160690361,US 1160690362,1160690362,CA 1160690363,1160690381,US @@ -35986,11 +35444,7 @@ 1160941536,1160941567,CA 1160941568,1160945663,US 1160945664,1160953855,CA -1160953856,1160956431,US -1160956432,1160956440,BY -1160956441,1160957738,US -1160957739,1160957752,CA -1160957753,1161019391,US +1160953856,1161019391,US 1161019392,1161035775,CA 1161035776,1161052671,US 1161052672,1161052927,GB @@ -36238,9 +35692,7 @@ 1161631480,1161631487,GB 1161631488,1161631615,US 1161631616,1161631623,IN -1161631624,1161631743,US -1161631744,1161631751,PL -1161631752,1161632631,US +1161631624,1161632631,US 1161632632,1161632639,GB 1161632640,1161632927,US 1161632928,1161632943,PL @@ -36312,9 +35764,7 @@ 1161637680,1161637695,AR 1161637696,1161637775,US 1161637776,1161637783,GB -1161637784,1161639039,US -1161639040,1161639047,CA -1161639048,1161639119,US +1161637784,1161639119,US 1161639120,1161639127,DK 1161639128,1161639511,US 1161639512,1161639519,GB @@ -36384,8 +35834,10 @@ 1161651096,1161651103,HR 1161651104,1161651135,GB 1161651136,1161651143,BG -1161651144,1161651967,US -1161651968,1161651999,AF +1161651144,1161651775,US +1161651776,1161651807,AR +1161651808,1161651935,US +1161651936,1161651999,AF 1161652000,1161652095,US 1161652096,1161652103,CY 1161652104,1161652135,US @@ -36480,7 +35932,9 @@ 1161926400,1161926655,EC 1161926656,1162018815,US 1162018816,1162022911,CA -1162022912,1162027007,US +1162022912,1162023607,US +1162023608,1162023615,FI +1162023616,1162027007,US 1162027008,1162031103,ZA 1162031104,1162032255,US 1162032256,1162032271,CA @@ -36501,9 +35955,7 @@ 1162204971,1162204972,US 1162204973,1162215423,US 1162215424,1162280959,CA -1162280960,1162295343,US -1162295344,1162295351,GB -1162295352,1162296407,US +1162280960,1162296407,US 1162296408,1162296415,CA 1162296416,1162297343,US 1162297344,1162305535,CA @@ -36769,7 +36221,9 @@ 1163535872,1163536383,CA 1163536384,1163537663,US 1163537664,1163539455,CA -1163539456,1163540511,US +1163539456,1163540351,US +1163540352,1163540479,CA +1163540480,1163540511,US 1163540512,1163540607,CA 1163540608,1163540735,US 1163540736,1163541503,CA @@ -36807,8 +36261,10 @@ 1163545216,1163545295,CA 1163545296,1163545303,US 1163545304,1163545311,CA -1163545312,1163545567,US -1163545568,1163545599,CA +1163545312,1163545343,US +1163545344,1163545471,CA +1163545472,1163545591,US +1163545592,1163545599,CA 1163545600,1163545615,US 1163545616,1163545631,CA 1163545632,1163545663,GB @@ -36939,7 +36395,9 @@ 1163571984,1163571999,US 1163572000,1163572175,CA 1163572176,1163572183,US -1163572184,1163573247,CA +1163572184,1163572687,CA +1163572688,1163572703,US +1163572704,1163573247,CA 1163573248,1163573439,US 1163573440,1163573503,IN 1163573504,1163575039,US @@ -37017,7 +36475,11 @@ 1163588864,1163589631,CA 1163589632,1163759071,US 1163759072,1163759087,AE -1163759088,1167319359,US +1163759088,1167319111,US +1167319112,1167319119,ZA +1167319120,1167319255,US +1167319256,1167319263,CA +1167319264,1167319359,US 1167319360,1167319367,CA 1167319368,1167320071,US 1167320072,1167320079,CA @@ -37076,7 +36538,9 @@ 1168515072,1168535551,US 1168535552,1168539647,CA 1168539648,1168670719,US -1168670720,1168687103,CA +1168670720,1168674815,CA +1168674816,1168675071,US +1168675072,1168687103,CA 1168687104,1168727551,US 1168727552,1168727807,ES 1168727808,1168859135,US @@ -37140,8 +36604,8 @@ 1168960888,1168960895,US 1168960896,1168961983,CA 1168961984,1168961991,US -1168961992,1168962007,CA -1168962008,1168962015,US +1168961992,1168961999,CA +1168962000,1168962015,US 1168962016,1168962023,CA 1168962024,1168962303,US 1168962304,1168962559,CA @@ -37192,11 +36656,7 @@ 1170190336,1170190847,GB 1170190848,1170375167,US 1170375168,1170375679,US -1170375680,1170456959,US -1170456960,1170456975,CR -1170456976,1170456991,US -1170456992,1170457007,PR -1170457008,1170457599,US +1170375680,1170457599,US 1170457600,1170457663,BR 1170457664,1170461055,US 1170461056,1170461695,CO @@ -37235,7 +36695,9 @@ 1175977984,1176502271,CA 1176502272,1176511831,US 1176511832,1176511839,CA -1176511840,1176512703,US +1176511840,1176512175,US +1176512176,1176512183,CA +1176512184,1176512703,US 1176512704,1176512711,ZA 1176512712,1176513479,US 1176513480,1176513487,CA @@ -37415,16 +36877,16 @@ 1176928256,1176997375,US 1176997376,1176997407,GB 1176997408,1177008127,US -1177008128,1177009151,A2 -1177009152,1177022975,US +1177008128,1177010175,A2 +1177010176,1177022975,US 1177022976,1177023231,GB 1177023232,1177030655,US 1177030656,1177033727,AG 1177033728,1177059327,US 1177059328,1177061375,CA 1177061376,1177062143,US -1177062144,1177075455,CA -1177075456,1177164255,US +1177062144,1177075711,CA +1177075712,1177164255,US 1177164256,1177164263,CA 1177164264,1177164415,US 1177164416,1177164479,CA @@ -37447,9 +36909,7 @@ 1177187672,1177210983,US 1177210984,1177211007,FR 1177211008,1177354239,US -1177354240,1177355263,PR -1177355264,1177355391,US -1177355392,1177419775,PR +1177354240,1177419775,PR 1177419776,1177505401,US 1177505402,1177505402,BB 1177505403,1177550847,US @@ -37486,7 +36946,9 @@ 1192468480,1192476671,CA 1192476672,1192488959,US 1192488960,1192493055,CA -1192493056,1199718695,US +1192493056,1193940223,US +1193940224,1193940479,US +1193940480,1199718695,US 1199718696,1199718703,A2 1199718704,1199722495,US 1199722496,1199722503,A2 @@ -37496,7 +36958,13 @@ 1208008704,1208016895,CA 1208016896,1208020991,US 1208020992,1208025087,CA -1208025088,1208050943,US +1208025088,1208044799,US +1208044800,1208044831,CA +1208044832,1208044951,US +1208044952,1208044959,CA +1208044960,1208045007,US +1208045008,1208045055,CA +1208045056,1208050943,US 1208050944,1208051199,CA 1208051200,1208056111,US 1208056112,1208056127,CN @@ -37776,9 +37244,7 @@ 1208954880,1208957695,CA 1208957696,1208957823,US 1208957824,1208957855,CA -1208957856,1208957919,US -1208957920,1208957935,CA -1208957936,1208957951,US +1208957856,1208957951,US 1208957952,1208958975,CA 1208958976,1208975359,US 1208975360,1208980503,CA @@ -37790,9 +37256,9 @@ 1209002352,1209002367,A2 1209002368,1209002495,US 1209002496,1209002687,A2 -1209002688,1209003519,US -1209003520,1209004031,A2 -1209004032,1209174231,US +1209002688,1209003007,US +1209003008,1209003519,A2 +1209003520,1209174231,US 1209174232,1209174239,MY 1209174240,1209189379,US 1209189380,1209189395,MX @@ -37883,9 +37349,7 @@ 1209867200,1209867231,IN 1209867232,1209867263,US 1209867264,1209867519,CA -1209867520,1209892607,US -1209892608,1209892863,CA -1209892864,1209893503,US +1209867520,1209893503,US 1209893504,1209893519,MX 1209893520,1209904959,US 1209904960,1209904975,GB @@ -37896,7 +37360,9 @@ 1209925632,1210253311,US 1210253312,1210254703,CA 1210254704,1210254719,NZ -1210254720,1210261503,CA +1210254720,1210258431,CA +1210258432,1210258687,US +1210258688,1210261503,CA 1210261504,1210381759,US 1210381760,1210381823,RU 1210381824,1210418175,US @@ -37913,9 +37379,7 @@ 1210866436,1210866443,CL 1210866444,1210925055,US 1210925056,1210941439,CA -1210941440,1211032223,US -1211032224,1211032255,VE -1211032256,1211033087,US +1210941440,1211033087,US 1211033088,1211033599,CO 1211033600,1211035647,US 1211035648,1211035663,PR @@ -37943,9 +37407,7 @@ 1211039024,1211039087,US 1211039088,1211039103,RU 1211039104,1211236351,US -1211236352,1211255551,PR -1211255552,1211255807,US -1211255808,1211269119,PR +1211236352,1211269119,PR 1211269120,1211304063,US 1211304064,1211304159,CA 1211304160,1211304207,US @@ -38053,15 +37515,9 @@ 1212191368,1212191368,US 1212191369,1216872447,US 1216872448,1217396735,CA -1217396736,1218674943,US -1218674944,1218675199,IN -1218675200,1218682879,US -1218682880,1218691071,IN -1218691072,1218693119,US -1218693120,1218696191,IN -1218696192,1218697215,US -1218697216,1218697471,IN -1218697472,1218706431,US +1217396736,1218682879,US +1218682880,1218699263,IN +1218699264,1218706431,US 1218706432,1218706687,CN 1218706688,1218731807,US 1218731808,1218731815,A2 @@ -38140,9 +37596,8 @@ 1224470528,1224473599,NL 1224473600,1224474623,US 1224474624,1224475647,GT -1224475648,1224475903,PR -1224475904,1224476671,US -1224476672,1224478719,CW +1224475648,1224477695,US +1224477696,1224478719,CW 1224478720,1224480767,US 1224480768,1224484863,JM 1224484864,1224493055,GT @@ -38201,9 +37656,7 @@ 1245665746,1245665747,US 1245665748,1246864899,US 1246864900,1246864958,EG -1246864959,1246865663,US -1246865664,1246865919,GB -1246865920,1246874127,US +1246864959,1246874127,US 1246874128,1246874216,GB 1246874217,1246874368,US 1246874369,1246874496,GB @@ -38213,9 +37666,11 @@ 1246875510,1246875520,NL 1246875521,1246887935,US 1246887936,1246888191,PL -1246888192,1246890463,US -1246890464,1246890464,US -1246890465,1246902783,US +1246888192,1246890432,US +1246890433,1246890463,CA +1246890464,1246890464,CA +1246890465,1246890496,CA +1246890497,1246902783,US 1246902784,1246903039,NL 1246903040,1246937087,US 1246937088,1246945279,CA @@ -38322,7 +37777,9 @@ 1248864256,1248866303,CA 1248866304,1248885759,US 1248885760,1248886783,CA -1248886784,1248899071,US +1248886784,1248897263,US +1248897264,1248897271,FR +1248897272,1248899071,US 1248899072,1248900095,CA 1248900096,1248902143,US 1248902144,1248903167,CA @@ -38408,7 +37865,13 @@ 1249101824,1249102847,PR 1249102848,1249103103,US 1249103104,1249103871,CA -1249103872,1249106431,US +1249103872,1249105119,US +1249105120,1249105127,AR +1249105128,1249105279,US +1249105280,1249105295,CA +1249105296,1249105367,US +1249105368,1249105375,ES +1249105376,1249106431,US 1249106432,1249106687,DE 1249106688,1249106943,US 1249106944,1249107967,CA @@ -38586,16 +38049,14 @@ 1249715968,1249716735,US 1249716736,1249716991,DE 1249716992,1249720319,US -1249720320,1249720352,AU -1249720353,1249720353,JP -1249720354,1249720575,AU +1249720320,1249720371,AU +1249720372,1249720372,SG +1249720373,1249720575,AU 1249720576,1249720599,GB 1249720600,1249720607,IT 1249720608,1249720623,CH -1249720624,1249720703,GB -1249720704,1249720751,US -1249720752,1249720767,GB -1249720768,1249721343,US +1249720624,1249720831,GB +1249720832,1249721343,US 1249721344,1249721351,AT 1249721352,1249721359,BE 1249721360,1249721367,CH @@ -38657,7 +38118,9 @@ 1249736960,1249737471,EU 1249737472,1249744895,US 1249744896,1249745151,TW -1249745152,1249773023,US +1249745152,1249754390,US +1249754391,1249754391,DE +1249754392,1249773023,US 1249773024,1249773055,CA 1249773056,1249796095,US 1249796096,1249804287,CA @@ -38715,19 +38178,15 @@ 1254704904,1254704911,PH 1254704912,1254713359,US 1254713360,1254713407,CA -1254713408,1254738239,US -1254738240,1254738255,CA -1254738256,1254738391,US -1254738392,1254738399,IE -1254738400,1254752191,US +1254713408,1254752191,US 1254752192,1254752207,CH 1254752208,1254924687,US 1254924688,1254924703,RO 1254924704,1254978751,US 1254978752,1254978767,LB -1254978768,1254993919,US -1254993920,1254994175,CA -1254994176,1255002111,US +1254978768,1254989823,US +1254989824,1254998015,CA +1254998016,1255002111,US 1255002112,1255006207,CA 1255006208,1255007487,US 1255007488,1255007711,CA @@ -38817,7 +38276,9 @@ 1255792128,1255792383,IL 1255792384,1255792767,US 1255792768,1255792895,IL -1255792896,1255972863,US +1255792896,1255907071,US +1255907072,1255907327,PR +1255907328,1255972863,US 1255972864,1255981055,CA 1255981056,1256001535,US 1256001536,1256005631,CA @@ -39377,7 +38838,15 @@ 1279956060,1279956063,MX 1279956064,1279956071,US 1279956072,1279956079,CA -1279956080,1279957431,US +1279956080,1279956239,US +1279956240,1279956255,CA +1279956256,1279956311,US +1279956312,1279956351,CA +1279956352,1279956455,US +1279956456,1279956463,PA +1279956464,1279957375,US +1279957376,1279957383,IN +1279957384,1279957431,US 1279957432,1279957439,IN 1279957440,1279957631,US 1279957632,1279957651,IN @@ -39469,8 +38938,18 @@ 1279977472,1279977727,US 1279977728,1279978111,CA 1279978112,1279978143,US -1279978144,1279978495,CA -1279978496,1279979559,US +1279978144,1279978175,CA +1279978176,1279978207,US +1279978208,1279978271,CA +1279978272,1279978303,US +1279978304,1279978367,CA +1279978368,1279978495,VG +1279978496,1279978623,US +1279978624,1279978687,AE +1279978688,1279978692,IN +1279978693,1279978693,US +1279978694,1279978702,IN +1279978703,1279979559,US 1279979560,1279979575,CA 1279979576,1279979583,US 1279979584,1279979647,CA @@ -39577,15 +39056,7 @@ 1280048096,1280048103,US 1280048104,1280048119,CA 1280048120,1280048127,US -1280048128,1280048399,CA -1280048400,1280048407,US -1280048408,1280048591,CA -1280048592,1280048599,US -1280048600,1280048607,CA -1280048608,1280048623,US -1280048624,1280048631,NL -1280048632,1280048639,US -1280048640,1280048735,CA +1280048128,1280048735,CA 1280048736,1280048743,US 1280048744,1280048895,CA 1280048896,1280048903,US @@ -39623,7 +39094,9 @@ 1286389760,1286406143,US 1286406144,1287611402,US 1287611403,1287611403,US -1287611404,1287877503,US +1287611404,1287612122,US +1287612123,1287612136,SE +1287612137,1287877503,US 1287877504,1287877567,UM 1287877568,1290252799,US 1290252800,1290252863,GB @@ -39765,7 +39238,8 @@ 1296251104,1296251135,ES 1296251136,1296251167,GB 1296251168,1296251199,US -1296251200,1296251295,DE +1296251200,1296251231,FR +1296251232,1296251295,DE 1296251296,1296251327,BE 1296251328,1296251359,IE 1296251360,1296251391,DE @@ -39803,7 +39277,7 @@ 1296252392,1296252395,US 1296252396,1296252399,DE 1296252400,1296252431,IE -1296252432,1296252439,FR +1296252432,1296252439,NL 1296252440,1296252447,RU 1296252448,1296252479,US 1296252480,1296252671,FR @@ -39859,7 +39333,14 @@ 1296264056,1296264063,FR 1296264064,1296264151,GB 1296264152,1296264191,FR -1296264192,1296264543,US +1296264192,1296264223,US +1296264224,1296264239,IE +1296264240,1296264271,FR +1296264272,1296264303,US +1296264304,1296264319,CA +1296264320,1296264383,US +1296264384,1296264447,FR +1296264448,1296264543,US 1296264544,1296264639,CA 1296264640,1296264671,US 1296264672,1296264959,FR @@ -39876,8 +39357,7 @@ 1296268288,1296268799,US 1296268800,1296269055,FR 1296269056,1296269311,US -1296269312,1296285695,TR -1296285696,1296302079,BY +1296269312,1296302079,BY 1296302080,1296334847,GB 1296334848,1296367615,DK 1296367616,1296400383,GR @@ -40025,7 +39505,9 @@ 1296728064,1296730111,SE 1296730112,1296732159,DE 1296732160,1296734207,IT -1296734208,1296736255,FR +1296734208,1296735487,FR +1296735488,1296735743,DE +1296735744,1296736255,FR 1296736256,1296738303,NO 1296738304,1296738815,CH 1296738816,1296739327,FI @@ -40092,7 +39574,9 @@ 1297072640,1297072703,CY 1297072704,1297072863,PL 1297072864,1297072871,IT -1297072872,1297088511,PL +1297072872,1297079319,PL +1297079320,1297079327,CY +1297079328,1297088511,PL 1297088512,1297121279,AT 1297121280,1297154047,SE 1297154048,1297154815,RO @@ -40126,9 +39610,9 @@ 1297584128,1297588223,UA 1297588224,1297590271,NL 1297590272,1297592319,RU -1297592320,1297593087,GB -1297593088,1297593343,IM -1297593344,1297594367,GB +1297592320,1297592831,IM +1297592832,1297593087,GB +1297593088,1297594367,IM 1297594368,1297596415,DE 1297596416,1297598463,UA 1297598464,1297602559,RU @@ -40303,9 +39787,7 @@ 1299024560,1299024575,DE 1299024576,1299024863,CH 1299024864,1299024871,DE -1299024872,1299026111,CH -1299026112,1299026127,ES -1299026128,1299026251,CH +1299024872,1299026251,CH 1299026252,1299026263,PT 1299026264,1299038207,CH 1299038208,1299054591,FI @@ -40368,7 +39850,9 @@ 1306386432,1306394623,DK 1306394624,1306402815,ME 1306402816,1306411007,RU -1306411008,1306415167,NL +1306411008,1306411151,NL +1306411152,1306411167,IT +1306411168,1306415167,NL 1306415168,1306415199,IT 1306415200,1306419199,NL 1306419200,1306427391,RU @@ -40533,14 +40017,7 @@ 1307756288,1307756431,GB 1307756432,1307756447,US 1307756448,1307756543,GB -1307756544,1307757055,FR -1307757056,1307757063,GB -1307757064,1307757071,US -1307757072,1307757095,GB -1307757096,1307757099,US -1307757100,1307757183,GB -1307757184,1307757279,US -1307757280,1307757311,FR +1307756544,1307757311,FR 1307757312,1307757567,GB 1307757568,1307757599,US 1307757600,1307758591,GB @@ -40620,9 +40097,9 @@ 1307901664,1307901671,DE 1307901672,1307901951,AT 1307901952,1307906047,JO -1307906048,1307907263,CH -1307907264,1307907327,IM -1307907328,1307907459,CH +1307906048,1307906655,CH +1307906656,1307906671,DE +1307906672,1307907459,CH 1307907460,1307907463,DE 1307907464,1307907719,CH 1307907720,1307907727,IT @@ -40692,7 +40169,7 @@ 1308024832,1308033023,RU 1308033024,1308033279,NL 1308033280,1308033535,FR -1308033536,1308033791,DE +1308033536,1308033791,GB 1308033792,1308034047,IT 1308034048,1308034559,GB 1308034560,1308034815,CZ @@ -40733,7 +40210,9 @@ 1308360704,1308622847,PL 1308622848,1308884991,HR 1308884992,1309147135,IT -1309147136,1309409279,PL +1309147136,1309288575,PL +1309288576,1309288703,DE +1309288704,1309409279,PL 1309409280,1309671423,IT 1309671424,1309933567,IE 1309933568,1310195711,BE @@ -40925,7 +40404,9 @@ 1310248704,1310248959,CH 1310248960,1310249215,IM 1310249216,1310249279,GB -1310249280,1310249775,IM +1310249280,1310249743,IM +1310249744,1310249751,GB +1310249752,1310249775,IM 1310249776,1310249799,GG 1310249800,1310250111,IM 1310250112,1310250143,GG @@ -41029,9 +40510,7 @@ 1311272960,1311275007,GB 1311275008,1311276671,FR 1311276672,1311276703,RU -1311276704,1311276991,FR -1311276992,1311277023,RU -1311277024,1311277055,FR +1311276704,1311277055,FR 1311277056,1311279103,IT 1311279104,1311280127,BG 1311280128,1311280383,MK @@ -41051,8 +40530,8 @@ 1311309824,1311310335,GB 1311310336,1311310847,GG 1311310848,1311311103,GB -1311311104,1311311359,GG -1311311360,1311311871,GB +1311311104,1311311231,GG +1311311232,1311311871,GB 1311311872,1311315967,CZ 1311315968,1311317247,PL 1311317248,1311317503,A2 @@ -41131,9 +40610,9 @@ 1311757464,1311757471,ES 1311757472,1312292863,DE 1312292864,1312817151,LT -1312817152,1313192191,SE -1313192192,1313192447,DK -1313192448,1313865727,SE +1312817152,1313386495,SE +1313386496,1313386623,DK +1313386624,1313865727,SE 1313865728,1313931263,CZ 1313931264,1313996799,RU 1313996800,1314062335,SE @@ -41176,14 +40655,12 @@ 1315749888,1315753983,RU 1315753984,1315758079,KZ 1315758080,1315759103,RE -1315759104,1315759871,FR +1315759104,1315759359,FR +1315759360,1315759615,RE +1315759616,1315759871,FR 1315759872,1315760383,RE -1315760384,1315760895,FR -1315760896,1315761023,RE -1315761024,1315761407,FR -1315761408,1315761663,RE -1315761664,1315761919,FR -1315761920,1315762175,RE +1315760384,1315761151,FR +1315761152,1315762175,RE 1315762176,1315766271,BG 1315766272,1315769087,NL 1315769088,1315769343,EU @@ -41404,9 +40881,9 @@ 1317625856,1317627903,DE 1317627904,1317629951,RU 1317629952,1317634047,GB -1317634048,1317637119,IE -1317637120,1317637375,GB -1317637376,1317641471,IE +1317634048,1317640703,IE +1317640704,1317641215,GB +1317641216,1317641471,IE 1317641472,1317641727,GB 1317641728,1317642815,IE 1317642816,1317642847,GB @@ -41496,9 +40973,7 @@ 1317668144,1317668151,AO 1317668152,1317668159,GB 1317668160,1317668167,NG -1317668168,1317668183,GB -1317668184,1317668191,CI -1317668192,1317668207,GB +1317668168,1317668207,GB 1317668208,1317668215,LR 1317668216,1317668223,GB 1317668224,1317668231,NG @@ -41900,9 +41375,7 @@ 1317677312,1317677319,CD 1317677320,1317677327,AO 1317677328,1317677335,CD -1317677336,1317677343,GB -1317677344,1317677345,NG -1317677346,1317677375,GB +1317677336,1317677375,GB 1317677376,1317677391,NG 1317677392,1317677407,GB 1317677408,1317677415,UG @@ -41971,7 +41444,7 @@ 1317678360,1317678367,NG 1317678368,1317678375,CD 1317678376,1317678383,GB -1317678384,1317678391,CD +1317678384,1317678391,NE 1317678392,1317678399,GB 1317678400,1317678415,NG 1317678416,1317678447,GB @@ -41980,7 +41453,8 @@ 1317678464,1317678471,NG 1317678472,1317678479,ML 1317678480,1317678487,CD -1317678488,1317678527,GB +1317678488,1317678519,GB +1317678520,1317678527,GN 1317678528,1317678535,GA 1317678536,1317678543,NG 1317678544,1317678551,GB @@ -41998,7 +41472,7 @@ 1317678880,1317678943,GB 1317678944,1317678951,NG 1317678952,1317678991,GB -1317678992,1317678999,NG +1317678992,1317678999,CF 1317679000,1317679023,GB 1317679024,1317679031,TZ 1317679032,1317679063,GB @@ -42019,14 +41493,17 @@ 1317679360,1317679375,GQ 1317679376,1317679383,NG 1317679384,1317679391,GB -1317679392,1317679407,NG +1317679392,1317679399,NG +1317679400,1317679407,CG 1317679408,1317679415,GB 1317679416,1317679423,NG 1317679424,1317679431,NE 1317679432,1317679447,GB 1317679448,1317679455,CD 1317679456,1317679463,BJ -1317679464,1317679495,GB +1317679464,1317679471,GB +1317679472,1317679479,FR +1317679480,1317679495,GB 1317679496,1317679503,CD 1317679504,1317679511,NG 1317679512,1317679519,NE @@ -42073,9 +41550,13 @@ 1317679968,1317679975,CD 1317679976,1317679991,GB 1317679992,1317679999,CD -1317680000,1317680063,GB +1317680000,1317680015,GB +1317680016,1317680023,NG +1317680024,1317680063,GB 1317680064,1317680071,AO -1317680072,1317680175,GB +1317680072,1317680079,GB +1317680080,1317680087,NG +1317680088,1317680175,GB 1317680176,1317680183,GQ 1317680184,1317680199,GB 1317680200,1317680207,SN @@ -42088,7 +41569,9 @@ 1317680312,1317680383,GB 1317680384,1317680391,NE 1317680392,1317680399,CI -1317680400,1317680527,GB +1317680400,1317680495,GB +1317680496,1317680503,CI +1317680504,1317680527,GB 1317680528,1317680535,CD 1317680536,1317680575,GB 1317680576,1317680583,NG @@ -42115,7 +41598,7 @@ 1317680824,1317680831,CD 1317680832,1317680839,ML 1317680840,1317680847,BF -1317680848,1317680855,GB +1317680848,1317680855,GA 1317680856,1317680863,GQ 1317680864,1317681159,GB 1317681160,1317681167,NG @@ -42281,8 +41764,8 @@ 1318004992,1318005503,DE 1318005504,1318005759,NL 1318005760,1318006271,DE -1318006272,1318006783,NL -1318006784,1318007999,DE +1318006272,1318007039,NL +1318007040,1318007999,DE 1318008000,1318008031,NL 1318008032,1318009423,DE 1318009424,1318009471,NL @@ -42341,25 +41824,22 @@ 1318813696,1318821887,FR 1318821888,1318838271,RU 1318838272,1318839039,GB -1318839040,1318840319,IE -1318840320,1318840959,GB -1318840960,1318841078,IE +1318839040,1318839551,IE +1318839552,1318840319,GB +1318840320,1318841078,IE 1318841079,1318841079,GB 1318841080,1318841087,IE -1318841088,1318841471,GB -1318841472,1318841855,IE -1318841856,1318842111,GB -1318842112,1318842367,IE -1318842368,1318842623,GB -1318842624,1318842879,IE -1318842880,1318846463,GB +1318841088,1318841855,GB +1318841856,1318842111,IE +1318842112,1318846463,GB 1318846464,1318854655,NO 1318854656,1318862847,CZ 1318862848,1318871039,GB 1318871040,1318879231,DK 1318879232,1318887423,CZ 1318887424,1318895615,PL -1318895616,1318897663,SE +1318895616,1318896639,DK +1318896640,1318897663,SE 1318897664,1318903807,DK 1318903808,1318911999,RU 1318912000,1318920191,MK @@ -42432,7 +41912,8 @@ 1331836928,1331838975,FR 1331838976,1331841023,ES 1331841024,1331843071,CZ -1331843072,1331845119,GB +1331843072,1331844863,GB +1331844864,1331845119,FR 1331845120,1331847167,RU 1331847168,1331849215,FR 1331849216,1331851263,BG @@ -42494,8 +41975,7 @@ 1331937728,1331938111,GB 1331938112,1331938127,AE 1331938128,1331938135,SA -1331938136,1331938143,AE -1331938144,1331938151,GB +1331938136,1331938151,GB 1331938152,1331938159,PL 1331938160,1331938167,GB 1331938168,1331938175,KW @@ -42510,7 +41990,24 @@ 1331938384,1331938399,IE 1331938400,1331938431,AE 1331938432,1331938815,GB -1331938816,1331939071,NG +1331938816,1331938823,NG +1331938824,1331938831,US +1331938832,1331938839,NG +1331938840,1331938847,IE +1331938848,1331938871,GB +1331938872,1331938895,NG +1331938896,1331938911,GB +1331938912,1331938927,NG +1331938928,1331938935,RU +1331938936,1331938943,NG +1331938944,1331938967,US +1331938968,1331938983,GB +1331938984,1331938999,NG +1331939000,1331939007,QA +1331939008,1331939023,GB +1331939024,1331939031,NG +1331939032,1331939039,GB +1331939040,1331939071,CH 1331939072,1331939327,GB 1331939328,1331939871,BE 1331939872,1331939879,LU @@ -42542,9 +42039,7 @@ 1332215808,1332346879,RU 1332346880,1332412415,AL 1332412416,1332477951,GR -1332477952,1332489215,ES -1332489216,1332489727,US -1332489728,1332609023,ES +1332477952,1332609023,ES 1332609024,1332613119,PL 1332613120,1332617215,UA 1332617216,1332621311,CZ @@ -42555,7 +42050,8 @@ 1332637696,1332641791,BG 1332641792,1332645887,UA 1332645888,1332649983,RS -1332649984,1332658175,UA +1332649984,1332654079,UA +1332654080,1332658175,RU 1332658176,1332662271,PL 1332662272,1332670463,UA 1332670464,1332740095,RU @@ -42624,9 +42120,17 @@ 1334345728,1334378495,RU 1334378496,1334411263,IT 1334411264,1334444031,RU -1334444032,1334478847,SE +1334444032,1334477055,SE +1334477056,1334477311,DK +1334477312,1334478079,SE +1334478080,1334478335,DK +1334478336,1334478847,SE 1334478848,1334480895,DK -1334480896,1334484991,SE +1334480896,1334482943,SE +1334482944,1334483071,DK +1334483072,1334483199,SE +1334483200,1334483327,DK +1334483328,1334484991,SE 1334484992,1334489087,DK 1334489088,1334501375,SE 1334501376,1334509567,DK @@ -42664,10 +42168,9 @@ 1334620160,1334624255,DE 1334624256,1334625535,GB 1334625536,1334625791,AP -1334625792,1334626303,AU -1334626304,1334627839,GB -1334627840,1334628095,NO -1334628096,1334628351,GB +1334625792,1334626047,GB +1334626048,1334626303,AU +1334626304,1334628351,GB 1334628352,1334632447,IE 1334632448,1334636543,KZ 1334636544,1334640639,RU @@ -42688,22 +42191,33 @@ 1334649376,1334651647,GB 1334651648,1334651903,FR 1334651904,1334652159,DE -1334652160,1334652863,GB -1334652864,1334652895,FR -1334652896,1334652927,GB +1334652160,1334652543,GB +1334652544,1334652559,NL +1334652560,1334652927,GB 1334652928,1334661119,RU 1334661120,1334665215,CH 1334665216,1334669311,NO 1334669312,1334673407,MK 1334673408,1334677503,GB 1334677504,1334681599,FI -1334681600,1334682367,GB +1334681600,1334681855,PL +1334681856,1334682111,GB +1334682112,1334682367,IE 1334682368,1334682623,FR -1334682624,1334682879,GB +1334682624,1334682879,NO 1334682880,1334683135,DK -1334683136,1334683391,GB +1334683136,1334683391,CZ 1334683392,1334683647,CH -1334683648,1334685695,GB +1334683648,1334683903,GB +1334683904,1334684031,DE +1334684032,1334684159,NL +1334684160,1334684415,SE +1334684416,1334684479,GB +1334684480,1334684511,CH +1334684512,1334684671,GB +1334684672,1334684927,FI +1334684928,1334685183,NL +1334685184,1334685695,DE 1334685696,1334689791,IT 1334689792,1334693887,FR 1334693888,1334702079,RU @@ -42718,7 +42232,15 @@ 1334725632,1334726143,SE 1334726144,1334726655,LU 1334726656,1334729983,RU -1334729984,1334730431,KZ +1334729984,1334730159,KZ +1334730160,1334730175,RU +1334730176,1334730199,KZ +1334730200,1334730207,RU +1334730208,1334730215,KZ +1334730216,1334730223,RU +1334730224,1334730235,KZ +1334730236,1334730239,RU +1334730240,1334730431,KZ 1334730432,1334730439,RU 1334730440,1334730443,KZ 1334730444,1334730447,RU @@ -42852,7 +42374,11 @@ 1336811520,1336827903,RU 1336827904,1336836095,AT 1336836096,1336837119,BE -1336837120,1336837375,NL +1336837120,1336837183,NL +1336837184,1336837191,FR +1336837192,1336837199,NL +1336837200,1336837207,GB +1336837208,1336837375,NL 1336837376,1336838143,BE 1336838144,1336842239,DE 1336842240,1336844287,DK @@ -42865,11 +42391,7 @@ 1336885248,1336901631,RS 1336901632,1336910408,IR 1336910409,1336910411,CA -1336910412,1336910476,IR -1336910477,1336910478,CA -1336910479,1336910486,IR -1336910487,1336910488,CA -1336910489,1336910529,IR +1336910412,1336910529,IR 1336910530,1336910545,CA 1336910546,1336911749,IR 1336911750,1336911759,AE @@ -42877,7 +42399,9 @@ 1336911854,1336911869,CA 1336911870,1336918015,IR 1336918016,1336934399,PL -1336934400,1337458687,IL +1336934400,1337241562,IL +1337241563,1337241563,RO +1337241564,1337458687,IL 1337458688,1337982975,PL 1337982976,1342177279,DE 1342177280,1342628159,GB @@ -42890,60 +42414,52 @@ 1342628352,1342628367,IE 1342628368,1342628431,GB 1342628432,1342628463,IE -1342628464,1342628663,GB -1342628664,1342628671,IE -1342628672,1342701567,GB +1342628464,1342701567,GB 1342701568,1342701823,FR -1342701824,1342703103,MQ -1342703104,1342703359,FR -1342703360,1342705663,MQ -1342705664,1342705919,FR -1342705920,1342712319,MQ -1342712320,1342712575,FR -1342712576,1342714879,MQ -1342714880,1342715135,FR -1342715136,1342715647,MQ -1342715648,1342715903,FR -1342715904,1342716671,MQ -1342716672,1342717183,FR -1342717184,1342717951,MQ -1342717952,1342722559,GP -1342722560,1342722815,FR -1342722816,1342727679,GP -1342727680,1342727935,FR -1342727936,1342733311,GP +1342701824,1342708735,MQ +1342708736,1342708991,FR +1342708992,1342711295,MQ +1342711296,1342711551,FR +1342711552,1342717951,MQ +1342717952,1342718975,GP +1342718976,1342719231,FR +1342719232,1342722815,GP +1342722816,1342723071,FR +1342723072,1342732287,GP +1342732288,1342732799,FR +1342732800,1342733311,GP 1342733312,1342733567,FR 1342733568,1342734335,GP -1342734336,1342735615,RE -1342735616,1342735871,FR -1342735872,1342736639,RE -1342736640,1342736895,FR -1342736896,1342737407,RE +1342734336,1342737407,RE 1342737408,1342737663,FR -1342737664,1342741247,RE -1342741248,1342741503,FR -1342741504,1342743551,RE -1342743552,1342743807,FR -1342743808,1342746111,RE -1342746112,1342746367,FR -1342746368,1342747135,RE -1342747136,1342747391,FR -1342747392,1342747647,RE +1342737664,1342741759,RE +1342741760,1342742015,FR +1342742016,1342745855,RE +1342745856,1342746367,FR +1342746368,1342746623,RE +1342746624,1342746879,FR +1342746880,1342747647,RE 1342747648,1342748159,FR 1342748160,1342748671,RE 1342748672,1342748927,FR -1342748928,1342750463,RE +1342748928,1342749695,RE +1342749696,1342749951,FR +1342749952,1342750463,RE 1342750464,1342750719,FR -1342750720,1342753535,RE -1342753536,1342753791,FR -1342753792,1342758911,RE -1342758912,1342759423,GF -1342759424,1342761727,FR -1342761728,1342762239,GF +1342750720,1342752511,RE +1342752512,1342752767,FR +1342752768,1342759423,RE +1342759424,1342759679,FR +1342759680,1342759935,RE +1342759936,1342761471,FR +1342761472,1342761983,RE +1342761984,1342762239,GF 1342762240,1342763007,FR -1342763008,1342765055,GF -1342765056,1342765823,FR -1342765824,1342767103,GF +1342763008,1342763775,GF +1342763776,1342764799,FR +1342764800,1342766079,RE +1342766080,1342766847,FR +1342766848,1342767103,GF 1342767104,1342981887,FR 1342981888,1342981935,GB 1342981936,1342982143,FR @@ -42951,23 +42467,21 @@ 1342982400,1342988287,FR 1342988288,1342989055,US 1342989056,1342996479,FR -1342996480,1342996991,GF -1342996992,1342997247,FR -1342997248,1342998015,GF -1342998016,1342998271,FR -1342998272,1342998527,GF -1342998528,1342998783,FR -1342998784,1343003391,GF -1343003392,1343003647,FR -1343003648,1343005695,GF -1343005696,1343005951,FR -1343005952,1343006719,GF -1343006720,1343006975,FR -1343006976,1343008511,GF -1343008512,1343008767,FR -1343008768,1343011327,GF -1343011328,1343011583,FR -1343011584,1343012351,GF +1342996480,1342997247,GF +1342997248,1342997503,FR +1342997504,1342997759,GF +1342997760,1342998783,FR +1342998784,1342999807,GF +1342999808,1343000063,FR +1343000064,1343000319,GF +1343000320,1343000575,FR +1343000576,1343004671,GF +1343004672,1343004927,FR +1343004928,1343007487,GF +1343007488,1343007743,FR +1343007744,1343008255,GF +1343008256,1343009023,FR +1343009024,1343012351,GF 1343012352,1343012607,FR 1343012608,1343012863,GF 1343012864,1343013119,FR @@ -43202,10 +42716,8 @@ 1346752512,1346753535,FR 1346753536,1346754047,RE 1346754048,1346754559,FR -1346754560,1346754815,RE -1346754816,1346755071,FR -1346755072,1346755583,RE -1346755584,1346756607,FR +1346754560,1346756095,RE +1346756096,1346756607,FR 1346756608,1346760703,SE 1346760704,1346764799,IR 1346764800,1346768895,DK @@ -43592,14 +43104,30 @@ 1347295977,1347295984,LS 1347295985,1347295992,US 1347295993,1347295999,A2 -1347296000,1347296080,US +1347296000,1347296007,US +1347296008,1347296008,A2 +1347296009,1347296032,US +1347296033,1347296039,A2 +1347296040,1347296044,US +1347296045,1347296056,A2 +1347296057,1347296080,US 1347296081,1347296088,SE -1347296089,1347296112,US +1347296089,1347296104,A2 +1347296105,1347296112,US 1347296113,1347296128,ZM -1347296129,1347296232,US +1347296129,1347296136,A2 +1347296137,1347296144,US +1347296145,1347296160,A2 +1347296161,1347296168,US +1347296169,1347296176,A2 +1347296177,1347296184,US +1347296185,1347296192,A2 +1347296193,1347296200,US +1347296201,1347296207,A2 +1347296208,1347296223,KE +1347296224,1347296232,US 1347296233,1347296240,JO -1347296241,1347296255,US -1347296256,1347296264,A2 +1347296241,1347296264,A2 1347296265,1347296272,US 1347296273,1347296775,A2 1347296776,1347296783,NG @@ -43696,7 +43224,9 @@ 1347416064,1347420159,RU 1347420160,1347421263,DK 1347421264,1347421279,DE -1347421280,1347425791,DK +1347421280,1347424339,DK +1347424340,1347424351,NO +1347424352,1347425791,DK 1347425792,1347426047,EU 1347426048,1347427135,DK 1347427136,1347427327,NO @@ -43776,7 +43306,10 @@ 1347654616,1347654623,EG 1347654624,1347657727,GB 1347657728,1347661823,IT -1347661824,1347665919,DE +1347661824,1347664895,DE +1347664896,1347665407,NL +1347665408,1347665855,DE +1347665856,1347665919,NL 1347665920,1347670015,RU 1347670016,1347674111,SE 1347674112,1347682303,RU @@ -44063,7 +43596,9 @@ 1348063232,1348067327,CH 1348067328,1348071423,NL 1348071424,1348075519,DE -1348075520,1348076287,LV +1348075520,1348075967,LV +1348075968,1348076031,PA +1348076032,1348076287,LV 1348076288,1348076543,RU 1348076544,1348083711,LV 1348083712,1348091903,LU @@ -44098,13 +43633,9 @@ 1348198400,1348202495,NO 1348202496,1348206591,EU 1348206592,1348218879,RU -1348218880,1348219231,DE -1348219232,1348219247,US -1348219248,1348219295,DE -1348219296,1348219327,A2 -1348219328,1348219343,DE -1348219344,1348219359,ZM -1348219360,1348219647,DE +1348218880,1348219135,DE +1348219136,1348219391,US +1348219392,1348219647,DE 1348219648,1348220159,US 1348220160,1348220687,DE 1348220688,1348220703,SA @@ -44115,8 +43646,7 @@ 1348231168,1348235263,RU 1348235264,1348239359,AT 1348239360,1348241407,SE -1348241408,1348242431,NO -1348242432,1348242943,GB +1348241408,1348242943,GB 1348242944,1348243455,SE 1348243456,1348247551,GB 1348247552,1348251647,RU @@ -44201,14 +43731,16 @@ 1349124096,1349255167,GR 1349255168,1349451775,AT 1349451776,1349517311,IE -1349517312,1349584543,NL -1349584544,1349584551,GB -1349584552,1349763071,NL +1349517312,1349763071,NL 1349763072,1349771263,RU 1349771264,1349779455,NL 1349779456,1349910527,IT 1349910528,1350041599,FR -1350041600,1350057215,AT +1350041600,1350056191,AT +1350056192,1350056287,DE +1350056288,1350056303,AT +1350056304,1350056447,DE +1350056448,1350057215,AT 1350057216,1350057343,AG 1350057344,1350091991,AT 1350091992,1350091999,SA @@ -44224,7 +43756,9 @@ 1350217472,1350217727,IQ 1350217728,1350220287,AT 1350220288,1350220543,DE -1350220544,1350295823,AT +1350220544,1350235947,AT +1350235948,1350235951,AU +1350235952,1350295823,AT 1350295824,1350295831,SA 1350295832,1350295847,AT 1350295848,1350295855,SA @@ -44255,13 +43789,15 @@ 1351806976,1351807231,IT 1351807232,1351879999,DE 1351880000,1351880031,IT -1351880032,1351965183,DE +1351880032,1351950079,DE +1351950080,1351950335,GB +1351950336,1351965183,DE 1351965184,1351965439,US 1351965440,1351968511,DE 1351968512,1351968767,CH -1351968768,1351998679,DE -1351998680,1351998687,TH -1351998688,1352002047,DE +1351968768,1351989247,DE +1351989248,1351989503,AE +1351989504,1352002047,DE 1352002048,1352002303,US 1352002304,1352010239,DE 1352010240,1352010495,US @@ -44273,12 +43809,8 @@ 1352041472,1352041727,US 1352041728,1352043959,DE 1352043960,1352043967,A2 -1352043968,1352062455,DE -1352062456,1352062463,CH -1352062464,1352069631,DE -1352069632,1352069759,US -1352069760,1352069799,DE -1352069800,1352069887,US +1352043968,1352069631,DE +1352069632,1352069887,US 1352069888,1352139671,DE 1352139672,1352139679,IT 1352139680,1352141311,DE @@ -44327,9 +43859,11 @@ 1352150776,1352150783,ES 1352150784,1352150791,DE 1352150792,1352150799,ES -1352150800,1352293471,DE -1352293472,1352293479,GB -1352293480,1352294911,DE +1352150800,1352150831,DE +1352150832,1352150847,ES +1352150848,1352293375,DE +1352293376,1352293631,GB +1352293632,1352294911,DE 1352294912,1352295167,EU 1352295168,1352299775,DE 1352299776,1352300031,US @@ -44339,7 +43873,9 @@ 1352405504,1352405759,US 1352405760,1352412159,DE 1352412160,1352412415,FR -1352412416,1352445695,DE +1352412416,1352412799,DE +1352412800,1352412927,GB +1352412928,1352445695,DE 1352445696,1352445703,NL 1352445704,1352663039,DE 1352663040,1353187327,DK @@ -44358,16 +43894,7 @@ 1353257120,1353257151,GB 1353257152,1353257167,FR 1353257168,1353257983,GB -1353257984,1353258263,SE -1353258264,1353258271,NO -1353258272,1353258303,SE -1353258304,1353258367,FI -1353258368,1353258391,SE -1353258392,1353258399,GB -1353258400,1353258407,SE -1353258408,1353258415,GB -1353258416,1353258423,DK -1353258424,1353258495,SE +1353257984,1353258495,SE 1353258496,1353258503,GB 1353258504,1353258519,SE 1353258520,1353258559,GB @@ -44376,13 +43903,13 @@ 1353258632,1353258639,SE 1353258640,1353258783,GB 1353258784,1353258807,SE -1353258808,1353265407,GB +1353258808,1353262295,GB +1353262296,1353262303,US +1353262304,1353265407,GB 1353265408,1353265439,DE 1353265440,1353265943,GB 1353265944,1353265951,IE -1353265952,1353266959,GB -1353266960,1353266975,IE -1353266976,1353267199,GB +1353265952,1353267199,GB 1353267200,1353268223,IE 1353268224,1353268487,GB 1353268488,1353268495,BE @@ -44398,8 +43925,8 @@ 1353268656,1353268687,BE 1353268688,1353268695,GB 1353268696,1353268703,BE -1353268704,1353268711,GB -1353268712,1353269007,BE +1353268704,1353268719,GB +1353268720,1353269007,BE 1353269008,1353269015,GB 1353269016,1353269223,BE 1353269224,1353269231,FR @@ -44413,7 +43940,11 @@ 1353271832,1353271839,GB 1353271840,1353271911,ES 1353271912,1353271919,GB -1353271920,1353272023,ES +1353271920,1353271951,ES +1353271952,1353271967,GB +1353271968,1353271975,ES +1353271976,1353271999,GB +1353272000,1353272023,ES 1353272024,1353272031,GB 1353272032,1353272039,ES 1353272040,1353272047,GB @@ -44426,16 +43957,12 @@ 1353272128,1353272143,ES 1353272144,1353272151,GB 1353272152,1353272159,ES -1353272160,1353272207,GB -1353272208,1353272245,ES +1353272160,1353272223,GB +1353272224,1353272245,ES 1353272246,1353272247,GB 1353272248,1353272271,ES 1353272272,1353272287,GB -1353272288,1353273055,ES -1353273056,1353273063,GB -1353273064,1353273071,ES -1353273072,1353273087,GB -1353273088,1353273343,ES +1353272288,1353273343,ES 1353273344,1353273631,BE 1353273632,1353273647,GB 1353273648,1353273671,BE @@ -44445,9 +43972,15 @@ 1353273720,1353274367,BE 1353274368,1353274895,ES 1353274896,1353274911,GB -1353274912,1353275135,ES -1353275136,1353275199,GB -1353275200,1353275255,ES +1353274912,1353274927,ES +1353274928,1353274935,GB +1353274936,1353275063,ES +1353275064,1353275071,GB +1353275072,1353275135,ES +1353275136,1353275215,GB +1353275216,1353275223,ES +1353275224,1353275231,GB +1353275232,1353275255,ES 1353275256,1353275263,GB 1353275264,1353275279,ES 1353275280,1353275287,GB @@ -44520,29 +44053,16 @@ 1353288848,1353288855,GB 1353288856,1353288879,IE 1353288880,1353288895,GB -1353288896,1353288991,IE -1353288992,1353288999,GB -1353289000,1353289023,IE -1353289024,1353289031,NL -1353289032,1353289039,GB -1353289040,1353289047,IE -1353289048,1353289087,GB -1353289088,1353289599,IE +1353288896,1353289599,IE 1353289600,1353289615,GB 1353289616,1353289623,IE 1353289624,1353289631,GB 1353289632,1353289647,IE 1353289648,1353289663,GB 1353289664,1353289727,IE -1353289728,1353290919,GB -1353290920,1353290927,FR -1353290928,1353290943,GB -1353290944,1353290951,FR -1353290952,1353295471,GB -1353295472,1353295479,IE -1353295480,1353295511,GB -1353295512,1353295519,DE -1353295520,1353297151,GB +1353289728,1353294767,GB +1353294768,1353294775,US +1353294776,1353297151,GB 1353297152,1353297183,IE 1353297184,1353298687,GB 1353298688,1353299647,SE @@ -44585,20 +44105,18 @@ 1353310608,1353310623,ES 1353310624,1353310663,GB 1353310664,1353310679,ES -1353310680,1353310687,GB -1353310688,1353310703,ES +1353310680,1353310695,GB +1353310696,1353310703,ES 1353310704,1353310719,GB 1353310720,1353310807,IT 1353310808,1353310815,GB -1353310816,1353311095,IT -1353311096,1353311103,GB -1353311104,1353311175,IT +1353310816,1353311175,IT 1353311176,1353311183,ES 1353311184,1353311231,IT 1353311232,1353312255,GB 1353312256,1353312767,CH -1353312768,1353313191,IT -1353313192,1353313199,GB +1353312768,1353313183,IT +1353313184,1353313199,GB 1353313200,1353313279,IT 1353313280,1353313791,IE 1353313792,1353314303,GB @@ -44723,7 +44241,9 @@ 1357126808,1357126815,NL 1357126816,1357127471,DE 1357127472,1357127487,CH -1357127488,1357185023,DE +1357127488,1357177943,DE +1357177944,1357177951,NL +1357177952,1357185023,DE 1357185024,1357250559,GB 1357250560,1357316095,IL 1357316096,1357316607,ES @@ -44828,14 +44348,8 @@ 1357358336,1357358591,FR 1357358592,1357358847,DE 1357358848,1357359103,PL -1357359104,1357359999,ES -1357360000,1357360015,GB -1357360016,1357360023,IT -1357360024,1357360031,BE -1357360032,1357360047,EU -1357360048,1357360271,GB -1357360272,1357360279,FR -1357360280,1357360383,GB +1357359104,1357359871,ES +1357359872,1357360383,GB 1357360384,1357360639,EU 1357360640,1357360895,GB 1357360896,1357361151,DE @@ -44852,17 +44366,7 @@ 1357366528,1357366591,BE 1357366592,1357366655,FR 1357366656,1357366719,PT -1357366720,1357366783,GB -1357366784,1357366799,MD -1357366800,1357366815,ES -1357366816,1357366847,FR -1357366848,1357366863,GB -1357366864,1357366879,ES -1357366880,1357366943,GB -1357366944,1357366959,EU -1357366960,1357366967,BE -1357366968,1357366975,FR -1357366976,1357367295,GB +1357366720,1357367295,GB 1357367296,1357367551,FR 1357367552,1357368063,GB 1357368064,1357368831,GN @@ -44878,11 +44382,17 @@ 1357371904,1357372159,RU 1357372160,1357372927,GB 1357372928,1357373183,AM -1357373184,1357373439,GB -1357373440,1357381631,EU +1357373184,1357373467,GB +1357373468,1357373695,EU +1357373696,1357373951,GB +1357373952,1357378047,EU +1357378048,1357378559,FR +1357378560,1357381631,EU 1357381632,1357386143,NO 1357386144,1357386147,DK -1357386148,1357391615,NO +1357386148,1357386151,NO +1357386152,1357386159,DK +1357386160,1357391615,NO 1357391616,1357391871,SE 1357391872,1357414399,NO 1357414400,1357447167,LV @@ -44895,11 +44405,7 @@ 1357643776,1357676543,FR 1357676544,1357709311,BE 1357709312,1357742079,RU -1357742080,1357759079,DE -1357759080,1357759087,AM -1357759088,1357759183,DE -1357759184,1357759191,AT -1357759192,1357765823,DE +1357742080,1357765823,DE 1357765824,1357765831,AT 1357765832,1357767056,DE 1357767057,1357767057,DE @@ -44912,7 +44418,7 @@ 1357791232,1357807615,PL 1357807616,1357840383,CH 1357840384,1357873151,NO -1357873152,1357875199,DE +1357873152,1357875199,EU 1357875200,1357875215,AT 1357875216,1357875247,DE 1357875248,1357875263,US @@ -44943,7 +44449,7 @@ 1357876480,1357876495,SE 1357876496,1357876543,EU 1357876544,1357876735,DE -1357876736,1357876863,EU +1357876736,1357876863,ES 1357876864,1357876927,SE 1357876928,1357877327,DE 1357877328,1357877335,EU @@ -44973,8 +44479,8 @@ 1357880544,1357880559,AT 1357880560,1357880831,DE 1357880832,1357881087,AT -1357881088,1357881343,EU -1357881344,1357883647,FR +1357881088,1357883391,EU +1357883392,1357883647,FR 1357883648,1357883903,SE 1357883904,1357883911,GB 1357883912,1357883919,FR @@ -45074,7 +44580,16 @@ 1357897888,1357897919,EU 1357897920,1357898495,DE 1357898496,1357898751,EU -1357898752,1357899267,DE +1357898752,1357899011,DE +1357899012,1357899015,RU +1357899016,1357899023,EU +1357899024,1357899039,DE +1357899040,1357899047,EU +1357899048,1357899063,DE +1357899064,1357899071,EU +1357899072,1357899199,DE +1357899200,1357899263,FI +1357899264,1357899267,DE 1357899268,1357899275,FR 1357899276,1357899279,NL 1357899280,1357899295,EU @@ -45105,7 +44620,8 @@ 1357902367,1357902847,EU 1357902848,1357903359,GB 1357903360,1357903615,DE -1357903616,1357904383,EU +1357903616,1357903743,CH +1357903744,1357904383,EU 1357904384,1357904895,DE 1357904896,1357905407,GB 1357905408,1357905663,SE @@ -45127,11 +44643,7 @@ 1357979648,1357983743,KZ 1357983744,1357983783,GB 1357983784,1357983791,IT -1357983792,1357983847,GB -1357983848,1357983855,IT -1357983856,1357983951,GB -1357983952,1357983959,IT -1357983960,1357984079,GB +1357983792,1357984079,GB 1357984080,1357984087,IT 1357984088,1357984103,GB 1357984104,1357984119,IT @@ -45143,12 +44655,12 @@ 1357984368,1357984375,IT 1357984376,1357984439,GB 1357984440,1357984447,IT -1357984448,1357984479,GB -1357984480,1357984495,IT +1357984448,1357984487,GB +1357984488,1357984495,IT 1357984496,1357984527,GB -1357984528,1357984567,IT -1357984568,1357984591,GB -1357984592,1357984599,IT +1357984528,1357984551,IT +1357984552,1357984583,GB +1357984584,1357984599,IT 1357984600,1357984671,GB 1357984672,1357984679,IT 1357984680,1357984703,GB @@ -45157,7 +44669,9 @@ 1357984784,1357984791,IT 1357984792,1357984823,GB 1357984824,1357984831,IT -1357984832,1357985015,GB +1357984832,1357984911,GB +1357984912,1357984919,IT +1357984920,1357985015,GB 1357985016,1357985023,IT 1357985024,1357985391,GB 1357985392,1357985399,IT @@ -45180,7 +44694,27 @@ 1357988784,1357988799,DE 1357988800,1357988831,CZ 1357988832,1357988863,DE -1357988864,1357991935,GB +1357988864,1357989375,GB +1357989376,1357989383,CH +1357989384,1357989647,GB +1357989648,1357989655,FR +1357989656,1357989663,GB +1357989664,1357989671,FR +1357989672,1357989679,BE +1357989680,1357989703,FR +1357989704,1357989711,GB +1357989712,1357989727,FR +1357989728,1357989743,GB +1357989744,1357989759,CH +1357989760,1357989783,FR +1357989784,1357989791,GB +1357989792,1357989807,FR +1357989808,1357989823,GB +1357989824,1357989831,NL +1357989832,1357989839,FR +1357989840,1357989847,GB +1357989848,1357989887,FR +1357989888,1357991935,GB 1357991936,1357996031,NO 1357996032,1358000127,CH 1358000128,1358004223,LI @@ -45209,9 +44743,7 @@ 1358094336,1358102527,NL 1358102528,1358106623,RU 1358106624,1358110719,LT -1358110720,1358116895,DE -1358116896,1358116911,IT -1358116912,1358118911,DE +1358110720,1358118911,DE 1358118912,1358123007,RU 1358123008,1358127103,PT 1358127104,1358131199,CZ @@ -45224,10 +44756,13 @@ 1358151680,1358155775,DE 1358155776,1358159871,CH 1358159872,1358163967,ES -1358163968,1358166015,FR -1358166016,1358167295,MQ -1358167296,1358167807,FR -1358167808,1358168063,MQ +1358163968,1358164479,FR +1358164480,1358164735,MQ +1358164736,1358164991,FR +1358164992,1358165503,MQ +1358165504,1358166015,FR +1358166016,1358167551,MQ +1358167552,1358168063,FR 1358168064,1358172159,GB 1358172160,1358176255,CY 1358176256,1358180351,RU @@ -45260,8 +44795,8 @@ 1358224048,1358224087,NL 1358224088,1358224511,DE 1358224512,1358224519,BE -1358224520,1358224611,DE -1358224612,1358224727,BE +1358224520,1358224623,DE +1358224624,1358224727,BE 1358224728,1358224959,DE 1358224960,1358225127,IT 1358225128,1358225135,DE @@ -45416,19 +44951,12 @@ 1358471168,1358475263,FI 1358475264,1358479359,GB 1358479360,1358479391,LI -1358479392,1358479519,CH -1358479520,1358479551,LI +1358479392,1358479527,CH +1358479528,1358479551,LI 1358479552,1358479615,CH 1358479616,1358483455,LI 1358483456,1358487551,FR -1358487552,1358487689,SE -1358487690,1358487691,RU -1358487692,1358487693,RO -1358487694,1358487695,PL -1358487696,1358487697,HU -1358487698,1358487699,BG -1358487700,1358487701,ES -1358487702,1358487711,SE +1358487552,1358487711,SE 1358487712,1358487727,US 1358487728,1358487743,FR 1358487744,1358487775,SE @@ -45460,9 +44988,7 @@ 1358548992,1358551039,NL 1358551040,1358553087,GB 1358553088,1358557183,UA -1358557184,1358557375,IE -1358557376,1358557407,GB -1358557408,1358557903,IE +1358557184,1358557903,IE 1358557904,1358557911,GB 1358557912,1358557951,IE 1358557952,1358558047,GB @@ -45515,13 +45041,7 @@ 1358668256,1358668263,GB 1358668264,1358668271,PT 1358668272,1358668279,ES -1358668280,1358668359,PT -1358668360,1358668363,GB -1358668364,1358668479,PT -1358668480,1358668495,GB -1358668496,1358668519,PT -1358668520,1358668543,GB -1358668544,1358668799,PT +1358668280,1358668799,PT 1358668800,1358668807,GB 1358668808,1358668839,PT 1358668840,1358668863,GB @@ -45535,13 +45055,9 @@ 1358669464,1358669471,GB 1358669472,1358669487,PT 1358669488,1358669503,GB -1358669504,1358669599,PT -1358669600,1358669823,GB -1358669824,1358669847,PT -1358669848,1358669855,GB -1358669856,1358669975,PT -1358669976,1358669983,GB -1358669984,1358670167,PT +1358669504,1358669607,PT +1358669608,1358669823,GB +1358669824,1358670167,PT 1358670168,1358670175,GB 1358670176,1358670183,PT 1358670184,1358670191,GB @@ -45554,8 +45070,8 @@ 1358671856,1358671871,PT 1358671872,1358671903,GB 1358671904,1358671967,PT -1358671968,1358671983,GB -1358671984,1358672479,PT +1358671968,1358671975,GB +1358671976,1358672479,PT 1358672480,1358672511,GB 1358672512,1358672687,PT 1358672688,1358672703,GB @@ -45566,8 +45082,8 @@ 1358673664,1358675967,GB 1358675968,1358677247,SE 1358677248,1358677759,DK -1358677760,1358679295,SE -1358679296,1358680063,DK +1358677760,1358679039,SE +1358679040,1358680063,DK 1358680064,1358688255,RU 1358688256,1358692351,CZ 1358692352,1358696447,PL @@ -45575,21 +45091,19 @@ 1358700544,1358704639,AT 1358704640,1358708735,HU 1358708736,1358712831,GB -1358712832,1358713999,NL -1358714000,1358714015,A2 -1358714016,1358716383,NL +1358712832,1358716383,NL 1358716384,1358716415,PL 1358716416,1358716927,NL 1358716928,1358721023,DE 1358721024,1358725119,GB 1358725120,1358733311,RU -1358733312,1358734003,SE -1358734004,1358734007,NO -1358734008,1358734123,SE +1358733312,1358734123,SE 1358734124,1358734127,CW -1358734128,1358735491,SE -1358735492,1358735495,NL -1358735496,1358738303,SE +1358734128,1358734343,SE +1358734344,1358734347,NL +1358734348,1358736927,SE +1358736928,1358736943,NL +1358736944,1358738303,SE 1358738304,1358738307,FR 1358738308,1358738431,SE 1358738432,1358738447,NL @@ -45658,7 +45172,11 @@ 1358860288,1358860835,GB 1358860836,1358860836,EU 1358860837,1358861311,GB -1358861312,1358861567,EU +1358861312,1358861449,EU +1358861450,1358861450,DE +1358861451,1358861473,EU +1358861474,1358861474,DE +1358861475,1358861567,EU 1358861568,1358861823,DE 1358861824,1358862335,FR 1358862336,1358862847,US @@ -45882,19 +45400,31 @@ 1359429632,1359446015,LT 1359446016,1359451727,DK 1359451728,1359451731,US -1359451732,1359455551,DK -1359455552,1359455558,PL -1359455559,1359462399,DK +1359451732,1359462399,DK 1359462400,1359467007,DE -1359467008,1359467455,US +1359467008,1359467015,US +1359467016,1359467063,DE +1359467064,1359467079,US +1359467080,1359467087,DE +1359467088,1359467095,US +1359467096,1359467103,BR +1359467104,1359467135,US +1359467136,1359467143,MX +1359467144,1359467215,US +1359467216,1359467223,DE +1359467224,1359467231,US +1359467232,1359467239,DE +1359467240,1359467255,US +1359467256,1359467263,MX +1359467264,1359467455,US 1359467456,1359467487,CA 1359467488,1359467495,DE 1359467496,1359467647,US 1359467648,1359467775,DE 1359467776,1359467863,US 1359467864,1359467871,DE -1359467872,1359468287,US -1359468288,1359468543,DE +1359467872,1359468063,US +1359468064,1359468543,DE 1359468544,1359468799,SG 1359468800,1359468863,DE 1359468864,1359468879,SG @@ -45982,7 +45512,8 @@ 1360191488,1360195583,FO 1360195584,1360199679,NL 1360199680,1360203775,CZ -1360203776,1360207871,FR +1360203776,1360207359,FR +1360207360,1360207871,US 1360207872,1360210943,CZ 1360210944,1360211199,EU 1360211200,1360211967,CZ @@ -45990,7 +45521,9 @@ 1360216064,1360224255,RU 1360224256,1360225663,ES 1360225664,1360225695,GB -1360225696,1360228351,ES +1360225696,1360226303,ES +1360226304,1360226559,DE +1360226560,1360228351,ES 1360228352,1360232447,FI 1360232448,1360236543,RU 1360236544,1360239135,AT @@ -46004,9 +45537,7 @@ 1360251648,1360252415,GB 1360252416,1360252671,CH 1360252672,1360257023,GB -1360257024,1360259447,DK -1360259448,1360259451,US -1360259452,1360265215,DK +1360257024,1360265215,DK 1360265216,1360265503,NL 1360265504,1360265511,DE 1360265512,1360265983,NL @@ -46228,9 +45759,7 @@ 1360896000,1360900095,QA 1360900096,1360905391,IT 1360905392,1360905407,GB -1360905408,1360906687,IT -1360906688,1360906719,GB -1360906720,1360909391,IT +1360905408,1360909391,IT 1360909392,1360909407,GB 1360909408,1360910495,IT 1360910496,1360910511,GB @@ -46664,18 +46193,18 @@ 1362426624,1362426879,FR 1362426880,1362427903,MQ 1362427904,1362755583,FR -1362755584,1362886411,NL -1362886412,1362886413,BE -1362886414,1362886417,NL -1362886418,1362886419,BE -1362886420,1362886655,NL +1362755584,1362886655,NL 1362886656,1363017727,ES 1363017728,1363148799,CH 1363148800,1363410943,FR 1363410944,1363673087,NL 1363673088,1363935231,IT 1363935232,1364197375,GB -1364197376,1364262911,FR +1364197376,1364212991,FR +1364212992,1364213119,GF +1364213120,1364213127,FR +1364213128,1364213247,GF +1364213248,1364262911,FR 1364262912,1364328447,IT 1364328448,1364459519,BE 1364459520,1364525055,PT @@ -46863,15 +46392,12 @@ 1365044608,1365044639,BE 1365044640,1365044655,LU 1365044656,1365044719,FR -1365044720,1365044815,LU -1365044816,1365044831,BE -1365044832,1365044895,LU -1365044896,1365044911,FR -1365044912,1365044927,LU +1365044720,1365044900,LU +1365044901,1365044901,FR +1365044902,1365044927,LU 1365044928,1365044935,GR -1365044936,1365044959,LU -1365044960,1365044975,BE -1365044976,1365045247,LU +1365044936,1365045215,LU +1365045216,1365045247,BE 1365045248,1365045535,AT 1365045536,1365045543,BA 1365045544,1365045551,BG @@ -46891,15 +46417,7 @@ 1365045664,1365047039,AT 1365047040,1365047103,SK 1365047104,1365047295,AT -1365047296,1365047647,SK -1365047648,1365047679,AT -1365047680,1365047807,SK -1365047808,1365047871,AT -1365047872,1365047903,SK -1365047904,1365047999,AT -1365048000,1365048191,SK -1365048192,1365048255,AT -1365048256,1365049343,SK +1365047296,1365049343,SK 1365049344,1365057535,FR 1365057536,1365061631,IT 1365061632,1365065727,NL @@ -46970,213 +46488,25 @@ 1365204992,1365209087,CZ 1365209088,1365213183,BE 1365213184,1365217279,RU -1365217280,1365217551,GB -1365217552,1365217567,US -1365217568,1365217575,PT -1365217576,1365217591,GB -1365217592,1365217599,EG -1365217600,1365217631,GB -1365217632,1365217663,US -1365217664,1365217671,PH -1365217672,1365217687,IL -1365217688,1365217695,KW -1365217696,1365217703,GB -1365217704,1365217711,AU -1365217712,1365217791,US -1365217792,1365217807,BD -1365217808,1365217815,US -1365217816,1365217823,DK -1365217824,1365217831,GB -1365217832,1365217839,TR -1365217840,1365217847,GB -1365217848,1365217855,BD -1365217856,1365217871,GB -1365217872,1365217879,BD -1365217880,1365217919,US -1365217920,1365217927,DK -1365217928,1365217951,BD -1365217952,1365217975,GB -1365217976,1365217983,US -1365217984,1365217991,DK -1365217992,1365218023,US -1365218024,1365218031,DK -1365218032,1365218303,US -1365218304,1365218311,CA -1365218312,1365218319,AR +1365217280,1365218319,GB 1365218320,1365218327,ZA -1365218328,1365218351,US -1365218352,1365218367,CY -1365218368,1365218375,RO -1365218376,1365218383,UA -1365218384,1365218407,EG -1365218408,1365218415,IN -1365218416,1365218431,GB -1365218432,1365218439,EG -1365218440,1365218447,ZA -1365218448,1365218455,CA -1365218456,1365218459,GB -1365218460,1365218463,US -1365218464,1365218471,HK -1365218472,1365218479,GB -1365218480,1365218511,GR -1365218512,1365218519,AU -1365218520,1365218527,US -1365218528,1365218543,GR -1365218544,1365218551,CY -1365218552,1365218559,GR -1365218560,1365218815,GB -1365218816,1365218879,EG -1365218880,1365218895,US -1365218896,1365218903,GB -1365218904,1365218911,MU -1365218912,1365218927,US -1365218928,1365218943,BR -1365218944,1365218951,IN -1365218952,1365218959,NL -1365218960,1365218975,US -1365218976,1365219007,CN -1365219008,1365219023,US -1365219024,1365219031,DK -1365219032,1365219039,CY -1365219040,1365219071,GB -1365219072,1365219103,TR -1365219104,1365219111,SA -1365219112,1365219119,GB -1365219120,1365219135,US -1365219136,1365219143,GB -1365219144,1365219159,US -1365219160,1365219167,CA -1365219168,1365219168,GB -1365219169,1365219183,ES -1365219184,1365219191,CA -1365219192,1365219199,DE +1365218328,1365218551,GB +1365218552,1365218559,ZA +1365218560,1365218967,GB +1365218968,1365218975,ZA +1365218976,1365219199,GB 1365219200,1365219207,IN -1365219208,1365219215,US -1365219216,1365219231,GB -1365219232,1365219247,CY -1365219248,1365219279,GB -1365219280,1365219287,BD -1365219288,1365219295,US -1365219296,1365219311,GB -1365219312,1365219327,TR -1365219328,1365219391,US -1365219392,1365219399,DK -1365219400,1365219407,AU -1365219408,1365219415,GB -1365219416,1365219423,TR -1365219424,1365219431,US -1365219432,1365219439,RU -1365219440,1365219455,US -1365219456,1365219463,NL -1365219464,1365219471,AU -1365219472,1365219479,IL -1365219480,1365219511,GB -1365219512,1365219519,BD -1365219520,1365219583,US -1365219584,1365219647,CN +1365219208,1365219279,GB +1365219280,1365219287,ZA +1365219288,1365219647,GB 1365219648,1365219663,IN -1365219664,1365219671,TR -1365219672,1365219679,GB -1365219680,1365219687,BD -1365219688,1365219695,US -1365219696,1365219703,DK -1365219704,1365219711,UA -1365219712,1365219743,TR -1365219744,1365219751,US -1365219752,1365219759,SG -1365219760,1365219775,UA -1365219776,1365219783,PY -1365219784,1365219791,BA -1365219792,1365219799,NO -1365219800,1365219807,TR -1365219808,1365219811,US -1365219812,1365219815,AU -1365219816,1365219903,US -1365219904,1365219919,ES +1365219664,1365219919,GB 1365219920,1365219935,IN -1365219936,1365219951,CA -1365219952,1365219967,DK -1365219968,1365219983,ES -1365219984,1365219991,IT -1365219992,1365220007,EE -1365220008,1365220015,ES -1365220016,1365220031,US -1365220032,1365220127,CN -1365220128,1365220143,TR -1365220144,1365220151,IL -1365220152,1365220159,AR -1365220160,1365220223,US -1365220224,1365220255,JO -1365220256,1365220263,KW -1365220264,1365220271,GB -1365220272,1365220287,KW -1365220288,1365220303,AR -1365220304,1365220311,NL -1365220312,1365220319,BR -1365220320,1365220371,US -1365220372,1365220375,GB -1365220376,1365220387,US -1365220388,1365220391,JO -1365220392,1365220399,ZA -1365220400,1365220407,GB -1365220408,1365220423,US -1365220424,1365220431,GB -1365220432,1365220435,JO -1365220436,1365220439,US -1365220440,1365220479,GB -1365220480,1365220487,AU -1365220488,1365220523,US -1365220524,1365220527,GB -1365220528,1365220535,IS -1365220536,1365220551,GB -1365220552,1365220567,IS -1365220568,1365220575,IL -1365220576,1365220583,CH -1365220584,1365220599,TR -1365220600,1365220607,GR -1365220608,1365220615,TR -1365220616,1365220623,US -1365220624,1365220631,KW -1365220632,1365220639,GR -1365220640,1365220663,GB -1365220664,1365220679,US -1365220680,1365220687,IT -1365220688,1365220727,US -1365220728,1365220735,JO -1365220736,1365220767,US -1365220768,1365220775,GB -1365220776,1365220783,US -1365220784,1365220791,IN -1365220792,1365220799,KW -1365220800,1365220807,RU -1365220808,1365220815,US -1365220816,1365220823,KW -1365220824,1365220831,GB -1365220832,1365220847,IT -1365220848,1365220855,AU -1365220856,1365220903,US -1365220904,1365220911,CA -1365220912,1365220919,US -1365220920,1365220927,KW -1365220928,1365220935,IT -1365220936,1365220939,AR -1365220940,1365220943,US -1365220944,1365220959,GB -1365220960,1365220967,US -1365220968,1365220975,GB -1365220976,1365220979,US -1365220980,1365220983,GB -1365220984,1365220991,BR -1365220992,1365220999,ZA -1365221000,1365221023,US -1365221024,1365221031,TR -1365221032,1365221047,IL -1365221048,1365221055,GB -1365221056,1365221063,KW -1365221064,1365221071,MY -1365221072,1365221087,ES -1365221088,1365221119,US -1365221120,1365221375,GB +1365219936,1365220071,GB +1365220072,1365220079,ZA +1365220080,1365220695,GB +1365220696,1365220703,ZA +1365220704,1365221375,GB 1365221376,1365225471,GE 1365225472,1365229567,UA 1365229568,1365233663,PL @@ -47262,7 +46592,9 @@ 1370193920,1370226687,GB 1370226688,1370259455,ES 1370259456,1370292223,SE -1370292224,1370299903,NL +1370292224,1370292479,NL +1370292480,1370292735,US +1370292736,1370299903,NL 1370299904,1370300159,US 1370300160,1370324991,NL 1370324992,1370357759,DE @@ -47292,9 +46624,7 @@ 1371144192,1371201535,GR 1371201536,1371205631,PL 1371205632,1371209727,SE -1371209728,1371251343,GB -1371251344,1371251359,US -1371251360,1371275263,GB +1371209728,1371275263,GB 1371275264,1371340799,BE 1371340800,1371406335,AT 1371406336,1371471871,PL @@ -47365,9 +46695,7 @@ 1372029696,1372029951,NE 1372029952,1372031999,A2 1372032000,1372032255,CM -1372032256,1372033279,A2 -1372033280,1372033535,IN -1372033536,1372041343,A2 +1372032256,1372041343,A2 1372041344,1372041471,NG 1372041472,1372043519,A2 1372043520,1372043775,NG @@ -47502,7 +46830,9 @@ 1372698688,1372698751,DE 1372698752,1372698783,EU 1372698784,1372698814,DE -1372698815,1372698879,EU +1372698815,1372698815,EU +1372698816,1372698847,DE +1372698848,1372698879,EU 1372698880,1372699647,DE 1372699648,1372699903,EU 1372699904,1372700159,DE @@ -47527,7 +46857,9 @@ 1372848128,1373110271,TR 1373110272,1373175807,SE 1373175808,1373241343,AT -1373241344,1373306879,IL +1373241344,1373271295,IL +1373271296,1373271551,PS +1373271552,1373306879,IL 1373306880,1373372415,PL 1373372416,1373437951,FR 1373437952,1373503487,CH @@ -47535,103 +46867,100 @@ 1373519872,1373523967,GB 1373523968,1373569023,RU 1373569024,1373634559,AT -1373634560,1374683135,SE +1373634560,1374418943,SE +1374418944,1374419199,DK +1374419200,1374683135,SE 1374683136,1375080959,BE 1375080960,1375081215,EU 1375081216,1375207423,BE 1375207424,1375208447,MQ 1375208448,1375208703,GP 1375208704,1375210239,MQ -1375210240,1375210495,GP -1375210496,1375211519,MQ -1375211520,1375211775,FR -1375211776,1375212799,GP +1375210240,1375210495,FR +1375210496,1375211263,MQ +1375211264,1375211519,FR +1375211520,1375212799,GP 1375212800,1375213055,FR -1375213056,1375214591,GP -1375214592,1375214847,FR -1375214848,1375215103,GP -1375215104,1375215359,FR -1375215360,1375215615,GP -1375215616,1375216895,GF -1375216896,1375217151,FR -1375217152,1375217919,GF +1375213056,1375214847,GP +1375214848,1375215103,FR +1375215104,1375215359,GP +1375215360,1375215615,FR +1375215616,1375217919,GF 1375217920,1375218175,FR -1375218176,1375219711,GF -1375219712,1375219967,FR -1375219968,1375223807,GF -1375223808,1375224575,FR -1375224576,1375225087,MQ -1375225088,1375225343,FR -1375225344,1375226111,MQ -1375226112,1375226879,FR -1375226880,1375227135,MQ -1375227136,1375228159,FR -1375228160,1375231999,MQ -1375232000,1375233023,FR -1375233024,1375233535,MQ -1375233536,1375233791,FR -1375233792,1375234559,MQ -1375234560,1375236095,FR -1375236096,1375237119,MQ -1375237120,1375237631,FR -1375237632,1375237887,MQ -1375237888,1375238399,FR -1375238400,1375240191,MQ -1375240192,1375240447,FR -1375240448,1375241215,GP +1375218176,1375222783,GF +1375222784,1375223039,FR +1375223040,1375223807,GF +1375223808,1375226111,MQ +1375226112,1375227391,FR +1375227392,1375229183,MQ +1375229184,1375229439,FR +1375229440,1375231487,MQ +1375231488,1375231743,FR +1375231744,1375233535,MQ +1375233536,1375234047,FR +1375234048,1375237375,MQ +1375237376,1375237631,FR +1375237632,1375239935,MQ +1375239936,1375240191,FR +1375240192,1375241215,GP 1375241216,1375241471,FR -1375241472,1375243775,GP -1375243776,1375244031,FR -1375244032,1375244543,GP +1375241472,1375241727,GP +1375241728,1375241983,FR +1375241984,1375243263,GP +1375243264,1375243519,FR +1375243520,1375244543,GP 1375244544,1375244799,FR -1375244800,1375245311,GP -1375245312,1375245567,FR -1375245568,1375247359,GP +1375244800,1375245823,GP +1375245824,1375246079,FR +1375246080,1375247359,GP 1375247360,1375247615,FR -1375247616,1375251455,GP +1375247616,1375250431,GP +1375250432,1375250687,FR +1375250688,1375251455,GP 1375251456,1375251967,FR 1375251968,1375252223,GP 1375252224,1375252479,FR 1375252480,1375253503,GP 1375253504,1375253759,FR -1375253760,1375256575,GP -1375256576,1375257343,RE -1375257344,1375257599,FR -1375257600,1375257855,RE -1375257856,1375258111,FR -1375258112,1375260415,RE +1375253760,1375256319,GP +1375256320,1375256575,FR +1375256576,1375260415,RE 1375260416,1375260671,FR 1375260672,1375262207,RE 1375262208,1375262463,FR -1375262464,1375263999,RE -1375264000,1375264255,FR -1375264256,1375270911,RE -1375270912,1375271167,FR -1375271168,1375271423,RE +1375262464,1375263743,RE +1375263744,1375263999,FR +1375264000,1375266303,RE +1375266304,1375266559,FR +1375266560,1375271423,RE 1375271424,1375271679,FR 1375271680,1375272959,RE -1375272960,1375705984,FR +1375272960,1375552511,FR +1375552512,1375553535,EU +1375553536,1375705984,FR 1375705985,1375705985,EU 1375705986,1375731711,FR -1375731712,1375844671,GB -1375844672,1375844735,US +1375731712,1375844607,GB +1375844608,1375844735,US 1375844736,1375844767,GB 1375844768,1375844863,US 1375844864,1375852543,GB 1375852544,1375852799,IE -1375852800,1378719197,GB +1375852800,1378718975,GB +1378718976,1378719197,NL 1378719198,1378719198,EU -1378719199,1378877439,GB +1378719199,1378719231,NL +1378719232,1378877439,GB 1378877440,1379926015,IT 1379926016,1380188159,FR -1380188160,1380226399,GB -1380226400,1380226407,A2 -1380226408,1380450303,GB +1380188160,1380450303,GB 1380450304,1380712447,NL 1380712448,1380974591,RO 1380974592,1380978727,IL 1380978728,1380978735,A2 -1380978736,1381036471,IL +1380978736,1380987319,IL +1380987320,1380987335,A2 +1380987336,1381036471,IL 1381036472,1381036479,A2 1381036480,1381105663,IL 1381105664,1381236735,DE @@ -47641,7 +46970,9 @@ 1381761024,1382023167,NL 1382023168,1382024959,SE 1382024960,1382025215,DK -1382025216,1382039007,SE +1382025216,1382033583,SE +1382033584,1382033599,NL +1382033600,1382039007,SE 1382039008,1382039023,FR 1382039024,1382039055,SE 1382039056,1382039071,DE @@ -47719,7 +47050,8 @@ 1382212224,1382212239,FR 1382212240,1382212607,EU 1382212608,1382212863,FR -1382212864,1382213631,EU +1382212864,1382213375,EU +1382213376,1382213631,DE 1382213632,1382215679,GB 1382215680,1382216447,NL 1382216448,1382217727,GB @@ -47727,7 +47059,9 @@ 1382217984,1382219007,GB 1382219008,1382219519,NL 1382219520,1382219775,GB -1382219776,1382220735,SE +1382219776,1382219959,SE +1382219960,1382219967,FI +1382219968,1382220735,SE 1382220736,1382220767,NO 1382220768,1382220783,SE 1382220784,1382220791,NO @@ -47735,7 +47069,9 @@ 1382222848,1382223103,FI 1382223104,1382223327,SE 1382223328,1382223359,FI -1382223360,1382224287,SE +1382223360,1382223551,SE +1382223552,1382223615,NO +1382223616,1382224287,SE 1382224288,1382224319,NO 1382224320,1382227327,SE 1382227328,1382227455,NO @@ -47743,9 +47079,7 @@ 1382227584,1382227711,DK 1382227712,1382232575,SE 1382232576,1382232639,NO -1382232640,1382233279,SE -1382233280,1382233343,NO -1382233344,1382233407,SE +1382232640,1382233407,SE 1382233408,1382233423,NO 1382233424,1382252543,SE 1382252544,1382268927,CZ @@ -47830,18 +47164,14 @@ 1383194624,1383202815,GB 1383202816,1383211007,RU 1383211008,1383219199,CY -1383219200,1383222407,AL -1383222408,1383222447,RS -1383222448,1383222463,AL -1383222464,1383222527,RS +1383219200,1383222271,AL +1383222272,1383222527,RS 1383222528,1383223119,AL 1383223120,1383225759,RS 1383225760,1383225771,AL 1383225772,1383225807,RS 1383225808,1383225827,AL -1383225828,1383226091,RS -1383226092,1383226095,AL -1383226096,1383226367,RS +1383225828,1383226367,RS 1383226368,1383226623,AL 1383226624,1383226751,RS 1383226752,1383226815,AL @@ -47906,7 +47236,9 @@ 1383448576,1383456767,RS 1383456768,1383464959,UA 1383464960,1383469055,BA -1383469056,1383470479,UA +1383469056,1383470063,UA +1383470064,1383470079,RU +1383470080,1383470479,UA 1383470480,1383470495,RU 1383470496,1383471103,UA 1383471104,1383473151,SE @@ -48195,8 +47527,12 @@ 1385565440,1385566335,EU 1385566336,1385566399,FR 1385566400,1385566431,EU -1385566432,1385566975,FR -1385566976,1385567007,EU +1385566432,1385566447,FR +1385566448,1385566455,EU +1385566456,1385566975,FR +1385566976,1385566995,EU +1385566996,1385566999,FR +1385567000,1385567007,EU 1385567008,1385567023,FR 1385567024,1385567087,EU 1385567088,1385567103,FR @@ -48243,13 +47579,11 @@ 1385668608,1385676799,NL 1385676800,1385684991,RU 1385684992,1385824255,GB -1385824256,1385833471,PT -1385833472,1385833727,GB -1385833728,1385955327,PT +1385824256,1385955327,PT 1385955328,1386086399,NL -1386086400,1386217319,ES -1386217320,1386217327,NO -1386217328,1386217471,ES +1386086400,1386217279,ES +1386217280,1386217343,NO +1386217344,1386217471,ES 1386217472,1386283007,PL 1386283008,1386348543,NL 1386348544,1386414079,RU @@ -48300,27 +47634,18 @@ 1388322816,1388331007,SI 1388331008,1388331519,NL 1388331520,1388331522,FR -1388331523,1388331524,NL -1388331525,1388331526,GB -1388331527,1388331528,DE -1388331529,1388331532,NL -1388331533,1388331534,IT -1388331535,1388331536,NL -1388331537,1388331538,PL -1388331539,1388339199,NL +1388331523,1388339199,NL 1388339200,1388347391,GB 1388347392,1388363775,DK 1388363776,1388371967,DE 1388371968,1388380159,CH -1388380160,1388388991,IT +1388380160,1388388887,IT +1388388888,1388388895,NG +1388388896,1388388991,IT 1388388992,1388389007,NG 1388389008,1388389567,IT 1388389568,1388389631,NG -1388389632,1388390167,IT -1388390168,1388390191,NG -1388390192,1388390207,IT -1388390208,1388390223,NG -1388390224,1388390239,IT +1388389632,1388390239,IT 1388390240,1388394495,NG 1388394496,1388396031,IT 1388396032,1388396287,NG @@ -48395,7 +47720,8 @@ 1388642304,1388650495,FI 1388650496,1388658687,PL 1388658688,1388666879,GB -1388666880,1388675071,FR +1388666880,1388667391,RE +1388667392,1388675071,FR 1388675072,1388675327,NL 1388675328,1388676863,DE 1388676864,1388677119,EU @@ -48410,9 +47736,7 @@ 1388679680,1388682239,DE 1388682240,1388682751,EU 1388682752,1388683263,DE -1388683264,1388689639,CH -1388689640,1388689647,DE -1388689648,1388691455,CH +1388683264,1388691455,CH 1388691456,1388699647,NL 1388699648,1388707839,SE 1388707840,1388708607,LB @@ -48436,15 +47760,13 @@ 1388715008,1388715263,LB 1388715264,1388715519,LT 1388715520,1388715775,LV -1388715776,1388716031,LT +1388715776,1388716031,LB 1388716032,1388724223,ES 1388724224,1388732415,DE 1388732416,1388740607,ES 1388740608,1388740623,GB 1388740624,1388740719,IE -1388740720,1388740723,GB -1388740724,1388740725,IE -1388740726,1388740727,GB +1388740720,1388740727,GB 1388740728,1388740731,IE 1388740732,1388740735,GB 1388740736,1388740847,IE @@ -48453,11 +47775,9 @@ 1388740864,1388741231,GB 1388741232,1388741239,IE 1388741240,1388741375,GB -1388741376,1388741971,IE -1388741972,1388741983,GB -1388741984,1388742067,IE -1388742068,1388742071,GB -1388742072,1388742143,IE +1388741376,1388741745,IE +1388741746,1388741747,GB +1388741748,1388742143,IE 1388742144,1388742335,GB 1388742336,1388742367,IE 1388742368,1388742463,GB @@ -48481,11 +47801,19 @@ 1388746264,1388746271,GB 1388746272,1388746399,IE 1388746400,1388746495,GB -1388746496,1388746851,IE +1388746496,1388746671,IE +1388746672,1388746675,GB +1388746676,1388746703,IE +1388746704,1388746711,GB +1388746712,1388746851,IE 1388746852,1388746863,GB 1388746864,1388746967,IE 1388746968,1388746975,GB -1388746976,1388748349,IE +1388746976,1388747583,IE +1388747584,1388747599,GB +1388747600,1388747627,IE +1388747628,1388747631,GB +1388747632,1388748349,IE 1388748350,1388748351,GB 1388748352,1388748663,IE 1388748664,1388748667,GB @@ -48502,7 +47830,9 @@ 1388794960,1388796559,NL 1388796560,1388796575,GB 1388796576,1388796679,NL -1388796680,1388796687,GB +1388796680,1388796681,GB +1388796682,1388796682,NL +1388796683,1388796687,GB 1388796688,1388796783,NL 1388796784,1388796799,GB 1388796800,1388797951,NL @@ -48597,7 +47927,7 @@ 1389211536,1389211567,A2 1389211568,1389211647,IQ 1389211648,1389212159,A2 -1389212160,1389212415,GB +1389212160,1389212415,KW 1389212416,1389212671,A2 1389212672,1389212767,IQ 1389212768,1389213087,A2 @@ -48656,8 +47986,18 @@ 1389265240,1389265263,A2 1389265264,1389265279,NG 1389265280,1389265407,TD -1389265408,1389265663,US -1389265664,1389266463,A2 +1389265408,1389265535,US +1389265536,1389265536,A2 +1389265537,1389265551,US +1389265552,1389265559,CA +1389265560,1389265567,LR +1389265568,1389265574,GM +1389265575,1389265575,A2 +1389265576,1389265591,SC +1389265592,1389265598,CG +1389265599,1389265599,A2 +1389265600,1389265639,US +1389265640,1389266463,A2 1389266464,1389266471,CD 1389266472,1389266543,A2 1389266544,1389266551,CD @@ -48807,23 +48147,17 @@ 1389505024,1389510655,DE 1389510656,1389527039,NL 1389527040,1389543423,PL -1389543424,1389544927,DE -1389544928,1389544943,SG -1389544944,1389548991,DE +1389543424,1389548991,DE 1389548992,1389549055,BE -1389549056,1389552735,DE -1389552736,1389552743,FR -1389552744,1389552815,DE -1389552816,1389552823,NL -1389552824,1389557247,DE +1389549056,1389555263,DE +1389555264,1389555327,AT +1389555328,1389557247,DE 1389557248,1389557375,EU 1389557376,1389557391,DE 1389557392,1389557503,EU 1389557504,1389558015,DE 1389558016,1389558271,EU -1389558272,1389559743,DE -1389559744,1389559807,CH -1389559808,1389560063,DE +1389558272,1389560063,DE 1389560064,1389560319,BR 1389560320,1389561343,DE 1389561344,1389561599,IT @@ -48933,9 +48267,7 @@ 1397751808,1398276095,NL 1398276096,1398800383,DK 1398800384,1398817279,KW -1398817280,1398817343,US -1398817344,1398817407,KW -1398817408,1398817535,US +1398817280,1398817535,US 1398817536,1398833151,KW 1398833152,1398840447,NL 1398840448,1398840575,GB @@ -48999,8 +48331,8 @@ 1400373248,1400705279,DE 1400705280,1400705791,EU 1400705792,1400707071,DE -1400707072,1400708095,EU -1400708096,1400709119,DE +1400707072,1400707839,EU +1400707840,1400709119,DE 1400709120,1400709120,EU 1400709121,1400710142,DE 1400710143,1400710399,EU @@ -49042,7 +48374,11 @@ 1401286656,1401290751,DE 1401290752,1401356287,BE 1401356288,1401421823,DE -1401421824,1401423871,GB +1401421824,1401423135,GB +1401423136,1401423167,IN +1401423168,1401423199,GB +1401423200,1401423231,US +1401423232,1401423871,GB 1401423872,1401423903,AE 1401423904,1401423967,GR 1401423968,1401423999,SA @@ -49115,15 +48451,8 @@ 1401544704,1401546751,GB 1401546752,1401548799,IT 1401548800,1401550847,FR -1401550848,1401550879,GB -1401550880,1401550911,JE -1401550912,1401550935,GB -1401550936,1401550975,JE -1401550976,1401550983,GB -1401550984,1401551015,JE -1401551016,1401551023,GB -1401551024,1401551071,JE -1401551072,1401551871,GB +1401550848,1401551103,JE +1401551104,1401551871,GB 1401551872,1401552383,JE 1401552384,1401552895,GB 1401552896,1401554943,NL @@ -49570,7 +48899,9 @@ 1403486208,1403494399,FR 1403494400,1403502591,GB 1403502592,1403510783,NL -1403510784,1403518975,CZ +1403510784,1403515007,CZ +1403515008,1403515135,CZ +1403515136,1403518975,CZ 1403518976,1403535359,CY 1403535360,1403551743,PL 1403551744,1403556503,SK @@ -49639,7 +48970,11 @@ 1404112896,1404114943,HR 1404114944,1404116991,SE 1404116992,1404125183,NO -1404125184,1404151807,SE +1404125184,1404135423,SE +1404135424,1404137471,EE +1404137472,1404139519,SE +1404139520,1404141567,EE +1404141568,1404151807,SE 1404151808,1404152063,EE 1404152064,1404166143,SE 1404166144,1404170239,LV @@ -49654,7 +48989,8 @@ 1404190720,1404192767,SE 1404192768,1404194815,LV 1404194816,1404195839,LT -1404195840,1404196351,EE +1404195840,1404196095,NO +1404196096,1404196351,EE 1404196352,1404197375,LT 1404197376,1404197887,EE 1404197888,1404198911,LT @@ -49673,7 +49009,8 @@ 1404225536,1404227071,RU 1404227072,1404227583,HR 1404227584,1404231679,LV -1404231680,1404232191,SE +1404231680,1404231935,SE +1404231936,1404232191,EE 1404232192,1404232703,NO 1404232704,1404233215,LV 1404233216,1404234239,SE @@ -49700,7 +49037,13 @@ 1404395520,1404415999,LT 1404416000,1404420095,EE 1404420096,1404436479,RU -1404436480,1404567551,SE +1404436480,1404524543,SE +1404524544,1404526591,LV +1404526592,1404538879,SE +1404538880,1404542975,LV +1404542976,1404559359,SE +1404559360,1404563455,LV +1404563456,1404567551,SE 1404567552,1404583935,HR 1404583936,1404600319,NO 1404600320,1404645375,SE @@ -49739,9 +49082,7 @@ 1405067264,1405075455,DE 1405075456,1405083647,EE 1405083648,1405091839,SE -1405091840,1406010111,FR -1406010112,1406010367,RE -1406010368,1406140415,FR +1405091840,1406140415,FR 1406140416,1406205951,CZ 1406205952,1406271487,SE 1406271488,1406337023,IE @@ -49791,22 +49132,18 @@ 1406730240,1406746623,RU 1406746624,1406754815,BE 1406754816,1406763007,GB -1406763008,1406764031,BE -1406764032,1406765055,LU -1406765056,1406766079,BE -1406766080,1406766591,LU -1406766592,1406767103,BE -1406767104,1406768127,LU -1406768128,1406769407,BE -1406769408,1406769663,LU -1406769664,1406770175,BE +1406763008,1406765567,BE +1406765568,1406766591,LU +1406766592,1406770175,BE 1406770176,1406771199,LU 1406771200,1406779391,GB 1406779392,1406787583,RU 1406787584,1406787679,GB 1406787680,1406787687,ES 1406787688,1406787695,IL -1406787696,1406787935,GB +1406787696,1406787887,GB +1406787888,1406787903,ES +1406787904,1406787935,GB 1406787936,1406787967,ES 1406787968,1406788055,GB 1406788056,1406788095,ES @@ -49840,9 +49177,7 @@ 1406791936,1406791967,DE 1406791968,1406792191,ES 1406792192,1406792703,GB -1406792704,1406792719,FR -1406792720,1406792735,GB -1406792736,1406793119,FR +1406792704,1406793119,FR 1406793120,1406793215,ES 1406793216,1406793743,GB 1406793744,1406793759,DE @@ -49862,7 +49197,9 @@ 1406795776,1406797823,IM 1406797824,1406798591,GB 1406798592,1406798847,IM -1406798848,1406802943,GB +1406798848,1406802175,GB +1406802176,1406802431,IM +1406802432,1406802943,GB 1406802944,1406803967,IM 1406803968,1406812159,DE 1406812160,1406820351,SE @@ -49927,15 +49264,11 @@ 1407151872,1407152259,GB 1407152260,1407152263,IE 1407152264,1407152287,US -1407152288,1407154443,GB -1407154444,1407154447,SE -1407154448,1407154623,GB +1407152288,1407154623,GB 1407154624,1407154631,SE 1407154632,1407154679,GB 1407154680,1407154687,US -1407154688,1407154815,GB -1407154816,1407154819,IE -1407154820,1407156223,GB +1407154688,1407156223,GB 1407156224,1407164415,LV 1407164416,1407172607,PT 1407172608,1407180799,GB @@ -49995,14 +49328,14 @@ 1407517392,1407517423,GB 1407517424,1407517431,US 1407517432,1407517439,NG -1407517440,1407517703,GB -1407517704,1407517719,US -1407517720,1407517735,GB -1407517736,1407517743,US +1407517440,1407517695,GB +1407517696,1407517719,US +1407517720,1407517727,GB +1407517728,1407517743,US 1407517744,1407517751,GB 1407517752,1407517775,US -1407517776,1407517815,GB -1407517816,1407517823,US +1407517776,1407517807,GB +1407517808,1407517823,US 1407517824,1407517887,GQ 1407517888,1407517919,GB 1407517920,1407517927,TD @@ -50010,7 +49343,7 @@ 1407517952,1407518015,SL 1407518016,1407518039,GB 1407518040,1407518047,CD -1407518048,1407518055,GB +1407518048,1407518055,GQ 1407518056,1407518063,NG 1407518064,1407518079,GB 1407518080,1407518087,FR @@ -50126,7 +49459,30 @@ 1407520440,1407520447,CD 1407520448,1407520463,NG 1407520464,1407520511,GB -1407520512,1407520767,NG +1407520512,1407520527,CD +1407520528,1407520543,NG +1407520544,1407520551,GB +1407520552,1407520559,NG +1407520560,1407520567,VG +1407520568,1407520575,GB +1407520576,1407520583,NG +1407520584,1407520591,GB +1407520592,1407520599,NG +1407520600,1407520607,GB +1407520608,1407520615,AO +1407520616,1407520623,GB +1407520624,1407520647,NG +1407520648,1407520655,ML +1407520656,1407520663,GA +1407520664,1407520687,GB +1407520688,1407520695,NG +1407520696,1407520711,GB +1407520712,1407520719,NG +1407520720,1407520735,GB +1407520736,1407520743,LR +1407520744,1407520751,NG +1407520752,1407520759,GB +1407520760,1407520767,GH 1407520768,1407520791,GB 1407520792,1407520799,ZA 1407520800,1407520807,GB @@ -50298,9 +49654,9 @@ 1407523936,1407523943,SL 1407523944,1407523951,GN 1407523952,1407523959,GB -1407523960,1407523967,SS +1407523960,1407523967,CD 1407523968,1407524047,GB -1407524048,1407524055,MU +1407524048,1407524055,CG 1407524056,1407524063,CD 1407524064,1407524087,GB 1407524088,1407524095,CD @@ -50313,7 +49669,9 @@ 1407524208,1407524215,CD 1407524216,1407524223,GB 1407524224,1407524231,GQ -1407524232,1407524255,GB +1407524232,1407524239,GB +1407524240,1407524247,CM +1407524248,1407524255,GB 1407524256,1407524263,SN 1407524264,1407524271,ZW 1407524272,1407524287,GB @@ -50334,7 +49692,8 @@ 1407524664,1407524671,CD 1407524672,1407524679,GB 1407524680,1407524687,LR -1407524688,1407524711,GB +1407524688,1407524703,GB +1407524704,1407524711,GR 1407524712,1407524719,ZW 1407524720,1407524727,GB 1407524728,1407524735,NG @@ -50429,7 +49788,9 @@ 1407526000,1407526007,GB 1407526008,1407526015,GR 1407526016,1407526023,LR -1407526024,1407526079,GB +1407526024,1407526055,GB +1407526056,1407526063,CD +1407526064,1407526079,GB 1407526080,1407526087,BF 1407526088,1407526111,GB 1407526112,1407526119,UG @@ -50437,7 +49798,8 @@ 1407526128,1407526135,BJ 1407526136,1407526143,GB 1407526144,1407526151,UG -1407526152,1407526219,GB +1407526152,1407526155,BW +1407526156,1407526219,GB 1407526220,1407526223,BJ 1407526224,1407526231,GB 1407526232,1407526239,CD @@ -50455,20 +49817,35 @@ 1407527816,1407527823,ZW 1407527824,1407527831,GB 1407527832,1407527839,CM -1407527840,1407527863,GB +1407527840,1407527847,US +1407527848,1407527863,GB 1407527864,1407527871,AF 1407527872,1407527879,US 1407527880,1407527919,GB 1407527920,1407527935,IL -1407527936,1407528959,GB -1407528960,1407529178,US +1407527936,1407529023,GB +1407529024,1407529087,US +1407529088,1407529095,SO +1407529096,1407529103,GB +1407529104,1407529111,SO +1407529112,1407529135,GB +1407529136,1407529143,SO +1407529144,1407529151,GB +1407529152,1407529159,US +1407529160,1407529175,GB +1407529176,1407529178,SO 1407529179,1407529180,NG -1407529181,1407529215,US +1407529181,1407529183,SO +1407529184,1407529191,NG +1407529192,1407529207,GB +1407529208,1407529215,NG 1407529216,1407531007,GB 1407531008,1407531015,BF 1407531016,1407531027,GB 1407531028,1407531031,SN -1407531032,1407531111,GB +1407531032,1407531039,GB +1407531040,1407531043,GN +1407531044,1407531111,GB 1407531112,1407531119,SS 1407531120,1407531127,CD 1407531128,1407531143,GB @@ -50477,7 +49854,14 @@ 1407531160,1407531167,FR 1407531168,1407531175,GB 1407531176,1407531183,CF -1407531184,1407531391,GB +1407531184,1407531191,MU +1407531192,1407531215,GB +1407531216,1407531223,CD +1407531224,1407531231,TD +1407531232,1407531239,GB +1407531240,1407531247,GR +1407531248,1407531255,CD +1407531256,1407531391,GB 1407531392,1407531399,UG 1407531400,1407531407,GB 1407531408,1407531415,UG @@ -50528,8 +49912,7 @@ 1407532648,1407532663,GB 1407532664,1407532671,TZ 1407532672,1407532799,BF -1407532800,1407532927,SO -1407532928,1407533055,US +1407532800,1407533055,US 1407533056,1407533071,GB 1407533072,1407533079,SN 1407533080,1407533087,NG @@ -50537,7 +49920,8 @@ 1407533096,1407533111,GB 1407533112,1407533119,UG 1407533120,1407533127,NG -1407533128,1407533151,GB +1407533128,1407533135,GQ +1407533136,1407533151,GB 1407533152,1407533159,LR 1407533160,1407533167,CD 1407533168,1407533175,BF @@ -50593,7 +49977,8 @@ 1407533992,1407533999,NE 1407534000,1407534007,GB 1407534008,1407534023,VG -1407534024,1407534039,GB +1407534024,1407534031,GB +1407534032,1407534039,NG 1407534040,1407534047,BF 1407534048,1407534055,CM 1407534056,1407534079,GB @@ -50635,8 +50020,12 @@ 1407535696,1407535703,GN 1407535704,1407536127,GB 1407536128,1407536639,GA -1407536640,1407536895,CD -1407536896,1407536903,GB +1407536640,1407536649,NG +1407536650,1407536655,GB +1407536656,1407536663,NG +1407536664,1407536735,GB +1407536736,1407536743,NG +1407536744,1407536903,GB 1407536904,1407536919,ZW 1407536920,1407536927,GB 1407536928,1407536935,TD @@ -50702,7 +50091,8 @@ 1407537856,1407537863,NG 1407537864,1407537871,TG 1407537872,1407537879,IQ -1407537880,1407537903,GB +1407537880,1407537895,GB +1407537896,1407537903,NG 1407537904,1407537911,TG 1407537912,1407537935,GB 1407537936,1407537943,GH @@ -50756,7 +50146,9 @@ 1407538584,1407538591,NG 1407538592,1407538599,GB 1407538600,1407538607,NG -1407538608,1407538663,GB +1407538608,1407538615,GB +1407538616,1407538623,NG +1407538624,1407538663,GB 1407538664,1407538679,NG 1407538680,1407538719,GB 1407538720,1407538727,FR @@ -50791,11 +50183,10 @@ 1407539464,1407539467,GB 1407539468,1407539475,BF 1407539476,1407539483,GB -1407539484,1407539491,BF -1407539492,1407539495,GB +1407539484,1407539495,BF 1407539496,1407539503,TD 1407539504,1407539511,CM -1407539512,1407539519,GB +1407539512,1407539519,GA 1407539520,1407539527,NG 1407539528,1407539535,GB 1407539536,1407539543,GQ @@ -50808,7 +50199,9 @@ 1407539640,1407539647,TD 1407539648,1407539655,GQ 1407539656,1407539663,NE -1407539664,1407539703,GB +1407539664,1407539687,GB +1407539688,1407539695,CI +1407539696,1407539703,GB 1407539704,1407539711,NE 1407539712,1407539727,GB 1407539728,1407539735,GR @@ -50890,7 +50283,9 @@ 1407541032,1407541055,NG 1407541056,1407541063,GB 1407541064,1407541071,NG -1407541072,1407541095,GB +1407541072,1407541079,GB +1407541080,1407541087,NG +1407541088,1407541095,GB 1407541096,1407541103,GQ 1407541104,1407541175,GB 1407541176,1407541183,NG @@ -50997,21 +50392,48 @@ 1407544024,1407544031,GB 1407544032,1407544039,CD 1407544040,1407544047,NG -1407544048,1407544119,GB +1407544048,1407544095,GB +1407544096,1407544103,NE +1407544104,1407544119,GB 1407544120,1407544127,NE 1407544128,1407544135,GB 1407544136,1407544143,NE 1407544144,1407544167,GB 1407544168,1407544175,NE -1407544176,1407544423,GB +1407544176,1407544239,GB +1407544240,1407544247,GQ +1407544248,1407544343,GB +1407544344,1407544351,TD +1407544352,1407544367,CI +1407544368,1407544375,GB +1407544376,1407544383,CI +1407544384,1407544423,GB 1407544424,1407544431,GN -1407544432,1407544583,GB +1407544432,1407544447,CI +1407544448,1407544463,GB +1407544464,1407544471,ML +1407544472,1407544503,GB +1407544504,1407544511,NG +1407544512,1407544567,GB +1407544568,1407544575,TD +1407544576,1407544583,GB 1407544584,1407544591,NG 1407544592,1407544599,GB -1407544600,1407544607,NG -1407544608,1407544647,GB -1407544648,1407544655,BF -1407544656,1407544839,GB +1407544600,1407544607,CG +1407544608,1407544623,GB +1407544624,1407544639,NG +1407544640,1407544655,GB +1407544656,1407544663,NG +1407544664,1407544671,UG +1407544672,1407544687,GB +1407544688,1407544695,GN +1407544696,1407544735,GB +1407544736,1407544743,NG +1407544744,1407544751,GB +1407544752,1407544759,CR +1407544760,1407544807,GB +1407544808,1407544823,NG +1407544824,1407544839,GB 1407544840,1407544847,SL 1407544848,1407544887,GB 1407544888,1407544895,NG @@ -51023,7 +50445,7 @@ 1407545624,1407545631,NG 1407545632,1407545639,GB 1407545640,1407545647,NG -1407545648,1407545655,GB +1407545648,1407545655,BF 1407545656,1407545663,NG 1407545664,1407545719,GB 1407545720,1407545735,NG @@ -51055,7 +50477,9 @@ 1407546032,1407546039,NG 1407546040,1407546095,GB 1407546096,1407546103,GQ -1407546104,1407546383,GB +1407546104,1407546111,GB +1407546112,1407546367,FR +1407546368,1407546383,GB 1407546384,1407546407,NG 1407546408,1407546415,GB 1407546416,1407546471,NG @@ -51232,7 +50656,9 @@ 1407706560,1407707055,GB 1407707056,1407707063,PT 1407707064,1407707703,GB -1407707704,1407707839,CH +1407707704,1407707727,CH +1407707728,1407707743,GB +1407707744,1407707839,CH 1407707840,1407707903,GB 1407707904,1407707935,CH 1407707936,1407709183,GB @@ -51264,9 +50690,7 @@ 1408237568,1408270335,CZ 1408270336,1408303103,PT 1408303104,1408335871,LV -1408335872,1408336879,SE -1408336880,1408336887,FI -1408336888,1408338959,SE +1408335872,1408338959,SE 1408338960,1408338967,NO 1408338968,1408353815,SE 1408353816,1408353823,DK @@ -51319,7 +50743,9 @@ 1408761856,1409286143,SE 1409286144,1409362431,HU 1409362432,1409363967,BG -1409363968,1409380655,HU +1409363968,1409378679,HU +1409378680,1409378687,RO +1409378688,1409380655,HU 1409380656,1409380673,RO 1409380674,1409413119,HU 1409413120,1409415167,BG @@ -51340,8 +50766,7 @@ 1410009480,1410009487,A2 1410009488,1410009535,GI 1410009536,1410009599,A2 -1410009600,1410009855,DE -1410009856,1410010111,US +1410009600,1410010111,US 1410010112,1410010127,A2 1410010128,1410010135,IQ 1410010136,1410010399,A2 @@ -51539,9 +50964,7 @@ 1410225432,1410225439,GB 1410225440,1410233575,FR 1410233576,1410233583,IE -1410233584,1410266303,FR -1410266304,1410266311,IE -1410266312,1410269183,FR +1410233584,1410269183,FR 1410269184,1410278399,LT 1410278400,1410278655,LV 1410278656,1410318335,LT @@ -51556,7 +50979,9 @@ 1410354432,1410359295,CH 1410359296,1410367487,CZ 1410367488,1410375679,RU -1410375680,1410383871,DK +1410375680,1410379047,DK +1410379048,1410379055,GB +1410379056,1410383871,DK 1410383872,1410392063,NO 1410392064,1410397183,DE 1410397184,1410397439,PL @@ -51587,9 +51012,7 @@ 1410514944,1410523135,GB 1410523136,1410531327,PT 1410531328,1410539519,DE -1410539520,1410544415,GB -1410544416,1410544431,DE -1410544432,1410547711,GB +1410539520,1410547711,GB 1410547712,1410555903,CZ 1410555904,1410564095,GB 1410564096,1410572287,SE @@ -51597,14 +51020,7 @@ 1410572864,1410572895,RU 1410572896,1410573407,DE 1410573408,1410573439,RU -1410573440,1410573695,DE -1410573696,1410573711,RU -1410573712,1410573759,DE -1410573760,1410573775,RU -1410573776,1410573799,DE -1410573800,1410573815,IT -1410573816,1410573823,RU -1410573824,1410574511,DE +1410573440,1410574511,DE 1410574512,1410574519,CH 1410574520,1410574527,DE 1410574528,1410574543,IT @@ -51818,12 +51234,11 @@ 1411907584,1411907839,EU 1411907840,1411908095,GB 1411908096,1411908351,DE -1411908352,1411908399,EU -1411908400,1411908479,GB -1411908480,1411908535,EU -1411908536,1411908559,GB -1411908560,1411908563,AU -1411908564,1411908607,EU +1411908352,1411908407,EU +1411908408,1411908479,GB +1411908480,1411908543,EU +1411908544,1411908559,GB +1411908560,1411908607,EU 1411908608,1411908863,GB 1411908864,1411909631,EU 1411909632,1411909759,GB @@ -51836,19 +51251,17 @@ 1411915776,1411915839,GB 1411915840,1411915903,EU 1411915904,1411915911,GB -1411915912,1411915935,EU -1411915936,1411915967,GB -1411915968,1411916031,EU +1411915912,1411916031,EU 1411916032,1411916095,GB 1411916096,1411916295,EU 1411916296,1411916303,GB 1411916304,1411916799,EU 1411916800,1411916863,GB 1411916864,1411917567,EU -1411917568,1411917639,GB -1411917640,1411917663,EU -1411917664,1411917695,GB -1411917696,1411917759,EU +1411917568,1411917599,GB +1411917600,1411917631,EU +1411917632,1411917639,GB +1411917640,1411917759,EU 1411917760,1411917791,GB 1411917792,1411919871,EU 1411919872,1411923967,DE @@ -51893,7 +51306,17 @@ 1412002304,1412002559,SI 1412002560,1412002783,MK 1412002784,1412002815,SI -1412002816,1412003103,BA +1412002816,1412002847,BA +1412002848,1412002863,SI +1412002864,1412002895,BA +1412002896,1412002903,SI +1412002904,1412002911,BA +1412002912,1412002919,SI +1412002920,1412003015,BA +1412003016,1412003023,SI +1412003024,1412003039,BA +1412003040,1412003055,SI +1412003056,1412003103,BA 1412003104,1412003111,SI 1412003112,1412003119,BA 1412003120,1412003135,SI @@ -51907,9 +51330,7 @@ 1412003264,1412003271,SI 1412003272,1412003303,BA 1412003304,1412003327,SI -1412003328,1412003335,BA -1412003336,1412003343,SI -1412003344,1412003351,BA +1412003328,1412003351,BA 1412003352,1412003375,SI 1412003376,1412003383,BA 1412003384,1412003391,SI @@ -51922,7 +51343,9 @@ 1412003624,1412003631,BA 1412003632,1412003639,SI 1412003640,1412003647,BA -1412003648,1412003799,SI +1412003648,1412003735,SI +1412003736,1412003743,BA +1412003744,1412003799,SI 1412003800,1412003815,BA 1412003816,1412003855,SI 1412003856,1412003903,BG @@ -51992,7 +51415,9 @@ 1412923392,1412939775,FR 1412939776,1412956159,CH 1412956160,1413480447,DE -1413480448,1414004735,GB +1413480448,1413578751,GB +1413578752,1413586943,IN +1413586944,1414004735,GB 1414004736,1414069218,CH 1414069219,1414069219,AT 1414069220,1414266879,CH @@ -52006,9 +51431,7 @@ 1416101888,1416364031,NL 1416364032,1416626175,IL 1416626176,1417019391,AT -1417019392,1417084927,DE -1417084928,1417117695,AT -1417117696,1417150463,DE +1417019392,1417150463,DE 1417150464,1417674751,ES 1417674752,1421869055,DE 1421869056,1422393343,BE @@ -52026,7 +51449,9 @@ 1422400000,1422400255,IT 1422400256,1422400511,DE 1422400512,1422400767,BR -1422400768,1422401127,DE +1422400768,1422401099,DE +1422401100,1422401103,AT +1422401104,1422401127,DE 1422401128,1422401135,US 1422401136,1422401319,DE 1422401320,1422401327,AT @@ -52066,8 +51491,8 @@ 1422418176,1422418943,US 1422418944,1422419967,DE 1422419968,1422423807,US -1422423808,1422425855,DE -1422425856,1422430463,US +1422423808,1422427903,DE +1422427904,1422430463,US 1422430464,1422437391,DE 1422437392,1422437399,AT 1422437400,1422437439,DE @@ -52263,7 +51688,9 @@ 1422468192,1422468207,AT 1422468208,1422468671,DE 1422468672,1422468735,IT -1422468736,1422468799,DE +1422468736,1422468751,DE +1422468752,1422468767,US +1422468768,1422468799,DE 1422468800,1422468863,CN 1422468864,1422469839,DE 1422469840,1422469847,RO @@ -52313,7 +51740,9 @@ 1422476864,1422476895,GB 1422476896,1422479615,DE 1422479616,1422479871,BE -1422479872,1422483423,DE +1422479872,1422480431,DE +1422480432,1422480447,GB +1422480448,1422483423,DE 1422483424,1422483439,GB 1422483440,1422484463,DE 1422484464,1422484479,GB @@ -52377,9 +51806,7 @@ 1424590768,1424590771,GB 1424590772,1424590783,SE 1424590784,1424590847,CH -1424590848,1424591359,SE -1424591360,1424591367,GB -1424591368,1424591406,SE +1424590848,1424591406,SE 1424591407,1424591407,GB 1424591408,1424591423,SE 1424591424,1424591439,GB @@ -52389,7 +51816,9 @@ 1424591464,1424591471,GB 1424591472,1424591551,SE 1424591552,1424591615,CZ -1424591616,1424592639,GB +1424591616,1424591839,GB +1424591840,1424591871,NL +1424591872,1424592639,GB 1424592640,1424593151,FR 1424593152,1424593407,NL 1424593408,1424593663,DE @@ -52491,8 +51920,8 @@ 1424605952,1424605959,CH 1424605960,1424605967,AT 1424605968,1424605983,GB -1424605984,1424606023,AT -1424606024,1424606207,GB +1424605984,1424606015,AT +1424606016,1424606207,GB 1424606208,1424606719,IT 1424606720,1424606975,NL 1424606976,1424607167,GB @@ -52513,7 +51942,11 @@ 1424608544,1424608567,GB 1424608568,1424608671,ES 1424608672,1424608691,GB -1424608692,1424609023,ES +1424608692,1424608743,ES +1424608744,1424608751,GB +1424608752,1424608759,ES +1424608760,1424608767,GB +1424608768,1424609023,ES 1424609024,1424609055,GB 1424609056,1424609151,DE 1424609152,1424609215,GB @@ -52617,8 +52050,8 @@ 1424619776,1424619807,BE 1424619808,1424619839,GB 1424619840,1424619915,BE -1424619916,1424619919,GB -1424619920,1424620031,BE +1424619916,1424619935,GB +1424619936,1424620031,BE 1424620032,1424621311,GB 1424621312,1424621567,IT 1424621568,1424625663,PL @@ -52686,9 +52119,7 @@ 1424752128,1424752383,DE 1424752384,1424752639,NL 1424752640,1424785407,HU -1424785408,1424811775,ES -1424811776,1424812031,GB -1424812032,1424818175,ES +1424785408,1424818175,ES 1424818176,1424850943,RU 1424850944,1424883711,LV 1424883712,1424916479,DK @@ -52744,9 +52175,7 @@ 1425439728,1425440767,DE 1425440768,1425442815,SE 1425442816,1425444863,GB -1425444864,1425445139,IT -1425445140,1425445141,GB -1425445142,1425446911,IT +1425444864,1425446911,IT 1425446912,1425448959,GB 1425448960,1425451007,CZ 1425451008,1425459199,GB @@ -52788,15 +52217,9 @@ 1425489664,1425506303,RO 1425506304,1425522687,NO 1425522688,1425539071,IT -1425539072,1425712895,FI -1425712896,1425713151,AX -1425713152,1425715071,FI -1425715072,1425715199,AX -1425715200,1425715967,FI -1425715968,1425716223,AX -1425716224,1425801215,FI +1425539072,1425801215,FI 1425801216,1425817599,BG -1425817600,1425833983,DE +1425829888,1425833983,DE 1425833984,1425850367,RU 1425850368,1425866751,GB 1425866752,1425883135,CH @@ -53100,13 +52523,9 @@ 1426967672,1426967679,ES 1426967680,1426968343,GB 1426968344,1426968351,ES -1426968352,1426969135,GB -1426969136,1426969151,ES -1426969152,1426971855,GB +1426968352,1426971855,GB 1426971856,1426971863,ES -1426971864,1426972319,GB -1426972320,1426972326,FR -1426972327,1426973335,GB +1426971864,1426973335,GB 1426973336,1426973343,ES 1426973344,1426976031,GB 1426976032,1426976047,ES @@ -53197,32 +52616,27 @@ 1427739890,1427739890,RU 1427739891,1427742719,DE 1427742720,1427742751,IO -1427742752,1427742943,DE -1427742944,1427742975,BR +1427742752,1427742975,DE 1427742976,1427743007,RU 1427743008,1427743039,US -1427743040,1427743071,BR +1427743040,1427743071,DE 1427743072,1427743103,CY 1427743104,1427743167,DE 1427743168,1427743199,CY 1427743200,1427743231,TR 1427743232,1427743263,GR -1427743264,1427743295,DE -1427743296,1427743327,BR -1427743328,1427743359,DE -1427743360,1427743423,BR +1427743264,1427743391,DE +1427743392,1427743423,BR 1427743424,1427743455,US 1427743456,1427743487,CY -1427743488,1427743519,DE -1427743520,1427743551,BR -1427743552,1427743615,DE +1427743488,1427743615,DE 1427743616,1427743647,DK 1427743648,1427743679,DE 1427743680,1427743711,RU 1427743712,1427743743,TR 1427743744,1427743775,DE 1427743776,1427743807,ZA -1427743808,1427743839,BR +1427743808,1427743839,DE 1427743840,1427743871,RU 1427743872,1427743903,DE 1427743904,1427743935,US @@ -53245,8 +52659,7 @@ 1427744640,1427744671,TR 1427744672,1427744703,DE 1427744704,1427744735,BR -1427744736,1427744767,DE -1427744768,1427744799,BR +1427744736,1427744799,DE 1427744800,1427744831,LT 1427744832,1427744863,DE 1427744864,1427744927,TR @@ -53290,12 +52703,9 @@ 1427746240,1427746271,US 1427746272,1427747839,DE 1427747840,1427747871,FI -1427747872,1427747903,DE -1427747904,1427747935,BR +1427747872,1427747935,DE 1427747936,1427747967,US -1427747968,1427747999,DE -1427748000,1427748031,BR -1427748032,1427748063,DE +1427747968,1427748063,DE 1427748064,1427748095,US 1427748096,1427748127,BR 1427748128,1427748159,DE @@ -53309,19 +52719,15 @@ 1427748672,1427748703,DE 1427748704,1427748735,LT 1427748736,1427748799,BR -1427748800,1427749471,DE -1427749472,1427749503,BR -1427749504,1427749567,DE +1427748800,1427749567,DE 1427749568,1427749599,CY 1427749600,1427749631,DE 1427749632,1427749663,RU -1427749664,1427749695,DE -1427749696,1427749727,BR -1427749728,1427749855,DE +1427749664,1427749855,DE 1427749856,1427749887,RU 1427749888,1427749919,DE 1427749920,1427749951,US -1427749952,1427749983,BR +1427749952,1427749983,DE 1427749984,1427750015,RU 1427750016,1427750079,DE 1427750080,1427750111,US @@ -53347,12 +52753,9 @@ 1427760352,1427760383,RU 1427760384,1427760415,DE 1427760416,1427760447,US -1427760448,1427760479,BR -1427760480,1427760575,DE +1427760448,1427760575,DE 1427760576,1427760607,CH -1427760608,1427760735,DE -1427760736,1427760767,BR -1427760768,1427760799,DE +1427760608,1427760799,DE 1427760800,1427760831,US 1427760832,1427760863,DE 1427760864,1427760895,US @@ -53364,8 +52767,7 @@ 1427761216,1427761247,TR 1427761248,1427761279,US 1427761280,1427761311,RU -1427761312,1427761343,UA -1427761344,1427761375,DE +1427761312,1427761375,DE 1427761376,1427761407,TW 1427761408,1427761439,RU 1427761440,1427761503,DE @@ -53379,9 +52781,7 @@ 1427832832,1427865599,BE 1427865600,1427898367,DK 1427898368,1427914751,RU -1427914752,1427923967,BE -1427923968,1427924223,FR -1427924224,1427931135,BE +1427914752,1427931135,BE 1427931136,1427947519,PL 1427947520,1427963903,RU 1427963904,1427980287,TR @@ -53422,9 +52822,7 @@ 1428152320,1428160511,PL 1428160512,1428260863,IT 1428260864,1428261119,GB -1428261120,1428474367,IT -1428474368,1428474623,US -1428474624,1428536831,IT +1428261120,1428536831,IT 1428536832,1428537087,US 1428537088,1429209087,IT 1429209088,1430257663,ES @@ -53488,58 +52886,13 @@ 1432100864,1432109055,CZ 1432109056,1432117247,GB 1432117248,1432125439,CY -1432125440,1432131607,NL -1432131608,1432131615,PH -1432131616,1432131679,NL -1432131680,1432131695,PH -1432131696,1432131711,NL -1432131712,1432131727,PH -1432131728,1432131743,NL -1432131744,1432131759,PH -1432131760,1432131775,NL -1432131776,1432131783,PH -1432131784,1432131887,NL -1432131888,1432131903,PH -1432131904,1432131919,NL -1432131920,1432131935,PH -1432131936,1432131951,NL -1432131952,1432131967,PH -1432131968,1432131999,NL -1432132000,1432132031,PH -1432132032,1432132271,NL -1432132272,1432132287,PH -1432132288,1432132303,NL -1432132304,1432132319,PH -1432132320,1432132351,NL -1432132352,1432132495,PH -1432132496,1432132511,NL -1432132512,1432132559,PH -1432132560,1432132639,NL -1432132640,1432132655,PH -1432132656,1432132671,NL -1432132672,1432132687,PH -1432132688,1432132815,NL -1432132816,1432132831,PH -1432132832,1432132895,NL -1432132896,1432132911,PH -1432132912,1432132927,NL -1432132928,1432132943,PH -1432132944,1432133039,NL -1432133040,1432133055,PH -1432133056,1432133151,NL -1432133152,1432133167,PH -1432133168,1432133199,NL -1432133200,1432133215,PH -1432133216,1432133327,NL -1432133328,1432133343,PH -1432133344,1432133455,NL -1432133456,1432133503,PH -1432133504,1432133543,NL -1432133544,1432133551,PH -1432133552,1432133631,NL +1432125440,1432131583,NL +1432131584,1432133631,US 1432133632,1432150015,GB 1432150016,1432158207,BA -1432158208,1432165247,DE +1432158208,1432161852,DE +1432161853,1432161855,RU +1432161856,1432165247,DE 1432165248,1432165375,PL 1432165376,1432166399,DE 1432166400,1432174591,RU @@ -53659,7 +53012,8 @@ 1433831424,1433833471,RU 1433833472,1433835519,IT 1433835520,1433835775,IE -1433835776,1433837567,GB +1433835776,1433836031,AU +1433836032,1433837567,GB 1433837568,1433839615,DE 1433839616,1433841663,GB 1433841664,1433843711,RU @@ -53680,9 +53034,7 @@ 1433864192,1433866239,HU 1433866240,1433866751,NL 1433866752,1433867007,GB -1433867008,1433867521,NL -1433867522,1433867522,GB -1433867523,1433867775,NL +1433867008,1433867775,NL 1433867776,1433870335,GB 1433870336,1433872383,TR 1433872384,1433874431,IT @@ -53717,9 +53069,7 @@ 1433921536,1433921735,CH 1433921736,1433921736,EU 1433921737,1433923583,CH -1433923584,1433923711,BE -1433923712,1433924479,NL -1433924480,1433925631,BE +1433923584,1433925631,BE 1433925632,1433927679,GB 1433927680,1434189823,RO 1434189824,1434451967,AT @@ -53761,7 +53111,9 @@ 1434691072,1434691327,NL 1434691328,1434692607,DE 1434692608,1434692671,NL -1434692672,1434694911,DE +1434692672,1434692863,DE +1434692864,1434693119,NL +1434693120,1434694911,DE 1434694912,1434695679,NL 1434695680,1434696447,DE 1434696448,1434696703,NL @@ -53779,11 +53131,19 @@ 1434702784,1434702911,NL 1434702912,1434702975,DE 1434702976,1434703039,NL -1434703040,1434704895,DE +1434703040,1434703359,DE +1434703360,1434703615,NL +1434703616,1434703871,DE +1434703872,1434703999,NL +1434704000,1434704895,DE 1434704896,1434705407,NL -1434705408,1434705663,DE +1434705408,1434705535,DE +1434705536,1434705567,NL +1434705568,1434705663,DE 1434705664,1434705919,NL -1434705920,1434708991,DE +1434705920,1434708479,DE +1434708480,1434708735,NL +1434708736,1434708991,DE 1434708992,1434709247,NL 1434709248,1434709503,DE 1434709504,1434709759,NL @@ -53898,15 +53258,14 @@ 1436536832,1436538879,GB 1436538880,1436540927,JO 1436540928,1436542975,RU -1436542976,1436544199,NL +1436542976,1436544191,NL +1436544192,1436544199,GB 1436544200,1436544207,HK 1436544208,1436545023,NL 1436545024,1436547071,DE 1436547072,1436549119,GB 1436549120,1436745727,CZ -1436745728,1436803071,SK -1436803072,1436807167,CZ -1436807168,1436811263,SK +1436745728,1436811263,SK 1436811264,1437073407,NO 1437073408,1437335551,FR 1437335552,1437597695,RU @@ -53956,25 +53315,29 @@ 1438860416,1438861331,DE 1438861332,1438861335,US 1438861336,1438861375,DE -1438861376,1438861439,US -1438861440,1438861523,DE -1438861524,1438861615,US -1438861616,1438861631,DE -1438861632,1438861639,US -1438861640,1438861647,DE -1438861648,1438861823,US +1438861376,1438861443,US +1438861444,1438861523,DE +1438861524,1438861559,US +1438861560,1438861563,DE +1438861564,1438861639,US +1438861640,1438861663,DE +1438861664,1438861679,US +1438861680,1438861687,DE +1438861688,1438861823,US 1438861824,1438862079,CH -1438862080,1438862339,DE -1438862340,1438862359,US +1438862080,1438862343,DE +1438862344,1438862359,US 1438862360,1438862399,DE -1438862400,1438862475,US +1438862400,1438862463,US +1438862464,1438862471,DE +1438862472,1438862475,US 1438862476,1438862479,DE -1438862480,1438862599,US -1438862600,1438862615,DE -1438862616,1438862679,US -1438862680,1438862751,DE -1438862752,1438862775,US -1438862776,1438862847,DE +1438862480,1438862623,US +1438862624,1438862639,DE +1438862640,1438862687,US +1438862688,1438862695,DE +1438862696,1438862791,US +1438862792,1438862847,DE 1438862848,1438862879,US 1438862880,1438869655,DE 1438869656,1438869663,UA @@ -53992,7 +53355,9 @@ 1438877184,1438877439,A2 1438877440,1438877695,RU 1438877696,1438877951,LT -1438877952,1438878975,LB +1438877952,1438878207,LB +1438878208,1438878463,IQ +1438878464,1438878975,LB 1438878976,1438879231,IQ 1438879232,1438880767,RU 1438880768,1438881279,IQ @@ -54091,9 +53456,7 @@ 1439350784,1439354879,UA 1439354880,1439358975,PL 1439358976,1439367167,RU -1439367168,1439375359,NL -1439375360,1439382527,DE -1439382528,1439432703,NL +1439367168,1439432703,NL 1439432704,1439498239,RO 1439498240,1439513599,DE 1439513600,1439514623,GB @@ -54174,11 +53537,7 @@ 1441386112,1441386239,IL 1441386240,1441387519,FR 1441387520,1441387647,US -1441387648,1441387903,FR -1441387904,1441387919,GN -1441387920,1441387935,FR -1441387936,1441387951,GB -1441387952,1441388671,FR +1441387648,1441388671,FR 1441388672,1441388799,CA 1441388800,1441389055,FR 1441389056,1441389119,IE @@ -54186,7 +53545,9 @@ 1441389224,1441389231,LU 1441389232,1441389567,FR 1441389568,1441389599,LU -1441389600,1441390591,FR +1441389600,1441390383,FR +1441390384,1441390399,CA +1441390400,1441390591,FR 1441390592,1441398783,DK 1441398784,1441415167,RU 1441415168,1441423359,GB @@ -54254,7 +53615,13 @@ 1441620960,1441628159,FR 1441628160,1441636351,SA 1441636352,1441644543,PL -1441644544,1441652735,GB +1441644544,1441645823,GB +1441645824,1441646079,GB +1441646080,1441649407,GB +1441649408,1441649919,GB +1441649920,1441652223,GB +1441652224,1441652479,GB +1441652480,1441652735,GB 1441652736,1441660927,SK 1441660928,1441669119,ES 1441669120,1441677311,GE @@ -54282,9 +53649,7 @@ 1441767424,1441775615,IT 1441775616,1441783807,ES 1441783808,1441791999,CZ -1441792000,1441870847,PT -1441870848,1441871359,US -1441871360,1442316287,PT +1441792000,1442316287,PT 1442316288,1442316583,SK 1442316584,1442316591,DE 1442316592,1442332927,SK @@ -54331,11 +53696,9 @@ 1445434528,1445434559,BE 1445434560,1445434623,NL 1445434624,1445435135,BE -1445435136,1445435395,NL -1445435396,1445435399,BE -1445435400,1445435423,NL -1445435424,1445435431,BE -1445435432,1445435967,NL +1445435136,1445435391,NL +1445435392,1445435647,BE +1445435648,1445435967,NL 1445435968,1445435999,BE 1445436000,1445436287,NL 1445436288,1445436415,BE @@ -55051,16 +54414,13 @@ 1450057728,1450065919,EE 1450065920,1450074111,DE 1450074112,1450082303,RU -1450082304,1450084351,IT -1450084352,1450085119,A2 +1450082304,1450084863,IT +1450084864,1450085119,A2 1450085120,1450090495,IT 1450090496,1450106879,RU 1450106880,1450115071,SK 1450115072,1450123263,RU -1450123264,1450125231,AT -1450125232,1450125239,DE -1450125240,1450125247,US -1450125248,1450131455,AT +1450123264,1450131455,AT 1450131456,1450139647,UA 1450139648,1450147839,PL 1450147840,1450151935,CH @@ -55079,9 +54439,7 @@ 1450311680,1450442751,FI 1450442752,1450704895,CH 1450704896,1451229183,RO -1451229184,1455204703,GB -1455204704,1455204735,GG -1455204736,1455423487,GB +1451229184,1455423487,GB 1455423488,1459617791,FR 1459617792,1461714943,IT 1461714944,1462763519,IE @@ -55150,7 +54508,9 @@ 1466592512,1466592767,GB 1466592768,1466592895,FR 1466592896,1466593023,GB -1466593024,1466606847,DE +1466593024,1466604543,DE +1466604544,1466604671,PL +1466604672,1466606847,DE 1466606848,1466607103,FR 1466607104,1466608895,DE 1466608896,1466609151,ES @@ -55287,9 +54647,7 @@ 1474723840,1474756607,SA 1474756608,1474822143,FR 1474822144,1474887679,IE -1474887680,1474944527,NL -1474944528,1474944535,US -1474944536,1474953215,NL +1474887680,1474953215,NL 1474953216,1474968895,DE 1474968896,1474968903,A2 1474968904,1475016447,DE @@ -55370,7 +54728,9 @@ 1475198144,1475198175,GB 1475198176,1475198975,FR 1475198976,1475201023,BH -1475201024,1475203071,RS +1475201024,1475202799,RS +1475202800,1475202815,HR +1475202816,1475203071,RS 1475203072,1475205119,SE 1475205120,1475205887,DE 1475205888,1475206143,US @@ -55394,7 +54754,9 @@ 1475229952,1475230255,SE 1475230256,1475230263,NO 1475230264,1475230431,SE -1475230432,1475230975,NO +1475230432,1475230463,NO +1475230464,1475230591,SE +1475230592,1475230975,NO 1475230976,1475231023,SE 1475231024,1475233791,NO 1475233792,1475235071,GB @@ -55463,7 +54825,11 @@ 1475362816,1475379199,FR 1475379200,1475395583,RU 1475395584,1475411967,LU -1475411968,1475428351,IT +1475411968,1475417975,IT +1475417976,1475417983,A2 +1475417984,1475424943,IT +1475424944,1475424951,DE +1475424952,1475428351,IT 1475428352,1475444735,SE 1475444736,1475461119,AM 1475461120,1475477503,RU @@ -55494,9 +54860,7 @@ 1475627656,1475627663,JE 1475627664,1475627687,GB 1475627688,1475627695,JE -1475627696,1475627775,GB -1475627776,1475628031,JE -1475628032,1475628287,GB +1475627696,1475628287,GB 1475628288,1475634431,JE 1475634432,1475634495,GB 1475634496,1475634559,JE @@ -55507,9 +54871,7 @@ 1475634752,1475634759,GB 1475634760,1475634799,JE 1475634800,1475634815,GB -1475634816,1475634967,JE -1475634968,1475634975,GB -1475634976,1475636287,JE +1475634816,1475636287,JE 1475636288,1475636399,GB 1475636400,1475636415,JE 1475636416,1475636431,GB @@ -55518,14 +54880,7 @@ 1475636480,1475636735,JE 1475636736,1475637503,GB 1475637504,1475639039,JE -1475639040,1475639215,GB -1475639216,1475639223,JE -1475639224,1475639263,GB -1475639264,1475639271,BB -1475639272,1475639279,JE -1475639280,1475639287,GB -1475639288,1475639295,JE -1475639296,1475639343,GB +1475639040,1475639343,GB 1475639344,1475639359,JE 1475639360,1475639375,GB 1475639376,1475639383,JE @@ -55613,8 +54968,7 @@ 1475735440,1475735455,RU 1475735456,1475735551,UA 1475735552,1475735807,US -1475735808,1475735999,RU -1475736000,1475736063,GB +1475735808,1475736063,RU 1475736064,1475736127,LV 1475736128,1475736191,EE 1475736192,1475736255,GB @@ -55724,9 +55078,9 @@ 1476042752,1476050943,PL 1476050944,1476067327,RU 1476067328,1476075519,TR -1476075520,1476079555,NL -1476079556,1476079557,DE -1476079558,1476083711,NL +1476075520,1476079551,NL +1476079552,1476079571,DE +1476079572,1476083711,NL 1476083712,1476116479,RU 1476116480,1476124671,SE 1476124672,1476132863,PL @@ -55753,9 +55107,7 @@ 1476214784,1476222975,SE 1476222976,1476231167,IT 1476231168,1476239359,NL -1476239360,1476245759,DE -1476245760,1476246015,PL -1476246016,1476247551,DE +1476239360,1476247551,DE 1476247552,1476255743,RU 1476255744,1476257791,ES 1476257792,1476259839,FR @@ -55799,14 +55151,14 @@ 1478870168,1478870175,FR 1478870176,1478872119,IT 1478872120,1478872127,FR -1478872128,1479016191,IT -1479016192,1479016447,US -1479016448,1479400703,IT -1479400704,1479401471,US +1478872128,1479400447,IT +1479400448,1479401471,US 1479401472,1479898367,IT 1479898368,1479898623,US 1479898624,1480589311,IT -1480589312,1481633041,DE +1480589312,1481629951,DE +1481629952,1481630143,US +1481630144,1481633041,DE 1481633042,1481633042,DE 1481633043,1481637887,DE 1481637888,1481646079,SE @@ -55889,9 +55241,7 @@ 1482031104,1482039295,SY 1482039296,1482047487,SE 1482047488,1482055679,RU -1482055680,1482059811,CZ -1482059812,1482059813,SK -1482059814,1482060919,CZ +1482055680,1482060919,CZ 1482060920,1482060927,SK 1482060928,1482063871,CZ 1482063872,1482072063,FI @@ -55916,12 +55266,12 @@ 1483997184,1484128255,AT 1484128256,1484259327,LT 1484259328,1484783615,FR -1484783616,1484849151,DE +1484783616,1484804095,DE +1484804096,1484804223,NL +1484804224,1484849151,DE 1484849152,1484914687,SE 1484914688,1484980223,DE -1484980224,1485001055,SE -1485001056,1485001087,NO -1485001088,1485045759,SE +1484980224,1485045759,SE 1485045760,1485111295,HU 1485111296,1485242367,DE 1485242368,1485246463,RU @@ -55946,8 +55296,7 @@ 1486211688,1486211695,GB 1486211696,1486225407,IT 1486225408,1486258175,DE -1486258176,1486290943,RS -1486290944,1486292991,GB +1486258176,1486292991,GB 1486292992,1486295039,RU 1486295040,1486297087,ES 1486297088,1486299135,IE @@ -56039,9 +55388,7 @@ 1489647104,1489647359,GB 1489647360,1489648639,IT 1489648640,1489648895,A2 -1489648896,1489649158,GB -1489649159,1489649159,US -1489649160,1489649407,GB +1489648896,1489649407,US 1489649408,1489649663,EU 1489649664,1489650687,FR 1489650688,1489651199,EU @@ -56205,21 +55552,13 @@ 1490026496,1490028543,US 1490028544,1490029055,UA 1490029056,1490042879,NL -1490042880,1490049879,CZ -1490049880,1490049887,AT -1490049888,1490049919,CZ -1490049920,1490049983,PL -1490049984,1490053375,CZ +1490042880,1490053375,CZ 1490053376,1490054143,PL 1490054144,1490059263,CZ 1490059264,1490075647,DE 1490075648,1490092031,GB 1490092032,1490108415,DE -1490108416,1490116607,MC -1490116608,1490118143,FR -1490118144,1490120703,MC -1490120704,1490124287,FR -1490124288,1490124799,MC +1490108416,1490124799,MC 1490124800,1490157567,HU 1490157568,1490173951,RU 1490173952,1490190335,PT @@ -56250,10 +55589,14 @@ 1490200320,1490200575,GB 1490200576,1490200831,ES 1490200832,1490201087,GB -1490201088,1490201471,DE +1490201088,1490201183,DE +1490201184,1490201215,HU +1490201216,1490201471,DE 1490201472,1490201535,HU 1490201536,1490201855,DE -1490201856,1490206719,GB +1490201856,1490205183,GB +1490205184,1490205439,LY +1490205440,1490206719,GB 1490206720,1490223103,GE 1490223104,1490255871,GB 1490255872,1490272255,NL @@ -56285,7 +55628,11 @@ 1490518016,1490534399,RU 1490534400,1490550783,DE 1490550784,1490616319,LT -1490616320,1490681855,DE +1490616320,1490680643,DE +1490680644,1490680647,A2 +1490680648,1490680663,DE +1490680664,1490680667,A2 +1490680668,1490681855,DE 1490681856,1490747391,GR 1490747392,1490812927,FR 1490812928,1490878463,PL @@ -56314,23 +55661,28 @@ 1490944000,1491075071,LT 1491075072,1493172223,TR 1493172224,1493303295,DE -1493303296,1493434367,FR +1493303296,1493430271,FR +1493430272,1493432319,GP +1493432320,1493433087,FR +1493433088,1493434111,MQ +1493434112,1493434367,FR 1493434368,1493565439,SA 1493565440,1493696511,ES 1493696512,1493958655,NO 1493958656,1494220799,DE -1494220800,1494221055,FR -1494221056,1494221311,RE -1494221312,1494222335,FR -1494222336,1494223103,RE -1494223104,1494224127,FR -1494224128,1494224383,RE -1494224384,1494224895,FR -1494224896,1494226431,GP -1494226432,1494226943,FR -1494226944,1494227455,GP +1494220800,1494221823,FR +1494221824,1494222079,RE +1494222080,1494222335,FR +1494222336,1494223359,RE +1494223360,1494223615,FR +1494223616,1494223871,RE +1494223872,1494224895,FR +1494224896,1494226687,GP +1494226688,1494226815,FR +1494226816,1494227455,GP 1494227456,1494227967,FR -1494227968,1494228991,GP +1494227968,1494228735,GP +1494228736,1494228991,FR 1494228992,1494237183,RU 1494237184,1494245375,IE 1494245376,1494253567,RU @@ -56443,7 +55795,9 @@ 1495060480,1495062527,GB 1495062528,1495064575,JO 1495064576,1495066623,PL -1495066624,1495067183,GB +1495066624,1495066879,GB +1495066880,1495067135,IE +1495067136,1495067183,GB 1495067184,1495067191,IE 1495067192,1495068671,GB 1495068672,1495070719,DE @@ -56481,9 +55835,7 @@ 1495163648,1495164415,EU 1495164416,1495164671,FR 1495164672,1495164927,EU -1495164928,1495165055,FR -1495165056,1495165183,EU -1495165184,1495165199,FR +1495164928,1495165199,FR 1495165200,1495165207,EU 1495165208,1495165215,ES 1495165216,1495165439,EU @@ -56497,15 +55849,23 @@ 1495169280,1495169535,EU 1495169536,1495169791,FR 1495169792,1495170047,NL -1495170048,1495170335,FR +1495170048,1495170079,FR +1495170080,1495170143,EU +1495170144,1495170151,FR +1495170152,1495170159,EU +1495170160,1495170175,FR +1495170176,1495170287,EU +1495170288,1495170295,FR +1495170296,1495170303,EU +1495170304,1495170335,FR 1495170336,1495170399,EU 1495170400,1495170687,FR 1495170688,1495170759,EU 1495170760,1495170763,DE 1495170764,1495170767,EU 1495170768,1495170775,FR -1495170776,1495170815,EU -1495170816,1495171071,FR +1495170776,1495170811,EU +1495170812,1495171071,FR 1495171072,1495174399,NL 1495174400,1495174655,US 1495174656,1495203839,NL @@ -56552,7 +55912,24 @@ 1495240704,1495240751,FR 1495240752,1495240759,BE 1495240760,1495240767,CH -1495240768,1495242367,FR +1495240768,1495242111,FR +1495242112,1495242119,NL +1495242120,1495242127,LU +1495242128,1495242135,DE +1495242136,1495242143,AT +1495242144,1495242151,ES +1495242152,1495242159,IT +1495242160,1495242167,PL +1495242168,1495242175,FR +1495242176,1495242183,GB +1495242184,1495242191,IE +1495242192,1495242199,DK +1495242200,1495242207,CZ +1495242208,1495242215,GR +1495242216,1495242223,PT +1495242224,1495242231,RO +1495242232,1495242239,BE +1495242240,1495242367,FR 1495242368,1495242375,HU 1495242376,1495242383,BG 1495242384,1495242391,SK @@ -56780,8 +56157,12 @@ 1500643328,1500774399,RO 1500774400,1500905471,LT 1500905472,1501036543,IT -1501036544,1501298687,RO -1501298688,1501560831,IE +1501036544,1501154047,RO +1501154048,1501154303,US +1501154304,1501298687,RO +1501298688,1501552639,IE +1501552640,1501552895,GB +1501552896,1501560831,IE 1501560832,1501822975,ES 1501822976,1502085119,HU 1502085120,1502216191,RO @@ -56790,7 +56171,9 @@ 1502478336,1502605311,SI 1502605312,1502606335,HR 1502606336,1502609407,SI -1502609408,1502624030,DE +1502609408,1502617034,DE +1502617035,1502617039,RU +1502617040,1502624030,DE 1502624031,1502624047,IR 1502624048,1502625791,DE 1502625792,1502642175,SA @@ -56805,7 +56188,9 @@ 1502702836,1502702839,IE 1502702840,1502703103,GB 1502703104,1502703615,SE -1502703616,1502707711,GB +1502703616,1502706623,GB +1502706624,1502706687,CY +1502706688,1502707711,GB 1502707712,1502715903,RU 1502715904,1502717951,IT 1502717952,1502719999,GB @@ -56837,16 +56222,7 @@ 1502937088,1502953471,RO 1502953472,1502969855,MD 1502969856,1502975231,FR -1502975232,1502975247,GB -1502975248,1502975263,IE -1502975264,1502975295,GB -1502975296,1502975311,FR -1502975312,1502975319,IE -1502975320,1502975327,FR -1502975328,1502975359,GB -1502975360,1502975367,IE -1502975368,1502975375,GB -1502975376,1502975455,FR +1502975232,1502975455,GB 1502975456,1502975487,IE 1502975488,1502975743,ES 1502975744,1502975999,DE @@ -56856,7 +56232,7 @@ 1502979104,1502979111,ES 1502979112,1502979119,US 1502979120,1502979135,ES -1502979136,1502979199,US +1502979136,1502979199,GB 1502979200,1502979215,ES 1502979216,1502979231,CZ 1502979232,1502979327,FR @@ -57061,7 +56437,11 @@ 1503920128,1503985663,HR 1503985664,1504018431,IR 1504018432,1504051199,RO -1504051200,1504083967,FI +1504051200,1504063487,FI +1504063488,1504063615,DE +1504063616,1504063679,FI +1504063680,1504063743,DE +1504063744,1504083967,FI 1504083968,1504116735,DE 1504116736,1504149503,PL 1504149504,1504151551,GB @@ -57070,7 +56450,9 @@ 1504152128,1504152191,IE 1504152192,1504152415,GB 1504152416,1504152431,IE -1504152432,1504154623,GB +1504152432,1504152575,GB +1504152576,1504152831,IE +1504152832,1504154623,GB 1504154624,1504155647,IE 1504155648,1504156927,GB 1504156928,1504157183,IE @@ -57193,8 +56575,8 @@ 1505333624,1505333631,GB 1505333632,1505333887,IE 1505333888,1505333951,GB -1505333952,1505335807,IE -1505335808,1505336063,GB +1505333952,1505335871,IE +1505335872,1505336063,GB 1505336064,1505336576,IE 1505336577,1505336639,GB 1505336640,1505336655,IE @@ -57274,7 +56656,11 @@ 1505458560,1505460079,GB 1505460080,1505460087,HU 1505460088,1505460223,GB -1505460224,1505478655,CZ +1505460224,1505466431,CZ +1505466432,1505466495,SK +1505466496,1505466623,CZ +1505466624,1505466687,SK +1505466688,1505478655,CZ 1505478656,1505482751,DE 1505482752,1505484799,LB 1505484800,1505492991,PL @@ -57298,20 +56684,12 @@ 1505647104,1505648639,CZ 1505648640,1505656831,LT 1505656832,1505665023,BH -1505665024,1505668263,IT -1505668264,1505668267,DE -1505668268,1505670615,IT +1505665024,1505670615,IT 1505670616,1505670623,US 1505670624,1505673215,IT 1505673216,1505681407,BG 1505681408,1505689599,RU -1505689600,1505691391,NO -1505691392,1505691418,DK -1505691419,1505691423,NO -1505691424,1505691551,DK -1505691552,1505691559,NO -1505691560,1505691647,DK -1505691648,1505697791,NO +1505689600,1505697791,NO 1505697792,1505705983,IE 1505705984,1505707327,DE 1505707328,1505707519,AT @@ -57372,9 +56750,7 @@ 1506437048,1506437051,NL 1506437052,1506437055,DE 1506437056,1506437071,FR -1506437072,1506437087,US -1506437088,1506437119,DE -1506437120,1506437503,US +1506437072,1506437503,US 1506437504,1506437551,DE 1506437552,1506437567,BG 1506437568,1506437583,DE @@ -57408,7 +56784,9 @@ 1506438912,1506439039,US 1506439040,1506439219,DE 1506439220,1506439223,BG -1506439224,1506439463,DE +1506439224,1506439303,DE +1506439304,1506439311,US +1506439312,1506439463,DE 1506439464,1506439471,GB 1506439472,1506439479,BG 1506439480,1506439571,DE @@ -57493,18 +56871,22 @@ 1506443200,1506443263,US 1506443264,1506444287,GB 1506444288,1506445055,DE -1506445056,1506445063,GB -1506445064,1506445103,DE -1506445104,1506445311,GB -1506445312,1506445337,FR -1506445338,1506445343,GB -1506445344,1506445519,FR -1506445520,1506445527,GB -1506445528,1506446335,FR +1506445056,1506445079,GB +1506445080,1506445127,DE +1506445128,1506445135,GB +1506445136,1506445151,DE +1506445152,1506445167,GB +1506445168,1506445247,DE +1506445248,1506445311,GB +1506445312,1506446335,FR 1506446336,1506446719,NL 1506446720,1506446735,GB -1506446736,1506447359,NL -1506447360,1506448255,IT +1506446736,1506446751,NL +1506446752,1506446783,GB +1506446784,1506447359,NL +1506447360,1506447423,IT +1506447424,1506447463,GB +1506447464,1506448255,IT 1506448256,1506448319,GB 1506448320,1506448383,IT 1506448384,1506448639,AT @@ -57516,11 +56898,7 @@ 1506448896,1506449407,BE 1506449408,1506449663,NL 1506449664,1506449919,SK -1506449920,1506449927,CH -1506449928,1506449935,GB -1506449936,1506450031,CH -1506450032,1506450047,GB -1506450048,1506450431,CH +1506449920,1506450431,CH 1506450432,1506450687,CZ 1506450688,1506450695,GB 1506450696,1506450703,CZ @@ -57529,13 +56907,9 @@ 1506450752,1506450759,GB 1506450760,1506450767,CZ 1506450768,1506450847,GB -1506450848,1506450863,CZ -1506450864,1506450879,GB -1506450880,1506450943,CZ +1506450848,1506450943,CZ 1506450944,1506451199,DK -1506451200,1506451791,ES -1506451792,1506451799,GB -1506451800,1506451967,ES +1506451200,1506451967,ES 1506451968,1506451999,GB 1506452000,1506452063,ES 1506452064,1506452095,GB @@ -57585,28 +56959,30 @@ 1506459136,1506459177,BE 1506459178,1506459178,EU 1506459179,1506459647,BE -1506459648,1506460671,FR +1506459648,1506459967,FR +1506459968,1506460031,ES +1506460032,1506460047,FR +1506460048,1506460055,GB +1506460056,1506460063,FR +1506460064,1506460079,GB +1506460080,1506460126,FR +1506460127,1506460127,GB +1506460128,1506460223,FR +1506460224,1506460231,GB +1506460232,1506460315,FR +1506460316,1506460319,GB +1506460320,1506460335,FR +1506460336,1506460343,GB +1506460344,1506460671,FR 1506460672,1506460927,AT -1506460928,1506461311,IT -1506461312,1506461315,GB -1506461316,1506461319,IT -1506461320,1506461327,GB -1506461328,1506461343,IT -1506461344,1506461351,GB -1506461352,1506461359,FR -1506461360,1506461695,IT +1506460928,1506461695,IT 1506461696,1506461839,FR 1506461840,1506461855,GB 1506461856,1506461887,FR 1506461888,1506461951,GB 1506461952,1506462207,FR 1506462208,1506462463,ES -1506462464,1506462527,FR -1506462528,1506462583,GB -1506462584,1506462591,FR -1506462592,1506462607,GB -1506462608,1506462623,A2 -1506462624,1506462719,FR +1506462464,1506462719,FR 1506462720,1506463231,IT 1506463232,1506463487,SE 1506463488,1506463519,DE @@ -57633,29 +57009,30 @@ 1506468608,1506468863,TZ 1506468864,1506469471,IT 1506469472,1506469479,GB -1506469480,1506470143,IT +1506469480,1506469695,IT +1506469696,1506469887,GB +1506469888,1506470143,IT 1506470144,1506470399,GB 1506470400,1506470655,DE 1506470656,1506471679,IT -1506471680,1506471951,GB -1506471952,1506471975,NL -1506471976,1506471979,GB -1506471980,1506471999,NL -1506472000,1506472031,BE -1506472032,1506472175,NL -1506472176,1506472191,GB +1506471680,1506471935,GB +1506471936,1506472191,NL 1506472192,1506472447,IT 1506472448,1506472703,GB 1506472704,1506473215,IT 1506473216,1506473471,GB -1506473472,1506474495,IT +1506473472,1506473775,IT +1506473776,1506473855,GB +1506473856,1506474495,IT 1506474496,1506474751,FR 1506474752,1506475519,IT 1506475520,1506475551,GB 1506475552,1506475567,AT 1506475568,1506475775,GB 1506475776,1506476031,DE -1506476032,1506508799,KW +1506476032,1506506751,KW +1506506752,1506507007,EG +1506507008,1506508799,KW 1506508800,1506541567,CZ 1506541568,1506574335,RU 1506574336,1506582527,DE @@ -57681,7 +57058,9 @@ 1506758656,1506760703,IT 1506760704,1506764799,RU 1506764800,1506766847,IT -1506766848,1506768383,NO +1506766848,1506767679,NO +1506767680,1506767871,GE +1506767872,1506768383,NO 1506768384,1506768895,GE 1506768896,1506770943,AT 1506770944,1506772991,NL @@ -57767,9 +57146,7 @@ 1508468992,1508469055,US 1508469056,1508470783,NL 1508470784,1508474879,SI -1508474880,1508479263,CZ -1508479264,1508479295,GB -1508479296,1508486463,CZ +1508474880,1508486463,CZ 1508486464,1508486527,DE 1508486528,1508491263,CZ 1508491264,1508507647,SE @@ -57797,8 +57174,7 @@ 1508650752,1508651263,DK 1508651264,1508652543,SE 1508652544,1508654079,DK -1508654080,1508654591,SE -1508654592,1508655103,DK +1508654080,1508655103,SE 1508655104,1508671487,FI 1508671488,1508687871,CH 1508687872,1508704255,UZ @@ -57839,8 +57215,8 @@ 1509449728,1509453823,ES 1509453824,1509457919,RU 1509457920,1509462015,NL -1509462016,1509465855,LI -1509465856,1509466111,CH +1509462016,1509465599,LI +1509465600,1509466111,CH 1509466112,1509466879,NL 1509466880,1509466911,FR 1509466912,1509467055,NL @@ -57893,21 +57269,11 @@ 1509584896,1509588991,NO 1509588992,1509593087,DE 1509593088,1509601279,RU -1509601280,1509604111,NL -1509604112,1509604129,BE -1509604130,1509604130,NL -1509604131,1509604255,BE -1509604256,1509604287,NL -1509604288,1509604303,BE -1509604304,1509604311,NL -1509604312,1509604351,BE -1509604352,1509605375,NL +1509601280,1509605375,NL 1509605376,1509609471,PL 1509609472,1509617663,RU 1509617664,1509621759,CZ -1509621760,1509623807,US -1509623808,1509624319,NL -1509624320,1509625855,US +1509621760,1509625855,US 1509625856,1509629951,UA 1509629952,1509634047,HU 1509634048,1509638143,FR @@ -57941,157 +57307,116 @@ 1509900288,1509916671,RU 1509916672,1509933055,GB 1509933056,1509949439,US -1509949440,1511981055,FR -1511981056,1511986175,RE -1511986176,1511986431,FR -1511986432,1511987967,RE -1511987968,1511988223,FR -1511988224,1511989247,RE +1509949440,1511981311,FR +1511981312,1511984639,RE +1511984640,1511984895,FR +1511984896,1511989247,RE 1511989248,1511989503,FR -1511989504,1511989759,RE -1511989760,1511990015,FR -1511990016,1511990271,RE -1511990272,1511990527,FR -1511990528,1511992831,RE +1511989504,1511992831,RE 1511992832,1511993087,FR -1511993088,1511993855,RE -1511993856,1511994367,FR -1511994368,1511996671,RE -1511996672,1511996927,FR -1511996928,1511997183,RE +1511993088,1511994367,RE +1511994368,1511994623,FR +1511994624,1511996159,RE +1511996160,1511996415,FR +1511996416,1511997183,RE 1511997184,1511997439,FR -1511997440,1511997695,MQ -1511997696,1511997951,FR -1511997952,1512001535,MQ -1512001536,1512001791,FR -1512001792,1512004863,MQ -1512004864,1512005119,FR -1512005120,1512005375,MQ -1512005376,1512005631,FR -1512005632,1512009727,GP -1512009728,1512009983,GF -1512009984,1512010239,FR -1512010240,1512010495,GF -1512010496,1512010751,FR -1512010752,1512011263,GP -1512011264,1512011519,GF -1512011520,1512011775,GP -1512011776,1512012031,GF -1512012032,1512012287,GP -1512012288,1512012543,GF -1512012544,1512012799,GP -1512012800,1512013055,FR -1512013056,1512013311,GF -1512013312,1512013823,FR +1511997440,1512005631,MQ +1512005632,1512006143,FR +1512006144,1512006911,GP +1512006912,1512007423,FR +1512007424,1512007679,GP +1512007680,1512008191,FR +1512008192,1512008959,GP +1512008960,1512009215,FR +1512009216,1512009727,GP +1512009728,1512009983,FR +1512009984,1512010751,GP +1512010752,1512011007,FR +1512011008,1512011263,GP +1512011264,1512011519,FR +1512011520,1512013311,GP +1512013312,1512013567,FR +1512013568,1512013823,GP 1512013824,1512014847,GF 1512014848,1512015103,FR 1512015104,1512016383,GF 1512016384,1512016639,FR -1512016640,1512017151,GF -1512017152,1512017407,FR -1512017408,1512019967,GF -1512019968,1512022271,FR -1512022272,1512022783,GF -1512022784,1512023039,FR -1512023040,1512023807,GF -1512023808,1512024063,FR -1512024064,1512024575,GF -1512024576,1512024831,FR -1512024832,1512025599,GF -1512025600,1512025855,FR -1512025856,1512028159,GF -1512028160,1512030207,FR +1512016640,1512020223,GF +1512020224,1512022271,FR +1512022272,1512028415,GF +1512028416,1512030207,FR 1512030208,1512046591,YT 1512046592,1512767487,FR -1512767488,1512769023,RE +1512767488,1512767743,RE +1512767744,1512767999,FR +1512768000,1512769023,RE 1512769024,1512769279,FR 1512769280,1512771071,RE 1512771072,1512771327,FR -1512771328,1512772095,RE -1512772096,1512772863,FR -1512772864,1512773631,RE -1512773632,1512773887,FR -1512773888,1512774399,RE -1512774400,1512774911,FR -1512774912,1512775423,RE -1512775424,1512775935,FR -1512775936,1512776447,RE -1512776448,1512776959,FR -1512776960,1512777215,RE -1512777216,1512777471,FR -1512777472,1512779007,RE -1512779008,1512779263,FR -1512779264,1512780031,RE -1512780032,1512780287,FR -1512780288,1512781823,RE +1512771328,1512772351,RE +1512772352,1512772863,FR +1512772864,1512773119,RE +1512773120,1512773375,FR +1512773376,1512775423,RE +1512775424,1512775679,FR +1512775680,1512781823,RE 1512781824,1512782847,FR -1512782848,1512783359,RE -1512783360,1512783615,FR -1512783616,1512783871,RE -1512783872,1512784127,FR -1512784128,1512784895,RE -1512784896,1512785407,FR -1512785408,1512785919,RE -1512785920,1512786943,FR -1512786944,1512788991,RE +1512782848,1512785151,RE +1512785152,1512785407,FR +1512785408,1512788991,RE 1512788992,1512789247,FR -1512789248,1512791039,RE -1512791040,1512791295,FR -1512791296,1512791551,RE -1512791552,1512792063,FR -1512792064,1512798207,RE +1512789248,1512790015,RE +1512790016,1512790271,FR +1512790272,1512796927,RE +1512796928,1512797183,FR +1512797184,1512798207,RE 1512798208,1512799231,FR 1512799232,1512799487,RE 1512799488,1512800255,FR -1512800256,1512803327,MQ -1512803328,1512803583,FR -1512803584,1512804351,MQ -1512804352,1512804607,FR -1512804608,1512805887,MQ +1512800256,1512803839,MQ +1512803840,1512804095,FR +1512804096,1512804351,MQ +1512804352,1512804863,FR +1512804864,1512805887,MQ 1512805888,1512806399,FR -1512806400,1512809471,MQ -1512809472,1512809983,FR -1512809984,1512810239,MQ -1512810240,1512810495,FR -1512810496,1512811263,MQ +1512806400,1512811263,MQ 1512811264,1512811519,FR 1512811520,1512811775,MQ 1512811776,1512812031,FR -1512812032,1512816639,MQ -1512816640,1512819199,GP -1512819200,1512819455,FR -1512819456,1512820223,GP -1512820224,1512820479,FR -1512820480,1512820735,GP -1512820736,1512820991,FR -1512820992,1512824063,GP -1512824064,1512824319,FR -1512824320,1512824831,GP -1512824832,1512825087,FR -1512825088,1512825599,GP -1512825600,1512825855,FR -1512825856,1512826879,GP -1512826880,1512827135,FR -1512827136,1512829183,GP -1512829184,1512829439,FR -1512829440,1512829951,GP -1512829952,1512830719,FR -1512830720,1512832767,GP +1512812032,1512814079,MQ +1512814080,1512814591,FR +1512814592,1512816383,MQ +1512816384,1512816639,FR +1512816640,1512818943,GP +1512818944,1512819199,FR +1512819200,1512822271,GP +1512822272,1512822527,FR +1512822528,1512827647,GP +1512827648,1512827903,FR +1512827904,1512832767,GP 1512832768,1514110975,FR -1514110976,1514118143,GP -1514118144,1514118399,FR -1514118400,1514118655,GP -1514118656,1514119167,FR -1514119168,1514127359,GP +1514110976,1514115071,GP +1514115072,1514115327,FR +1514115328,1514118143,GP +1514118144,1514118655,FR +1514118656,1514122495,GP +1514122496,1514122751,FR +1514122752,1514127359,GP 1514127360,1514128127,RE 1514128128,1514128383,FR 1514128384,1514131967,RE 1514131968,1514132223,FR -1514132224,1514134015,RE -1514134016,1514134271,FR -1514134272,1514139391,RE +1514132224,1514132735,RE +1514132736,1514132991,FR +1514132992,1514135807,RE +1514135808,1514136063,FR +1514136064,1514137087,RE +1514137088,1514137599,FR +1514137600,1514139391,RE 1514139392,1514139647,FR -1514139648,1514143743,RE +1514139648,1514143231,RE +1514143232,1514143487,FR +1514143488,1514143743,RE 1514143744,1515192639,FR 1515192640,1515192655,EU 1515192656,1515241759,FR @@ -58119,10 +57444,14 @@ 1518370816,1518403583,NL 1518403584,1518452735,SE 1518452736,1518460927,AT -1518460928,1518469119,NL -1518469120,1518479359,SE -1518479360,1518481407,EE -1518481408,1518493695,SE +1518460928,1518470143,NL +1518470144,1518472191,SE +1518472192,1518475263,LT +1518475264,1518477311,SE +1518477312,1518481407,EE +1518481408,1518489599,SE +1518489600,1518490623,NL +1518490624,1518493695,SE 1518493696,1518501887,NL 1518501888,1518503935,EE 1518503936,1518510079,LT @@ -58159,9 +57488,15 @@ 1518972928,1518977023,HR 1518977024,1518993407,SE 1518993408,1519190015,RU -1519190016,1519263743,SE +1519190016,1519259647,SE +1519259648,1519260671,NL +1519260672,1519263743,SE 1519263744,1519288319,NL -1519288320,1519321087,SE +1519288320,1519292415,SE +1519292416,1519293951,LT +1519293952,1519300607,SE +1519300608,1519304703,LT +1519304704,1519321087,SE 1519321088,1519386623,RU 1519386624,1519452159,SE 1519452160,1519517695,NL @@ -58233,7 +57568,38 @@ 1519928256,1519929279,GB 1519929280,1519929287,NL 1519929288,1519929343,GB -1519929344,1519934463,NL +1519929344,1519929471,NL +1519929472,1519929503,FI +1519929504,1519929567,NL +1519929568,1519929599,FI +1519929600,1519929759,NL +1519929760,1519929791,CZ +1519929792,1519929792,GB +1519929793,1519929823,SE +1519929824,1519929855,DK +1519929856,1519929951,SE +1519929952,1519930111,BE +1519930112,1519930207,NL +1519930208,1519930239,BE +1519930240,1519930271,NL +1519930272,1519930335,DK +1519930336,1519930367,SE +1519930368,1519930399,DK +1519930400,1519930527,NL +1519930528,1519930559,NO +1519930560,1519930591,SE +1519930592,1519930655,NO +1519930656,1519930751,NL +1519930752,1519930783,BE +1519930784,1519930911,NL +1519930912,1519930943,CZ +1519930944,1519930975,BE +1519930976,1519931007,NL +1519931008,1519931039,BE +1519931040,1519931071,DK +1519931072,1519931103,NO +1519931104,1519931135,SE +1519931136,1519934463,NL 1519934464,1519934975,GB 1519934976,1519935487,NL 1519935488,1519935615,FR @@ -58270,14 +57636,14 @@ 1519940224,1519943679,GB 1519943680,1519976447,AT 1519976448,1519980159,DE -1519980160,1519980191,GB -1519980192,1519980199,DE -1519980200,1519980287,GB +1519980160,1519980287,GB 1519980288,1520009215,DE 1520009216,1520041983,SY 1520041984,1520074751,RU 1520074752,1520107519,BG -1520107520,1520140287,GB +1520107520,1520116511,GB +1520116512,1520116527,SE +1520116528,1520140287,GB 1520140288,1520173055,RU 1520173056,1520205823,PL 1520205824,1520230399,RU @@ -58292,9 +57658,11 @@ 1522270208,1522401279,RU 1522401280,1522532351,EE 1522532352,1524629503,GB -1524629504,1524886783,SE -1524886784,1524887039,DK -1524887040,1525678079,SE +1524629504,1524660607,SE +1524660608,1524660735,DK +1524660736,1524886271,SE +1524886272,1524886527,DK +1524886528,1525678079,SE 1525678080,1526726655,GB 1526726656,1531183103,DE 1531183104,1531445247,FR @@ -58455,7 +57823,9 @@ 1533851988,1533852191,CH 1533852192,1533852195,IN 1533852196,1533853695,CH -1533853696,1533870079,TR +1533853696,1533868287,GB +1533868288,1533868543,TR +1533868544,1533870079,GB 1533870080,1533870591,ES 1533870592,1533874175,GB 1533874176,1533878271,DE @@ -58483,19 +57853,18 @@ 1534066688,1534129151,AT 1534129152,1534129407,A2 1534129408,1534328831,AT -1534328832,1534363903,ES -1534363904,1534364159,PT -1534364160,1534459903,ES -1534459904,1534590975,AT +1534328832,1534459903,ES +1534459904,1534482091,AT +1534482092,1534482095,GB +1534482096,1534590975,AT 1534590976,1534656511,HU 1534656512,1534711807,FR 1534711808,1534712831,BE -1534712832,1534713855,FR -1534713856,1534713887,PT -1534713888,1534713927,FR +1534712832,1534713927,FR 1534713928,1534713931,GB 1534713932,1534713935,FI -1534713936,1534713943,FR +1534713936,1534713939,CZ +1534713940,1534713943,FR 1534713944,1534713947,DE 1534713948,1534713951,PL 1534713952,1534713955,DE @@ -58519,13 +57888,13 @@ 1534714128,1534714143,BE 1534714144,1534714159,GB 1534714160,1534714255,FR -1534714256,1534714271,PL -1534714272,1534714279,FR -1534714280,1534714283,DE +1534714256,1534714259,FI +1534714260,1534714271,PL +1534714272,1534714283,FR 1534714284,1534714287,CH 1534714288,1534714303,ES 1534714304,1534714307,GB -1534714308,1534714311,ES +1534714308,1534714311,NL 1534714312,1534714315,PL 1534714316,1534714323,FR 1534714324,1534714327,ES @@ -58547,17 +57916,16 @@ 1534714528,1534714531,FR 1534714532,1534714535,PL 1534714536,1534714539,GB -1534714540,1534714543,PL -1534714544,1534714551,FR +1534714540,1534714551,FR 1534714552,1534714559,ES 1534714560,1534714575,NL -1534714576,1534714591,GB -1534714592,1534714655,FR +1534714576,1534714583,IE +1534714584,1534714655,FR 1534714656,1534714671,PL -1534714672,1534714691,FR +1534714672,1534714687,ES +1534714688,1534714691,FR 1534714692,1534714695,GB -1534714696,1534714703,FR -1534714704,1534714719,CH +1534714696,1534714719,FR 1534714720,1534714751,BE 1534714752,1534714767,DE 1534714768,1534714783,IE @@ -58576,7 +57944,7 @@ 1534714912,1534714927,DE 1534714928,1534714931,PT 1534714932,1534714935,DE -1534714936,1534714939,FR +1534714936,1534714939,FI 1534714940,1534714975,DE 1534714976,1534715039,FR 1534715040,1534715055,GB @@ -58597,7 +57965,8 @@ 1534715280,1534715283,PL 1534715284,1534715287,FR 1534715288,1534715295,CZ -1534715296,1534715303,FR +1534715296,1534715299,PL +1534715300,1534715303,FR 1534715304,1534715315,PL 1534715316,1534715319,ES 1534715320,1534715327,PL @@ -58605,23 +57974,26 @@ 1534715344,1534715359,FR 1534715360,1534715371,NL 1534715372,1534715375,CH -1534715376,1534715391,FR -1534715392,1534715399,PL -1534715400,1534715415,GB +1534715376,1534715399,FR +1534715400,1534715407,GB +1534715408,1534715415,FR 1534715416,1534715419,DE 1534715420,1534715431,IT 1534715432,1534715439,FR 1534715440,1534715447,ES 1534715448,1534715451,FR 1534715452,1534715455,PL -1534715456,1534715583,FR +1534715456,1534715471,NL +1534715472,1534715503,FR +1534715504,1534715519,IE +1534715520,1534715583,FR 1534715584,1534715599,GB 1534715600,1534715603,DE 1534715604,1534715607,GB 1534715608,1534715611,CH -1534715612,1534715615,FI +1534715612,1534715615,ES 1534715616,1534715639,FR -1534715640,1534715643,PL +1534715640,1534715643,IE 1534715644,1534715647,DE 1534715648,1534715663,PL 1534715664,1534715667,FR @@ -58633,26 +58005,25 @@ 1534715728,1534715735,FR 1534715736,1534715759,PL 1534715760,1534715775,ES -1534715776,1534715783,PL +1534715776,1534715783,FR 1534715784,1534715791,BE 1534715792,1534715807,CZ 1534715808,1534715871,FR 1534715872,1534715875,PL -1534715876,1534715879,FR -1534715880,1534715883,PT +1534715876,1534715883,FR 1534715884,1534715887,PL -1534715888,1534715935,FR -1534715936,1534715939,IE +1534715888,1534715939,FR 1534715940,1534715943,PL 1534715944,1534715947,FR 1534715948,1534715951,PL -1534715952,1534715983,FR -1534715984,1534715987,PL +1534715952,1534715967,FR +1534715968,1534715983,BE +1534715984,1534715987,NL 1534715988,1534715991,ES -1534715992,1534715995,PL -1534715996,1534715999,FR +1534715992,1534715999,FR 1534716000,1534716007,NL -1534716008,1534716047,FR +1534716008,1534716015,IT +1534716016,1534716047,FR 1534716048,1534716063,GB 1534716064,1534716131,FR 1534716132,1534716143,ES @@ -58664,7 +58035,7 @@ 1534716224,1534716239,FR 1534716240,1534716255,GB 1534716256,1534716271,FR -1534716272,1534716287,IE +1534716272,1534716287,GB 1534716288,1534716303,FR 1534716304,1534716311,PL 1534716312,1534716319,FR @@ -58675,7 +58046,7 @@ 1534716364,1534716367,GB 1534716368,1534716375,BE 1534716376,1534716379,FR -1534716380,1534716383,CZ +1534716380,1534716383,BE 1534716384,1534716391,FR 1534716392,1534716395,ES 1534716396,1534716399,GB @@ -58684,13 +58055,14 @@ 1534716408,1534716415,FR 1534716416,1534716431,ES 1534716432,1534716447,PL -1534716448,1534716463,IE -1534716464,1534716479,FR +1534716448,1534716479,FR 1534716480,1534716495,ES -1534716496,1534716575,FR +1534716496,1534716543,FR +1534716544,1534716559,FI +1534716560,1534716575,FR 1534716576,1534716591,PL -1534716592,1534716639,FR -1534716640,1534716647,BE +1534716592,1534716623,FR +1534716624,1534716647,BE 1534716648,1534716655,FR 1534716656,1534716663,IE 1534716664,1534716671,FR @@ -58703,10 +58075,8 @@ 1534716764,1534716767,BE 1534716768,1534716775,DE 1534716776,1534716779,PT -1534716780,1534716787,PL -1534716788,1534716799,FR -1534716800,1534716803,DE -1534716804,1534716807,PL +1534716780,1534716799,FR +1534716800,1534716807,PL 1534716808,1534716811,NL 1534716812,1534716815,PL 1534716816,1534716863,FR @@ -58714,12 +58084,9 @@ 1534716880,1534716895,BE 1534716896,1534716927,FR 1534716928,1534716943,DE -1534716944,1534716959,FR +1534716944,1534716959,IT 1534716960,1534716963,ES -1534716964,1534716991,FR -1534716992,1534717007,DE -1534717008,1534717011,PL -1534717012,1534717019,FR +1534716964,1534717019,FR 1534717020,1534717023,PT 1534717024,1534717031,IE 1534717032,1534717035,DE @@ -58737,8 +58104,7 @@ 1534717152,1534717167,GB 1534717168,1534717227,FR 1534717228,1534717231,ES -1534717232,1534717247,FR -1534717248,1534717251,PL +1534717232,1534717251,FR 1534717252,1534717255,NL 1534717256,1534717311,FR 1534717312,1534717315,PL @@ -58762,23 +58128,22 @@ 1534717584,1534717587,CZ 1534717588,1534717591,GB 1534717592,1534717599,DE -1534717600,1534717647,FR -1534717648,1534717659,PL +1534717600,1534717655,FR +1534717656,1534717659,PL 1534717660,1534717663,FR 1534717664,1534717679,GB 1534717680,1534717695,BE 1534717696,1534717711,ES 1534717712,1534717715,DE 1534717716,1534717719,ES -1534717720,1534717727,FR +1534717720,1534717727,DE 1534717728,1534717731,ES 1534717732,1534717735,PL 1534717736,1534717739,BE 1534717740,1534717743,GB 1534717744,1534717751,FR 1534717752,1534717759,BE -1534717760,1534717763,PL -1534717764,1534717767,FR +1534717760,1534717767,FR 1534717768,1534717771,IT 1534717772,1534717783,FR 1534717784,1534717787,CZ @@ -58793,15 +58158,15 @@ 1534717924,1534717927,ES 1534717928,1534717931,DE 1534717932,1534717935,PL -1534717936,1534717951,FR +1534717936,1534717951,PT 1534717952,1534717955,DE -1534717956,1534717959,BE +1534717956,1534717959,FR 1534717960,1534717963,PT 1534717964,1534717967,CH 1534717968,1534717983,IT 1534717984,1534717987,PL 1534717988,1534717991,FR -1534717992,1534717995,NL +1534717992,1534717995,FI 1534717996,1534717999,GB 1534718000,1534718007,ES 1534718008,1534718011,PL @@ -58818,7 +58183,7 @@ 1534718144,1534718159,FR 1534718160,1534718207,PL 1534718208,1534718335,FR -1534718336,1534718351,CH +1534718336,1534718351,DE 1534718352,1534718359,FR 1534718360,1534718363,ES 1534718364,1534718415,FR @@ -58827,12 +58192,11 @@ 1534718424,1534718431,ES 1534718432,1534718439,FR 1534718440,1534718447,ES -1534718448,1534718451,FR -1534718452,1534718455,PL +1534718448,1534718455,FR 1534718456,1534718463,IT 1534718464,1534718467,DE 1534718468,1534718471,GB -1534718472,1534718475,PT +1534718472,1534718475,FR 1534718476,1534718479,PL 1534718480,1534718487,FR 1534718488,1534718495,DE @@ -58845,18 +58209,16 @@ 1534718624,1534718631,PL 1534718632,1534718703,FR 1534718704,1534718707,IT -1534718708,1534718711,FR -1534718712,1534718719,ES +1534718708,1534718719,FR 1534718720,1534718735,GB 1534718736,1534718739,NL -1534718740,1534718751,FR -1534718752,1534718755,PL -1534718756,1534718763,FR +1534718740,1534718759,FR +1534718760,1534718763,ES 1534718764,1534718767,PL 1534718768,1534718783,FR 1534718784,1534718815,ES -1534718816,1534718823,PL -1534718824,1534718847,FR +1534718816,1534718819,PL +1534718820,1534718847,FR 1534718848,1534718911,BE 1534718912,1534718927,IT 1534718928,1534718943,FR @@ -58867,10 +58229,11 @@ 1534719072,1534719075,FI 1534719076,1534719079,ES 1534719080,1534719083,IT -1534719084,1534719087,CH +1534719084,1534719087,FR 1534719088,1534719103,PL 1534719104,1534719167,BE -1534719168,1534719295,FR +1534719168,1534719279,FR +1534719280,1534719295,CH 1534719296,1534719311,ES 1534719312,1534719335,FR 1534719336,1534719339,IT @@ -58892,21 +58255,17 @@ 1534719512,1534719515,PL 1534719516,1534719535,FR 1534719536,1534719539,NL -1534719540,1534719543,FR -1534719544,1534719551,GB +1534719540,1534719551,FR 1534719552,1534719555,NL 1534719556,1534719559,PL -1534719560,1534719567,FR -1534719568,1534719571,CH -1534719572,1534719575,NL +1534719560,1534719575,FR 1534719576,1534719583,GB 1534719584,1534719599,FR 1534719600,1534719607,PL 1534719608,1534719615,ES 1534719616,1534719631,FR 1534719632,1534719639,ES -1534719640,1534719647,FR -1534719648,1534719655,IE +1534719640,1534719655,FR 1534719656,1534719659,NL 1534719660,1534719679,FR 1534719680,1534719695,GB @@ -58944,12 +58303,12 @@ 1534720016,1534720023,FR 1534720024,1534720027,PL 1534720028,1534720031,ES -1534720032,1534720079,FR +1534720032,1534720047,FR +1534720048,1534720063,GB +1534720064,1534720079,FR 1534720080,1534720095,GB 1534720096,1534720111,IT -1534720112,1534720179,FR -1534720180,1534720183,NL -1534720184,1534720211,FR +1534720112,1534720211,FR 1534720212,1534720215,PL 1534720216,1534720223,PT 1534720224,1534720239,DE @@ -58978,25 +58337,23 @@ 1534720452,1534720455,NL 1534720456,1534720471,FR 1534720472,1534720479,DE -1534720480,1534720495,IE +1534720480,1534720495,FR 1534720496,1534720511,PL -1534720512,1534720535,FR +1534720512,1534720527,FR +1534720528,1534720531,BE +1534720532,1534720535,FR 1534720536,1534720539,PL -1534720540,1534720543,FI +1534720540,1534720543,PT 1534720544,1534720559,FR -1534720560,1534720583,IT -1534720584,1534720591,BE -1534720592,1534720611,FR +1534720560,1534720575,IT +1534720576,1534720611,FR 1534720612,1534720615,BE 1534720616,1534720619,DE 1534720620,1534720623,PT -1534720624,1534720639,FR -1534720640,1534720643,PL -1534720644,1534720647,FR +1534720624,1534720647,FR 1534720648,1534720655,IE 1534720656,1534720671,ES -1534720672,1534720703,FR -1534720704,1534720735,IE +1534720672,1534720735,FR 1534720736,1534720739,CH 1534720740,1534720743,PL 1534720744,1534720747,IE @@ -59011,12 +58368,11 @@ 1534720832,1534720863,PL 1534720864,1534720879,ES 1534720880,1534720895,FR -1534720896,1534720899,ES +1534720896,1534720899,GB 1534720900,1534720903,LT -1534720904,1534720911,PT -1534720912,1534720943,FR +1534720904,1534720943,FR 1534720944,1534720951,CH -1534720952,1534720959,IE +1534720952,1534720959,FR 1534720960,1534720975,IT 1534720976,1534720979,NL 1534720980,1534720983,FR @@ -59037,17 +58393,14 @@ 1534721160,1534721163,ES 1534721164,1534721183,FR 1534721184,1534721191,LT -1534721192,1534721195,FR -1534721196,1534721199,IT -1534721200,1534721215,FR +1534721192,1534721215,FR 1534721216,1534721223,BE 1534721224,1534721231,CH 1534721232,1534721247,DE 1534721248,1534721263,FR 1534721264,1534721279,GB 1534721280,1534721287,PL -1534721288,1534721295,IT -1534721296,1534721311,FR +1534721288,1534721311,FR 1534721312,1534721319,PL 1534721320,1534721327,PT 1534721328,1534721343,FR @@ -59096,7 +58449,7 @@ 1534721936,1534721943,CH 1534721944,1534721951,IT 1534721952,1534721955,NL -1534721956,1534721959,PL +1534721956,1534721959,FR 1534721960,1534721963,IE 1534721964,1534721967,CH 1534721968,1534721971,DE @@ -59105,7 +58458,7 @@ 1534721980,1534721983,PL 1534721984,1534721999,FR 1534722000,1534722007,PL -1534722008,1534722011,PT +1534722008,1534722011,FR 1534722012,1534722015,ES 1534722016,1534722031,IE 1534722032,1534722039,FR @@ -59175,9 +58528,7 @@ 1535836160,1535868927,HU 1535868928,1535901695,BG 1535901696,1535934463,GR -1535934464,1535959551,KW -1535959552,1535959807,US -1535959808,1535963391,KW +1535934464,1535963391,KW 1535963392,1535963647,US 1535963648,1535967231,KW 1535967232,1535999999,AT @@ -59211,7 +58562,7 @@ 1536051200,1536057343,RU 1536057344,1536061439,IE 1536061440,1536065535,SE -1536065536,1536065791,DE +1536065536,1536065791,GB 1536065792,1536066303,LU 1536066304,1536066815,NL 1536067072,1536067327,GB @@ -59477,9 +58828,11 @@ 1539229696,1539231743,DE 1539231744,1539233791,BE 1539233792,1539234303,LU -1539234304,1539234559,IE -1539234560,1539235839,LU -1539235840,1539237887,DE +1539234304,1539234815,IE +1539234816,1539235839,LU +1539235840,1539236287,DE +1539236288,1539236295,NL +1539236296,1539237887,DE 1539237888,1539239935,RU 1539239936,1539244031,DE 1539244032,1539260415,BA @@ -59630,7 +58983,6 @@ 1539452416,1539452927,GB 1539452928,1539453439,CH 1539453440,1539453951,UA -1539453952,1539454463,GB 1539454464,1539454975,RU 1539454976,1539455487,UA 1539455488,1539455999,RU @@ -59684,7 +59036,6 @@ 1539482624,1539483135,RU 1539483136,1539483647,ES 1539483648,1539484159,UA -1539484160,1539484671,GB 1539484672,1539485695,RU 1539485696,1539486207,RO 1539486208,1539486719,FR @@ -59743,14 +59094,12 @@ 1539517440,1539517951,RO 1539517952,1539518463,PL 1539518464,1539518975,DE -1539518976,1539519487,RU 1539519488,1539519999,UA 1539520000,1539520511,DE 1539520512,1539521023,PL 1539521024,1539521535,DK 1539521536,1539522047,RU 1539522048,1539522559,RO -1539522560,1539523071,RU 1539523072,1539523583,RO 1539523584,1539524095,UA 1539524096,1539524607,GR @@ -59852,7 +59201,6 @@ 1539586048,1539587071,PL 1539587072,1539588095,UA 1539588096,1539589119,BG -1539589120,1539590143,GB 1539590144,1539591167,RU 1539591168,1539592191,UZ 1539592192,1539593215,UA @@ -59896,7 +59244,6 @@ 1539643392,1539644415,UA 1539644416,1539645439,DE 1539645440,1539646463,GB -1539646464,1539647487,IE 1539647488,1539648511,RU 1539648512,1539649023,CY 1539649024,1539649535,LB @@ -60155,7 +59502,6 @@ 1539760896,1539761151,DK 1539761152,1539761407,DE 1539761408,1539761663,CH -1539761664,1539761919,PL 1539761920,1539762175,RU 1539762176,1539762431,PL 1539762432,1539762687,UA @@ -60241,7 +59587,7 @@ 1539783936,1539784191,SI 1539784192,1539784447,RU 1539784448,1539784703,NO -1539784704,1539784959,SE +1539784704,1539784959,EU 1539784960,1539785215,DE 1539785216,1539785471,CH 1539785472,1539785727,RU @@ -60329,8 +59675,7 @@ 1539809280,1539809535,EU 1539809536,1539809791,SI 1539809792,1539810047,DE -1539810048,1539810303,UA -1539810304,1539810559,CZ +1539810304,1539810559,SK 1539810560,1539810815,DE 1539810816,1539811071,TR 1539811072,1539811327,NL @@ -60461,7 +59806,9 @@ 1539886080,1539887103,FR 1539887104,1539888127,IT 1539888128,1539889151,UA -1539889152,1539890175,RU +1539889152,1539889407,RU +1539889408,1539889663,TJ +1539889664,1539890175,RU 1539890176,1539891199,UA 1539891200,1539893247,RU 1539893248,1539894271,UA @@ -60524,8 +59871,7 @@ 1539964928,1539965951,UA 1539965952,1539966975,RU 1539966976,1539967999,UA -1539968000,1539972095,RU -1539972096,1539973119,GB +1539968000,1539973119,RU 1539974144,1539975167,RU 1539975168,1539976191,DE 1539976192,1539977215,RU @@ -60592,8 +59938,8 @@ 1540049920,1540050943,UA 1540050944,1540052991,RU 1540052992,1540055039,UA -1540055040,1540055423,EU -1540055424,1540055551,NO +1540055040,1540055295,EU +1540055296,1540055551,NO 1540055552,1540056063,EU 1540056064,1540057087,NL 1540057088,1540057343,PL @@ -60729,9 +60075,8 @@ 1540219904,1540220927,PL 1540220928,1540221441,NL 1540221442,1540221569,US -1540221570,1540221825,NL -1540221826,1540222081,US -1540222082,1540223999,RU +1540221570,1540221951,NL +1540221952,1540223999,RU 1540224000,1540225023,PL 1540225024,1540226047,GB 1540226048,1540227071,RU @@ -60945,7 +60290,6 @@ 1540350464,1540350975,NO 1540350976,1540351487,DK 1540352000,1540352511,NL -1540352512,1540353023,RU 1540353024,1540353535,GR 1540353536,1540354047,RU 1540354048,1540354559,IL @@ -61489,7 +60833,6 @@ 1540586496,1540588543,RU 1540588544,1540589567,UA 1540589568,1540593663,RU -1540593664,1540594687,GB 1540594688,1540595711,IT 1540595712,1540596735,UZ 1540596736,1540597759,FR @@ -62069,9 +61412,7 @@ 1540860928,1540861951,KZ 1540861952,1540862975,BY 1540862976,1540865023,GB -1540865024,1540867071,RU -1540867072,1540868095,KZ -1540868096,1540872191,RU +1540865024,1540872191,RU 1540872192,1540873215,BG 1540873216,1540875263,RU 1540875264,1540876287,PL @@ -63034,7 +62375,7 @@ 1541348608,1541348863,HR 1541348864,1541349119,UA 1541349120,1541349375,PL -1541349376,1541349631,ES +1541349376,1541349631,RU 1541349632,1541349887,PL 1541349888,1541350143,RU 1541350144,1541350399,FR @@ -65036,7 +64377,8 @@ 1542486016,1542488319,RU 1542488320,1542488575,EU 1542488576,1542491135,PL -1542491136,1542492415,RU +1542491136,1542492159,UA +1542492160,1542492415,RU 1542492416,1542492671,UA 1542492672,1542493183,IL 1542493184,1542493439,PS @@ -65136,8 +64478,7 @@ 1542539008,1542539263,UA 1542539264,1542540287,DE 1542540288,1542540799,IT -1542540800,1542541055,GB -1542541056,1542541311,BE +1542540800,1542541311,GB 1542541312,1542542335,UA 1542542336,1542542847,RU 1542542848,1542543359,IT @@ -65474,23 +64815,25 @@ 1546698752,1546715135,NL 1546715136,1546731519,LV 1546731520,1546733567,RE -1546733568,1546734079,FR -1546734080,1546734591,RE -1546734592,1546735103,FR -1546735104,1546735359,RE -1546735360,1546739711,FR -1546739712,1546739967,GP -1546739968,1546740223,FR -1546740224,1546741503,GP -1546741504,1546742271,FR -1546742272,1546742527,MQ -1546742528,1546742783,FR -1546742784,1546743039,GF +1546733568,1546733823,FR +1546733824,1546734335,RE +1546734336,1546734591,FR +1546734592,1546735615,RE +1546735616,1546739711,FR +1546739712,1546741759,GP +1546741760,1546742015,FR +1546742016,1546742527,MQ +1546742528,1546743039,GF 1546743040,1546743551,FR 1546743552,1546743807,GF -1546743808,1546744319,FR +1546743808,1546744063,MQ +1546744064,1546744319,FR 1546744320,1546744831,MQ -1546744832,1546747647,FR +1546744832,1546745855,FR +1546745856,1546746111,MQ +1546746112,1546746367,FR +1546746368,1546746879,MQ +1546746880,1546747647,FR 1546747648,1546747903,MQ 1546747904,1546764287,RU 1546764288,1546780671,UA @@ -65703,9 +65046,7 @@ 1547657216,1547661311,RU 1547661312,1547665407,LV 1547665408,1547669503,GB -1547669504,1547672575,AT -1547672576,1547673087,HR -1547673088,1547673599,AT +1547669504,1547673599,AT 1547673600,1547677695,NL 1547677696,1547685887,RU 1547685888,1547689983,AT @@ -65715,9 +65056,7 @@ 1547699360,1547699391,GB 1547699392,1547777119,NL 1547777120,1547777127,IT -1547777128,1547846143,NL -1547846144,1547846335,FR -1547846336,1548157119,NL +1547777128,1548157119,NL 1548157120,1548157183,DE 1548157184,1548157951,NL 1548157952,1548158207,SE @@ -65737,8 +65076,7 @@ 1548159488,1548159999,GB 1548160000,1548160535,NL 1548160536,1548160543,GB -1548160544,1548160559,BE -1548160560,1548160639,NL +1548160544,1548160639,NL 1548160640,1548160767,BE 1548160768,1548161279,NL 1548161280,1548161295,FR @@ -65747,7 +65085,9 @@ 1548161536,1548161791,GB 1548161792,1548162351,NL 1548162352,1548162359,DE -1548162360,1548222463,NL +1548162360,1548162815,NL +1548162816,1548163071,DE +1548163072,1548222463,NL 1548222464,1548746751,DE 1548746752,1549271039,RO 1549271040,1549795327,FR @@ -65794,67 +65134,68 @@ 1551604736,1551630335,EU 1551630336,1551892479,RU 1551892480,1553989631,FR -1553989632,1553991167,MQ -1553991168,1553991423,FR -1553991424,1553992959,MQ +1553989632,1553992447,MQ +1553992448,1553992703,FR +1553992704,1553992959,MQ 1553992960,1553993215,FR -1553993216,1553994495,MQ -1553994496,1553994751,FR -1553994752,1553997055,MQ +1553993216,1553996031,MQ +1553996032,1553996287,FR +1553996288,1553997055,MQ 1553997056,1553997311,FR -1553997312,1553997823,MQ -1553997824,1553998079,FR -1553998080,1554000895,MQ -1554000896,1554001919,FR -1554001920,1554002687,MQ -1554002688,1554002943,FR -1554002944,1554005247,MQ -1554005248,1554005503,FR -1554005504,1554006015,MQ -1554006016,1554006271,FR -1554006272,1554007039,GP -1554007040,1554007295,FR -1554007296,1554008063,GP -1554008064,1554008831,FR -1554008832,1554013183,GP -1554013184,1554013439,FR -1554013440,1554017279,GP -1554017280,1554017535,FR -1554017536,1554018303,GP -1554018304,1554018815,FR -1554018816,1554022143,GP +1553997312,1553998335,MQ +1553998336,1553998591,FR +1553998592,1554000895,MQ +1554000896,1554001151,FR +1554001152,1554001663,MQ +1554001664,1554001919,FR +1554001920,1554006015,MQ +1554006016,1554010111,GP +1554010112,1554010623,FR +1554010624,1554012159,GP +1554012160,1554012415,FR +1554012416,1554012671,GP +1554012672,1554012927,FR +1554012928,1554017023,GP +1554017024,1554017279,FR +1554017280,1554022143,GP 1554022144,1554022399,FR -1554022400,1554023167,GP -1554023168,1554023423,FR -1554023424,1554030591,GP -1554030592,1554031359,MQ -1554031360,1554031871,FR -1554031872,1554032383,MQ +1554022400,1554024191,GP +1554024192,1554024447,FR +1554024448,1554025471,GP +1554025472,1554025983,FR +1554025984,1554030591,GP +1554030592,1554032383,MQ 1554032384,1554032639,FR -1554032640,1554034431,MQ -1554034432,1554034687,FR -1554034688,1554036735,MQ -1554036736,1554036991,FR -1554036992,1554038015,MQ -1554038016,1554038271,FR -1554038272,1554038783,MQ +1554032640,1554033151,MQ +1554033152,1554033407,FR +1554033408,1554036223,MQ +1554036224,1554036735,FR +1554036736,1554037503,MQ +1554037504,1554037759,FR +1554037760,1554038271,MQ +1554038272,1554038527,FR +1554038528,1554038783,MQ 1554038784,1554039295,RE -1554039296,1554039551,FR -1554039552,1554039807,RE -1554039808,1554040063,FR -1554040064,1554044671,RE -1554044672,1554044927,FR -1554044928,1554046719,RE +1554039296,1554039807,FR +1554039808,1554043135,RE +1554043136,1554043391,FR +1554043392,1554044927,RE +1554044928,1554045183,FR +1554045184,1554046719,RE 1554046720,1554046975,FR -1554046976,1554049791,RE -1554049792,1554050047,FR -1554050048,1554054911,RE +1554046976,1554047231,RE +1554047232,1554047999,FR +1554048000,1554054399,RE +1554054400,1554054655,FR +1554054656,1554054911,RE 1554054912,1556086783,FR 1556086784,1556491204,DE 1556491205,1556491205,EU 1556491206,1556493903,DE 1556493904,1556493911,A2 -1556493912,1558708223,DE +1556493912,1557921791,DE +1557921792,1558052863,NO +1558052864,1558708223,DE 1558708224,1559232511,GB 1559232512,1559240703,IL 1559240704,1559248895,BA @@ -65983,7 +65324,9 @@ 1566216192,1566220287,SE 1566220288,1566224383,CZ 1566224384,1566226175,DE -1566226176,1566226239,NL +1566226176,1566226185,NL +1566226186,1566226187,DE +1566226188,1566226239,NL 1566226240,1566226303,DE 1566226304,1566226335,NL 1566226336,1566226343,DE @@ -66060,15 +65403,10 @@ 1566389760,1566390271,US 1566390272,1566392319,LT 1566392320,1566394367,ES -1566394368,1566394529,NO -1566394530,1566394534,DK -1566394535,1566396175,NO +1566394368,1566396175,NO 1566396176,1566396191,NL 1566396192,1566396415,NO -1566396416,1566396927,GB -1566396928,1566397183,GI -1566397184,1566397439,MT -1566397440,1566398463,GB +1566396416,1566398463,GB 1566398464,1566400511,RU 1566400512,1566400575,NO 1566400576,1566400583,GB @@ -66077,7 +65415,9 @@ 1566400640,1566400671,NO 1566400672,1566400703,DE 1566400704,1566400735,NL -1566400736,1566400859,NO +1566400736,1566400795,NO +1566400796,1566400799,NL +1566400800,1566400859,NO 1566400860,1566400863,NL 1566400864,1566400871,GB 1566400872,1566400903,NO @@ -66171,21 +65511,67 @@ 1566468896,1566469391,BE 1566469392,1566469407,HU 1566469408,1566470143,BE -1566470144,1566470165,IE -1566470166,1566470167,GB +1566470144,1566470163,IE +1566470164,1566470167,GB 1566470168,1566470351,IE 1566470352,1566470367,GB -1566470368,1566471755,IE -1566471756,1566471757,GB -1566471758,1566471783,IE -1566471784,1566471791,GB -1566471792,1566472005,IE -1566472006,1566472007,GB -1566472008,1566472051,IE -1566472052,1566472053,GB -1566472054,1566472117,IE -1566472118,1566472119,GB -1566472120,1566472191,IE +1566470368,1566471075,IE +1566471076,1566471087,GB +1566471088,1566471123,IE +1566471124,1566471127,GB +1566471128,1566471151,IE +1566471152,1566471159,GB +1566471160,1566471427,IE +1566471428,1566471439,GB +1566471440,1566471455,IE +1566471456,1566471469,GB +1566471470,1566471473,IE +1566471474,1566471487,GB +1566471488,1566471491,IE +1566471492,1566471519,GB +1566471520,1566471567,IE +1566471568,1566471575,GB +1566471576,1566471591,IE +1566471592,1566471607,GB +1566471608,1566471615,IE +1566471616,1566471623,GB +1566471624,1566471659,IE +1566471660,1566471663,GB +1566471664,1566471687,IE +1566471688,1566471711,GB +1566471712,1566471743,IE +1566471744,1566471759,GB +1566471760,1566471775,IE +1566471776,1566471791,GB +1566471792,1566471823,IE +1566471824,1566471827,GB +1566471828,1566471831,IE +1566471832,1566471835,GB +1566471836,1566471899,IE +1566471900,1566471903,GB +1566471904,1566471967,IE +1566471968,1566471971,GB +1566471972,1566471975,IE +1566471976,1566471983,GB +1566471984,1566471991,IE +1566471992,1566472007,GB +1566472008,1566472031,IE +1566472032,1566472035,GB +1566472036,1566472051,IE +1566472052,1566472055,GB +1566472056,1566472095,IE +1566472096,1566472103,GB +1566472104,1566472111,IE +1566472112,1566472127,GB +1566472128,1566472135,IE +1566472136,1566472137,GB +1566472138,1566472149,IE +1566472150,1566472151,GB +1566472152,1566472159,IE +1566472160,1566472163,GB +1566472164,1566472167,IE +1566472168,1566472171,GB +1566472172,1566472191,IE 1566472192,1566474239,GB 1566474240,1566476287,DE 1566476288,1566478335,BG @@ -66226,9 +65612,8 @@ 1566554112,1566556159,UA 1566556160,1566558207,RU 1566558208,1566560255,JO -1566560256,1566560767,IT -1566560768,1566561023,SM -1566561024,1566564351,IT +1566560256,1566561279,SM +1566561280,1566564351,IT 1566564352,1566566399,IS 1566566400,1566568447,FR 1566568448,1566570495,KZ @@ -66262,7 +65647,9 @@ 1567715328,1567717375,MD 1567717376,1567719935,RO 1567719936,1567720191,GB -1567720192,1567750655,RO +1567720192,1567742975,RO +1567742976,1567743487,MD +1567743488,1567750655,RO 1567750656,1567751167,SE 1567751168,1567752191,RO 1567752192,1567756287,MD @@ -66295,10 +65682,18 @@ 1568247040,1568247551,GF 1568247552,1568248831,GP 1568248832,1568249087,MQ -1568249088,1568250879,GP +1568249088,1568249599,GP +1568249600,1568249855,MQ +1568249856,1568250879,GP 1568250880,1568251135,MQ 1568251136,1568251903,GP -1568251904,1568253951,MQ +1568251904,1568252159,MQ +1568252160,1568252415,GP +1568252416,1568252671,MQ +1568252672,1568252927,GP +1568252928,1568253183,GF +1568253184,1568253439,GP +1568253440,1568253951,MQ 1568253952,1568254719,GP 1568254720,1568254975,GF 1568254976,1568255743,GP @@ -66306,29 +65701,28 @@ 1568256000,1568257791,GP 1568257792,1568258303,MQ 1568258304,1568259071,GF -1568259072,1568260351,MQ -1568260352,1568261119,GP -1568261120,1568264191,MQ -1568264192,1568268287,GP +1568259072,1568260095,MQ +1568260096,1568261119,GP +1568261120,1568263423,MQ +1568263424,1568263679,GP +1568263680,1568263935,MQ +1568263936,1568268287,GP 1568268288,1568268543,GF -1568268544,1568269311,GP -1568269312,1568269823,MQ -1568269824,1568272639,GP +1568268544,1568269055,GP +1568269056,1568269311,GF +1568269312,1568269567,MQ +1568269568,1568272639,GP 1568272640,1568273407,GF 1568273408,1568274687,MQ 1568274688,1568274943,GP -1568274944,1568275199,MQ -1568275200,1568275455,GP -1568275456,1568276479,MQ +1568274944,1568276479,MQ 1568276480,1568293135,DE 1568293136,1568293151,SA 1568293152,1568294983,DE 1568294984,1568294991,FR 1568294992,1568295855,DE 1568295856,1568295863,GB -1568295864,1568296239,DE -1568296240,1568296247,ZA -1568296248,1568309247,DE +1568295864,1568309247,DE 1568309248,1568342015,RO 1568342016,1568374783,BG 1568374784,1568440319,RU @@ -66382,14 +65776,8 @@ 1570644768,1570644775,GB 1570644776,1570644991,FR 1570644992,1570645247,GB -1570645248,1570647807,FR -1570647808,1570648063,GB -1570648064,1570652159,FR -1570652160,1570652287,SE -1570652288,1570652291,MY -1570652292,1570652295,GB -1570652296,1570652299,DE -1570652300,1570652543,SE +1570645248,1570652159,FR +1570652160,1570652543,SE 1570652544,1570652551,FR 1570652552,1570652891,SE 1570652892,1570652895,DE @@ -66567,8 +65955,7 @@ 1571436544,1571438591,RU 1571438592,1571441663,UA 1571441664,1571441791,RU -1571441792,1571441887,DE -1571441888,1571441919,RU +1571441792,1571441919,DE 1571441920,1571442687,NL 1571442688,1571443199,UA 1571443200,1571443455,NL @@ -66578,8 +65965,8 @@ 1571446012,1571446015,US 1571446016,1571446783,NL 1571446784,1571447807,KZ -1571447808,1571448319,RU -1571448320,1571448831,CZ +1571447808,1571448575,RU +1571448576,1571448831,NO 1571448832,1571450879,US 1571450880,1571451903,UA 1571451904,1571452927,RU @@ -66711,28 +66098,36 @@ 1571790848,1571794943,PL 1571794944,1571799039,NL 1571799040,1571815423,UA -1571815424,1571817215,FR -1571817216,1571817983,RE +1571815424,1571816959,FR +1571816960,1571817983,RE 1571817984,1571818239,FR -1571818240,1571818751,RE -1571818752,1571820543,FR -1571820544,1571821311,RE -1571821312,1571822591,FR +1571818240,1571819007,RE +1571819008,1571820031,FR +1571820032,1571820287,RE +1571820288,1571820543,FR +1571820544,1571821055,RE +1571821056,1571821311,FR +1571821312,1571821567,RE +1571821568,1571822591,FR 1571822592,1571823103,RE 1571823104,1571824383,FR 1571824384,1571824639,RE -1571824640,1571826175,FR -1571826176,1571826687,RE -1571826688,1571826943,FR -1571826944,1571827199,RE -1571827200,1571830271,FR -1571830272,1571831295,RE -1571831296,1571831807,FR -1571831808,1571848191,DK +1571824640,1571825407,FR +1571825408,1571825663,RE +1571825664,1571826175,FR +1571826176,1571826431,RE +1571826432,1571827711,FR +1571827712,1571827967,RE +1571827968,1571828479,FR +1571828480,1571828991,RE +1571828992,1571829759,FR +1571829760,1571831807,RE +1571831808,1571838079,DK +1571838080,1571838111,CY +1571838112,1571848191,DK 1571848192,1571864575,RU 1571864576,1571880959,PL 1571880960,1571897343,RU -1571898368,1571898623,NO 1571913728,1571930111,GE 1571930112,1571946495,LV 1571946496,1571962879,SA @@ -66807,7 +66202,6 @@ 1572433920,1572438015,IT 1572438016,1572442111,AT 1572442112,1572446207,RU -1572446208,1572450303,NO 1572450304,1572458495,RU 1572458496,1572462591,UA 1572462592,1572466687,LB @@ -66858,7 +66252,9 @@ 1572541472,1572541535,FR 1572541536,1572541543,GB 1572541544,1572541551,CH -1572541552,1572541951,GB +1572541552,1572541903,GB +1572541904,1572541919,DE +1572541920,1572541951,GB 1572541952,1572541983,DE 1572541984,1572541991,BE 1572541992,1572541999,ES @@ -66875,11 +66271,9 @@ 1572542160,1572542207,GB 1572542208,1572542463,FR 1572542464,1572544511,IT -1572544512,1572544575,IQ -1572544576,1572544767,US -1572544768,1572545279,IQ -1572545280,1572545535,US -1572545536,1572546559,IQ +1572544512,1572544639,IQ +1572544640,1572544767,US +1572544768,1572546559,IQ 1572546560,1572548607,FR 1572548608,1572550655,NL 1572550656,1572552703,DE @@ -66987,8 +66381,7 @@ 1572708352,1572708863,GB 1572708864,1572709375,GG 1572709376,1572709887,GB -1572709888,1572710143,GG -1572710144,1572710399,GB +1572709888,1572710399,GG 1572710400,1572712447,DE 1572712448,1572714495,ES 1572714496,1572716543,IT @@ -67077,8 +66470,8 @@ 1572853776,1572854015,BE 1572854016,1572854271,LU 1572854272,1572854272,EU -1572854273,1572854283,BE -1572854284,1572854287,EU +1572854273,1572854281,BE +1572854282,1572854287,EU 1572854288,1572854527,BE 1572854528,1572855039,EU 1572855040,1572855071,BE @@ -67108,8 +66501,7 @@ 1578584576,1578586111,PT 1578586112,1578588159,ES 1578588160,1578590207,PL -1578590208,1578590223,FR -1578590224,1578590231,DE +1578590208,1578590231,FR 1578590232,1578590239,IT 1578590240,1578590271,IE 1578590272,1578590275,NL @@ -67135,7 +66527,7 @@ 1578590572,1578590575,IT 1578590576,1578590599,FR 1578590600,1578590603,LT -1578590604,1578590607,PL +1578590604,1578590607,FR 1578590608,1578590619,DE 1578590620,1578590623,IT 1578590624,1578590639,FR @@ -67154,7 +66546,9 @@ 1578590720,1578590727,PL 1578590728,1578590731,GB 1578590732,1578590735,PL -1578590736,1578590787,FR +1578590736,1578590751,FR +1578590752,1578590767,FI +1578590768,1578590787,FR 1578590788,1578590791,LT 1578590792,1578590799,FR 1578590800,1578590815,ES @@ -67163,8 +66557,8 @@ 1578590840,1578590847,PL 1578590848,1578590851,DE 1578590852,1578590855,FR -1578590856,1578590859,GB -1578590860,1578590879,FR +1578590856,1578590863,GB +1578590864,1578590879,FR 1578590880,1578590911,PL 1578590912,1578590927,FR 1578590928,1578590935,DE @@ -67177,8 +66571,8 @@ 1578591012,1578591023,FR 1578591024,1578591039,PL 1578591040,1578591055,NL -1578591056,1578591071,FR -1578591072,1578591119,GB +1578591056,1578591087,FR +1578591088,1578591119,GB 1578591120,1578591127,FR 1578591128,1578591135,DE 1578591136,1578591143,FR @@ -67201,16 +66595,15 @@ 1578591412,1578591415,FR 1578591416,1578591423,ES 1578591424,1578591431,PL -1578591432,1578591435,NL -1578591436,1578591455,FR +1578591432,1578591455,FR 1578591456,1578591459,GB 1578591460,1578591463,FR 1578591464,1578591487,PL 1578591488,1578591503,FR 1578591504,1578591519,CH 1578591520,1578591551,ES -1578591552,1578591555,BE -1578591556,1578591559,IT +1578591552,1578591555,FR +1578591556,1578591559,FI 1578591560,1578591575,FR 1578591576,1578591579,DE 1578591580,1578591583,ES @@ -67242,12 +66635,12 @@ 1578592064,1578592067,ES 1578592068,1578592071,FR 1578592072,1578592079,PL -1578592080,1578592095,ES -1578592096,1578592111,FR +1578592080,1578592111,FR 1578592112,1578592127,GB -1578592128,1578592143,DE +1578592128,1578592143,IE 1578592144,1578592163,FR -1578592164,1578592171,IT +1578592164,1578592167,IE +1578592168,1578592171,LT 1578592172,1578592175,ES 1578592176,1578592183,CZ 1578592184,1578592191,PT @@ -67255,7 +66648,9 @@ 1578592200,1578592207,CH 1578592208,1578592223,FR 1578592224,1578592239,ES -1578592240,1578592279,FR +1578592240,1578592271,FR +1578592272,1578592275,PT +1578592276,1578592279,FR 1578592280,1578592283,BE 1578592284,1578592287,FR 1578592288,1578592295,IT @@ -67278,14 +66673,12 @@ 1578592496,1578592511,FR 1578592512,1578592515,GB 1578592516,1578592519,PL -1578592520,1578592535,FR +1578592520,1578592531,FR +1578592532,1578592535,GB 1578592536,1578592539,PL -1578592540,1578592559,FR -1578592560,1578592575,DE -1578592576,1578592607,FR +1578592540,1578592607,FR 1578592608,1578592623,IE -1578592624,1578592687,FR -1578592688,1578592695,DE +1578592624,1578592695,FR 1578592696,1578592703,ES 1578592704,1578592719,FR 1578592720,1578592735,CH @@ -67296,23 +66689,21 @@ 1578592768,1578592783,DE 1578592784,1578592799,ES 1578592800,1578592803,NL -1578592804,1578592811,FR -1578592812,1578592815,GB -1578592816,1578592827,FR -1578592828,1578592831,GB +1578592804,1578592823,FR +1578592824,1578592827,IE +1578592828,1578592831,FR 1578592832,1578592847,PL 1578592848,1578592851,BE 1578592852,1578592855,DE 1578592856,1578592859,FR 1578592860,1578592863,PL -1578592864,1578592879,FR -1578592880,1578592891,GB +1578592864,1578592891,GB 1578592892,1578592895,FR 1578592896,1578592959,IT 1578592960,1578592991,FR 1578592992,1578593007,IE 1578593008,1578593279,DE -1578593280,1578593295,GB +1578593280,1578593295,FR 1578593296,1578593299,ES 1578593300,1578593303,GB 1578593304,1578593307,ES @@ -67321,11 +66712,11 @@ 1578593324,1578593327,DE 1578593328,1578593343,IT 1578593344,1578593359,PT -1578593360,1578593375,PL +1578593360,1578593375,FR 1578593376,1578593407,GB 1578593408,1578593411,IT 1578593412,1578593415,FR -1578593416,1578593423,DE +1578593416,1578593423,NL 1578593424,1578593439,FR 1578593440,1578593443,GB 1578593444,1578593447,PL @@ -67349,7 +66740,7 @@ 1578593648,1578593659,PL 1578593660,1578593671,FR 1578593672,1578593679,DE -1578593680,1578593695,PL +1578593680,1578593695,FR 1578593696,1578593703,GB 1578593704,1578593711,BE 1578593712,1578593715,FR @@ -67361,7 +66752,7 @@ 1578593792,1578593823,FR 1578593824,1578593831,GB 1578593832,1578593835,FR -1578593836,1578593839,ES +1578593836,1578593839,DE 1578593840,1578593887,FR 1578593888,1578593895,ES 1578593896,1578593899,GB @@ -67427,9 +66818,9 @@ 1578594556,1578594559,LT 1578594560,1578594575,PL 1578594576,1578594607,ES -1578594608,1578594623,FR +1578594608,1578594623,CH 1578594624,1578594687,DE -1578594688,1578594703,GB +1578594688,1578594703,FR 1578594704,1578594707,BE 1578594708,1578594711,FR 1578594712,1578594715,IT @@ -67455,7 +66846,7 @@ 1578595208,1578595215,PL 1578595216,1578595231,FR 1578595232,1578595263,BE -1578595264,1578595267,ES +1578595264,1578595267,PL 1578595268,1578595271,FR 1578595272,1578595275,DE 1578595276,1578595279,ES @@ -67466,11 +66857,12 @@ 1578595368,1578595379,FR 1578595380,1578595383,CH 1578595384,1578595387,ES -1578595388,1578595407,PL +1578595388,1578595391,NL +1578595392,1578595407,PL 1578595408,1578595411,IE 1578595412,1578595415,IT 1578595416,1578595419,FR -1578595420,1578595423,IT +1578595420,1578595423,GB 1578595424,1578595439,PL 1578595440,1578595447,FR 1578595448,1578595455,ES @@ -67486,8 +66878,7 @@ 1578595528,1578595531,BE 1578595532,1578595535,GB 1578595536,1578595543,LT -1578595544,1578595547,GB -1578595548,1578595551,FR +1578595544,1578595551,FR 1578595552,1578595559,IT 1578595560,1578595567,ES 1578595568,1578595607,FR @@ -67501,10 +66892,11 @@ 1578595636,1578595639,ES 1578595640,1578595643,DE 1578595644,1578595647,GB -1578595648,1578595683,FR +1578595648,1578595663,FR +1578595664,1578595679,ES +1578595680,1578595683,FR 1578595684,1578595687,GB -1578595688,1578595695,LT -1578595696,1578595703,FR +1578595688,1578595703,FR 1578595704,1578595711,PL 1578595712,1578595743,GB 1578595744,1578595747,IT @@ -67515,18 +66907,17 @@ 1578595768,1578595775,ES 1578595776,1578595807,CH 1578595808,1578595823,DE -1578595824,1578595855,FR -1578595856,1578595871,GB +1578595824,1578595871,FR 1578595872,1578595903,IT 1578595904,1578595907,NL 1578595908,1578595911,BE 1578595912,1578595935,FR 1578595936,1578595951,BE -1578595952,1578595959,DE -1578595960,1578595967,FR +1578595952,1578595967,FR 1578595968,1578595983,IE 1578595984,1578595987,PL -1578595988,1578595995,IT +1578595988,1578595991,FR +1578595992,1578595995,IT 1578595996,1578596031,FR 1578596032,1578596063,IT 1578596064,1578596095,IE @@ -67539,7 +66930,7 @@ 1578596120,1578596123,PT 1578596124,1578596127,ES 1578596128,1578596143,FR -1578596144,1578596147,GB +1578596144,1578596147,DE 1578596148,1578596151,FR 1578596152,1578596155,DE 1578596156,1578596159,FR @@ -67575,12 +66966,10 @@ 1578610772,1578610775,GB 1578610776,1578610779,DE 1578610780,1578610783,FR -1578610784,1578610799,DE +1578610784,1578610799,IE 1578610800,1578610803,FR 1578610804,1578610807,GB -1578610808,1578610819,FR -1578610820,1578610823,IE -1578610824,1578610827,FR +1578610808,1578610827,FR 1578610828,1578610831,IE 1578610832,1578610847,CH 1578610848,1578610851,PL @@ -67592,7 +66981,7 @@ 1578610872,1578610879,NL 1578610880,1578610943,FR 1578610944,1578610975,ES -1578610976,1578611007,FR +1578610976,1578611007,CH 1578611008,1578611023,IT 1578611024,1578611039,NL 1578611040,1578611043,ES @@ -67610,7 +66999,8 @@ 1578611128,1578611135,PL 1578611136,1578611151,CH 1578611152,1578611167,DE -1578611168,1578611175,PL +1578611168,1578611171,FR +1578611172,1578611175,PL 1578611176,1578611183,IE 1578611184,1578611191,ES 1578611192,1578611195,FR @@ -67625,7 +67015,7 @@ 1578611240,1578611243,IE 1578611244,1578611251,GB 1578611252,1578611255,IT -1578611256,1578611259,FI +1578611256,1578611259,FR 1578611260,1578611263,PL 1578611264,1578611279,IT 1578611280,1578611287,FR @@ -67647,21 +67037,18 @@ 1578611456,1578611711,FR 1578611712,1578611775,CH 1578611776,1578611783,DE -1578611784,1578611791,FR -1578611792,1578611807,IE +1578611784,1578611807,FR 1578611808,1578611839,CH 1578611840,1578611855,BE 1578611856,1578611903,FR 1578611904,1578611907,PL -1578611908,1578611911,FR -1578611912,1578611919,PT +1578611908,1578611919,PT 1578611920,1578611935,BE 1578611936,1578611943,PL 1578611944,1578611947,FR 1578611948,1578611951,GB 1578611952,1578611967,PL -1578611968,1578612031,FR -1578612032,1578612047,PT +1578611968,1578612047,FR 1578612048,1578612051,NL 1578612052,1578612059,DE 1578612060,1578612063,ES @@ -67677,12 +67064,9 @@ 1578612224,1578612239,IT 1578612240,1578612255,FR 1578612256,1578612263,IE -1578612264,1578612303,FR -1578612304,1578612319,NL -1578612320,1578612383,FR +1578612264,1578612383,FR 1578612384,1578612415,PL -1578612416,1578612487,FR -1578612488,1578612495,ES +1578612416,1578612495,FR 1578612496,1578612499,DE 1578612500,1578612503,CZ 1578612504,1578612507,FR @@ -67693,7 +67077,7 @@ 1578612540,1578612543,BE 1578612544,1578612575,FR 1578612576,1578612579,PL -1578612580,1578612583,FR +1578612580,1578612583,PT 1578612584,1578612587,IE 1578612588,1578612607,IT 1578612608,1578612623,PT @@ -67703,20 +67087,19 @@ 1578612864,1578612895,NL 1578612896,1578612903,PL 1578612904,1578612907,DE -1578612908,1578612911,PL -1578612912,1578612927,FR -1578612928,1578612943,PT -1578612944,1578612959,GB +1578612908,1578612911,IE +1578612912,1578612943,FR +1578612944,1578612959,ES 1578612960,1578612975,DE 1578612976,1578612983,IT 1578612984,1578612991,FR -1578612992,1578613247,DE -1578613248,1578613391,FR -1578613392,1578613399,PT +1578612992,1578613247,IT +1578613248,1578613399,FR 1578613400,1578613407,PL 1578613408,1578613423,FR 1578613424,1578613427,DE -1578613428,1578613435,GB +1578613428,1578613431,BE +1578613432,1578613435,GB 1578613436,1578613439,PT 1578613440,1578613447,GB 1578613448,1578613451,NL @@ -67724,28 +67107,25 @@ 1578613456,1578613459,IE 1578613460,1578613467,FR 1578613468,1578613471,PL -1578613472,1578613475,ES +1578613472,1578613475,FR 1578613476,1578613479,PT -1578613480,1578613487,PL +1578613480,1578613483,FR +1578613484,1578613487,PL 1578613488,1578613491,FR 1578613492,1578613495,IE 1578613496,1578613499,FR -1578613500,1578613503,PL +1578613500,1578613503,LT 1578613504,1578613567,DE 1578613568,1578613631,PL -1578613632,1578613647,PT -1578613648,1578613663,FR +1578613632,1578613663,FR 1578613664,1578613679,PL 1578613680,1578613695,ES -1578613696,1578613711,FR -1578613712,1578613719,IT -1578613720,1578613727,IE -1578613728,1578613735,FR +1578613696,1578613735,FR 1578613736,1578613739,PL 1578613740,1578613743,FR 1578613744,1578613751,ES 1578613752,1578613759,NL -1578613760,1578613775,DE +1578613760,1578613775,GB 1578613776,1578613779,FR 1578613780,1578613783,DE 1578613784,1578613787,BE @@ -67754,28 +67134,23 @@ 1578613824,1578613839,NL 1578613840,1578613847,GB 1578613848,1578613855,CZ -1578613856,1578613871,NL -1578613872,1578613887,IE -1578613888,1578613891,IT +1578613856,1578613887,FR +1578613888,1578613891,PL 1578613892,1578613895,BE -1578613896,1578613919,FR -1578613920,1578613923,GB -1578613924,1578613927,FR +1578613896,1578613927,FR 1578613928,1578613935,PL 1578613936,1578613983,FR 1578613984,1578613999,PL 1578614000,1578614003,FR -1578614004,1578614007,PL +1578614004,1578614007,IE 1578614008,1578614015,DE 1578614016,1578614047,FR 1578614048,1578614055,ES -1578614056,1578614071,FR -1578614072,1578614079,ES -1578614080,1578614175,FR +1578614056,1578614175,FR 1578614176,1578614191,PL 1578614192,1578614195,FR 1578614196,1578614207,GB -1578614208,1578614271,PL +1578614208,1578614271,PT 1578614272,1578614527,ES 1578614528,1578614543,GB 1578614544,1578614559,PL @@ -67806,9 +67181,9 @@ 1579094272,1579094527,NL 1579094528,1579094783,GB 1579094784,1579095039,NL -1579095040,1579096319,GB -1579096320,1579096351,DK -1579096352,1579104511,GB +1579095040,1579100479,GB +1579100480,1579100495,FR +1579100496,1579104511,GB 1579104512,1579104767,US 1579104768,1579105023,GB 1579105024,1579105087,NL @@ -67828,9 +67203,9 @@ 1580015616,1580048383,UA 1580048384,1580064767,RU 1580064768,1580072959,DE -1580072960,1580075071,PT -1580075072,1580075199,PT -1580075200,1580104959,PT +1580072960,1580075183,PT +1580075184,1580075184,GB +1580075185,1580104959,PT 1580104960,1580105215,CH 1580105216,1580134399,PT 1580134400,1580134575,ES @@ -67850,9 +67225,7 @@ 1581809664,1581826047,BG 1581826048,1581842431,GB 1581842432,1581858815,BG -1581858816,1581868287,IT -1581868288,1581869055,US -1581869056,1581875199,IT +1581858816,1581875199,IT 1581875200,1581890559,TR 1581890560,1581891071,GB 1581891072,1581891583,TR @@ -67869,7 +67242,9 @@ 1582029902,1582039039,NL 1582039040,1582055423,BH 1582055424,1582071807,UA -1582071808,1582088191,ES +1582071808,1582072063,ES +1582072064,1582072318,GB +1582072319,1582088191,ES 1582088192,1582104575,GB 1582104576,1582153727,RU 1582153728,1582170111,SA @@ -67891,11 +67266,12 @@ 1583617792,1583617844,US 1583617845,1583617845,US 1583617846,1583618047,US -1583618048,1583619839,NL -1583619840,1583620095,US +1583618048,1583620095,NL 1583620096,1583624191,IT 1583624192,1583628287,RS -1583628288,1583632383,DE +1583628288,1583631283,DE +1583631284,1583631287,A2 +1583631288,1583632383,DE 1583632384,1583636479,RU 1583636480,1583640575,MK 1583640576,1583644671,NL @@ -67945,9 +67321,7 @@ 1583775744,1583779839,IT 1583779840,1583779855,GB 1583779856,1583779863,BG -1583779864,1583780135,GB -1583780136,1583780143,IT -1583780144,1583780255,GB +1583779864,1583780255,GB 1583780256,1583780263,IT 1583780264,1583780335,GB 1583780336,1583780343,IT @@ -67955,37 +67329,37 @@ 1583780424,1583780431,IT 1583780432,1583780767,GB 1583780768,1583780775,IT -1583780776,1583780783,GB -1583780784,1583780791,IT -1583780792,1583780943,GB +1583780776,1583780943,GB 1583780944,1583780951,IT 1583780952,1583781039,GB 1583781040,1583781047,IT 1583781048,1583781127,GB 1583781128,1583781135,IT -1583781136,1583781279,GB -1583781280,1583781295,IT -1583781296,1583781359,GB +1583781136,1583781223,GB +1583781224,1583781231,IT +1583781232,1583781279,GB +1583781280,1583781287,IT +1583781288,1583781359,GB 1583781360,1583781367,IT 1583781368,1583781447,GB 1583781448,1583781455,IT 1583781456,1583781863,GB 1583781864,1583781871,IT -1583781872,1583782431,GB +1583781872,1583782415,GB +1583782416,1583782423,IT +1583782424,1583782431,GB 1583782432,1583782439,IT 1583782440,1583782495,GB 1583782496,1583782503,IT 1583782504,1583782975,GB 1583782976,1583782983,IT -1583782984,1583783103,GB -1583783104,1583783111,IT -1583783112,1583783479,GB +1583782984,1583783479,GB 1583783480,1583783487,IT -1583783488,1583783575,GB +1583783488,1583783535,GB +1583783536,1583783543,IT +1583783544,1583783575,GB 1583783576,1583783583,BG -1583783584,1583783655,GB -1583783656,1583783663,IT -1583783664,1583783935,GB +1583783584,1583783935,GB 1583783936,1583788031,EU 1583788032,1583792127,TM 1583792128,1583796223,IE @@ -68039,7 +67413,8 @@ 1583865856,1583869951,RU 1583869952,1583874047,KZ 1583874048,1584398335,BE -1584398336,1584660479,CZ +1584398336,1584529407,CZ +1584529408,1584660479,DE 1584660480,1584857087,GB 1584857088,1584859135,DE 1584859136,1584922623,GB @@ -68062,9 +67437,7 @@ 1585217536,1585219583,FR 1585219584,1585221631,NL 1585221632,1585223679,SK -1585223680,1585224447,FR -1585224448,1585224703,GP -1585224704,1585224959,FR +1585223680,1585224959,FR 1585224960,1585225215,RE 1585225216,1585225471,FR 1585225472,1585225727,YT @@ -68075,17 +67448,18 @@ 1585231872,1585233919,CZ 1585233920,1585238015,RU 1585238016,1585240063,DE -1585240064,1585241087,MQ -1585241088,1585242111,GP +1585240064,1585240831,FR +1585240832,1585241343,MQ +1585241344,1585242111,GP 1585242112,1585244159,RU 1585244160,1585246207,FR 1585246208,1585248255,RU -1585248256,1585250303,CZ +1585248256,1585249279,CZ +1585249280,1585249791,DE +1585249792,1585250303,CZ 1585250304,1585254399,RU 1585254400,1585256447,GB -1585256448,1585256959,DE -1585256960,1585257215,FR -1585257216,1585258495,DE +1585256448,1585258495,DE 1585258496,1585260543,GB 1585260544,1585264639,RU 1585264640,1585265015,MT @@ -68202,11 +67576,11 @@ 1585988352,1585988359,DE 1585988360,1585988479,SE 1585988480,1585988483,US -1585988484,1585989307,SE +1585988484,1585988927,SE +1585988928,1585988931,US +1585988932,1585989307,SE 1585989308,1585989311,US -1585989312,1585989671,SE -1585989672,1585989679,NL -1585989680,1585990655,SE +1585989312,1585990655,SE 1585990656,1585990659,US 1585990660,1585990847,SE 1585990848,1585990851,US @@ -68273,7 +67647,9 @@ 1586339840,1586348031,RU 1586348032,1586356223,SY 1586356224,1586372607,RU -1586372608,1586380799,JO +1586372608,1586372863,JO +1586372864,1586373119,US +1586373120,1586380799,JO 1586380800,1586388991,GB 1586388992,1586389518,ES 1586389519,1586389774,US @@ -68385,11 +67761,7 @@ 1589182464,1589198847,OM 1589198848,1589200895,FR 1589200896,1589202943,IT -1589202944,1589203711,SE -1589203712,1589203775,NL -1589203776,1589203839,SE -1589203840,1589203967,NL -1589203968,1589204479,SE +1589202944,1589204479,SE 1589204480,1589204991,NL 1589204992,1589207039,DE 1589207040,1589215231,IT @@ -68405,7 +67777,9 @@ 1589510144,1589542911,RU 1589542912,1589575679,BG 1589575680,1589608447,RU -1589608448,1589612543,DK +1589608448,1589611007,DK +1589611008,1589611263,SE +1589611264,1589612543,DK 1589612544,1589620735,SE 1589620736,1589641215,DK 1589641216,1590034431,GB @@ -68460,11 +67834,12 @@ 1590132736,1590132991,DE 1590132992,1590133567,GB 1590133568,1590133599,DE -1590133600,1590133657,GB -1590133658,1590133659,FR -1590133660,1590133663,GB +1590133600,1590133663,GB 1590133664,1590133667,FR -1590133668,1590134783,GB +1590133668,1590133735,GB +1590133736,1590133743,CH +1590133744,1590133751,NL +1590133752,1590134783,GB 1590134784,1590136831,ES 1590136832,1590138879,GB 1590138880,1590140927,FR @@ -68510,8 +67885,7 @@ 1592054272,1592054527,US 1592054528,1592054655,NL 1592054656,1592054783,US -1592054784,1592055295,AE -1592055296,1592057727,NL +1592054784,1592057727,NL 1592057728,1592057735,IN 1592057736,1592057855,NL 1592057856,1592061951,RS @@ -68545,8 +67919,8 @@ 1592087088,1592087167,CZ 1592087168,1592087175,PL 1592087176,1592087295,CZ -1592087296,1592088191,PL -1592088192,1592090623,CZ +1592087296,1592088319,PL +1592088320,1592090623,CZ 1592090624,1592094719,RU 1592094720,1592098815,RS 1592098816,1592102911,GB @@ -68646,9 +68020,7 @@ 1593203456,1593203487,NO 1593203488,1593204087,SE 1593204088,1593204095,FI -1593204096,1593205567,SE -1593205568,1593205631,DK -1593205632,1593209151,SE +1593204096,1593209151,SE 1593209152,1593209155,GR 1593209156,1593209159,HU 1593209160,1593209163,FI @@ -68715,7 +68087,9 @@ 1595408384,1595998207,RU 1595998208,1596063743,DE 1596063744,1596129279,NO -1596129280,1596194815,IL +1596129280,1596141055,IL +1596141056,1596141311,FR +1596141312,1596194815,IL 1596194816,1596260351,NL 1596260352,1596325887,RU 1596325888,1596391423,IR @@ -68728,7 +68102,13 @@ 1596882944,1596901375,CZ 1596901376,1596907519,BY 1596907520,1596915711,RU -1596915712,1596981247,CZ +1596915712,1596942335,CZ +1596942336,1596945663,UA +1596945664,1596946431,GB +1596946432,1596947455,RU +1596947456,1596948479,UA +1596948480,1596950527,BY +1596950528,1596981247,CZ 1596981248,1597243391,PL 1597243392,1597505535,RU 1597505536,1597767679,KZ @@ -68816,7 +68196,9 @@ 1600978944,1601011711,SE 1601011712,1601044479,UA 1601044480,1601077247,RU -1601077248,1601110015,IT +1601077248,1601109567,IT +1601109568,1601109631,FR +1601109632,1601110015,IT 1601110016,1601142783,BG 1601142784,1601175551,UA 1601175552,1601699839,DE @@ -68830,13 +68212,9 @@ 1602230272,1602232319,DK 1602232320,1602234367,CH 1602234368,1602235903,FR -1602235904,1602235967,ES -1602235968,1602236159,FR -1602236160,1602236223,GB -1602236224,1602236287,FR -1602236288,1602236335,GB -1602236336,1602236383,FR -1602236384,1602238463,GB +1602235904,1602236063,ES +1602236064,1602236415,FR +1602236416,1602238463,GB 1602238464,1602240511,TR 1602240512,1602242559,BY 1602242560,1602244031,FR @@ -68927,7 +68305,8 @@ 1602375680,1602377727,BY 1602377728,1602379775,PS 1602379776,1602383871,GB -1602383872,1602384895,EU +1602383872,1602384127,DE +1602384128,1602384895,EU 1602384896,1602385151,DE 1602385152,1602385919,EU 1602385920,1602387967,AT @@ -68972,8 +68351,8 @@ 1602451456,1602453503,DE 1602453504,1602455551,SK 1602455552,1602456015,FR -1602456016,1602456025,ES -1602456026,1602456175,FR +1602456016,1602456023,ES +1602456024,1602456175,FR 1602456176,1602456183,ES 1602456184,1602457471,FR 1602457472,1602457487,BE @@ -68997,43 +68376,49 @@ 1602813952,1602846719,RU 1602846720,1602879487,GE 1602879488,1602879743,RE -1602879744,1602880255,FR -1602880256,1602881535,RE -1602881536,1602882559,FR -1602882560,1602882815,RE +1602879744,1602880511,FR +1602880512,1602881791,RE +1602881792,1602882047,FR +1602882048,1602882815,RE 1602882816,1602883327,FR -1602883328,1602884607,RE -1602884608,1602889215,FR -1602889216,1602889727,RE -1602889728,1602890239,FR -1602890240,1602891775,RE -1602891776,1602892287,FR -1602892288,1602892799,RE +1602883328,1602883839,RE +1602883840,1602884095,FR +1602884096,1602884863,RE +1602884864,1602885887,FR +1602885888,1602886143,RE +1602886144,1602886911,FR +1602886912,1602887423,RE +1602887424,1602888703,FR +1602888704,1602888959,RE +1602888960,1602889983,FR +1602889984,1602892799,RE 1602892800,1602893823,FR 1602893824,1602894335,RE 1602894336,1602894847,FR 1602894848,1602895103,RE -1602895104,1602896924,FR +1602895104,1602895871,FR +1602895872,1602896127,RE +1602896128,1602896924,FR 1602896925,1602896925,RE -1602896926,1602898431,FR -1602898432,1602898943,MQ -1602898944,1602900223,FR +1602896926,1602897919,FR +1602897920,1602899199,MQ +1602899200,1602899455,FR +1602899456,1602899711,MQ +1602899712,1602900223,FR 1602900224,1602900991,MQ -1602900992,1602901503,FR -1602901504,1602902783,MQ -1602902784,1602903807,FR -1602903808,1602904063,MQ -1602904064,1602904319,RE -1602904320,1602906111,FR -1602906112,1602908415,RE -1602908416,1602909183,FR -1602909184,1602910207,RE -1602910208,1602910719,FR -1602910720,1602910975,RE +1602900992,1602901247,FR +1602901248,1602902527,MQ +1602902528,1602903039,FR +1602903040,1602903807,MQ +1602903808,1602904063,FR +1602904064,1602904575,RE +1602904576,1602906111,FR +1602906112,1602908671,RE +1602908672,1602909183,FR +1602909184,1602910975,RE 1602910976,1602911231,FR -1602911232,1602911487,RE -1602911488,1602911743,FR -1602911744,1602912255,RE +1602911232,1602911743,RE +1602911744,1602912255,FR 1602912256,1602928639,GB 1602928640,1602930687,HU 1602930688,1602932735,GB @@ -69061,10 +68446,27 @@ 1603076096,1603080191,RU 1603080192,1603080447,GB 1603080448,1603080703,FR -1603080704,1603083567,GB +1603080704,1603080831,US +1603080832,1603080959,SE +1603080960,1603081087,DE +1603081088,1603081247,GB +1603081248,1603081255,NO +1603081256,1603081263,FI +1603081264,1603081279,GB +1603081280,1603081295,US +1603081296,1603081407,GB +1603081408,1603081471,ES +1603081472,1603082239,GB +1603082240,1603082495,DE +1603082496,1603082751,GT +1603082752,1603083007,ES +1603083008,1603083263,UA +1603083264,1603083535,DE +1603083536,1603083551,GB +1603083552,1603083567,NL 1603083568,1603083823,LU -1603083824,1603084287,GB -1603084288,1603086847,IT +1603083824,1603084031,GB +1603084032,1603086847,IT 1603086848,1603087103,DE 1603087104,1603088383,IT 1603088384,1603092479,LB @@ -69177,7 +68579,9 @@ 1603223616,1603223631,GB 1603223632,1603223703,FR 1603223704,1603223711,GB -1603223712,1603223935,FR +1603223712,1603223791,FR +1603223792,1603223807,GB +1603223808,1603223935,FR 1603223936,1603223951,GB 1603223952,1603224319,FR 1603224320,1603224335,GB @@ -69195,7 +68599,9 @@ 1603224912,1603225447,FR 1603225448,1603225455,GB 1603225456,1603225511,FR -1603225512,1603225583,GB +1603225512,1603225535,GB +1603225536,1603225551,FR +1603225552,1603225583,GB 1603225584,1603225599,FR 1603225600,1603225607,ES 1603225608,1603225615,GB @@ -69246,9 +68652,7 @@ 1603895296,1603928063,RU 1603928064,1603944447,DK 1603944448,1603977215,RU -1603977216,1603979519,GB -1603979520,1603979775,US -1603979776,1603980463,GB +1603977216,1603980463,GB 1603980464,1603980479,CH 1603980480,1603982655,GB 1603982656,1603982687,DK @@ -69361,23 +68765,17 @@ 1605108256,1605108263,IT 1605108264,1605108407,GB 1605108408,1605108415,IT -1605108416,1605108439,GB -1605108440,1605108447,IT -1605108448,1605108567,GB +1605108416,1605108511,GB +1605108512,1605108519,IT +1605108520,1605108567,GB 1605108568,1605108575,IT 1605108576,1605108623,GB 1605108624,1605108631,IT -1605108632,1605109671,GB -1605109672,1605109679,IT -1605109680,1605110263,GB +1605108632,1605110263,GB 1605110264,1605110271,IT 1605110272,1605111111,GB 1605111112,1605111119,IT -1605111120,1605111239,GB -1605111240,1605111247,IT -1605111248,1605111383,GB -1605111384,1605111391,IT -1605111392,1605111847,GB +1605111120,1605111847,GB 1605111848,1605111855,IT 1605111856,1605111919,GB 1605111920,1605111927,IT @@ -69385,17 +68783,17 @@ 1605111936,1605111943,IT 1605111944,1605112367,GB 1605112368,1605112375,IT -1605112376,1605112607,GB -1605112608,1605112615,IT -1605112616,1605112847,GB +1605112376,1605112847,GB 1605112848,1605112855,IT -1605112856,1605113223,GB +1605112856,1605112879,GB +1605112880,1605112887,IT +1605112888,1605113087,GB +1605113088,1605113095,IT +1605113096,1605113223,GB 1605113224,1605113231,IT 1605113232,1605113383,GB 1605113384,1605113391,IT -1605113392,1605113415,GB -1605113416,1605113423,IT -1605113424,1605114199,GB +1605113392,1605114199,GB 1605114200,1605114207,IT 1605114208,1605114263,GB 1605114264,1605114271,IT @@ -69411,7 +68809,8 @@ 1605115808,1605115815,IT 1605115816,1605115903,GB 1605115904,1605124095,RU -1605124096,1605124607,US +1605124096,1605124223,GB +1605124224,1605124607,US 1605124608,1605124639,GB 1605124640,1605124735,US 1605124736,1605124863,GB @@ -69419,14 +68818,9 @@ 1605124896,1605124927,GB 1605124928,1605124959,US 1605124960,1605125119,GB -1605125120,1605125247,US -1605125248,1605125263,GB -1605125264,1605125267,DE +1605125120,1605125267,DE 1605125268,1605125269,EU -1605125270,1605125279,DE -1605125280,1605125335,GB -1605125336,1605125343,US -1605125344,1605125375,GB +1605125270,1605125375,DE 1605125376,1605125903,US 1605125904,1605125904,GB 1605125905,1605125920,DE @@ -69509,10 +68903,14 @@ 1606636288,1606636543,GB 1606636544,1607467007,SE 1607467008,1607532543,DE -1607532544,1607569407,SE -1607569408,1607572479,DK -1607572480,1607573503,SE -1607573504,1607577599,DK +1607532544,1607562495,SE +1607562496,1607562751,DK +1607562752,1607569407,SE +1607569408,1607571455,DK +1607571456,1607571967,SE +1607571968,1607572479,DK +1607572480,1607575551,SE +1607575552,1607577599,DK 1607577600,1607581695,SE 1607581696,1607583743,DK 1607583744,1607585791,SE @@ -69528,18 +68926,22 @@ 1607612416,1607614463,EU 1607614464,1607616511,FR 1607616512,1607618559,EU -1607618560,1607619071,IT -1607619072,1607620607,GB -1607620608,1607622655,EU +1607618560,1607620607,ES +1607620608,1607621375,IT +1607621376,1607622655,EU 1607622656,1607625983,IT 1607625984,1607626239,EU 1607626240,1607626751,IT -1607626752,1607634431,EU +1607626752,1607628799,EU +1607628800,1607630847,FR +1607630848,1607634431,EU 1607634432,1607636479,IT -1607636480,1607651583,EU -1607651584,1607652351,FR -1607652352,1607655423,EU -1607655424,1607663615,IT +1607636480,1607651839,EU +1607651840,1607653375,FR +1607653376,1607655423,EU +1607655424,1607659519,IT +1607659520,1607660031,GB +1607660032,1607663615,IT 1607663616,1607691455,NL 1607691456,1607691519,GB 1607691520,1607695559,NL @@ -69674,11 +69076,7 @@ 1613546160,1613546167,US 1613546168,1613546407,CA 1613546408,1613546423,US -1613546424,1613546679,CA -1613546680,1613546695,US -1613546696,1613546703,CA -1613546704,1613546719,US -1613546720,1613547935,CA +1613546424,1613547935,CA 1613547936,1613547943,US 1613547944,1613548479,CA 1613548480,1613548487,US @@ -69694,7 +69092,9 @@ 1613552152,1613552159,US 1613552160,1613552199,CA 1613552200,1613552207,US -1613552208,1613556511,CA +1613552208,1613556183,CA +1613556184,1613556191,US +1613556192,1613556511,CA 1613556512,1613556535,US 1613556536,1613556559,CA 1613556560,1613556583,US @@ -69724,9 +69124,7 @@ 1614757888,1614774271,US 1614774272,1614786559,CA 1614786560,1618837503,US -1618837504,1618840319,CA -1618840320,1618840575,US -1618840576,1618841599,CA +1618837504,1618841599,CA 1618841600,1618849791,US 1618849792,1618850303,CA 1618850304,1618850559,US @@ -69746,7 +69144,11 @@ 1632354680,1632354687,US 1632354688,1632354919,CA 1632354920,1632354927,NL -1632354928,1632362495,CA +1632354928,1632355583,CA +1632355584,1632355599,US +1632355600,1632358647,CA +1632358648,1632358655,US +1632358656,1632362495,CA 1632362496,1632587007,US 1632587008,1632587263,US 1632587264,1634414591,US @@ -69831,18 +69233,11 @@ 1673567264,1673567279,AT 1673567280,1673567583,US 1673567584,1673567615,CA -1673567616,1673567807,US -1673567808,1673567823,AU -1673567824,1673567855,US -1673567856,1673567871,CA -1673567872,1673568255,US -1673568256,1673568271,CA -1673568272,1673568303,US +1673567616,1673568303,US 1673568304,1673568319,GB 1673568320,1673568383,US 1673568384,1673568447,CA -1673568448,1673569023,US -1673569024,1673569039,CA +1673568448,1673569039,US 1673569040,1673569055,HR 1673569056,1673569183,US 1673569184,1673569215,NL @@ -70146,7 +69541,6 @@ 1728246784,1728254975,JP 1728254976,1728255999,MY 1728256000,1728257023,HK -1728257024,1728258047,MN 1728258048,1728259071,IN 1728259072,1728260095,KR 1728260096,1728261119,IN @@ -70341,15 +69735,13 @@ 1728464896,1728465919,KR 1728465920,1728466943,CN 1728466944,1728467967,KR -1728467968,1728468479,HK -1728468480,1728468735,AU +1728467968,1728468735,HK 1728468736,1728469247,IN 1728469248,1728469503,NZ 1728469504,1728470015,HK 1728470016,1728471039,JP 1728471040,1728472063,PH 1728472064,1728473087,KR -1728473088,1728473343,IN 1728473344,1728473599,AU 1728473600,1728474111,SG 1728474112,1728475135,IN @@ -70538,7 +69930,7 @@ 1728643072,1728645119,VN 1728645120,1728646143,SG 1728646144,1728647167,IN -1728647168,1728648703,AU +1728647168,1728648191,AU 1728648704,1728648959,ID 1728648960,1728649215,PK 1728650240,1728651263,JP @@ -70665,7 +70057,6 @@ 1728768000,1728768255,AU 1728768256,1728768511,NZ 1728768512,1728769023,IN -1728769024,1728770047,HK 1728770048,1728772095,JP 1728772096,1728773375,IN 1728773376,1728773631,ID @@ -71181,7 +70572,9 @@ 1729242112,1729244159,AU 1729244160,1729245183,SG 1729245184,1729247231,AU -1729247232,1729248255,NZ +1729247232,1729247487,NZ +1729247488,1729247743,AU +1729247744,1729248255,NZ 1729248256,1729249279,JP 1729249280,1729252351,IN 1729252352,1729253375,JP @@ -71243,9 +70636,9 @@ 1729304576,1729305599,HK 1729305600,1729306623,JP 1729306624,1729307647,PH -1729307648,1729307903,NZ 1729307904,1729308159,ID 1729308160,1729308415,HK +1729308416,1729308671,AU 1729308672,1729310719,CN 1729310720,1729311743,JP 1729311744,1729312767,IN @@ -71253,10 +70646,44 @@ 1729313792,1729314815,AU 1729314816,1729317887,CN 1729317888,1729319423,ID +1729319424,1729319935,SG 1729319936,1729320959,HK 1729320960,1729321983,IN 1729321984,1729323007,AU 1729323008,1729324031,VN +1729324032,1729325055,NZ +1729325056,1729326079,TH +1729326080,1729327103,ID +1729327104,1729328127,AU +1729328128,1729330175,JP +1729330176,1729331199,KR +1729331200,1729331711,IN +1729331712,1729332223,BD +1729332224,1729335295,IN +1729335296,1729336319,AU +1729336320,1729338367,IN +1729338368,1729340415,JP +1729340416,1729341439,VN +1729341440,1729341951,IN +1729341952,1729343487,AU +1729343488,1729346559,ID +1729346560,1729347583,HK +1729347584,1729348607,AU +1729348608,1729350655,IN +1729350656,1729352703,ID +1729352704,1729353727,IN +1729353728,1729353983,AU +1729353984,1729354239,IN +1729354240,1729354751,AU +1729354752,1729355775,VN +1729355776,1729356799,IN +1729356800,1729357823,ID +1729357824,1729358847,CN +1729358848,1729359871,HK +1729359872,1729360895,JP +1729360896,1729361919,AU +1729361920,1729362943,IN +1729362944,1729363967,BD 1729363968,1729364991,PK 1729364992,1729367039,JP 1729367040,1729368063,CN @@ -71391,7 +70818,6 @@ 1729486848,1729488383,ID 1729488384,1729488895,SB 1729488896,1729489919,IN -1729489920,1729490943,BD 1729490944,1729491967,CN 1729491968,1729492991,HK 1729492992,1729494015,SB @@ -71502,6 +70928,116 @@ 1729623552,1729623807,TH 1729623808,1729624063,AF 1729624064,1729626111,JP +1729626112,1729627135,HK +1729627136,1729628159,SG +1729628160,1729629183,KR +1729629184,1729629695,ID +1729629696,1729629951,AU +1729629952,1729630207,HK +1729630208,1729631231,PH +1729631232,1729632255,IN +1729632256,1729633279,SG +1729633280,1729634303,NZ +1729634304,1729635327,KH +1729635328,1729636351,IN +1729636352,1729637375,NZ +1729637376,1729637887,SG +1729637888,1729638143,IN +1729638144,1729638399,AU +1729638400,1729639423,ID +1729639424,1729640447,JP +1729640448,1729641471,ID +1729641472,1729642495,IN +1729642496,1729643519,AU +1729643520,1729644543,JP +1729644544,1729645823,ID +1729645824,1729646079,SG +1729646080,1729646591,PG +1729646592,1729649663,IN +1729649664,1729650687,HK +1729650688,1729651711,PK +1729651712,1729652735,TW +1729652736,1729653759,ID +1729653760,1729654783,IN +1729654784,1729655807,NC +1729655808,1729656831,CN +1729656832,1729657855,AU +1729657856,1729658879,IN +1729658880,1729659903,CN +1729659904,1729660415,AU +1729660416,1729660671,MY +1729660672,1729660927,IN +1729660928,1729662975,NZ +1729662976,1729663999,CN +1729664000,1729665023,ID +1729665024,1729666047,HK +1729666048,1729667071,SG +1729667072,1729668095,JP +1729668096,1729669119,SG +1729669120,1729670143,JP +1729670144,1729671167,IN +1729671168,1729672191,CN +1729672192,1729673215,IN +1729673216,1729674239,CN +1729674240,1729675263,IN +1729675264,1729676287,JP +1729676288,1729677311,AU +1729677312,1729678335,IN +1729678336,1729679359,HK +1729679360,1729680383,AU +1729680384,1729681407,ID +1729681408,1729682431,HK +1729682432,1729683455,CN +1729683456,1729684479,HK +1729684480,1729685503,CN +1729685504,1729687551,IN +1729687552,1729688575,AU +1729688576,1729689599,VN +1729689600,1729691647,CN +1729691648,1729693695,IN +1729693696,1729694207,CN +1729694208,1729694719,IN +1729694720,1729695743,MM +1729695744,1729696767,KR +1729696768,1729702911,CN +1729702912,1729703935,IN +1729703936,1729704959,CN +1729705216,1729705471,AU +1729705472,1729705983,ID +1729705984,1729707007,AU +1729707008,1729708031,HK +1729708032,1729710079,CN +1729710080,1729711103,HK +1729711104,1729712127,MM +1729712128,1729713151,BD +1729713152,1729714175,IN +1729714176,1729715199,JP +1729715200,1729716223,IN +1729716224,1729717247,TH +1729717248,1729718271,JP +1729718272,1729719295,HK +1729719296,1729720319,ID +1729720320,1729721087,AU +1729721088,1729721343,IN +1729721344,1729722367,NZ +1729722368,1729726463,IN +1729726464,1729727487,PK +1729727488,1729728511,KI +1729728512,1729729535,JP +1729729536,1729730559,CN +1729730560,1729731583,IN +1729731584,1729732607,CN +1729732608,1729733631,AU +1729733632,1729733887,BD +1729733888,1729734655,ID +1729734656,1729736703,IN +1729736704,1729737727,PH +1729737728,1729738751,AU +1729738752,1729739775,BD +1729739776,1729740799,NZ +1729740800,1729742847,ID +1729742848,1729743871,SG +1729743872,1729744895,IN 1729888256,1729889279,KH 1729889280,1729891327,CN 1729891328,1729892351,ID @@ -71557,7 +71093,6 @@ 1729939968,1729940479,PH 1729940480,1729941503,CN 1729941504,1729942527,SG -1729942528,1729943551,IN 1729943552,1729944063,AU 1729944064,1729946623,ID 1729946624,1729949695,JP @@ -71780,7 +71315,8 @@ 1744077824,1744078847,PK 1744078848,1744079871,VN 1744079872,1744080895,BD -1744080896,1744081919,AF +1744080896,1744081151,US +1744081152,1744081919,AF 1744081920,1744082943,CN 1744082944,1744083967,IN 1744083968,1744084991,HK @@ -72071,7 +71607,11 @@ 1790648320,1790649007,CN 1790649008,1790649008,JP 1790649009,1790650367,CN -1790650368,1790967807,JP +1790650368,1790652415,JP +1790652416,1790654463,CN +1790654464,1790664703,JP +1790664704,1790666751,CN +1790666752,1790967807,JP 1790967808,1793064959,IN 1793064960,1794113535,CN 1794113536,1795162111,KR @@ -72116,8 +71656,8 @@ 1795560448,1795560959,CA 1795560960,1795561215,US 1795561216,1795562239,CA -1795562240,1795563263,US -1795563264,1795563519,CA +1795562240,1795562495,US +1795562496,1795563519,CA 1795563520,1795564031,US 1795564032,1795564543,CA 1795564544,1795565631,US @@ -72186,16 +71726,14 @@ 1815920640,1815928831,US 1815928832,1815937023,BS 1815937024,1815940111,US -1815940112,1815940127,US -1815940128,1815950191,US +1815940112,1815940119,US +1815940120,1815950191,US 1815950192,1815950207,US 1815950208,1815951247,US 1815951248,1815951263,US 1815951264,1815951407,US 1815951408,1815951423,US -1815951424,1815957823,US -1815957824,1815957887,US -1815957888,1815996159,US +1815951424,1815996159,US 1815996160,1815996415,CA 1815996416,1816001791,US 1816001792,1816002559,NL @@ -72207,11 +71745,11 @@ 1816007664,1816007671,CA 1816007672,1816008959,US 1816008960,1816009215,IN -1816009216,1816024319,US +1816009216,1816018471,US +1816018472,1816018479,CA +1816018480,1816024319,US 1816024320,1816024575,CA -1816024576,1816031343,US -1816031344,1816031351,CA -1816031352,1816049983,US +1816024576,1816049983,US 1816049984,1816050047,CN 1816050048,1816068095,US 1816068096,1816070415,CA @@ -72269,7 +71807,9 @@ 1823162368,1823170559,CA 1823170560,1823178751,US 1823178752,1823179007,GB -1823179008,1823211519,US +1823179008,1823186687,US +1823186688,1823186943,IN +1823186944,1823211519,US 1823211520,1823342591,CA 1823342592,1823346687,US 1823346688,1823350783,CA @@ -72287,9 +71827,7 @@ 1823355096,1823355103,SE 1823355104,1823355119,US 1823355120,1823355127,VE -1823355128,1823355135,US -1823355136,1823355263,GB -1823355264,1823355503,US +1823355128,1823355503,US 1823355504,1823355507,GB 1823355508,1823356655,US 1823356656,1823356663,IN @@ -72415,32 +71953,42 @@ 1832124416,1832386559,IT 1832386560,1832517631,DK 1832517632,1832583167,SE -1832583168,1832648703,DK +1832583168,1832587519,DK +1832587520,1832587775,SE +1832587776,1832648703,DK 1832648704,1832681471,HR 1832681472,1832714239,RU 1832714240,1832747007,HU 1832747008,1832779775,RU -1832779776,1832782591,FR -1832782592,1832783103,MQ -1832783104,1832783359,FR -1832783360,1832783615,MQ +1832779776,1832780031,MQ +1832780032,1832780287,FR +1832780288,1832780799,MQ +1832780800,1832782335,FR +1832782336,1832783615,MQ 1832783616,1832784127,FR 1832784128,1832784383,GP 1832784384,1832784639,FR -1832784640,1832786431,GP -1832786432,1832786943,FR -1832786944,1832787199,GF -1832787200,1832791807,FR +1832784640,1832786943,GP +1832786944,1832787967,GF +1832787968,1832788991,RE +1832788992,1832791807,FR 1832791808,1832792063,YT 1832792064,1832792319,FR 1832792320,1832792575,RE 1832792576,1832794111,FR -1832794112,1832796159,GP -1832796160,1832796415,FR +1832794112,1832794623,GP +1832794624,1832796415,FR 1832796416,1832796671,RE 1832796672,1832796927,FR -1832796928,1832797183,MQ -1832797184,1832812543,FR +1832796928,1832797055,GP +1832797056,1832797183,GF +1832797184,1832798463,FR +1832798464,1832798719,GP +1832798720,1832799487,FR +1832799488,1832799743,GP +1832799744,1832800255,FR +1832800256,1832804351,MQ +1832804352,1832812543,FR 1832812544,1832845311,RU 1832845312,1832878079,BH 1832878080,1832878412,RU @@ -72532,7 +72080,9 @@ 1833321216,1833321282,US 1833321283,1833321283,AE 1833321284,1833321471,US -1833321472,1833322495,AE +1833321472,1833321727,AE +1833321728,1833321983,US +1833321984,1833322495,AE 1833322496,1833324543,IT 1833324544,1833326591,NO 1833326592,1833327103,GB @@ -72542,8 +72092,13 @@ 1833332736,1833334783,CH 1833334784,1833336831,IT 1833336832,1833336959,ES -1833336960,1833337071,FR -1833337072,1833337983,ES +1833336960,1833336975,FR +1833336976,1833336992,DE +1833336993,1833337008,NO +1833337009,1833337024,US +1833337025,1833337040,NE +1833337041,1833337056,SE +1833337057,1833337983,ES 1833337984,1833337999,US 1833338000,1833338015,GB 1833338016,1833338031,FR @@ -72563,25 +72118,29 @@ 1833351168,1833353215,RU 1833353216,1833355263,DE 1833355264,1833357311,IT -1833357312,1833357561,IE -1833357562,1833357567,GB -1833357568,1833357579,IE -1833357580,1833357587,GB +1833357312,1833357551,IE +1833357552,1833357587,GB 1833357588,1833357647,IE 1833357648,1833357663,GB 1833357664,1833357671,IE 1833357672,1833357675,GB -1833357676,1833357941,IE -1833357942,1833358079,GB +1833357676,1833357695,IE +1833357696,1833357699,GB +1833357700,1833357743,IE +1833357744,1833357745,GB +1833357746,1833357795,IE +1833357796,1833357799,GB +1833357800,1833357935,IE +1833357936,1833358079,GB 1833358080,1833358619,IE -1833358620,1833358841,GB -1833358842,1833359063,IE +1833358620,1833358847,GB +1833358848,1833359063,IE 1833359064,1833359071,GB 1833359072,1833359079,IE -1833359080,1833359083,GB -1833359084,1833359087,IE -1833359088,1833359091,GB -1833359092,1833359167,IE +1833359080,1833359097,GB +1833359098,1833359101,IE +1833359102,1833359103,GB +1833359104,1833359167,IE 1833359168,1833359359,GB 1833359360,1833361407,DE 1833361408,1833363455,GB @@ -72634,7 +72193,9 @@ 1833447424,1833451519,RS 1833451520,1833455615,RU 1833455616,1833459711,NL -1833459712,1833463807,ME +1833459712,1833459967,ME +1833459968,1833460223,RU +1833460224,1833463807,ME 1833463808,1833467903,UA 1833467904,1833468079,RU 1833468080,1833468159,CH @@ -72672,7 +72233,9 @@ 1833542656,1833542911,IN 1833542912,1833543167,GB 1833543168,1833543423,IN -1833543424,1833545215,GB +1833543424,1833544713,GB +1833544714,1833544718,US +1833544719,1833545215,GB 1833545216,1833545471,NL 1833545472,1833545727,GB 1833545728,1833549823,IT @@ -72857,7 +72420,8 @@ 1835876352,1835884543,NO 1835884544,1835892735,NL 1835892736,1835909119,GB -1835909120,1835913215,RS +1835909120,1835911167,RS +1835911168,1835913215,DE 1835913216,1835917311,RU 1835917312,1835917919,GB 1835917920,1835917935,IT @@ -72867,55 +72431,59 @@ 1835918440,1835918447,IT 1835918448,1835918519,GB 1835918520,1835918527,IT -1835918528,1835918551,GB -1835918552,1835918559,IT -1835918560,1835918567,GB -1835918568,1835918583,IT -1835918584,1835918735,GB +1835918528,1835918567,GB +1835918568,1835918575,IT +1835918576,1835918711,GB +1835918712,1835918719,IT +1835918720,1835918735,GB 1835918736,1835918743,IT -1835918744,1835919151,GB +1835918744,1835918847,GB +1835918848,1835918855,IT +1835918856,1835919151,GB 1835919152,1835919159,IT 1835919160,1835919215,GB 1835919216,1835919223,IT -1835919224,1835919375,GB -1835919376,1835919383,IT -1835919384,1835919631,GB +1835919224,1835919631,GB 1835919632,1835919639,IT 1835919640,1835919711,GB 1835919712,1835919719,IT 1835919720,1835919751,GB 1835919752,1835919759,IT -1835919760,1835920127,GB +1835919760,1835920023,GB +1835920024,1835920031,IT +1835920032,1835920127,GB 1835920128,1835920159,PT 1835920160,1835920167,GB 1835920168,1835920175,PT 1835920176,1835920191,GB 1835920192,1835920199,PT 1835920200,1835920207,GB -1835920208,1835920335,PT -1835920336,1835920351,GB -1835920352,1835920383,PT -1835920384,1835920479,GB +1835920208,1835920279,PT +1835920280,1835920287,GB +1835920288,1835920327,PT +1835920328,1835920351,GB +1835920352,1835920375,PT +1835920376,1835920479,GB 1835920480,1835920487,IT 1835920488,1835920631,GB 1835920632,1835920639,IT -1835920640,1835920655,GB -1835920656,1835920663,IT -1835920664,1835920775,GB +1835920640,1835920775,GB 1835920776,1835920783,IT 1835920784,1835920863,GB 1835920864,1835920871,IT 1835920872,1835921047,GB 1835921048,1835921055,IT -1835921056,1835921095,GB -1835921096,1835921103,IT -1835921104,1835921119,GB +1835921056,1835921119,GB 1835921120,1835921127,IT 1835921128,1835921343,GB 1835921344,1835921351,IT 1835921352,1835921407,GB 1835921408,1835921415,IT -1835921416,1835921855,GB +1835921416,1835921439,GB +1835921440,1835921447,IT +1835921448,1835921807,GB +1835921808,1835921823,IT +1835921824,1835921855,GB 1835921856,1835921863,IT 1835921864,1835922415,GB 1835922416,1835922423,IT @@ -72923,7 +72491,11 @@ 1835922560,1835922567,IT 1835922568,1835922815,GB 1835922816,1835922831,IT -1835922832,1835923863,GB +1835922832,1835923519,GB +1835923520,1835923527,IT +1835923528,1835923639,GB +1835923640,1835923647,IT +1835923648,1835923863,GB 1835923864,1835923871,IT 1835923872,1835923967,GB 1835923968,1835923975,IT @@ -72952,53 +72524,44 @@ 1836056576,1836580863,IT 1836580864,1836597247,RU 1836597248,1836597759,LU -1836597760,1836604415,DE -1836604416,1836605439,FR -1836605440,1836605951,DE -1836605952,1836612607,LU +1836597760,1836601599,DE +1836601600,1836603391,LU +1836603392,1836605439,FR +1836605440,1836605695,DE +1836605696,1836612607,LU 1836612608,1836613631,DE 1836613632,1836630015,RU 1836630016,1836646399,BG 1836646400,1836679167,RS -1836679168,1836683519,BG -1836683520,1836685311,RO +1836679168,1836683263,BG +1836683264,1836685311,RO 1836685312,1836685823,BG 1836685824,1836687359,GR 1836687360,1836711935,BG 1836711936,1836728319,UA 1836728320,1836744703,RS 1836744704,1836745983,FR -1836745984,1836746239,RE -1836746240,1836746495,FR -1836746496,1836746751,RE -1836746752,1836747775,FR -1836747776,1836748543,RE -1836748544,1836748799,FR -1836748800,1836749311,RE -1836749312,1836749567,FR -1836749568,1836749823,RE -1836749824,1836750335,FR -1836750336,1836750591,RE -1836750592,1836750847,FR -1836750848,1836751103,RE +1836745984,1836746751,RE +1836746752,1836747263,FR +1836747264,1836748287,RE +1836748288,1836748543,FR +1836748544,1836748799,RE +1836748800,1836749055,FR +1836749056,1836750079,RE +1836750080,1836750335,FR +1836750336,1836751103,RE 1836751104,1836751359,FR -1836751360,1836751871,RE -1836751872,1836752127,FR -1836752128,1836752383,RE -1836752384,1836752895,FR -1836752896,1836753663,RE -1836753664,1836754175,FR -1836754176,1836754943,RE -1836754944,1836755711,FR -1836755712,1836756479,RE -1836756480,1836756735,FR -1836756736,1836756991,RE +1836751360,1836752127,RE +1836752128,1836752895,FR +1836752896,1836755199,RE +1836755200,1836755455,FR +1836755456,1836755967,RE +1836755968,1836756223,FR +1836756224,1836756991,RE 1836756992,1836758015,FR -1836758016,1836758783,RE -1836758784,1836759039,FR -1836759040,1836759551,RE -1836759552,1836760063,FR -1836760064,1836760319,RE +1836758016,1836759295,RE +1836759296,1836759551,FR +1836759552,1836760319,RE 1836760320,1836760575,FR 1836760576,1836761087,RE 1836761088,1836777471,IR @@ -73007,9 +72570,7 @@ 1836810240,1836826623,RU 1836826624,1836843007,CZ 1836843008,1836875775,RU -1836875776,1836876543,SE -1836876544,1836876639,RU -1836876640,1836892159,SE +1836875776,1836892159,SE 1836892160,1836908543,RU 1836908544,1836924927,IE 1836924928,1836941311,DE @@ -73028,9 +72589,7 @@ 1839202304,1839235071,BG 1839235072,1839267839,IL 1839267840,1839300607,RU -1839300608,1839330303,BH -1839330304,1839330559,US -1839330560,1839333375,BH +1839300608,1839333375,BH 1839333376,1839366143,UA 1839366144,1839398911,IR 1839398912,1839431679,NO @@ -73124,7 +72683,9 @@ 1841168384,1841233919,FR 1841233920,1841299455,RU 1841299456,1841430527,DE -1841430528,1841561599,RU +1841430528,1841531119,RU +1841531120,1841531135,BR +1841531136,1841561599,RU 1841561600,1841565695,PL 1841565696,1841569791,RU 1841569792,1841577983,PL @@ -73185,35 +72746,42 @@ 1841872896,1841876991,NL 1841876992,1841878015,JP 1841878016,1841879039,AU -1841879040,1841879551,NL -1841879552,1841879807,US +1841879040,1841879807,NL 1841879808,1841880063,GB 1841880064,1841881087,JP 1841881088,1841889279,UA 1841889280,1841897471,IR 1841897472,1841905663,RO 1841905664,1841922047,RU -1841922048,1841930239,NL +1841922048,1841925887,NL +1841925888,1841926015,DE +1841926016,1841930239,NL 1841930240,1841938431,KG 1841938432,1841946623,RU 1841946624,1841954815,UA 1841954816,1841971199,RU 1841971200,1841979391,CZ 1841979392,1841983487,NL -1841983488,1841983575,GI -1841983576,1841983599,US -1841983600,1841983999,GI -1841984000,1841984511,IM -1841984512,1841984575,FR -1841984576,1841984639,IM -1841984640,1841985023,FR +1841983488,1841983999,GI +1841984000,1841984031,IM +1841984032,1841984047,GB +1841984048,1841984055,IM +1841984056,1841984063,GB +1841984064,1841984255,IM +1841984256,1841984287,IE +1841984288,1841984295,GG +1841984296,1841984303,IM +1841984304,1841984319,GG +1841984320,1841984511,IM +1841984512,1841985023,FR 1841985024,1841985087,IE 1841985088,1841985103,CY 1841985104,1841985119,IE 1841985120,1841985135,CY 1841985136,1841985143,IM 1841985144,1841985167,GG -1841985168,1841985535,IM +1841985168,1841985279,IM +1841985280,1841985535,GI 1841985536,1841987583,SI 1841987584,1841995775,DK 1841995776,1842003967,RU @@ -73223,21 +72791,23 @@ 1842028544,1842036735,CH 1842036736,1842038783,FR 1842038784,1842044927,LU -1842044928,1842047369,GB -1842047370,1842047371,IN -1842047372,1842053119,GB +1842044928,1842053119,GB 1842053120,1842061311,ES 1842061312,1842069503,IR 1842069504,1842077695,RU -1842077696,1842078207,MQ -1842078208,1842078463,FR -1842078464,1842078719,MQ -1842078720,1842079743,FR -1842079744,1842080511,MQ -1842080512,1842082047,GP -1842082048,1842082303,MQ -1842082304,1842082815,GP -1842082816,1842085887,MQ +1842077696,1842078719,MQ +1842078720,1842079487,FR +1842079488,1842079743,MQ +1842079744,1842080255,GP +1842080256,1842080511,MQ +1842080512,1842081279,GP +1842081280,1842081535,MQ +1842081536,1842082047,GP +1842082048,1842082815,MQ +1842082816,1842083071,GP +1842083072,1842084351,MQ +1842084352,1842084607,GP +1842084608,1842085887,MQ 1842085888,1842118655,GB 1842118656,1842151423,FI 1842151424,1842153471,FR @@ -73253,15 +72823,13 @@ 1842153952,1842153983,NO 1842153984,1842154047,US 1842154048,1842154055,NO -1842154056,1842154079,US -1842154080,1842154111,NO +1842154056,1842154095,US +1842154096,1842154111,NO 1842154112,1842154115,US 1842154116,1842154119,NO 1842154120,1842154143,US 1842154144,1842154239,NO -1842154240,1842154247,HK -1842154248,1842154255,SG -1842154256,1842154271,HK +1842154240,1842154271,HK 1842154272,1842154279,CN 1842154280,1842154367,NO 1842154368,1842154431,US @@ -73282,11 +72850,9 @@ 1842173952,1842175999,RO 1842176000,1842178047,FI 1842178048,1842180095,IT -1842180096,1842180607,IQ -1842180608,1842180791,US -1842180792,1842180799,IQ -1842180800,1842180863,US -1842180864,1842182143,IQ +1842180096,1842180767,IQ +1842180768,1842180783,US +1842180784,1842182143,IQ 1842182144,1842184191,LV 1842184192,1842186239,DE 1842186240,1842188287,ES @@ -73330,7 +72896,9 @@ 1842339840,1842343935,RU 1842343936,1842348031,UZ 1842348032,1843396607,FR -1843396608,1843412991,IQ +1843396608,1843411455,IQ +1843411456,1843411711,US +1843411712,1843412991,IQ 1843412992,1843429375,CZ 1843429376,1843462143,GB 1843462144,1843478527,RU @@ -73446,23 +73014,11 @@ 1844070400,1844071423,GB 1844071424,1844072447,LU 1844072448,1844076543,ES -1844076544,1844076575,GB -1844076576,1844076639,IE -1844076640,1844076655,GB -1844076656,1844076775,IE -1844076776,1844076783,GB -1844076784,1844076791,IE -1844076792,1844076799,GB -1844076800,1844077463,IE -1844077464,1844077471,GB -1844077472,1844077503,IE -1844077504,1844077567,GB -1844077568,1844077663,IE +1844076544,1844076799,GB +1844076800,1844077663,IE 1844077664,1844077695,GB 1844077696,1844077727,IE -1844077728,1844078559,GB -1844078560,1844078575,IE -1844078576,1844078591,GB +1844077728,1844078591,GB 1844078592,1844080127,DE 1844080128,1844080639,PL 1844080640,1844082687,GE @@ -73546,7 +73102,34 @@ 1844169728,1844169767,DE 1844169768,1844169951,US 1844169952,1844169983,DE -1844169984,1844170239,US +1844169984,1844169995,AF +1844169996,1844169999,TM +1844170000,1844170003,AF +1844170004,1844170007,FR +1844170008,1844170015,AF +1844170016,1844170019,NG +1844170020,1844170027,AF +1844170028,1844170031,IQ +1844170032,1844170051,AF +1844170052,1844170055,GH +1844170056,1844170063,AF +1844170064,1844170067,GH +1844170068,1844170071,NG +1844170072,1844170075,CG +1844170076,1844170079,DE +1844170080,1844170083,CG +1844170084,1844170091,NG +1844170092,1844170095,ZM +1844170096,1844170099,AF +1844170100,1844170103,MA +1844170104,1844170111,AF +1844170112,1844170115,CG +1844170116,1844170119,DE +1844170120,1844170123,AF +1844170124,1844170127,LY +1844170128,1844170135,NG +1844170136,1844170139,AF +1844170140,1844170239,DE 1844170240,1844170255,AF 1844170256,1844170263,IQ 1844170264,1844170303,AF @@ -73916,11 +73499,7 @@ 1870118912,1870135295,IN 1870135296,1870462975,CN 1870462976,1870479359,JP -1870479360,1870480895,PH -1870480896,1870481151,US -1870481152,1870487551,PH -1870487552,1870487807,US -1870487808,1870495743,PH +1870479360,1870495743,PH 1870495744,1870497791,TW 1870497792,1870499839,IN 1870499840,1870501887,JP @@ -74078,7 +73657,9 @@ 1896603648,1896605695,IN 1896605696,1896606719,AU 1896606720,1896607743,MY -1896607744,1896609791,VU +1896607744,1896609279,VU +1896609280,1896609535,AU +1896609536,1896609791,VU 1896609792,1896611839,SG 1896611840,1897070591,CN 1897070592,1897136127,IN @@ -74115,7 +73696,9 @@ 1897267200,1897365503,VN 1897365504,1897398271,MY 1897398272,1897660415,CN -1897660416,1897725951,HK +1897660416,1897687039,HK +1897687040,1897687295,GB +1897687296,1897725951,HK 1897725952,1897730047,JP 1897730048,1897734143,AU 1897734144,1897738239,HK @@ -74196,7 +73779,8 @@ 1908761600,1908762623,CN 1908762624,1908762879,IN 1908762880,1908763135,HK -1908763136,1908763647,IN +1908763136,1908763391,AU +1908763392,1908763647,IN 1908763648,1908764671,ID 1908764672,1908768767,AU 1908768768,1908801535,JP @@ -74351,9 +73935,7 @@ 1921945600,1921949695,HK 1921949696,1921953791,AU 1921953792,1921957887,JP -1921957888,1921964031,GU -1921964032,1921964287,US -1921964288,1921974271,GU +1921957888,1921974271,GU 1921974272,1922039807,IN 1922039808,1925447679,JP 1925447680,1925578751,CN @@ -74553,7 +74135,8 @@ 1949448192,1949448703,HK 1949448704,1949448959,AU 1949448960,1949449215,IN -1949449216,1949450239,HK +1949449216,1949449471,SG +1949449472,1949450239,HK 1949450240,1949466623,IN 1949466624,1949499391,PH 1949499392,1949564927,SG @@ -74569,8 +74152,10 @@ 1950089216,1950351359,CN 1950351360,1950482431,JP 1950482432,1950515199,CN -1950515200,1950517247,US -1950517248,1950523391,IN +1950515200,1950515455,US +1950515456,1950516479,IN +1950516480,1950516735,US +1950516736,1950523391,IN 1950523392,1950527487,AU 1950527488,1950531583,JP 1950531584,1950533631,NP @@ -74583,9 +74168,7 @@ 1950547968,1950580735,KR 1950580736,1950613503,JP 1950613504,1950617599,GU -1950617600,1950619135,US -1950619136,1950619391,GU -1950619392,1950621695,US +1950617600,1950621695,US 1950621696,1950629887,KR 1950629888,1950646271,IN 1950646272,1950648319,VN @@ -74630,7 +74213,9 @@ 1952112640,1952116735,NP 1952116736,1952120831,IN 1952120832,1952186367,JP -1952186368,1952251903,HK +1952186368,1952188671,HK +1952188672,1952188927,AE +1952188928,1952251903,HK 1952251904,1952284671,PH 1952284672,1952288767,NZ 1952288768,1952292863,JP @@ -74672,7 +74257,9 @@ 1959110656,1959112703,JP 1959112704,1959113215,HK 1959113216,1959113471,IN -1959113472,1959116799,HK +1959113472,1959114239,HK +1959114240,1959114495,AU +1959114496,1959116799,HK 1959116800,1959133183,SG 1959133184,1959239679,CN 1959239680,1959241727,KR @@ -74866,9 +74453,7 @@ 1970962432,1970995199,CN 1970995200,1971060735,KR 1971060736,1975517183,CN -1975517184,1976195839,IN -1976195840,1976196095,US -1976196096,1979711487,IN +1975517184,1979711487,IN 1979711488,1981284351,JP 1981284352,1981546494,CN 1981546495,1981546495,SG @@ -75269,8 +74854,8 @@ 2019035136,2019037183,CN 2019037184,2019041279,JP 2019041280,2019045375,IN -2019045376,2019046399,US -2019046400,2019049471,JP +2019045376,2019046655,US +2019046656,2019049471,JP 2019049472,2019078143,AU 2019078144,2019082239,IN 2019082240,2019098623,HK @@ -75334,9 +74919,7 @@ 2030059520,2030108671,KR 2030108672,2030125055,PH 2030125056,2030141439,KR -2030141440,2030173695,JP -2030173696,2030173951,AP -2030173952,2030305279,JP +2030141440,2030305279,JP 2030305280,2030436351,CN 2030436352,2030567423,SG 2030567424,2032926719,CN @@ -75370,9 +74953,15 @@ 2033631232,2033647615,KR 2033647616,2033663999,CN 2033664000,2033696767,KR -2033696768,2033708799,GU +2033696768,2033707519,GU +2033707520,2033708031,US +2033708032,2033708799,GU 2033708800,2033709055,US -2033709056,2033713151,GU +2033709056,2033710079,GU +2033710080,2033710591,US +2033710592,2033710847,GU +2033710848,2033711103,US +2033711104,2033713151,GU 2033713152,2033876991,CN 2033876992,2033879039,JP 2033879040,2033887231,CN @@ -75510,9 +75099,7 @@ 2053515264,2053519359,ID 2053519360,2053521407,JP 2053521408,2053529599,CN -2053529600,2053532927,AU -2053532928,2053533183,NZ -2053533184,2053533695,AU +2053529600,2053533695,AU 2053533696,2053534719,VN 2053534720,2053537791,IN 2053537792,2053636095,JP @@ -75567,7 +75154,9 @@ 2056818944,2056818993,MY 2056818994,2056818994,AP 2056818995,2056819199,MY -2056819200,2056830975,JP +2056819200,2056819711,JP +2056819712,2056819967,AU +2056819968,2056830975,JP 2056830976,2056847359,CN 2056847360,2056912895,KR 2056912896,2057043967,TH @@ -75597,9 +75186,7 @@ 2060001280,2060002559,HK 2060002560,2060002815,ID 2060002816,2060004351,HK -2060004352,2060004607,US -2060004608,2060005119,HK -2060005120,2060005375,US +2060004352,2060005375,US 2060005376,2060009471,CN 2060009472,2060025855,AU 2060025856,2060058623,TW @@ -75615,31 +75202,28 @@ 2063073280,2063077375,BD 2063077376,2063077377,HK 2063077378,2063077378,AP -2063077379,2063078143,HK -2063078144,2063078399,SG -2063078400,2063079423,HK +2063077379,2063079423,HK 2063079424,2063081471,CN 2063081472,2063085567,ID 2063085568,2063089663,CN 2063089664,2063097855,JP -2063097856,2063098367,MM -2063098368,2063098495,SG -2063098496,2063106047,MM -2063106048,2063107071,JP +2063097856,2063106047,MM +2063106048,2063106559,JP +2063106560,2063106815,AU +2063106816,2063107071,JP 2063107072,2063107327,AP 2063107328,2063107623,JP 2063107624,2063107631,AU 2063107632,2063111679,JP 2063111680,2063112191,AU -2063112192,2063114495,JP -2063114496,2063114751,IN -2063114752,2063115007,JP -2063115008,2063115263,IN +2063112192,2063113727,JP +2063113728,2063113983,AU +2063113984,2063114239,JP +2063114240,2063115263,IN 2063115264,2063118335,JP 2063118336,2063118591,IN 2063118592,2063119871,JP -2063119872,2063119999,IN -2063120000,2063120383,JP +2063119872,2063120383,IN 2063120384,2063121407,AU 2063121408,2063122431,JP 2063122432,2063138815,SG @@ -75845,7 +75429,11 @@ 2082340864,2082406399,IN 2082406400,2082471935,CN 2082471936,2083007231,JP -2083007232,2083012607,US +2083007232,2083007743,US +2083007744,2083008511,JP +2083008512,2083009663,US +2083009664,2083009791,JP +2083009792,2083012607,US 2083012608,2083024895,JP 2083024896,2083053567,CN 2083053568,2083057663,TH @@ -75966,9 +75554,7 @@ 2093383680,2093416447,NZ 2093416448,2093432831,KR 2093432832,2093445119,TW -2093445120,2093448447,AF -2093448448,2093448703,US -2093448704,2093449215,AF +2093445120,2093449215,AF 2093449216,2093481983,KR 2093481984,2094006271,CN 2094006272,2094530559,JP @@ -76019,7 +75605,9 @@ 2099216384,2099232767,KR 2099232768,2100297727,CN 2100297728,2100854783,JP -2100854784,2100887551,US +2100854784,2100874495,US +2100874496,2100874751,AU +2100874752,2100887551,US 2100887552,2100953087,KR 2100953088,2100969471,VN 2100969472,2100985855,JP @@ -76030,8 +75618,7 @@ 2101149696,2101182463,KR 2101182464,2101231615,CN 2101231616,2101239807,AU -2101239808,2101270527,IN -2101270528,2101272575,KR +2101239808,2101272575,IN 2101272576,2101276671,TW 2101276672,2101280767,JP 2101280768,2101288959,AU @@ -76085,11 +75672,9 @@ 2112880640,2113683455,KR 2113683456,2113685247,JP 2113685248,2113685311,PH -2113685312,2113685759,JP -2113685760,2113686015,MY -2113686016,2113687807,JP -2113687808,2113688063,AU -2113688064,2113693695,JP +2113685312,2113687935,JP +2113687936,2113687951,AU +2113687952,2113693695,JP 2113693696,2113693951,HK 2113693952,2113716223,JP 2113716224,2113732607,SG @@ -76157,7 +75742,9 @@ 2151798016,2151800831,DE 2151800832,2151809023,PT 2151809024,2151940095,IT -2151940096,2152464383,RU +2151940096,2152100863,RU +2152100864,2152101375,UA +2152101376,2152464383,RU 2152464384,2152595455,DK 2152595456,2152726527,FR 2152726528,2153119743,US @@ -76192,7 +75779,10 @@ 2155835392,2155839487,RO 2155839488,2155843583,FR 2155843584,2155845631,RU -2155845632,2155847679,DE +2155845632,2155846399,DE +2155846400,2155846655,NL +2155846656,2155847583,DE +2155847584,2155847679,NL 2155847680,2155849727,ES 2155849728,2155851775,TR 2155851776,2155853823,KZ @@ -76299,7 +75889,9 @@ 2160914432,2160918527,SA 2160918528,2161508351,US 2161508352,2161573887,FI -2161573888,2162687999,US +2161573888,2162228223,US +2162228224,2162228479,CA +2162228480,2162687999,US 2162688000,2162753535,GB 2162753536,2162819071,CA 2162819072,2162884607,RO @@ -76340,9 +75932,7 @@ 2166575360,2166575615,GB 2166575616,2166598655,US 2166598656,2166598911,FR -2166598912,2166606335,US -2166606336,2166606591,FR -2166606592,2166607009,US +2166598912,2166607009,US 2166607010,2166607011,DE 2166607012,2166613759,US 2166613760,2166614015,DE @@ -76421,9 +76011,7 @@ 2179379200,2179395583,GB 2179395584,2179397632,US 2179397633,2179397633,GB -2179397634,2179398143,US -2179398144,2179398399,GB -2179398400,2179465215,US +2179397634,2179465215,US 2179530752,2179596287,DE 2179596288,2179661823,GB 2179661824,2179989503,US @@ -76572,8 +76160,8 @@ 2188706102,2188706102,DE 2188706103,2188706453,EU 2188706454,2188706454,DK -2188706455,2188707839,EU -2188707840,2188708863,FR +2188706455,2188708351,EU +2188708352,2188708863,FR 2188708864,2188711800,EU 2188711801,2188711801,DE 2188711802,2188716031,EU @@ -76590,15 +76178,13 @@ 2188728320,2188728575,GB 2188728576,2188734463,EU 2188734464,2188734719,FR -2188734720,2188736511,EU -2188736512,2188737023,GB -2188737024,2188737791,EU +2188734720,2188737791,EU 2188737792,2188738047,GB 2188738048,2188768767,EU 2188768768,2188769023,YT 2188769024,2188769279,EU -2188769280,2188769535,NL -2188769536,2188771327,EU +2188769280,2188769407,NL +2188769408,2188771327,EU 2188771328,2188900351,US 2188900352,2188900607,EU 2188900608,2188902399,US @@ -77012,11 +76598,14 @@ 2250047488,2250113023,US 2250113024,2250178559,DE 2250178560,2250244095,CA -2250244096,2250375167,US +2250244096,2250268671,US +2250268672,2250276863,GB +2250276864,2250375167,US 2250375168,2250440703,DE 2250440704,2250506239,US 2250506240,2250571775,GB -2250571776,2250637055,FI +2250571776,2250572031,SE +2250572032,2250637055,FI 2250637056,2250637311,EU 2250637312,2250702847,CH 2250702848,2251227135,US @@ -77028,9 +76617,7 @@ 2251948032,2252013567,BE 2252013568,2252079103,FR 2252079104,2252210175,DE -2252210176,2252417023,US -2252417024,2252417279,GB -2252417280,2252931071,US +2252210176,2252931071,US 2252996608,2253062143,US 2253062144,2253127679,KR 2253127680,2253193215,DE @@ -77118,7 +76705,9 @@ 2258598080,2258598087,TW 2258598088,2258598639,AU 2258598640,2258598655,TW -2258598656,2258601471,AU +2258598656,2258600959,AU +2258600960,2258601087,SG +2258601088,2258601471,AU 2258601472,2258601983,JP 2258601984,2258602431,AU 2258602432,2258602447,HK @@ -77135,10 +76724,11 @@ 2258608640,2258609663,AU 2258609664,2258610175,HK 2258610176,2258610431,IN -2258610432,2258610687,AU -2258610688,2258610943,HK +2258610432,2258610943,HK 2258610944,2258611071,JP -2258611072,2258632703,HK +2258611072,2258611455,HK +2258611456,2258611711,AU +2258611712,2258632703,HK 2258632704,2258698239,JP 2258698240,2259222527,US 2259222528,2259288063,DE @@ -77278,11 +76868,7 @@ 2297298944,2297364479,CH 2297364480,2297626623,US 2297626624,2297692159,DE -2297692160,2298118655,US -2298118656,2298118911,GB -2298118912,2298395903,US -2298395904,2298396159,GB -2298396160,2299461631,US +2297692160,2299461631,US 2299461632,2299527167,CA 2299527168,2299592703,US 2299592704,2299658239,NL @@ -77306,9 +76892,9 @@ 2302541824,2302607359,CH 2302672896,2302935039,US 2302935040,2303000575,KR -2303000576,2303189557,US -2303189558,2303189558,IE -2303189559,2303190527,US +2303000576,2303189503,US +2303189504,2303189759,IE +2303189760,2303190527,US 2303190528,2303190783,AP 2303190784,2303262719,US 2303262720,2303328255,GB @@ -77405,9 +76991,7 @@ 2315649024,2315714559,SE 2315714560,2315780095,AU 2315780096,2315911167,US -2315911168,2315976703,CA -2315976704,2315976959,US -2315976960,2316042239,CA +2315911168,2316042239,CA 2316042240,2316173311,US 2316173312,2316238847,SE 2316238848,2316500991,US @@ -77423,10 +77007,13 @@ 2317395968,2317396223,NO 2317396224,2317398015,US 2317398016,2317398271,GB -2317398272,2317413119,US -2317413120,2317413375,CA +2317398272,2317401087,US +2317401088,2317401343,GB +2317401344,2317412351,US +2317412352,2317413375,CA 2317413376,2317413631,ID -2317413632,2317414655,US +2317413632,2317414399,CA +2317414400,2317414655,US 2317414656,2317414911,AU 2317414912,2317417983,US 2317417984,2317418239,AP @@ -77477,7 +77064,9 @@ 2322333696,2322923519,US 2323054592,2323185663,CA 2323316736,2323382271,US -2323382272,2323447807,NO +2323382272,2323395583,NO +2323395584,2323395839,SE +2323395840,2323447807,NO 2323447808,2323775487,US 2323775488,2323841023,AU 2323841024,2323906559,CH @@ -77492,8 +77081,8 @@ 2328100864,2328231935,US 2328231936,2328297471,GB 2328297472,2328313855,EU -2328313856,2328317695,NL -2328317696,2328317951,FR +2328313856,2328314111,BE +2328314112,2328317951,NL 2328317952,2328342527,EU 2328342528,2328342783,DE 2328342784,2328362751,EU @@ -77606,9 +77195,9 @@ 2338848768,2338914303,US 2338914304,2339962879,NO 2339962880,2340028415,US -2340028416,2340081663,NL +2340028416,2340081663,SE 2340081664,2340081919,BR -2340081920,2340093951,NL +2340081920,2340093951,SE 2340093952,2340159487,FI 2340159488,2340225023,FR 2340225024,2340421631,US @@ -77670,9 +77259,9 @@ 2344353792,2344419327,AU 2344419328,2344484863,CN 2344484864,2344550399,PK -2344550400,2344566783,EU -2344566784,2344574975,IT -2344574976,2344615935,EU +2344550400,2344609023,EU +2344609024,2344609279,IT +2344609280,2344615935,EU 2344615936,2344878079,ID 2344878080,2346188799,CN 2346188800,2346450943,AU @@ -77827,10 +77416,9 @@ 2366171136,2366308351,DE 2366308352,2366368255,GB 2366368256,2366368511,FR -2366368512,2366369791,GB -2366369792,2366370815,FR -2366370816,2366371071,GB -2366371072,2366373887,FR +2366368512,2366373375,GB +2366373376,2366373631,FR +2366373632,2366373887,GB 2366373888,2367487999,DE 2367488000,2367553535,SI 2367553536,2370579746,DE @@ -77851,7 +77439,9 @@ 2372206592,2372214783,UA 2372214784,2372218879,DE 2372218880,2372222975,FR -2372222976,2372239359,EU +2372222976,2372231679,EU +2372231680,2372232191,GB +2372232192,2372239359,EU 2372239360,2372264447,RU 2372264448,2372266495,UA 2372266496,2372272127,RU @@ -77918,8 +77508,10 @@ 2373582848,2373623807,CH 2373623808,2373627102,AU 2373627103,2373627103,CH -2373627104,2373627903,AU -2373627904,2373648383,CH +2373627104,2373631231,AU +2373631232,2373631487,CH +2373631488,2373631999,AU +2373632000,2373648383,CH 2373648384,2373910527,US 2373910528,2373911041,FI 2373911042,2373911042,EU @@ -77937,7 +77529,9 @@ 2374512640,2374514687,SK 2374514688,2374516735,ES 2374516736,2374524927,AM -2374524928,2374526719,DE +2374524928,2374525717,DE +2374525718,2374525718,BE +2374525719,2374526719,DE 2374526720,2374526975,FR 2374526976,2374527231,DE 2374527232,2374527743,FR @@ -78004,7 +77598,9 @@ 2375090176,2375155711,NO 2375155712,2375221247,US 2375221248,2375352319,SE -2375352320,2376233215,US +2375352320,2376079615,US +2376079616,2376079871,GB +2376079872,2376233215,US 2376233216,2376233471,AU 2376233472,2376269823,US 2376269824,2376335359,GB @@ -78062,7 +77658,9 @@ 2380465664,2380529663,FR 2380529664,2380558847,GB 2380558848,2380559103,ZA -2380559104,2380593663,GB +2380559104,2380579327,GB +2380579328,2380579583,HK +2380579584,2380593663,GB 2380593664,2380593919,AP 2380593920,2380595199,GB 2380660736,2380726271,US @@ -78323,9 +77921,7 @@ 2385915904,2385919999,CA 2385920000,2385945007,US 2385945008,2385945015,MX -2385945016,2385968127,US -2385968128,2385968383,CA -2385968384,2385969151,US +2385945016,2385969151,US 2385969152,2386067455,CA 2386067456,2386083839,US 2386083840,2386624511,CA @@ -78366,7 +77962,13 @@ 2394947584,2395013119,US 2395013120,2395209727,CA 2395209728,2395340799,US -2395340800,2397700095,CA +2395340800,2395814911,CA +2395814912,2395815423,US +2395815424,2395841279,CA +2395841280,2395841535,GB +2395841536,2395854079,CA +2395854080,2395854335,US +2395854336,2397700095,CA 2397700096,2397765631,US 2397765632,2398748671,CA 2398748672,2398945279,US @@ -78385,8 +77987,8 @@ 2402549760,2402680831,GB 2402680832,2402746367,BR 2402746368,2402945023,US -2402945024,2402945279,GB -2402945280,2403401727,US +2402945024,2402946047,GB +2402946048,2403401727,US 2403401728,2403467263,GB 2403467264,2404974591,US 2404974592,2405040127,HK @@ -78488,25 +78090,17 @@ 2417688576,2417754111,SE 2417754112,2418016255,US 2418016256,2418081791,GB -2418081792,2418311167,US -2418311168,2418313215,IN -2418313216,2418315263,US -2418315264,2418315775,IN -2418315776,2418323007,US +2418081792,2418312959,US +2418312960,2418313215,IN +2418313216,2418323007,US 2418323008,2418323008,PH -2418323009,2418323455,US -2418323456,2418331647,IN -2418331648,2418332159,US -2418332160,2418332415,IN -2418332416,2418336767,US -2418336768,2418337535,IN -2418337536,2418337791,US -2418337792,2418338047,IN -2418338048,2418338303,US +2418323009,2418337023,US +2418337024,2418337279,IN +2418337280,2418338303,US 2418338304,2418338815,IN 2418338816,2418341887,US -2418341888,2418343935,IN -2418343936,2418606079,US +2418341888,2418342911,IN +2418342912,2418606079,US 2418606080,2418671615,DE 2418671616,2418737151,US 2418737152,2418802687,NL @@ -78600,17 +78194,16 @@ 2429943808,2430009343,HK 2430009344,2432172031,US 2432172032,2432237567,BE -2432237568,2432575487,US -2432575488,2432576511,DE -2432576512,2432577535,US -2432577536,2432579583,GB -2432579584,2432602879,US +2432237568,2432573439,US +2432573440,2432575487,GB +2432575488,2432575743,DE +2432575744,2432581631,GB +2432581632,2432602111,US +2432602112,2432602879,IE 2432602880,2432603135,PL -2432603136,2432604159,US -2432604160,2432606207,GB -2432606208,2432610303,US -2432610304,2432614399,IT -2432614400,2432616447,NL +2432603136,2432604159,IE +2432604160,2432615935,US +2432615936,2432616447,NL 2432616448,2432616448,US 2432616449,2432617472,NL 2432617473,2432630783,US @@ -78640,7 +78233,9 @@ 2447015952,2447048703,EU 2447048704,2447376383,NL 2447376384,2447441919,GB -2447441920,2447507455,DE +2447441920,2447446271,DE +2447446272,2447446527,GB +2447446528,2447507455,DE 2447507456,2447572991,FR 2447572992,2447638527,GB 2447638528,2447679819,DE @@ -78653,9 +78248,9 @@ 2447966208,2448031743,GB 2448031744,2448097279,CH 2448097280,2448162815,SE -2448162816,2448174591,HU -2448174592,2448174847,RO -2448174848,2448228351,HU +2448162816,2448173055,HU +2448173056,2448175103,RO +2448175104,2448228351,HU 2448228352,2448293887,PL 2448293888,2448359423,FR 2448359424,2448424959,GB @@ -78719,7 +78314,9 @@ 2451031040,2451031295,AP 2451031296,2451035135,US 2451035136,2451035391,EU -2451035392,2451986959,US +2451035392,2451042815,US +2451042816,2451043071,ZA +2451043072,2451986959,US 2451986960,2451986960,GB 2451986961,2452619263,US 2452619264,2452684799,IT @@ -78751,7 +78348,7 @@ 2453837824,2453838591,LU 2453838592,2453838847,AT 2453838848,2453839359,SE -2453839360,2453839871,EU +2453839360,2453839871,LU 2453839872,2453852159,RU 2453852160,2453856255,RO 2453856256,2453856679,DE @@ -78875,24 +78472,31 @@ 2461603764,2461605887,GB 2461605888,2461607935,LB 2461607936,2461609983,FR -2461609984,2461610495,BE +2461609984,2461610095,BE +2461610096,2461610111,NL +2461610112,2461610463,BE +2461610464,2461610479,NL +2461610480,2461610495,BE 2461610496,2461611519,NL 2461611520,2461611575,BE -2461611576,2461611583,NL -2461611584,2461612031,BE +2461611576,2461611579,NL +2461611580,2461612031,BE 2461612032,2461613271,IL 2461613272,2461613279,PS 2461613280,2461613567,IL 2461613568,2461613823,PS 2461613824,2461614079,IL 2461614080,2461630463,TR -2461630464,2461659135,RU +2461630464,2461654015,RU +2461654016,2461654527,LB +2461654528,2461659135,RU 2461659136,2461659647,UA 2461659648,2461659903,RU 2461659904,2461659905,UA 2461659906,2461659913,RU 2461659914,2461660159,UA -2461660160,2461663231,RU +2461660160,2461662719,RU +2461662720,2461663231,UA 2461663232,2461794303,US 2461794304,2461859839,GB 2461859840,2461990911,US @@ -79164,9 +78768,7 @@ 2482194176,2482208767,FI 2482208768,2482216959,US 2482216960,2482225151,FI -2482225152,2482231295,SG -2482231296,2482231551,CN -2482231552,2482233343,SG +2482225152,2482233343,SG 2482233344,2482241535,CN 2482241536,2482634751,US 2482634752,2482700287,FR @@ -79195,9 +78797,7 @@ 2488795136,2488860671,GB 2488860672,2489995544,US 2489995545,2489995545,AP -2489995546,2490007551,US -2490007552,2490007807,GB -2490007808,2490041599,US +2489995546,2490041599,US 2490041600,2490041855,AP 2490041856,2490043391,US 2490043392,2490043647,GB @@ -79229,11 +78829,13 @@ 2494562304,2494627839,GB 2494627840,2494650367,US 2494650368,2494652415,BR -2494652416,2494660607,US +2494652416,2494655487,US +2494655488,2494655743,MX +2494655744,2494660607,US 2494660608,2494661119,EU 2494661120,2494676991,US -2494676992,2494681087,AU -2494681088,2494683391,US +2494676992,2494678015,AU +2494678016,2494683391,US 2494683392,2494683647,AP 2494683648,2494689791,US 2494689792,2494690047,IN @@ -79244,11 +78846,9 @@ 2495152128,2495217663,EU 2495217664,2495283199,US 2495283200,2495348735,CH -2495348736,2495348991,US -2495348992,2495349051,DE +2495348736,2495349051,US 2495349052,2495349052,EU -2495349053,2495349247,DE -2495349248,2495351039,US +2495349053,2495351039,US 2495351040,2495351295,EU 2495351296,2495353143,US 2495353144,2495353144,EU @@ -79289,35 +78889,36 @@ 2500141312,2500141471,US 2500141472,2500141503,IE 2500141504,2500141823,US -2500141824,2500142847,IE -2500142848,2500142975,US -2500142976,2500144127,IE +2500141824,2500144127,IE 2500144128,2500144895,US 2500144896,2500145151,IE 2500145152,2500149247,US 2500149248,2500149759,GB 2500149760,2500150655,US 2500150656,2500150719,GB -2500150720,2500157439,US -2500157440,2500165631,GB -2500165632,2500175871,US +2500150720,2500158463,US +2500158464,2500158975,GB +2500158976,2500161023,US +2500161024,2500163583,GB +2500163584,2500175871,US 2500175872,2500175879,RO -2500175880,2500198911,US -2500198912,2500199167,GB -2500199168,2500199423,US +2500175880,2500188159,US +2500188160,2500188415,CH +2500188416,2500198911,US +2500198912,2500199423,GB 2500199424,2500199935,IE -2500199936,2500218879,US -2500218880,2500220927,DE -2500220928,2500225553,US +2500199936,2500219135,US +2500219136,2500219391,DE +2500219392,2500225553,US 2500225554,2500225561,ES 2500225562,2500227071,US 2500227072,2500229119,FR -2500229120,2500231167,GB -2500231168,2500231679,US -2500231680,2500231935,ES -2500231936,2500235775,US -2500235776,2500236031,GB -2500236032,2500236837,US +2500229120,2500229375,GB +2500229376,2500230143,US +2500230144,2500230399,GB +2500230400,2500235775,US +2500235776,2500236287,GB +2500236288,2500236837,US 2500236838,2500236838,ES 2500236839,2500238047,US 2500238048,2500238055,FR @@ -79327,18 +78928,20 @@ 2500238384,2500238399,DE 2500238400,2500238463,US 2500238464,2500238527,DE -2500238528,2500240383,US -2500240384,2500240639,FR -2500240640,2500240895,RE -2500240896,2500241407,FR -2500241408,2500245503,US -2500245504,2500245759,GB -2500245760,2500272127,US -2500272128,2500280319,GB -2500280320,2500288511,US +2500238528,2500239359,US +2500239360,2500240383,GB +2500240384,2500241151,FR +2500241152,2500247551,GB +2500247552,2500272127,US +2500272128,2500276735,GB +2500276736,2500276991,US +2500276992,2500277247,GB +2500277248,2500288511,US 2500288512,2500288767,FR 2500288768,2500296703,DE -2500296704,2500392959,US +2500296704,2500317183,US +2500317184,2500321279,ES +2500321280,2500392959,US 2500392960,2500393215,IN 2500393216,2500393983,US 2500393984,2500394239,GB @@ -79346,17 +78949,15 @@ 2500535296,2500535551,IE 2500535552,2500537343,US 2500537344,2500537599,GB -2500537600,2500555263,US -2500555264,2500555519,FR -2500555520,2500616191,US +2500537600,2500550655,US +2500550656,2500558847,FR +2500558848,2500616191,US 2500616192,2500616703,IT 2500616704,2500636735,US 2500636736,2500636799,GB -2500636800,2500644863,US -2500644864,2500646911,FR +2500636800,2500646911,US 2500646912,2500647935,ES -2500647936,2500648959,FR -2500648960,2500719615,US +2500647936,2500719615,US 2500719616,2500720639,IE 2500720640,2500723711,US 2500723712,2500723967,ES @@ -79412,7 +79013,9 @@ 2508128256,2508455935,US 2508455936,2508521471,IT 2508521472,2508587007,CH -2508587008,2508652543,BE +2508587008,2508631295,BE +2508631296,2508631551,US +2508631552,2508652543,BE 2508652544,2508718079,AU 2508718080,2508914687,US 2508914688,2508980223,IT @@ -79464,7 +79067,10 @@ 2512977920,2513502207,DE 2513502208,2513567743,NO 2513567744,2513600511,GR -2513600512,2513633279,RO +2513600512,2513601535,NL +2513601536,2513603071,RO +2513603072,2513603327,NL +2513603328,2513633279,RO 2513633280,2513698815,DE 2513698816,2513764351,DK 2513764352,2514419711,DE @@ -79473,7 +79079,9 @@ 2514681600,2514681855,EU 2514681856,2515599359,DE 2515599360,2515664895,GB -2515664896,2516058111,DE +2515664896,2516037631,DE +2516037632,2516038143,DK +2516038144,2516058111,DE 2516123648,2516254719,DE 2516254720,2516320255,FR 2516320256,2516451327,US @@ -79488,7 +79096,10 @@ 2516526144,2516526335,US 2516526336,2516527103,NL 2516527104,2516529151,GB -2516529152,2516531199,CH +2516529152,2516529279,CH +2516529280,2516529343,FR +2516529344,2516529375,BE +2516529376,2516531199,CH 2516531200,2516533247,GB 2516533248,2516541439,CZ 2516541440,2516545535,GB @@ -79628,16 +79239,11 @@ 2546039040,2547187711,US 2547187712,2547318783,GB 2547318784,2547515391,US -2547515392,2547548159,NO +2547515392,2547519487,FR 2547548160,2547580927,RU 2548039680,2548563967,GB 2548563968,2548826111,IR -2548826112,2548827630,AT -2548827631,2548827632,BR -2548827633,2548827634,AR -2548827635,2548827636,VE -2548827637,2548827638,MX -2548827639,2548829695,AT +2548826112,2548829695,AT 2548829696,2548829951,NL 2548829952,2548830207,AT 2548830208,2548830463,US @@ -79668,8 +79274,8 @@ 2548937728,2548937983,DK 2548937984,2548938239,LU 2548938240,2548938495,FR -2548938496,2548940287,SE -2548940288,2548940799,US +2548938496,2548940543,SE +2548940544,2548940799,US 2548940800,2548948991,ES 2548948992,2548951039,CZ 2548951040,2548953087,GB @@ -79992,11 +79598,11 @@ 2585067520,2585788415,US 2585788416,2585853951,GB 2585853952,2585985023,JP -2585985024,2586607615,US -2586607616,2586610687,GB +2585985024,2586610687,US 2586610688,2586611199,ES -2586611200,2586615807,GB -2586615808,2586619903,US +2586611200,2586611711,US +2586611712,2586611967,GB +2586611968,2586619903,US 2586619904,2586620415,FR 2586620416,2586622463,US 2586622464,2586622975,ES @@ -80005,8 +79611,8 @@ 2586717184,2586804991,US 2586804992,2586805247,ES 2586805248,2586828799,US -2586828800,2586828863,CH -2586828864,2587017727,US +2586828800,2586829055,CH +2586829056,2587017727,US 2587017728,2587017983,IE 2587017984,2587018239,US 2587018240,2587018495,IE @@ -80014,7 +79620,13 @@ 2587066880,2587067135,GB 2587067136,2587067647,US 2587067648,2587067903,GB -2587067904,2587926527,US +2587067904,2587068415,US +2587068416,2587068479,GB +2587068480,2587377663,US +2587377664,2587381759,IT +2587381760,2587443199,US +2587443200,2587447295,CH +2587447296,2587926527,US 2587926528,2587930623,BG 2587930624,2587951103,US 2600534016,2600665087,US @@ -80112,7 +79724,11 @@ 2614165504,2614231039,NO 2614231040,2614296575,ES 2614296576,2614362111,BR -2614362112,2615083007,US +2614362112,2614386431,US +2614386432,2614386623,PR +2614386624,2614386679,US +2614386680,2614386687,PR +2614386688,2615083007,US 2615083008,2615148543,TR 2615148544,2615345151,US 2615345152,2615410687,NO @@ -80128,10 +79744,10 @@ 2616770560,2616786943,US 2616786944,2616852479,GB 2616852480,2616885247,DE -2616885248,2616885503,FR -2616885504,2616885527,DE +2616885248,2616885527,FR 2616885528,2616885529,EU -2616885530,2616918015,DE +2616885530,2616885759,FR +2616885760,2616918015,DE 2616983552,2617049087,US 2617049088,2617114623,IT 2617114624,2617180159,US @@ -80223,7 +79839,9 @@ 2635726848,2635792383,CH 2635792384,2635988991,IT 2635988992,2636120063,US -2636120064,2637561855,ID +2636120064,2637312511,ID +2637312512,2637312767,US +2637312768,2637561855,ID 2637561856,2638020607,US 2638020608,2638086143,CN 2638086144,2638151679,US @@ -80325,7 +79943,9 @@ 2650210304,2650275839,AT 2650275840,2650341375,US 2650341376,2650406911,NO -2650406912,2650603519,US +2650406912,2650423295,US +2650423296,2650439679,JP +2650439680,2650603519,US 2650603520,2650669055,CO 2650669056,2650734591,US 2650734592,2650800127,CN @@ -80423,9 +80043,7 @@ 2661416960,2661482495,PT 2661482496,2661548031,CA 2661548032,2661679103,US -2661679104,2661878015,LU -2661878016,2661878271,BE -2661878272,2661909247,LU +2661679104,2661909247,LU 2661909248,2661909503,BE 2661909504,2661941247,LU 2661941248,2662006783,CL @@ -80437,7 +80055,9 @@ 2662670336,2662674431,AZ 2662674432,2662686719,DE 2662686720,2662694911,CH -2662694912,2662727679,KG +2662694912,2662699007,KG +2662699008,2662700031,US +2662700032,2662727679,KG 2662727680,2662793215,HK 2662793216,2663251967,US 2663251968,2663448575,FR @@ -80498,9 +80118,7 @@ 2667544576,2667560959,RU 2667560960,2667565055,IT 2667565056,2667565311,HK -2667565312,2667565360,AT -2667565361,2667565362,PH -2667565363,2667566335,AT +2667565312,2667566335,AT 2667566336,2667566591,US 2667566592,2667566847,DE 2667566848,2667567103,FR @@ -80514,7 +80132,9 @@ 2667970560,2668036095,CA 2668036096,2668101631,SE 2668101632,2668167167,CH -2668167168,2668363775,US +2668167168,2668286463,US +2668286464,2668286719,GB +2668286720,2668363775,US 2668363776,2668429311,CH 2668429312,2668494847,AU 2668494848,2668560383,US @@ -80609,9 +80229,7 @@ 2676097024,2676162559,NO 2676162560,2676359167,US 2676359168,2676424703,IE -2676424704,2676618239,US -2676618240,2676618495,GB -2676618496,2677014527,US +2676424704,2677014527,US 2677014528,2677080063,CH 2677080064,2677145599,US 2677145600,2677178367,TR @@ -80632,7 +80250,9 @@ 2677669888,2677735423,DE 2677735424,2677800959,US 2677800960,2677866495,CH -2677866496,2677997567,US +2677866496,2677924863,US +2677924864,2677925119,GB +2677925120,2677997567,US 2677997568,2678063103,CA 2678063104,2678128639,UA 2678128640,2678194175,US @@ -80675,9 +80295,7 @@ 2679242752,2679308287,US 2679308288,2679373823,CH 2679373824,2679439359,GB -2679439360,2679525631,US -2679525632,2679525887,BR -2679525888,2680029183,US +2679439360,2680029183,US 2680029184,2680094719,SE 2680094720,2680225791,US 2680225792,2680356863,SE @@ -80701,9 +80319,7 @@ 2681798656,2681864191,FR 2681864192,2681929727,US 2681929728,2681995263,GB -2681995264,2682107903,US -2682107904,2682108159,GB -2682108160,2682257407,US +2681995264,2682257407,US 2682257408,2682322943,UA 2682322944,2682388479,US 2682388480,2682454015,CN @@ -80791,7 +80407,7 @@ 2684191328,2684191335,US 2684191336,2684191343,IE 2684191344,2684191351,HR -2684191352,2684191359,RU +2684191352,2684191359,NL 2684191360,2684191367,SG 2684191368,2684191375,HR 2684191376,2684191383,AU @@ -80804,34 +80420,30 @@ 2684191424,2684191439,AU 2684191440,2684191455,CN 2684191456,2684191487,NL -2684191488,2684191495,US -2684191496,2684191503,NL -2684191504,2684191615,US +2684191488,2684191615,US 2684191616,2684191743,DK 2684191744,2684191751,US 2684191752,2684191759,NL 2684191760,2684191767,US -2684191768,2684191775,NL -2684191776,2684191807,US -2684191808,2684191815,KE +2684191768,2684191807,NL +2684191808,2684191815,BR 2684191816,2684191839,US 2684191840,2684191843,NL 2684191844,2684191847,US 2684191848,2684191855,GB 2684191856,2684191871,US -2684191872,2684191873,ES -2684191874,2684191879,NL +2684191872,2684191879,NL 2684191880,2684191887,LT 2684191888,2684191899,IT 2684191900,2684191911,US 2684191912,2684191919,KW 2684191920,2684191927,TR 2684191928,2684191935,US -2684191936,2684191939,TR +2684191936,2684191939,NL 2684191940,2684191943,US 2684191944,2684191951,ES 2684191952,2684191967,US -2684191968,2684191975,SE +2684191968,2684191975,HR 2684191976,2684191999,US 2684192000,2684192007,ES 2684192008,2684192015,AE @@ -80858,14 +80470,12 @@ 2684192176,2684192191,JO 2684192192,2684192199,US 2684192200,2684192207,QA -2684192208,2684192215,US -2684192216,2684192223,CA +2684192208,2684192223,US 2684192224,2684192231,TR 2684192232,2684192239,US 2684192240,2684192247,IN 2684192248,2684192263,US -2684192264,2684192265,TR -2684192266,2684192267,NL +2684192264,2684192267,NL 2684192268,2684192271,GB 2684192272,2684192279,US 2684192280,2684192287,RU @@ -80880,12 +80490,10 @@ 2684192352,2684192371,US 2684192372,2684192375,GB 2684192376,2684192383,BM -2684192384,2684192387,CA -2684192388,2684192391,US +2684192384,2684192391,US 2684192392,2684192399,NL 2684192400,2684192407,AU -2684192408,2684192415,US -2684192416,2684192423,CA +2684192408,2684192423,US 2684192424,2684192427,CH 2684192428,2684192431,TR 2684192432,2684192447,NL @@ -80895,18 +80503,15 @@ 2684192480,2684192495,US 2684192496,2684192503,GB 2684192504,2684192507,HR -2684192508,2684192509,CA -2684192510,2684192511,NL +2684192508,2684192511,NL 2684192512,2684192519,US 2684192520,2684192523,NL 2684192524,2684192535,US -2684192536,2684192545,NL -2684192546,2684192547,EG +2684192536,2684192547,NL 2684192548,2684192551,CN 2684192552,2684192559,GB -2684192560,2684192567,NL -2684192568,2684192583,US -2684192584,2684192591,DE +2684192560,2684192575,US +2684192576,2684192591,DE 2684192592,2684192599,US 2684192600,2684192607,AE 2684192608,2684192611,US @@ -80923,15 +80528,16 @@ 2684192696,2684192703,IT 2684192704,2684192711,BE 2684192712,2684192715,AU -2684192716,2684192719,CA -2684192720,2684192727,NL +2684192716,2684192727,NL 2684192728,2684192731,BE 2684192732,2684192735,IT 2684192736,2684192767,US 2684192768,2684192775,TR -2684192776,2684192807,US +2684192776,2684192795,US +2684192796,2684192799,DE +2684192800,2684192807,US 2684192808,2684192823,PL -2684192824,2684192831,NL +2684192824,2684192831,US 2684192832,2684192839,NO 2684192840,2684192847,TR 2684192848,2684192855,PK @@ -80946,7 +80552,8 @@ 2684192960,2684192967,NL 2684192968,2684192971,GB 2684192972,2684192975,MA -2684192976,2684192983,US +2684192976,2684192979,PK +2684192980,2684192983,US 2684192984,2684192991,TR 2684192992,2684192999,BR 2684193000,2684193007,SA @@ -80955,7 +80562,9 @@ 2684193020,2684193023,NL 2684193024,2684193031,TR 2684193032,2684193039,GR -2684193040,2684193055,NL +2684193040,2684193043,NL +2684193044,2684193047,IN +2684193048,2684193055,NL 2684193056,2684193059,TR 2684193060,2684193063,NL 2684193064,2684193071,US @@ -80970,8 +80579,7 @@ 2684193176,2684193183,BH 2684193184,2684193195,TR 2684193196,2684193199,CN -2684193200,2684193215,BE -2684193216,2684193231,US +2684193200,2684193231,US 2684193232,2684193235,BM 2684193236,2684193239,AE 2684193240,2684193247,PK @@ -80984,36 +80592,35 @@ 2684193296,2684193303,IT 2684193304,2684193311,NL 2684193312,2684193319,IN -2684193320,2684193327,NL +2684193320,2684193327,US 2684193328,2684193335,GR 2684193336,2684193375,US 2684193376,2684193383,LB -2684193384,2684193391,US +2684193384,2684193391,DE 2684193392,2684193399,JO -2684193400,2684193407,US -2684193408,2684193439,NL -2684193440,2684193447,US +2684193400,2684193447,US 2684193448,2684193455,HU 2684193456,2684193467,US -2684193468,2684193471,LT +2684193468,2684193471,NL 2684193472,2684193479,MX 2684193480,2684193487,IN 2684193488,2684193511,US 2684193512,2684193519,AE 2684193520,2684193527,TR 2684193528,2684193535,GB -2684193536,2684193551,NL +2684193536,2684193543,NL +2684193544,2684193551,US 2684193552,2684193559,SA 2684193560,2684193567,CN -2684193568,2684193575,US +2684193568,2684193575,DE 2684193576,2684193583,EG 2684193584,2684193591,RU -2684193592,2684193599,ES +2684193592,2684193599,US 2684193600,2684193607,IN 2684193608,2684193611,CN 2684193612,2684193615,NL 2684193616,2684193623,IN -2684193624,2684193631,NL +2684193624,2684193631,US 2684193632,2684193639,AU 2684193640,2684193647,TR 2684193648,2684193655,AU @@ -81028,12 +80635,13 @@ 2684193696,2684193711,GB 2684193712,2684193719,NL 2684193720,2684193727,CN -2684193728,2684193759,NL +2684193728,2684193743,US +2684193744,2684193751,CN +2684193752,2684193759,US 2684193760,2684193767,GB 2684193768,2684193775,AR -2684193776,2684193783,NL -2684193784,2684193789,US -2684193790,2684193799,NL +2684193776,2684193787,US +2684193788,2684193799,NL 2684193800,2684193807,FR 2684193808,2684193815,GB 2684193816,2684193823,US @@ -81057,9 +80665,9 @@ 2684194004,2684194039,US 2684194040,2684194047,MT 2684194048,2684194055,IT -2684194056,2684194071,NL -2684194072,2684194079,US -2684194080,2684194087,NL +2684194056,2684194063,US +2684194064,2684194071,NL +2684194072,2684194087,US 2684194088,2684194095,GR 2684194096,2684194103,US 2684194104,2684194111,NL @@ -81069,16 +80677,15 @@ 2684194136,2684194143,MX 2684194144,2684194151,US 2684194152,2684194159,EG -2684194160,2684194167,IN -2684194168,2684194171,US +2684194160,2684194171,US 2684194172,2684194175,IL 2684194176,2684194207,LT -2684194208,2684194215,CN +2684194208,2684194215,US 2684194216,2684194223,IL -2684194224,2684194247,US +2684194224,2684194239,NL +2684194240,2684194247,US 2684194248,2684194251,EG -2684194252,2684194253,NL -2684194254,2684194255,AE +2684194252,2684194255,NL 2684194256,2684194271,US 2684194272,2684194279,GB 2684194280,2684194287,BZ @@ -81094,7 +80701,7 @@ 2684194352,2684194367,US 2684194368,2684194375,TW 2684194376,2684194383,JO -2684194384,2684194391,CN +2684194384,2684194391,US 2684194392,2684194399,NL 2684194400,2684194407,US 2684194408,2684194423,NZ @@ -81163,10 +80770,10 @@ 2684195088,2684195095,EG 2684195096,2684195111,US 2684195112,2684195119,SA -2684195120,2684195127,US -2684195128,2684195151,NL +2684195120,2684195135,US +2684195136,2684195151,NL 2684195152,2684195167,US -2684195168,2684195199,CY +2684195168,2684195199,NL 2684195200,2684195295,US 2684195296,2684195303,DE 2684195304,2684195307,SE @@ -81176,14 +80783,15 @@ 2684195324,2684195327,US 2684195328,2684195335,DE 2684195336,2684195343,US -2684195344,2684195351,GT +2684195344,2684195351,NL 2684195352,2684195359,ES 2684195360,2684195367,CN 2684195368,2684195371,ES 2684195372,2684195375,MA 2684195376,2684195383,BE 2684195384,2684195391,NL -2684195392,2684195415,US +2684195392,2684195399,TR +2684195400,2684195415,US 2684195416,2684195423,AE 2684195424,2684195427,IT 2684195428,2684195431,TR @@ -81194,19 +80802,17 @@ 2684195504,2684195511,SA 2684195512,2684195527,US 2684195528,2684195535,RO -2684195536,2684195543,US -2684195544,2684195551,NL +2684195536,2684195551,US 2684195552,2684195559,BA 2684195560,2684195567,NL -2684195568,2684195575,US +2684195568,2684195575,GB 2684195576,2684195583,TR 2684195584,2684195647,US 2684195648,2684195655,BA 2684195656,2684195675,US 2684195676,2684195679,TR 2684195680,2684195683,AE -2684195684,2684195685,SA -2684195686,2684195695,NL +2684195684,2684195695,NL 2684195696,2684195703,US 2684195704,2684195715,NL 2684195716,2684195719,US @@ -81226,15 +80832,16 @@ 2684195824,2684195831,AF 2684195832,2684195855,US 2684195856,2684195863,GB -2684195864,2684195865,NL -2684195866,2684195867,CY +2684195864,2684195867,NL 2684195868,2684195871,US 2684195872,2684195879,AT 2684195880,2684195887,US 2684195888,2684195895,IN -2684195896,2684195903,US +2684195896,2684195899,PK +2684195900,2684195903,US 2684195904,2684195911,IN -2684195912,2684195919,NL +2684195912,2684195915,BG +2684195916,2684195919,NL 2684195920,2684195935,HR 2684195936,2684195967,AF 2684195968,2684195975,CH @@ -81255,13 +80862,12 @@ 2684196088,2684196095,GB 2684196096,2684196159,US 2684196160,2684196191,AF -2684196192,2684196199,SA +2684196192,2684196199,NL 2684196200,2684196207,ES 2684196208,2684196215,US 2684196216,2684196223,NL 2684196224,2684196227,TR -2684196228,2684196229,GB -2684196230,2684196231,NL +2684196228,2684196231,NL 2684196232,2684196239,IT 2684196240,2684196259,NL 2684196260,2684196263,AE @@ -81269,9 +80875,8 @@ 2684196280,2684196303,DK 2684196304,2684196311,BR 2684196312,2684196319,NL -2684196320,2684196327,GB -2684196328,2684196333,NL -2684196334,2684196335,AE +2684196320,2684196323,SA +2684196324,2684196335,NL 2684196336,2684196343,CN 2684196344,2684196347,TR 2684196348,2684196383,US @@ -81290,10 +80895,11 @@ 2684196544,2684196551,DK 2684196552,2684196567,NL 2684196568,2684196591,US -2684196592,2684196593,NL -2684196594,2684196595,AE -2684196596,2684196607,NL -2684196608,2684196639,US +2684196592,2684196615,NL +2684196616,2684196619,US +2684196620,2684196623,DE +2684196624,2684196635,US +2684196636,2684196639,IL 2684196640,2684196671,GB 2684196672,2684196703,CN 2684196704,2684196711,US @@ -81308,39 +80914,35 @@ 2684196784,2684196791,TR 2684196792,2684196799,BG 2684196800,2684196831,TR -2684196832,2684196839,US +2684196832,2684196835,US +2684196836,2684196839,NL 2684196840,2684196847,BR -2684196848,2684196855,NL +2684196848,2684196851,US +2684196852,2684196855,NL 2684196856,2684196859,GB 2684196860,2684196863,AR 2684196864,2684196871,US 2684196872,2684196879,MX -2684196880,2684196881,GB -2684196882,2684196883,NL -2684196884,2684196885,SA -2684196886,2684196887,NL +2684196880,2684196887,NL 2684196888,2684196891,TR -2684196892,2684196893,SA -2684196894,2684196895,NL +2684196892,2684196895,NL 2684196896,2684196903,RU -2684196904,2684196905,CY -2684196906,2684196911,NL +2684196904,2684196911,NL 2684196912,2684196931,US 2684196932,2684196935,NL 2684196936,2684196939,EG 2684196940,2684196943,US 2684196944,2684196951,EG -2684196952,2684196959,NL -2684196960,2684196967,US +2684196952,2684196967,US 2684196968,2684196975,BR 2684196976,2684196979,ZA 2684196980,2684196983,NL 2684196984,2684196987,DK -2684196988,2684196999,US +2684196988,2684196991,US +2684196992,2684196999,KW 2684197000,2684197007,IT 2684197008,2684197019,US -2684197020,2684197021,HR -2684197022,2684197023,NL +2684197020,2684197023,NL 2684197024,2684197031,EG 2684197032,2684197047,US 2684197048,2684197055,IN @@ -81350,23 +80952,19 @@ 2684197080,2684197083,IT 2684197084,2684197087,NO 2684197088,2684197091,US -2684197092,2684197093,NL -2684197094,2684197095,CY +2684197092,2684197095,NL 2684197096,2684197099,IT 2684197100,2684197107,US 2684197108,2684197111,AR 2684197112,2684197119,US -2684197120,2684197121,NL -2684197122,2684197123,CY +2684197120,2684197123,NL 2684197124,2684197135,US 2684197136,2684197143,SA 2684197144,2684197151,GB -2684197152,2684197167,US -2684197168,2684197175,NL +2684197152,2684197175,US 2684197176,2684197179,TR -2684197180,2684197181,CY -2684197182,2684197191,NL -2684197192,2684197195,US +2684197180,2684197183,NL +2684197184,2684197195,US 2684197196,2684197199,NL 2684197200,2684197215,US 2684197216,2684197227,AT @@ -81375,23 +80973,21 @@ 2684197240,2684197247,GB 2684197248,2684197263,US 2684197264,2684197267,CO -2684197268,2684197271,US -2684197272,2684197279,HR -2684197280,2684197283,US +2684197268,2684197283,US 2684197284,2684197287,TR -2684197288,2684197295,DE -2684197296,2684197303,HR +2684197288,2684197295,NL +2684197296,2684197303,BS 2684197304,2684197311,US -2684197312,2684197319,NL +2684197312,2684197319,MA 2684197320,2684197327,SA 2684197328,2684197335,BR 2684197336,2684197339,NL -2684197340,2684197355,US +2684197340,2684197343,US +2684197344,2684197347,NL +2684197348,2684197355,US 2684197356,2684197359,NL 2684197360,2684197367,TR -2684197368,2684197371,NL -2684197372,2684197373,MA -2684197374,2684198911,NL +2684197368,2684198911,NL 2684198912,2684199423,GB 2684199424,2684199679,EU 2684199680,2684200959,GB @@ -81541,13 +81137,10 @@ 2686976000,2687041535,GR 2687041536,2687238143,US 2687238144,2687297231,DE -2687297232,2687297239,GB -2687297240,2687297247,SE +2687297232,2687297247,GB 2687297248,2687297791,DE 2687297792,2687298047,FR -2687298048,2687299119,DE -2687299120,2687299127,US -2687299128,2687301375,DE +2687298048,2687301375,DE 2687301376,2687301631,NL 2687301632,2687560191,DE 2687560192,2687560447,ZA @@ -81638,10 +81231,7 @@ 2698117120,2698182655,IS 2698182656,2698248191,DE 2698248192,2698313727,US -2698313728,2698342399,GB -2698342400,2698346495,DE -2698346496,2698375167,GB -2698375168,2698379263,DE +2698313728,2698379263,DE 2698379264,2698444799,ES 2698444800,2698510335,JP 2698510336,2698706943,CZ @@ -81773,7 +81363,9 @@ 2713387008,2713452543,CA 2713452544,2713583615,US 2713583616,2713649151,AR -2713649152,2713976831,US +2713649152,2713947391,US +2713947392,2713947647,DE +2713947648,2713976831,US 2713976832,2714042367,VE 2714042368,2714238975,US 2714238976,2714304511,TH @@ -81842,8 +81434,35 @@ 2731543552,2731544575,CA 2731544576,2731549695,US 2731549696,2731550719,CA -2731550720,2731551743,US -2731606016,2731638783,US +2731550720,2731555839,US +2731555840,2731556863,CA +2731556864,2731560959,US +2731560960,2731561983,CA +2731561984,2731563007,US +2731563008,2731564031,CA +2731564032,2731566079,US +2731566080,2731567103,CA +2731567104,2731573247,US +2731573248,2731606015,CA +2731606016,2731673599,US +2731673600,2731674623,CA +2731674624,2731679743,US +2731679744,2731680767,CA +2731680768,2731681791,US +2731681792,2731682815,PR +2731682816,2731685887,US +2731685888,2731686911,CA +2731686912,2731688959,US +2731688960,2731689983,VG +2731689984,2731711487,US +2731711488,2731712511,AG +2731712512,2731714559,CA +2731714560,2731717631,US +2731717632,2731718655,CA +2731718656,2731728895,US +2731728896,2731729919,CA +2731729920,2731761663,US +2731761664,2731763711,CA 2734686208,2734751743,CN 2734751744,2734817279,GB 2734817280,2734882815,US @@ -82015,15 +81634,7 @@ 2759065600,2759589887,US 2759589888,2759720959,KR 2759720960,2759852031,PL -2759852032,2759883439,CH -2759883440,2759883443,LI -2759883444,2759883451,CH -2759883452,2759883455,LI -2759883456,2759884111,CH -2759884112,2759884115,GB -2759884116,2759894559,CH -2759894560,2759894563,LI -2759894564,2759917567,CH +2759852032,2759917567,CH 2759917568,2759917823,FR 2759917824,2759918079,EU 2759918080,2759983103,FR @@ -82094,7 +81705,9 @@ 2765568000,2765570047,IR 2765570048,2765578239,RU 2765578240,2765580287,AZ -2765580288,2765582335,GB +2765580288,2765581311,GB +2765581312,2765581567,US +2765581568,2765582335,GB 2765582336,2765586431,CZ 2765586432,2765619199,IR 2765619200,2768240639,US @@ -82142,7 +81755,9 @@ 2775806464,2775842815,CA 2775842816,2775973887,US 2775973888,2776039423,AU -2776039424,2776478207,US +2776039424,2776104959,US +2776104960,2776170495,GB +2776170496,2776478207,US 2776478208,2776478463,EU 2776478464,2776478975,US 2776478976,2776479231,AU @@ -82280,11 +81895,17 @@ 2783383040,2783383295,US 2783383296,2783384575,ZA 2783384576,2783384831,US -2783384832,2783388159,ZA +2783384832,2783386623,ZA +2783386624,2783386879,US +2783386880,2783388159,ZA 2783388160,2783388415,US -2783388416,2783390719,ZA +2783388416,2783388927,ZA +2783388928,2783389183,US +2783389184,2783390719,ZA 2783390720,2783390975,US -2783390976,2783396351,ZA +2783390976,2783394815,ZA +2783394816,2783395071,US +2783395072,2783396351,ZA 2783396352,2783396607,US 2783396608,2783399167,ZA 2783399168,2783399423,US @@ -82292,27 +81913,45 @@ 2783408128,2783408383,US 2783408384,2783408895,ZA 2783408896,2783409151,US -2783409152,2783412479,ZA -2783412480,2783412735,US -2783412736,2783415807,ZA -2783415808,2783416063,US +2783409152,2783409407,ZA +2783409408,2783409663,US +2783409664,2783410431,ZA +2783410432,2783410687,US +2783410688,2783411711,ZA +2783411712,2783411967,US +2783411968,2783412223,ZA +2783412224,2783412735,US +2783412736,2783415551,ZA +2783415552,2783416063,US 2783416064,2783417087,ZA 2783417088,2783417343,US 2783417344,2783417599,ZA 2783417600,2783417855,US 2783417856,2783419647,ZA 2783419648,2783419903,US -2783419904,2783425023,ZA +2783419904,2783420415,ZA +2783420416,2783420671,US +2783420672,2783425023,ZA 2783425024,2783425279,US 2783425280,2783426815,ZA 2783426816,2783427071,US -2783427072,2783430399,ZA +2783427072,2783428607,ZA +2783428608,2783428863,US +2783428864,2783429119,ZA +2783429120,2783429375,US +2783429376,2783430399,ZA 2783430400,2783430655,US -2783430656,2783437055,ZA +2783430656,2783431679,ZA +2783431680,2783431935,US +2783431936,2783432447,ZA +2783432448,2783432703,US +2783432704,2783437055,ZA 2783437056,2783437311,US 2783437312,2783440127,ZA 2783440128,2783440383,US -2783440384,2783444991,ZA +2783440384,2783442943,ZA +2783442944,2783443199,US +2783443200,2783444991,ZA 2783444992,2783510527,US 2783510528,2783576063,ZA 2783576064,2783969279,US @@ -82431,37 +82070,15 @@ 2793209856,2793275391,KR 2793275392,2796748799,US 2796748800,2796814335,NZ -2796814336,2798393343,US -2798393344,2798394367,PR -2798394368,2798412543,US -2798412544,2798412799,PR -2798412800,2798429439,US -2798429440,2798430207,PR -2798430208,2798452223,US -2798452224,2798452479,PR -2798452480,2798784511,US -2798784512,2798786559,CO -2798786560,2798821375,US -2798821376,2798829567,CO -2798829568,2798838015,US +2796814336,2798429183,US +2798429184,2798430207,PR +2798430208,2798434303,US +2798434304,2798434815,PR +2798434816,2798838015,US 2798838016,2798838271,CO 2798838272,2799086335,US 2799086336,2799086591,PR -2799086592,2799097855,US -2799097856,2799099903,PR -2799099904,2800567295,US -2800567296,2800567807,PA -2800567808,2800600319,US -2800600320,2800600575,PA -2800600576,2800607743,US -2800607744,2800607999,PA -2800608000,2800609023,US -2800609024,2800609791,PA -2800609792,2800610303,US -2800610304,2800610559,PA -2800610560,2800637951,US -2800637952,2800639999,CO -2800640000,2802386186,US +2799086592,2802386186,US 2802386187,2802386187,EU 2802386188,2802515967,US 2802515968,2802581503,CA @@ -82481,9 +82098,9 @@ 2807236864,2807237119,EU 2807237120,2807259647,US 2807259648,2807260159,AP -2807260160,2807267327,US -2807267328,2807275519,AU -2807275520,2807824383,US +2807260160,2807271679,US +2807271680,2807271935,AU +2807271936,2807824383,US 2807824384,2807889919,CA 2807889920,2808545279,US 2808545280,2808610815,AU @@ -82532,9 +82149,7 @@ 2813263872,2813329407,JP 2813329408,2813526015,US 2813526016,2813591551,NZ -2813591552,2813908479,US -2813908480,2813908735,SG -2813908736,2814181375,US +2813591552,2814181375,US 2814181376,2814246911,AU 2814246912,2814377215,US 2814377216,2814377471,EU @@ -82570,7 +82185,18 @@ 2816008192,2816008207,IE 2816008208,2816159743,US 2816159744,2816159999,IN -2816160000,2816671743,US +2816160000,2816262143,US +2816262144,2816263167,IE +2816263168,2816264191,GB +2816264192,2816264447,IE +2816264448,2816264703,GB +2816264704,2816270335,US +2816270336,2816271615,SG +2816271616,2816271871,JP +2816271872,2816272383,IN +2816272384,2816273407,JP +2816273408,2816275455,IN +2816275456,2816671743,US 2816671744,2816737279,CA 2816737280,2817059071,US 2817059072,2817059327,AP @@ -82581,7 +82207,8 @@ 2817325056,2817325311,EU 2817325312,2817933055,US 2817933056,2817933311,CA -2817933312,2817986303,US +2817933312,2817933567,PR +2817933568,2817986303,US 2817986304,2817986559,AP 2817986560,2818003711,US 2818003712,2818003722,GB @@ -82608,11 +82235,7 @@ 2824274688,2824274720,CH 2824274721,2824274721,EU 2824274722,2824274943,CH -2824274944,2824289279,US -2824289280,2824289535,GB -2824289536,2824357375,US -2824357376,2824357631,GB -2824357632,2824404991,US +2824274944,2824404991,US 2824404992,2824470527,ZA 2824536064,2824798207,US 2824798208,2824863743,TW @@ -82696,7 +82319,9 @@ 2829844480,2829910015,ZA 2829910016,2830066431,US 2830066432,2830066687,HK -2830066688,2830106623,US +2830066688,2830085887,US +2830085888,2830086143,GB +2830086144,2830106623,US 2830106624,2830172159,CO 2830172160,2830434303,US 2830499840,2830586879,US @@ -82705,10 +82330,8 @@ 2830761984,2830827519,AU 2830827520,2830830335,KW 2830830336,2830830591,US -2830830592,2830845183,KW -2830845184,2830845439,US -2830845440,2830852351,KW -2830852352,2830853119,US +2830830592,2830852863,KW +2830852864,2830853119,US 2830853120,2830853375,KW 2830853376,2830853631,US 2830853632,2830853887,KW @@ -82778,7 +82401,9 @@ 2850029568,2851995647,US 2852126720,2852716653,US 2852716654,2852716654,AU -2852716655,2853306367,US +2852716655,2852765695,US +2852765696,2852765951,GB +2852765952,2853306367,US 2853306368,2853371903,CL 2853371904,2853765119,US 2853765120,2853830655,MX @@ -82833,12 +82458,12 @@ 2863661056,2863857663,US 2863857664,2863923199,SG 2863923200,2864844799,US -2864844800,2864845055,NL -2864845056,2864848895,US +2864844800,2864846847,NL +2864846848,2864848895,US 2864848896,2864849151,GB -2864849152,2865417457,US -2865417458,2865417458,GB -2865417459,2865577983,US +2864849152,2865417215,US +2865417216,2865417471,GB +2865417472,2865577983,US 2865577984,2865610751,BE 2865610752,2865889279,US 2865889280,2865954815,AR @@ -82854,7 +82479,8 @@ 2868660224,2868660479,EU 2868660480,2868662271,US 2868662272,2868662527,EU -2868662528,2868673279,US +2868662528,2868673023,US +2868673024,2868673279,FR 2868673280,2868673535,ZA 2868673536,2868674336,US 2868674337,2868674337,EU @@ -82862,7 +82488,9 @@ 2868674560,2868682751,AU 2868682752,2868682752,US 2868682753,2868682753,AP -2868682754,2868772863,US +2868682754,2868689919,US +2868689920,2868690175,SG +2868690176,2868772863,US 2868838400,2868903935,BE 2868903936,2869035007,SG 2869035008,2869166079,JP @@ -82875,9 +82503,7 @@ 2870088192,2870088959,FR 2870088960,2870088991,ES 2870088992,2870089727,FR -2870089728,2870090495,DE -2870090496,2870090751,BE -2870090752,2870091775,DE +2870089728,2870091775,DE 2870091776,2870095871,FR 2870095872,2870096383,SG 2870096384,2870149119,FR @@ -82945,18 +82571,14 @@ 2871130112,2871132159,RU 2871132160,2872049663,CN 2872049664,2873098239,IN -2873098240,2873368575,US -2873368576,2873368831,IN -2873368832,2873369087,US -2873369088,2873376767,IN -2873376768,2873884671,US +2873098240,2873372159,US +2873372160,2873372927,IN +2873372928,2873884671,US 2873884672,2874146815,IN 2874146816,2875195391,CN 2875195392,2875719679,TH 2875719680,2877292543,CN -2877292544,2879332607,US -2879332608,2879332863,GB -2879332864,2879336447,US +2877292544,2879336447,US 2879336448,2879336959,GB 2879336960,2879467519,US 2879467520,2879468031,AP @@ -82997,9 +82619,7 @@ 2899968000,2900099071,CA 2900099072,2902458367,US 2902458368,2902462463,US -2902462464,2902472018,US -2902472019,2902472021,AL -2902472022,2902472725,US +2902462464,2902472725,US 2902472726,2902472728,BD 2902472729,2902473028,US 2902473029,2902473031,IN @@ -83021,15 +82641,19 @@ 2902564688,2902564703,AU 2902564704,2904555519,US 2904555520,2904817663,CA -2904817664,2905018367,US -2905018368,2905022463,IN +2904817664,2905020415,US +2905020416,2905022463,IN 2905022464,2905030655,US 2905030656,2905034751,IN 2905034752,2905045247,US 2905045248,2905045503,SG 2905045504,2905350729,US 2905350730,2905350730,US -2905350731,2905376391,US +2905350731,2905376199,US +2905376200,2905376207,PH +2905376208,2905376223,GB +2905376224,2905376231,PH +2905376232,2905376391,US 2905376392,2905376399,PK 2905376400,2905376415,US 2905376416,2905376423,CN @@ -83150,7 +82774,9 @@ 2915958784,2916024319,CA 2916024320,2916098191,US 2916098192,2916098207,CA -2916098208,2916104703,US +2916098208,2916101615,US +2916101616,2916101623,CA +2916101624,2916104703,US 2916104704,2916104719,ZA 2916104720,2916110399,US 2916110400,2916110407,LK @@ -83160,7 +82786,9 @@ 2916111328,2916111343,CA 2916111344,2916111687,US 2916111688,2916111695,CA -2916111696,2916120823,US +2916111696,2916118223,US +2916118224,2916118231,LK +2916118232,2916120823,US 2916120824,2916120831,CA 2916120832,2916121367,US 2916121368,2916121375,CA @@ -83218,9 +82846,7 @@ 2916544960,2916547839,US 2916547840,2916547871,BZ 2916547872,2916581375,US -2916581376,2916594687,PR -2916594688,2916594943,US -2916594944,2916614143,PR +2916581376,2916614143,PR 2916614144,2917167679,US 2917167680,2917167711,BR 2917167712,2917167775,US @@ -83262,9 +82888,8 @@ 2917210368,2917257215,US 2917257216,2917261311,KY 2917261312,2917265407,US -2917265408,2917267775,JM -2917267776,2917267839,VG -2917267840,2917267967,AG +2917265408,2917267711,JM +2917267712,2917267967,AG 2917267968,2917268223,JM 2917268224,2917268479,BB 2917268480,2917269503,JM @@ -83361,9 +82986,7 @@ 2917665664,2917665695,EG 2917665696,2917667391,US 2917667392,2917667423,EG -2917667424,2917667519,US -2917667520,2917667583,CA -2917667584,2917672191,US +2917667424,2917672191,US 2917672192,2917672223,CA 2917672224,2917672319,US 2917672320,2917672351,EG @@ -83416,9 +83039,7 @@ 2917796264,2917796271,CA 2917796272,2917801983,US 2917801984,2917801991,CA -2917801992,2917802047,US -2917802048,2917802063,CA -2917802064,2917802143,US +2917801992,2917802143,US 2917802144,2917802159,CA 2917802160,2917802231,US 2917802232,2917802239,CA @@ -83436,19 +83057,7 @@ 2917804544,2917804559,CA 2917804560,2917804607,US 2917804608,2917804639,CA -2917804640,2917804815,US -2917804816,2917804831,CA -2917804832,2917804879,US -2917804880,2917804887,CA -2917804888,2917804911,US -2917804912,2917804919,CA -2917804920,2917804935,US -2917804936,2917804943,CA -2917804944,2917804951,US -2917804952,2917804959,CA -2917804960,2917805039,US -2917805040,2917805047,CA -2917805048,2917809231,US +2917804640,2917809231,US 2917809232,2917809239,CA 2917809240,2917809407,US 2917809408,2917809439,CA @@ -83464,15 +83073,7 @@ 2917813689,2917813696,LK 2917813697,2917815575,US 2917815576,2917815583,RO -2917815584,2917823831,US -2917823832,2917823839,CA -2917823840,2917823871,US -2917823872,2917823887,CA -2917823888,2917823895,US -2917823896,2917823903,CA -2917823904,2917823975,US -2917823976,2917823991,CA -2917823992,2917828351,US +2917815584,2917828351,US 2917828352,2917828479,IN 2917828480,2917829727,US 2917829728,2917829743,CA @@ -83498,9 +83099,7 @@ 2917853616,2917853623,CA 2917853624,2917854591,US 2917854592,2917854719,LK -2917854720,2917856511,US -2917856512,2917856639,IN -2917856640,2918014975,US +2917854720,2918014975,US 2918014976,2918023167,CA 2918023168,2918043647,US 2918043648,2918043711,CA @@ -83538,9 +83137,7 @@ 2918154240,2918170623,CA 2918170624,2918187775,US 2918187776,2918187839,CA -2918187840,2918199679,US -2918199680,2918199743,CA -2918199744,2918201551,US +2918187840,2918201551,US 2918201552,2918201567,CA 2918201568,2918202079,US 2918202080,2918202087,CA @@ -83565,8 +83162,8 @@ 2918264832,2918277119,US 2918277120,2918281215,CA 2918281216,2918286335,US -2918286336,2918286719,CA -2918286720,2918286879,US +2918286336,2918286591,CA +2918286592,2918286879,US 2918286880,2918286895,GB 2918286896,2918287103,US 2918287104,2918287359,CR @@ -83575,11 +83172,7 @@ 2918314217,2918314217,GB 2918314218,2918348114,US 2918348115,2918348115,US -2918348116,2918348802,US -2918348803,2918348831,GB -2918348832,2918349026,US -2918349027,2918349032,GB -2918349033,2918371327,US +2918348116,2918371327,US 2918371328,2918375423,CA 2918375424,2918391807,US 2918391808,2918395903,CA @@ -83632,7 +83225,9 @@ 2918534816,2918534879,CN 2918534880,2918534943,US 2918534944,2918534975,CN -2918534976,2918536031,US +2918534976,2918534983,US +2918534984,2918534991,ID +2918534992,2918536031,US 2918536032,2918536063,US 2918536064,2918536183,US 2918536184,2918536187,US @@ -84145,9 +83740,7 @@ 2921553152,2921553407,BR 2921553408,2921553663,CO 2921553664,2921562111,US -2921562112,2921589759,CA -2921589760,2921590015,US -2921590016,2921594879,CA +2921562112,2921594879,CA 2921594880,2921658191,US 2921658192,2921658199,US 2921658200,2925002751,US @@ -84241,7 +83834,15 @@ 2928263824,2928263831,US 2928263832,2928263855,CA 2928263856,2928263871,US -2928263872,2928264759,CA +2928263872,2928263999,CA +2928264000,2928264007,US +2928264008,2928264015,CA +2928264016,2928264023,US +2928264024,2928264063,CA +2928264064,2928264095,US +2928264096,2928264159,CA +2928264160,2928264167,US +2928264168,2928264759,CA 2928264760,2928264775,US 2928264776,2928264783,CA 2928264784,2928264831,US @@ -84573,14 +84174,21 @@ 2947598336,2947602431,AU 2947602432,2947603455,NZ 2947603456,2947604479,TH -2947604480,2947609167,HK +2947604480,2947605759,HK +2947605760,2947606015,GB +2947606016,2947608575,HK +2947608576,2947608831,US +2947608832,2947609167,HK 2947609168,2947609175,AF -2947609176,2947609855,HK +2947609176,2947609599,HK +2947609600,2947609727,GB +2947609728,2947609855,HK 2947609856,2947610111,US 2947610112,2947610367,HK -2947610368,2947610623,PH -2947610624,2947611647,AU -2947611648,2947612671,HK +2947610368,2947610623,US +2947610624,2947611135,HK +2947611136,2947611391,AU +2947611392,2947612671,HK 2947612672,2947678207,JP 2947678208,2947743743,CN 2947743744,2947809279,JP @@ -84606,8 +84214,8 @@ 2953438192,2953438199,ES 2953438200,2953438231,DE 2953438232,2953438239,CH -2953438240,2953441263,DE -2953441264,2953441279,IT +2953438240,2953441271,DE +2953441272,2953441279,IT 2953441280,2953442271,DE 2953442272,2953442287,ES 2953442288,2953443031,DE @@ -84657,8 +84265,7 @@ 2954756096,2954821631,TR 2954821632,2954821647,FR 2954821648,2954821651,ES -2954821652,2954821655,PL -2954821656,2954821659,FR +2954821652,2954821659,FR 2954821660,2954821663,ES 2954821664,2954821695,PL 2954821696,2954821707,FR @@ -84667,7 +84274,7 @@ 2954821720,2954821723,PL 2954821724,2954821727,FR 2954821728,2954821775,IE -2954821776,2954821783,DE +2954821776,2954821783,FR 2954821784,2954821787,ES 2954821788,2954821791,FR 2954821792,2954821823,ES @@ -84680,13 +84287,13 @@ 2954822016,2954822047,IT 2954822048,2954822063,PL 2954822064,2954822071,BE -2954822072,2954822075,PT +2954822072,2954822075,FR 2954822076,2954822079,GB 2954822080,2954822143,ES -2954822144,2954822159,FR -2954822160,2954822175,PT -2954822176,2954822207,IE -2954822208,2954822271,FR +2954822144,2954822223,FR +2954822224,2954822255,PT +2954822256,2954822263,PL +2954822264,2954822271,ES 2954822272,2954822279,GB 2954822280,2954822283,ES 2954822284,2954822287,FR @@ -84699,8 +84306,7 @@ 2954822336,2954822343,PL 2954822344,2954822347,ES 2954822348,2954822367,FR -2954822368,2954822399,IT -2954822400,2954822431,PL +2954822368,2954822431,IT 2954822432,2954822447,FR 2954822448,2954822451,PL 2954822452,2954822455,NL @@ -84708,19 +84314,20 @@ 2954822484,2954822487,DE 2954822488,2954822491,FR 2954822492,2954822495,DE -2954822496,2954822531,IE +2954822496,2954822527,FR +2954822528,2954822531,PL 2954822532,2954822535,FR 2954822536,2954822539,PL 2954822540,2954822543,BE 2954822544,2954822551,FR 2954822552,2954822555,PL -2954822556,2954822575,FR +2954822556,2954822559,FR +2954822560,2954822575,IE 2954822576,2954822583,CH 2954822584,2954822591,FR 2954822592,2954822599,GB 2954822600,2954822607,DE -2954822608,2954822655,FR -2954822656,2954822687,ES +2954822608,2954822687,FR 2954822688,2954822719,GB 2954822720,2954822783,FR 2954822784,2954822791,NL @@ -84735,28 +84342,25 @@ 2954822920,2954822927,GB 2954822928,2954822975,FR 2954822976,2954822991,PL -2954822992,2954823035,FR -2954823036,2954823039,IT -2954823040,2954823043,FR +2954822992,2954823043,FR 2954823044,2954823047,DE 2954823048,2954823055,FR 2954823056,2954823071,IE -2954823072,2954823103,DE +2954823072,2954823103,BE 2954823104,2954823167,FR 2954823168,2954823199,IE -2954823200,2954823203,DE +2954823200,2954823203,FR 2954823204,2954823207,PL 2954823208,2954823211,GB 2954823212,2954823215,PL 2954823216,2954823223,IE -2954823224,2954823227,PL +2954823224,2954823227,FR 2954823228,2954823231,IT 2954823232,2954823247,GB 2954823248,2954823251,ES -2954823252,2954823255,FR -2954823256,2954823259,ES +2954823252,2954823259,FR 2954823260,2954823263,GB -2954823264,2954823295,ES +2954823264,2954823295,FR 2954823296,2954823311,PL 2954823312,2954823319,ES 2954823320,2954823383,FR @@ -84765,10 +84369,10 @@ 2954823392,2954823395,FR 2954823396,2954823399,GB 2954823400,2954823403,NL -2954823404,2954823407,PL +2954823404,2954823407,FR 2954823408,2954823423,IT 2954823424,2954823551,IE -2954823552,2954823555,PL +2954823552,2954823555,FR 2954823556,2954823559,GB 2954823560,2954823563,FI 2954823564,2954823607,FR @@ -84781,41 +84385,38 @@ 2954823640,2954823643,FR 2954823644,2954823647,CH 2954823648,2954823695,FR -2954823696,2954823711,PT -2954823712,2954823715,FR -2954823716,2954823719,GB -2954823720,2954823727,FR +2954823696,2954823703,PT +2954823704,2954823707,FR +2954823708,2954823711,PT +2954823712,2954823727,FR 2954823728,2954823735,PT 2954823736,2954823743,FR 2954823744,2954823759,CZ 2954823760,2954823767,IT 2954823768,2954823771,FR 2954823772,2954823775,PL -2954823776,2954823779,FR -2954823780,2954823783,CZ -2954823784,2954823787,ES -2954823788,2954823791,NL -2954823792,2954823807,FR -2954823808,2954823871,PT +2954823776,2954823783,FR +2954823784,2954823791,GB +2954823792,2954823871,FR 2954823872,2954823887,PL 2954823888,2954823891,ES 2954823892,2954823895,NL -2954823896,2954823903,PL +2954823896,2954823899,FR +2954823900,2954823903,PL 2954823904,2954823911,FR 2954823912,2954823915,PL 2954823916,2954823919,FR 2954823920,2954823927,PT 2954823928,2954823935,PL -2954823936,2954823967,FR +2954823936,2954823967,IE 2954823968,2954823999,ES 2954824000,2954824063,FR 2954824064,2954824071,GB -2954824072,2954824075,FI -2954824076,2954824079,FR +2954824072,2954824079,FR 2954824080,2954824083,PL 2954824084,2954824087,GB 2954824088,2954824091,IE -2954824092,2954824095,PL +2954824092,2954824095,FR 2954824096,2954824127,GB 2954824128,2954824131,PL 2954824132,2954824135,BE @@ -84855,9 +84456,7 @@ 2954824636,2954824639,PL 2954824640,2954824671,IT 2954824672,2954824703,ES -2954824704,2954824707,FR -2954824708,2954824711,IT -2954824712,2954824719,FR +2954824704,2954824719,FR 2954824720,2954824767,IE 2954824768,2954824799,FR 2954824800,2954824831,PT @@ -84865,7 +84464,9 @@ 2954824864,2954824895,IE 2954824896,2954824903,FR 2954824904,2954824907,CH -2954824908,2954824919,BE +2954824908,2954824911,BE +2954824912,2954824915,FR +2954824916,2954824919,BE 2954824920,2954824923,GB 2954824924,2954824927,ES 2954824928,2954824931,FR @@ -84875,9 +84476,8 @@ 2954824976,2954824991,ES 2954824992,2954825023,FR 2954825024,2954825031,GB -2954825032,2954825063,FR -2954825064,2954825067,ES -2954825068,2954825071,FR +2954825032,2954825039,PT +2954825040,2954825071,FR 2954825072,2954825087,BE 2954825088,2954825095,CZ 2954825096,2954825099,IE @@ -84889,7 +84489,7 @@ 2954825168,2954825183,PL 2954825184,2954825195,FR 2954825196,2954825199,CZ -2954825200,2954825203,FR +2954825200,2954825203,FI 2954825204,2954825207,IT 2954825208,2954825211,GB 2954825212,2954825239,FR @@ -84913,13 +84513,11 @@ 2954825388,2954825391,ES 2954825392,2954825455,FR 2954825456,2954825459,IT -2954825460,2954825463,NL -2954825464,2954825467,FR +2954825460,2954825467,FR 2954825468,2954825471,NL 2954825472,2954825535,MA 2954825536,2954825539,PL -2954825540,2954825547,FR -2954825548,2954825551,DE +2954825540,2954825551,FR 2954825552,2954825567,ES 2954825568,2954825599,FR 2954825600,2954825631,PL @@ -84937,7 +84535,7 @@ 2954825928,2954825931,PL 2954825932,2954825935,FR 2954825936,2954825939,BE -2954825940,2954825943,FI +2954825940,2954825943,DE 2954825944,2954825967,FR 2954825968,2954825983,ES 2954825984,2954826015,FR @@ -84953,13 +84551,13 @@ 2954826076,2954826151,FR 2954826152,2954826159,ES 2954826160,2954826167,PL -2954826168,2954826239,FR +2954826168,2954826175,PT +2954826176,2954826239,FR 2954826240,2954826243,IT -2954826244,2954826247,PT +2954826244,2954826247,FR 2954826248,2954826255,CH -2954826256,2954826259,FR -2954826260,2954826263,PL -2954826264,2954826279,FR +2954826256,2954826259,PL +2954826260,2954826279,FR 2954826280,2954826287,IT 2954826288,2954826299,FR 2954826300,2954826303,GB @@ -84967,9 +84565,8 @@ 2954826368,2954826371,DE 2954826372,2954826375,PL 2954826376,2954826379,FR -2954826380,2954826391,PL -2954826392,2954826403,FR -2954826404,2954826407,PT +2954826380,2954826383,PL +2954826384,2954826407,FR 2954826408,2954826411,ES 2954826412,2954826415,FR 2954826416,2954826419,GB @@ -85002,10 +84599,10 @@ 2954827328,2954827391,FR 2954827392,2954827487,IE 2954827488,2954827519,PL -2954827520,2954827647,FR -2954827648,2954827775,GB +2954827520,2954827775,FR 2954827776,2954827783,PL -2954827784,2954827799,FR +2954827784,2954827791,PT +2954827792,2954827799,FR 2954827800,2954827807,DE 2954827808,2954827815,PL 2954827816,2954827819,FR @@ -85015,10 +84612,11 @@ 2954827832,2954827835,FR 2954827836,2954827839,DE 2954827840,2954827855,BE -2954827856,2954827863,PT -2954827864,2954827883,FR +2954827856,2954827871,PT +2954827872,2954827883,FR 2954827884,2954827887,DE -2954827888,2954827935,FR +2954827888,2954827903,PL +2954827904,2954827935,FR 2954827936,2954827939,PL 2954827940,2954827943,PT 2954827944,2954827947,NL @@ -85027,7 +84625,9 @@ 2954828000,2954828031,NL 2954828032,2954828287,FR 2954828288,2954828291,CZ -2954828292,2954828303,DE +2954828292,2954828295,DE +2954828296,2954828299,CH +2954828300,2954828303,DE 2954828304,2954828307,PL 2954828308,2954828315,FR 2954828316,2954828319,PL @@ -85041,16 +84641,15 @@ 2954828432,2954828435,FR 2954828436,2954828439,IE 2954828440,2954828443,DE -2954828444,2954828447,PL -2954828448,2954828463,FR -2954828464,2954828467,GB +2954828444,2954828447,IT +2954828448,2954828467,FR 2954828468,2954828471,PL 2954828472,2954828799,FR 2954828800,2954828815,NL 2954828816,2954828819,FR 2954828820,2954828823,GB 2954828824,2954828831,PT -2954828832,2954828835,ES +2954828832,2954828835,FR 2954828836,2954828839,DE 2954828840,2954828847,FR 2954828848,2954828863,GB @@ -85071,32 +84670,32 @@ 2954829144,2954829147,FR 2954829148,2954829151,ES 2954829152,2954829167,CH -2954829168,2954829175,FR +2954829168,2954829171,ES +2954829172,2954829175,PT 2954829176,2954829179,NL -2954829180,2954829183,GB -2954829184,2954829263,FR +2954829180,2954829263,FR 2954829264,2954829271,PL 2954829272,2954829279,DE -2954829280,2954829303,FR +2954829280,2954829295,IE +2954829296,2954829303,FR 2954829304,2954829307,PT 2954829308,2954829311,PL 2954829312,2954829319,ES -2954829320,2954829323,GB -2954829324,2954829331,FR +2954829320,2954829331,FR 2954829332,2954829335,CZ 2954829336,2954829343,GB 2954829344,2954829375,IT -2954829376,2954829383,GB +2954829376,2954829383,FR 2954829384,2954829387,PL -2954829388,2954829395,FR +2954829388,2954829391,BE +2954829392,2954829395,FR 2954829396,2954829399,DE 2954829400,2954829407,IT 2954829408,2954829423,ES 2954829424,2954829431,FR 2954829432,2954829435,GB 2954829436,2954829439,DE -2954829440,2954829455,GB -2954829456,2954829459,FR +2954829440,2954829459,FR 2954829460,2954829471,GB 2954829472,2954829495,FR 2954829496,2954829499,ES @@ -85106,7 +84705,7 @@ 2954829564,2954829567,FI 2954829568,2954829607,FR 2954829608,2954829615,NL -2954829616,2954829623,GB +2954829616,2954829623,FR 2954829624,2954829631,ES 2954829632,2954829647,GB 2954829648,2954829679,FR @@ -85114,9 +84713,7 @@ 2954829696,2954829711,ES 2954829712,2954829739,FR 2954829740,2954829743,GB -2954829744,2954829751,FR -2954829752,2954829755,DE -2954829756,2954829759,FR +2954829744,2954829759,FR 2954829760,2954829823,ES 2954829824,2954829827,PT 2954829828,2954829831,NL @@ -85128,14 +84725,11 @@ 2954829876,2954829879,GB 2954829880,2954829887,FR 2954829888,2954829903,PL -2954829904,2954829919,GB -2954829920,2954829951,FR +2954829904,2954829951,FR 2954829952,2954829959,ES 2954829960,2954829963,PT 2954829964,2954829967,PL -2954829968,2954829975,FR -2954829976,2954829979,ES -2954829980,2954829983,FR +2954829968,2954829983,FR 2954829984,2954829999,GB 2954830000,2954830015,IT 2954830016,2954830079,FR @@ -85149,7 +84743,7 @@ 2954830152,2954830159,IE 2954830160,2954830163,IT 2954830164,2954830167,PT -2954830168,2954830175,DE +2954830168,2954830175,IT 2954830176,2954830271,FR 2954830272,2954830279,DE 2954830280,2954830287,PL @@ -85157,34 +84751,33 @@ 2954830304,2954830335,NL 2954830336,2954830343,FR 2954830344,2954830351,IE -2954830352,2954830355,FR -2954830356,2954830359,GB -2954830360,2954830367,FR +2954830352,2954830367,FR 2954830368,2954830375,NL 2954830376,2954830383,ES 2954830384,2954830387,PL 2954830388,2954830395,FR 2954830396,2954830399,BE 2954830400,2954830415,IT -2954830416,2954830431,ES -2954830432,2954830447,FR +2954830416,2954830447,FR 2954830448,2954830455,GB 2954830456,2954830463,CH 2954830464,2954830591,FR 2954830592,2954830847,GB 2954830848,2954830859,FR 2954830860,2954830863,GB -2954830864,2954830879,FR -2954830880,2954830887,GB -2954830888,2954830927,FR +2954830864,2954830927,FR 2954830928,2954830931,CZ 2954830932,2954830935,IE 2954830936,2954830943,FR 2954830944,2954830975,PT -2954830976,2954831103,FR +2954830976,2954830983,IE +2954830984,2954830991,FR +2954830992,2954830995,IT +2954830996,2954830999,CH +2954831000,2954831007,FR +2954831008,2954831103,IE 2954831104,2954831167,PT -2954831168,2954831231,FR -2954831232,2954831247,ES +2954831168,2954831247,FR 2954831248,2954831251,GB 2954831252,2954831267,FR 2954831268,2954831271,PL @@ -85201,31 +84794,27 @@ 2954831392,2954831399,CZ 2954831400,2954831403,CH 2954831404,2954831407,DE -2954831408,2954831411,ES -2954831412,2954831415,FR +2954831408,2954831415,FR 2954831416,2954831423,DE -2954831424,2954831511,FR -2954831512,2954831515,NL +2954831424,2954831503,FR +2954831504,2954831515,NL 2954831516,2954831519,FR 2954831520,2954831523,FI 2954831524,2954831527,FR 2954831528,2954831539,PT -2954831540,2954831543,FR -2954831544,2954831547,IT +2954831540,2954831547,FR 2954831548,2954831551,FI 2954831552,2954831583,DE 2954831584,2954831599,ES 2954831600,2954831603,GB -2954831604,2954831607,BE -2954831608,2954831611,FR +2954831604,2954831611,FR 2954831612,2954831615,ES 2954831616,2954831631,DE 2954831632,2954831667,FR 2954831668,2954831671,PL 2954831672,2954831711,FR -2954831712,2954831743,ES -2954831744,2954831759,FR -2954831760,2954831775,FI +2954831712,2954831743,PT +2954831744,2954831775,FR 2954831776,2954831779,CH 2954831780,2954831787,FR 2954831788,2954831791,CZ @@ -85237,9 +84826,9 @@ 2954831932,2954831983,FR 2954831984,2954831999,BE 2954832000,2954832003,PL -2954832004,2954832015,FR -2954832016,2954832023,GB -2954832024,2954832063,PL +2954832004,2954832023,FR +2954832024,2954832031,PL +2954832032,2954832063,PT 2954832064,2954832127,FR 2954832128,2954832135,GB 2954832136,2954832139,PL @@ -85247,22 +84836,18 @@ 2954832152,2954832159,GB 2954832160,2954832167,ES 2954832168,2954832175,DE -2954832176,2954832207,FR -2954832208,2954832211,PT -2954832212,2954832215,FR -2954832216,2954832219,DE -2954832220,2954832223,FR +2954832176,2954832223,FR 2954832224,2954832255,PL -2954832256,2954832335,FR +2954832256,2954832319,IE +2954832320,2954832335,FR 2954832336,2954832343,DE 2954832344,2954832347,CH 2954832348,2954832351,ES 2954832352,2954832383,FR 2954832384,2954832639,NL 2954832640,2954832643,DE -2954832644,2954832647,FR -2954832648,2954832655,GB -2954832656,2954832679,FR +2954832644,2954832671,FR +2954832672,2954832679,CH 2954832680,2954832687,PL 2954832688,2954832691,GB 2954832692,2954832695,FR @@ -85284,15 +84869,11 @@ 2954832864,2954832887,FR 2954832888,2954832891,PL 2954832892,2954832895,CH -2954832896,2954832927,FR -2954832928,2954832959,GB +2954832896,2954832959,FR 2954832960,2954832975,IT 2954832976,2954832991,FR 2954832992,2954833023,GB -2954833024,2954833047,FR -2954833048,2954833055,PT -2954833056,2954833063,IT -2954833064,2954833075,FR +2954833024,2954833075,FR 2954833076,2954833079,ES 2954833080,2954833087,PL 2954833088,2954833095,FR @@ -85306,26 +84887,22 @@ 2954833212,2954833215,PL 2954833216,2954833219,DE 2954833220,2954833223,IT -2954833224,2954833227,FR -2954833228,2954833231,CH +2954833224,2954833231,FR 2954833232,2954833247,ES 2954833248,2954833255,FR 2954833256,2954833259,PL 2954833260,2954833263,LT -2954833264,2954833271,FR +2954833264,2954833267,GB +2954833268,2954833271,FR 2954833272,2954833279,DE 2954833280,2954833283,PL -2954833284,2954833287,FR -2954833288,2954833295,IE -2954833296,2954833315,FR -2954833316,2954833319,CZ +2954833284,2954833315,FR +2954833316,2954833319,BE 2954833320,2954833343,FR 2954833344,2954833391,GB -2954833392,2954833395,FR -2954833396,2954833399,PL -2954833400,2954833415,FR +2954833392,2954833415,FR 2954833416,2954833419,ES -2954833420,2954833423,PL +2954833420,2954833423,FR 2954833424,2954833439,GB 2954833440,2954833443,FR 2954833444,2954833447,PL @@ -85336,9 +84913,7 @@ 2954833488,2954833503,BE 2954833504,2954833535,FR 2954833536,2954833543,PL -2954833544,2954833547,FR -2954833548,2954833551,PL -2954833552,2954833559,FR +2954833544,2954833559,FR 2954833560,2954833563,IT 2954833564,2954833567,FR 2954833568,2954833571,PL @@ -85346,8 +84921,7 @@ 2954833576,2954833583,PL 2954833584,2954833587,FR 2954833588,2954833591,IT -2954833592,2954833595,PL -2954833596,2954833599,FR +2954833592,2954833599,FR 2954833600,2954833603,NL 2954833604,2954833607,FR 2954833608,2954833611,PL @@ -85386,8 +84960,8 @@ 2954833960,2954833967,DE 2954833968,2954833983,ES 2954833984,2954833999,FR -2954834000,2954834011,PL -2954834012,2954834063,FR +2954834000,2954834007,PL +2954834008,2954834063,FR 2954834064,2954834067,PL 2954834068,2954834071,ES 2954834072,2954834079,PL @@ -85395,10 +84969,10 @@ 2954834096,2954834099,PL 2954834100,2954834103,CH 2954834104,2954834107,PL -2954834108,2954834111,ES -2954834112,2954834143,FR +2954834108,2954834143,FR 2954834144,2954834151,GB -2954834152,2954834223,FR +2954834152,2954834159,DE +2954834160,2954834223,FR 2954834224,2954834227,CH 2954834228,2954834231,FI 2954834232,2954834235,PL @@ -85406,16 +84980,14 @@ 2954834256,2954834271,ES 2954834272,2954834431,FR 2954834432,2954834435,PL -2954834436,2954834439,IE -2954834440,2954834447,FR +2954834436,2954834447,FR 2954834448,2954834451,PL 2954834452,2954834455,IT -2954834456,2954834463,NL -2954834464,2954834467,FR +2954834456,2954834467,FR 2954834468,2954834471,PL 2954834472,2954834491,ES 2954834492,2954834495,GB -2954834496,2954834503,IE +2954834496,2954834503,FR 2954834504,2954834511,IT 2954834512,2954834519,PL 2954834520,2954834523,GB @@ -85423,7 +84995,11 @@ 2954834528,2954834531,FR 2954834532,2954834535,PL 2954834536,2954834539,FR -2954834540,2954834575,PL +2954834540,2954834551,PL +2954834552,2954834555,FR +2954834556,2954834559,PL +2954834560,2954834563,FR +2954834564,2954834575,PL 2954834576,2954834579,FR 2954834580,2954834583,IT 2954834584,2954834603,FR @@ -85434,15 +85010,13 @@ 2954834624,2954834627,NL 2954834628,2954834631,DE 2954834632,2954834635,PL -2954834636,2954834643,FR -2954834644,2954834647,IE -2954834648,2954834651,FR +2954834636,2954834647,FR +2954834648,2954834651,PT 2954834652,2954834655,CH 2954834656,2954834663,DE 2954834664,2954834671,ES 2954834672,2954834675,NL -2954834676,2954834683,FR -2954834684,2954834687,GB +2954834676,2954834687,FR 2954834688,2954834695,PL 2954834696,2954834751,FR 2954834752,2954834755,PL @@ -85465,7 +85039,7 @@ 2954835232,2954835263,FR 2954835264,2954835279,DE 2954835280,2954835283,PL -2954835284,2954835287,ES +2954835284,2954835287,FR 2954835288,2954835295,IT 2954835296,2954835299,PL 2954835300,2954835303,LT @@ -85473,23 +85047,21 @@ 2954835308,2954835311,BE 2954835312,2954835327,FR 2954835328,2954835335,ES -2954835336,2954835343,CZ -2954835344,2954835351,FR +2954835336,2954835351,FR 2954835352,2954835355,ES 2954835356,2954835359,CH 2954835360,2954835363,BE 2954835364,2954835367,NL 2954835368,2954835371,IT 2954835372,2954835375,LT -2954835376,2954835391,CH +2954835376,2954835391,NL 2954835392,2954835399,DE 2954835400,2954835415,FR 2954835416,2954835419,CH 2954835420,2954835423,GB 2954835424,2954835439,IT 2954835440,2954835443,DE -2954835444,2954835447,FR -2954835448,2954835451,PL +2954835444,2954835451,FR 2954835452,2954835455,ES 2954835456,2954835471,PL 2954835472,2954835475,DE @@ -85501,17 +85073,18 @@ 2954835544,2954835547,ES 2954835548,2954835551,PL 2954835552,2954835607,FR -2954835608,2954835611,DE +2954835608,2954835611,BE 2954835612,2954835615,FR 2954835616,2954835619,DE 2954835620,2954835627,FR -2954835628,2954835635,ES -2954835636,2954835639,FR +2954835628,2954835631,ES +2954835632,2954835639,FR 2954835640,2954835643,DE -2954835644,2954835659,ES +2954835644,2954835647,FR +2954835648,2954835659,ES 2954835660,2954835663,FR -2954835664,2954835683,PL -2954835684,2954835699,FR +2954835664,2954835679,PL +2954835680,2954835699,FR 2954835700,2954835707,ES 2954835708,2954835711,BE 2954835712,2954836239,FR @@ -85528,21 +85101,23 @@ 2954836384,2954836423,FR 2954836424,2954836427,IT 2954836428,2954836431,GB -2954836432,2954836435,IT +2954836432,2954836435,FR 2954836436,2954836439,NL -2954836440,2954836447,GB +2954836440,2954836447,FR 2954836448,2954836479,CH 2954836480,2954836735,FR 2954836736,2954836743,ES 2954836744,2954836759,FR 2954836760,2954836767,CH -2954836768,2954836863,FR +2954836768,2954836771,FR +2954836772,2954836775,NL +2954836776,2954836863,FR 2954836864,2954836875,ES 2954836876,2954836879,FR 2954836880,2954836895,IT 2954836896,2954836927,FR 2954836928,2954836935,NL -2954836936,2954836943,PT +2954836936,2954836943,FR 2954836944,2954836951,NL 2954836952,2954836955,ES 2954836956,2954836959,GB @@ -85552,10 +85127,11 @@ 2954836980,2954836983,NL 2954836984,2954836991,GB 2954836992,2954837023,PT -2954837024,2954837027,NL +2954837024,2954837027,FR 2954837028,2954837031,ES 2954837032,2954837039,FR -2954837040,2954837055,PL +2954837040,2954837047,PL +2954837048,2954837055,FR 2954837056,2954837071,IT 2954837072,2954837075,ES 2954837076,2954837091,FR @@ -85564,10 +85140,7 @@ 2954837124,2954837127,ES 2954837128,2954837131,FR 2954837132,2954837135,FI -2954837136,2954837151,PL -2954837152,2954837215,FR -2954837216,2954837247,PL -2954837248,2954837271,FR +2954837136,2954837271,FR 2954837272,2954837275,DE 2954837276,2954837279,PL 2954837280,2954837311,FR @@ -85586,8 +85159,8 @@ 2954837424,2954837431,FR 2954837432,2954837435,GB 2954837436,2954837439,FR -2954837440,2954837471,GB -2954837472,2954837487,FR +2954837440,2954837479,GB +2954837480,2954837487,FR 2954837488,2954837495,CH 2954837496,2954837499,DE 2954837500,2954837503,ES @@ -85603,24 +85176,21 @@ 2954837584,2954837591,IE 2954837592,2954837599,PL 2954837600,2954837607,GB -2954837608,2954837615,BE -2954837616,2954837619,FR +2954837608,2954837619,FR 2954837620,2954837623,PL -2954837624,2954837631,GB -2954837632,2954837639,FR +2954837624,2954837639,FR 2954837640,2954837643,PL 2954837644,2954837647,GB -2954837648,2954837651,BE -2954837652,2954837663,FR +2954837648,2954837663,FR 2954837664,2954837667,IT -2954837668,2954837671,CZ -2954837672,2954837687,FR +2954837668,2954837687,FR 2954837688,2954837691,NL -2954837692,2954837791,FR +2954837692,2954837695,ES +2954837696,2954837791,FR 2954837792,2954837823,GB -2954837824,2954837827,BE +2954837824,2954837827,FR 2954837828,2954837831,DE -2954837832,2954837839,PL +2954837832,2954837839,FR 2954837840,2954837843,ES 2954837844,2954837851,FR 2954837852,2954837855,IT @@ -85628,7 +85198,7 @@ 2954837860,2954837863,DE 2954837864,2954837867,FR 2954837868,2954837871,DE -2954837872,2954837879,PL +2954837872,2954837879,PT 2954837880,2954837883,FR 2954837884,2954837887,ES 2954837888,2954837903,IT @@ -85648,12 +85218,11 @@ 2954838116,2954838119,CH 2954838120,2954838123,GB 2954838124,2954838127,IT -2954838128,2954838131,GB +2954838128,2954838131,FI 2954838132,2954838135,FR 2954838136,2954838139,ES 2954838140,2954838143,CH -2954838144,2954838151,FR -2954838152,2954838159,BE +2954838144,2954838159,BE 2954838160,2954838163,PT 2954838164,2954838167,GB 2954838168,2954838171,NL @@ -85668,14 +85237,12 @@ 2954838212,2954838215,IE 2954838216,2954838219,GB 2954838220,2954838223,ES -2954838224,2954838239,FR -2954838240,2954838255,PL +2954838224,2954838255,FR 2954838256,2954838263,IE -2954838264,2954838271,FR -2954838272,2954838279,IE +2954838264,2954838279,FR 2954838280,2954838287,IT 2954838288,2954838303,BE -2954838304,2954838319,PT +2954838304,2954838319,FR 2954838320,2954838327,PL 2954838328,2954838351,FR 2954838352,2954838367,IE @@ -85689,8 +85256,7 @@ 2954838416,2954838419,ES 2954838420,2954838423,FR 2954838424,2954838431,CZ -2954838432,2954838435,ES -2954838436,2954838447,FR +2954838432,2954838447,FR 2954838448,2954838455,NL 2954838456,2954838463,FR 2954838464,2954838467,ES @@ -85708,12 +85274,12 @@ 2954838560,2954838575,FR 2954838576,2954838583,IT 2954838584,2954838591,BE -2954838592,2954838599,DE +2954838592,2954838599,FR 2954838600,2954838607,GB 2954838608,2954838623,FR 2954838624,2954838639,IT 2954838640,2954838643,ES -2954838644,2954838647,DE +2954838644,2954838647,FR 2954838648,2954838655,PL 2954838656,2954838719,IE 2954838720,2954838751,FR @@ -85732,9 +85298,9 @@ 2954839000,2954839007,GB 2954839008,2954839039,FR 2954839040,2954839107,GB -2954839108,2954839111,BE +2954839108,2954839111,FR 2954839112,2954839119,ES -2954839120,2954839127,NL +2954839120,2954839127,FR 2954839128,2954839135,GB 2954839136,2954839167,DE 2954839168,2954839199,BE @@ -85745,8 +85311,7 @@ 2954839244,2954839247,ES 2954839248,2954839263,FR 2954839264,2954839267,PL -2954839268,2954839271,GB -2954839272,2954839303,FR +2954839268,2954839303,FR 2954839304,2954839311,ES 2954839312,2954839319,PL 2954839320,2954839343,GB @@ -85755,14 +85320,13 @@ 2954839352,2954839355,NL 2954839356,2954839359,ES 2954839360,2954839363,DE -2954839364,2954839367,IT +2954839364,2954839367,FR 2954839368,2954839371,ES 2954839372,2954839383,FR 2954839384,2954839391,PL 2954839392,2954839395,FR 2954839396,2954839399,ES -2954839400,2954839407,FR -2954839408,2954839423,IE +2954839400,2954839423,FR 2954839424,2954839471,GB 2954839472,2954839479,BE 2954839480,2954839483,DE @@ -85773,10 +85337,11 @@ 2954839528,2954839535,GB 2954839536,2954839543,FR 2954839544,2954839547,GB -2954839548,2954839551,ES +2954839548,2954839551,FR 2954839552,2954840063,DE -2954840064,2954840079,CZ -2954840080,2954840087,PL +2954840064,2954840079,ES +2954840080,2954840083,PL +2954840084,2954840087,IE 2954840088,2954840095,FR 2954840096,2954840103,ES 2954840104,2954840107,FR @@ -85790,12 +85355,11 @@ 2954840144,2954840147,ES 2954840148,2954840151,BE 2954840152,2954840155,IE -2954840156,2954840179,FR +2954840156,2954840175,FR +2954840176,2954840179,DE 2954840180,2954840183,IT -2954840184,2954840223,FR -2954840224,2954840239,PL -2954840240,2954840319,FR -2954840320,2954840447,GB +2954840184,2954840255,FR +2954840256,2954840447,GB 2954840448,2954840479,IE 2954840480,2954840499,FR 2954840500,2954840503,ES @@ -85810,10 +85374,10 @@ 2954840608,2954840611,CH 2954840612,2954840615,GB 2954840616,2954840619,NL -2954840620,2954840623,PL -2954840624,2954840639,ES +2954840620,2954840631,FR +2954840632,2954840639,ES 2954840640,2954840647,FR -2954840648,2954840651,DE +2954840648,2954840651,PT 2954840652,2954840655,PL 2954840656,2954840663,FR 2954840664,2954840671,PL @@ -85843,11 +85407,10 @@ 2954840908,2954840919,DE 2954840920,2954840927,FR 2954840928,2954840931,IT -2954840932,2954840939,FR -2954840940,2954840943,ES -2954840944,2954840959,FR +2954840932,2954840959,FR 2954840960,2954841023,IT -2954841024,2954841091,ES +2954841024,2954841087,ES +2954841088,2954841091,FR 2954841092,2954841095,PL 2954841096,2954841103,GB 2954841104,2954841111,ES @@ -85866,19 +85429,16 @@ 2954841264,2954841271,FR 2954841272,2954841275,IT 2954841276,2954841295,FR -2954841296,2954841299,ES -2954841300,2954841471,FR -2954841472,2954841503,PL -2954841504,2954841519,FR -2954841520,2954841523,PL +2954841296,2954841299,CH +2954841300,2954841303,BE +2954841304,2954841523,FR 2954841524,2954841527,DE 2954841528,2954841535,CH 2954841536,2954841543,GB 2954841544,2954841551,PL 2954841552,2954841555,FR 2954841556,2954841559,PL -2954841560,2954841563,FI -2954841564,2954841567,FR +2954841560,2954841567,FR 2954841568,2954841591,ES 2954841592,2954841595,FR 2954841596,2954841599,ES @@ -85897,7 +85457,7 @@ 2954841696,2954841699,IT 2954841700,2954841703,FR 2954841704,2954841711,BE -2954841712,2954841715,FR +2954841712,2954841715,GB 2954841716,2954841719,CZ 2954841720,2954841759,FR 2954841760,2954841775,DE @@ -85908,7 +85468,7 @@ 2954841796,2954841799,FR 2954841800,2954841803,PL 2954841804,2954841807,DE -2954841808,2954841811,PT +2954841808,2954841811,FR 2954841812,2954841815,GB 2954841816,2954841819,FR 2954841820,2954841823,GB @@ -85926,35 +85486,33 @@ 2954841940,2954841943,PL 2954841944,2954841951,DE 2954841952,2954841983,ES -2954841984,2954842031,FR -2954842032,2954842039,PL +2954841984,2954842035,FR +2954842036,2954842039,PL 2954842040,2954842043,DE -2954842044,2954842047,GB +2954842044,2954842047,PL 2954842048,2954842067,FR 2954842068,2954842071,GB -2954842072,2954842075,FR +2954842072,2954842075,IT 2954842076,2954842079,GB 2954842080,2954842095,FR 2954842096,2954842111,IE 2954842112,2954842239,FR 2954842240,2954842243,ES -2954842244,2954842247,BE +2954842244,2954842247,FR 2954842248,2954842251,ES 2954842252,2954842255,GB 2954842256,2954842263,FR 2954842264,2954842267,CZ 2954842268,2954842271,FR -2954842272,2954842275,IE +2954842272,2954842275,PL 2954842276,2954842279,FR 2954842280,2954842291,PL 2954842292,2954842295,CH 2954842296,2954842299,GB 2954842300,2954842303,ES -2954842304,2954842367,FR -2954842368,2954842375,NL -2954842376,2954842403,FR -2954842404,2954842407,IT -2954842408,2954842411,CZ +2954842304,2954842403,FR +2954842404,2954842407,PL +2954842408,2954842411,FR 2954842412,2954842415,GB 2954842416,2954842423,FR 2954842424,2954842427,ES @@ -85965,15 +85523,13 @@ 2954842452,2954842455,CZ 2954842456,2954842459,FR 2954842460,2954842463,FI -2954842464,2954842467,PL +2954842464,2954842467,NL 2954842468,2954842471,FR 2954842472,2954842479,GB 2954842480,2954842483,IT 2954842484,2954842487,PL 2954842488,2954842491,CH -2954842492,2954842559,FR -2954842560,2954842591,GB -2954842592,2954842623,FR +2954842492,2954842623,FR 2954842624,2954842655,DE 2954842656,2954842659,ES 2954842660,2954842663,FI @@ -85999,29 +85555,23 @@ 2954842816,2954842855,FR 2954842856,2954842863,DE 2954842864,2954842879,FR -2954842880,2954842911,PL +2954842880,2954842911,IE 2954842912,2954842919,IT -2954842920,2954842927,FR -2954842928,2954842935,BE -2954842936,2954842943,IE -2954842944,2954842951,CH +2954842920,2954842951,FR 2954842952,2954842955,PL -2954842956,2954842959,IT +2954842956,2954842959,ES 2954842960,2954843007,FR 2954843008,2954843011,DE -2954843012,2954843015,FR -2954843016,2954843023,LT -2954843024,2954843027,DE -2954843028,2954843035,FR +2954843012,2954843035,FR 2954843036,2954843039,IT 2954843040,2954843043,FR 2954843044,2954843047,GB 2954843048,2954843055,FR 2954843056,2954843071,PL 2954843072,2954843103,FR -2954843104,2954843135,NL +2954843104,2954843135,IE 2954843136,2954843183,FR -2954843184,2954843187,NL +2954843184,2954843187,ES 2954843188,2954843191,GB 2954843192,2954843195,NL 2954843196,2954843199,ES @@ -86031,11 +85581,11 @@ 2954843276,2954843311,FR 2954843312,2954843315,ES 2954843316,2954843319,FR -2954843320,2954843323,CH +2954843320,2954843323,GB 2954843324,2954843327,NL 2954843328,2954843335,IT 2954843336,2954843339,GB -2954843340,2954843343,NL +2954843340,2954843343,PT 2954843344,2954843347,FR 2954843348,2954843351,PL 2954843352,2954843375,FR @@ -86043,16 +85593,13 @@ 2954843392,2954843407,FR 2954843408,2954843415,CH 2954843416,2954843419,BE -2954843420,2954843423,FR -2954843424,2954843439,NL -2954843440,2954843459,FR +2954843420,2954843459,FR 2954843460,2954843463,PL 2954843464,2954843479,FR 2954843480,2954843487,GB -2954843488,2954843495,DE -2954843496,2954843503,FR +2954843488,2954843503,FR 2954843504,2954843507,PT -2954843508,2954843511,DE +2954843508,2954843511,FR 2954843512,2954843519,PL 2954843520,2954843591,FR 2954843592,2954843595,BE @@ -86065,7 +85612,8 @@ 2954843632,2954843639,CH 2954843640,2954843643,IE 2954843644,2954843647,DE -2954843648,2954843715,FR +2954843648,2954843679,GB +2954843680,2954843715,FR 2954843716,2954843719,GB 2954843720,2954843723,BE 2954843724,2954843727,DE @@ -86085,11 +85633,9 @@ 2954843900,2954844031,FR 2954844032,2954844039,PL 2954844040,2954844047,GB -2954844048,2954844063,PL +2954844048,2954844063,FR 2954844064,2954844095,BE -2954844096,2954844103,FR -2954844104,2954844111,PT -2954844112,2954844119,FR +2954844096,2954844119,FR 2954844120,2954844123,PL 2954844124,2954844127,IT 2954844128,2954844143,FR @@ -86100,7 +85646,7 @@ 2954844176,2954844179,DE 2954844180,2954844183,NL 2954844184,2954844187,FR -2954844188,2954844191,ES +2954844188,2954844191,CH 2954844192,2954844223,IE 2954844224,2954844263,FR 2954844264,2954844267,IE @@ -86111,14 +85657,13 @@ 2954844288,2954844415,FR 2954844416,2954844419,IT 2954844420,2954844423,ES -2954844424,2954844431,FR -2954844432,2954844447,BE +2954844424,2954844447,FR 2954844448,2954844455,CH 2954844456,2954844463,FR 2954844464,2954844467,ES 2954844468,2954844471,PL 2954844472,2954844479,NL -2954844480,2954844483,FR +2954844480,2954844483,ES 2954844484,2954844487,GB 2954844488,2954844499,FR 2954844500,2954844503,PL @@ -86133,13 +85678,13 @@ 2954844604,2954844607,CZ 2954844608,2954844687,FR 2954844688,2954844703,CH -2954844704,2954844711,PL -2954844712,2954844719,FR +2954844704,2954844707,PL +2954844708,2954844711,FR +2954844712,2954844719,IT 2954844720,2954844723,ES 2954844724,2954844731,FR 2954844732,2954844735,PL -2954844736,2954844767,IT -2954844768,2954844799,FR +2954844736,2954844799,FR 2954844800,2954844815,ES 2954844816,2954844819,GB 2954844820,2954844927,FR @@ -86149,9 +85694,7 @@ 2954844948,2954844951,IT 2954844952,2954844959,FR 2954844960,2954844967,PL -2954844968,2954844971,FR -2954844972,2954844975,PL -2954844976,2954844991,FR +2954844968,2954844991,FR 2954844992,2954844995,PL 2954844996,2954844999,FR 2954845000,2954845003,NL @@ -86164,7 +85707,7 @@ 2954845060,2954845063,FR 2954845064,2954845067,NL 2954845068,2954845071,PL -2954845072,2954845079,BE +2954845072,2954845079,CZ 2954845080,2954845083,DE 2954845084,2954845087,FR 2954845088,2954845091,FI @@ -86177,18 +85720,18 @@ 2954845140,2954845143,FR 2954845144,2954845147,IT 2954845148,2954845151,GB -2954845152,2954845159,PL +2954845152,2954845159,FR 2954845160,2954845167,GB -2954845168,2954845183,BE +2954845168,2954845183,FR 2954845184,2954845199,PL 2954845200,2954845207,NL 2954845208,2954845211,ES 2954845212,2954845215,CH 2954845216,2954845223,FR 2954845224,2954845231,NL -2954845232,2954845239,PT +2954845232,2954845239,FR 2954845240,2954845247,NL -2954845248,2954845263,CH +2954845248,2954845263,FR 2954845264,2954845279,PL 2954845280,2954845283,CZ 2954845284,2954845287,GB @@ -86196,11 +85739,10 @@ 2954845292,2954845295,NL 2954845296,2954845299,FR 2954845300,2954845303,ES -2954845304,2954845311,PL +2954845304,2954845307,FR +2954845308,2954845311,PL 2954845312,2954845315,CH -2954845316,2954845319,FR -2954845320,2954845327,LT -2954845328,2954845343,FR +2954845316,2954845343,FR 2954845344,2954845359,FI 2954845360,2954845363,FR 2954845364,2954845367,ES @@ -86211,17 +85753,12 @@ 2954845440,2954845951,GB 2954845952,2954845967,ES 2954845968,2954845999,FR -2954846000,2954846015,PT +2954846000,2954846015,IE 2954846016,2954846047,FR 2954846048,2954846055,NL -2954846056,2954846059,FR -2954846060,2954846063,GB -2954846064,2954846079,NL -2954846080,2954846087,FR +2954846056,2954846087,FR 2954846088,2954846095,DE -2954846096,2954846099,PL -2954846100,2954846103,NL -2954846104,2954846107,FR +2954846096,2954846107,FR 2954846108,2954846111,GB 2954846112,2954846119,FR 2954846120,2954846123,IE @@ -86238,9 +85775,7 @@ 2954854416,2954854431,GB 2954854432,2954854463,ES 2954854464,2954854471,LT -2954854472,2954854475,FR -2954854476,2954854479,PL -2954854480,2954854495,FR +2954854472,2954854495,FR 2954854496,2954854511,IT 2954854512,2954854527,ES 2954854528,2954854559,FR @@ -86249,8 +85784,8 @@ 2954854620,2954854623,ES 2954854624,2954854655,FR 2954854656,2954854659,PL -2954854660,2954854663,PT -2954854664,2954854667,FI +2954854660,2954854663,FR +2954854664,2954854667,ES 2954854668,2954854687,FR 2954854688,2954854691,PL 2954854692,2954854695,IT @@ -86265,12 +85800,12 @@ 2954854856,2954854863,FR 2954854864,2954854867,PL 2954854868,2954854871,GB -2954854872,2954854879,ES +2954854872,2954854875,PL +2954854876,2954854879,ES 2954854880,2954854895,IT 2954854896,2954854899,FR 2954854900,2954854903,PL -2954854904,2954854919,FR -2954854920,2954854927,GB +2954854904,2954854927,FR 2954854928,2954854943,FI 2954854944,2954855011,FR 2954855012,2954855015,CZ @@ -86285,7 +85820,7 @@ 2954855056,2954855059,FR 2954855060,2954855063,ES 2954855064,2954855067,BE -2954855068,2954855071,ES +2954855068,2954855071,PT 2954855072,2954855075,FR 2954855076,2954855079,DE 2954855080,2954855087,FR @@ -86304,7 +85839,7 @@ 2954855440,2954855455,LT 2954855456,2954855479,FR 2954855480,2954855495,IT -2954855496,2954855503,GB +2954855496,2954855503,FR 2954855504,2954855507,IT 2954855508,2954855511,DE 2954855512,2954855515,FR @@ -86328,21 +85863,19 @@ 2954855652,2954855655,GB 2954855656,2954855659,FR 2954855660,2954855663,DE -2954855664,2954855679,FR -2954855680,2954855695,NL -2954855696,2954855703,FR +2954855664,2954855703,FR 2954855704,2954855707,ES 2954855708,2954855743,PL 2954855744,2954855807,FR 2954855808,2954855871,IE -2954855872,2954855879,PL +2954855872,2954855879,BE 2954855880,2954855887,ES 2954855888,2954855903,FR 2954855904,2954855919,PL 2954855920,2954855999,FR 2954856000,2954856071,PL 2954856072,2954856075,NL -2954856076,2954856079,FR +2954856076,2954856079,PT 2954856080,2954856083,DE 2954856084,2954856087,FR 2954856088,2954856095,ES @@ -86362,8 +85895,8 @@ 2954856548,2954856551,FR 2954856552,2954856559,IE 2954856560,2954856563,ES -2954856564,2954856567,LT -2954856568,2954856571,FR +2954856564,2954856567,PT +2954856568,2954856571,CH 2954856572,2954856575,BE 2954856576,2954856583,ES 2954856584,2954856607,FR @@ -86386,9 +85919,7 @@ 2954856700,2954856959,PL 2954856960,2954856975,FR 2954856976,2954856979,PL -2954856980,2954856983,IE -2954856984,2954856987,PL -2954856988,2954856991,FR +2954856980,2954856991,FR 2954856992,2954856995,BE 2954856996,2954856999,ES 2954857000,2954857007,PL @@ -86419,8 +85950,7 @@ 2954857696,2954857699,IE 2954857700,2954857703,ES 2954857704,2954857707,PL -2954857708,2954857711,ES -2954857712,2954857727,FR +2954857708,2954857727,FR 2954857728,2954857743,FI 2954857744,2954857755,FR 2954857756,2954857759,ES @@ -86439,7 +85969,7 @@ 2954858048,2954858051,ES 2954858052,2954858059,FR 2954858060,2954858063,PL -2954858064,2954858079,IE +2954858064,2954858079,FR 2954858080,2954858111,ES 2954858112,2954858143,DE 2954858144,2954858175,ES @@ -86456,8 +85986,8 @@ 2954858376,2954858379,ES 2954858380,2954858383,PL 2954858384,2954858415,FR -2954858416,2954858423,ES -2954858424,2954858427,FR +2954858416,2954858419,ES +2954858420,2954858427,FR 2954858428,2954858431,BE 2954858432,2954858439,GB 2954858440,2954858443,FR @@ -86470,11 +86000,10 @@ 2954858492,2954858495,NL 2954858496,2954858751,ES 2954858752,2954858815,IE -2954858816,2954858819,ES +2954858816,2954858819,PT 2954858820,2954858823,FR 2954858824,2954858831,GB -2954858832,2954858839,PT -2954858840,2954858843,FR +2954858832,2954858843,FR 2954858844,2954858847,PL 2954858848,2954858863,FR 2954858864,2954858871,NL @@ -86492,24 +86021,21 @@ 2954859044,2954859047,DE 2954859048,2954859071,FR 2954859072,2954859079,PL -2954859080,2954859083,IE -2954859084,2954859087,FR +2954859080,2954859087,FR 2954859088,2954859103,BE 2954859104,2954859123,FR 2954859124,2954859127,NL -2954859128,2954859167,FR -2954859168,2954859199,IE -2954859200,2954859239,FR -2954859240,2954859243,ES +2954859128,2954859239,FR +2954859240,2954859243,PL 2954859244,2954859267,FR 2954859268,2954859271,ES 2954859272,2954859275,PL 2954859276,2954859279,ES 2954859280,2954859311,FR 2954859312,2954859319,ES -2954859320,2954859323,FR -2954859324,2954859327,CZ -2954859328,2954859391,FR +2954859320,2954859327,FR +2954859328,2954859343,BE +2954859344,2954859391,FR 2954859392,2954859423,IT 2954859424,2954859455,GB 2954859456,2954859487,NL @@ -86520,18 +86046,18 @@ 2954859552,2954859559,FR 2954859560,2954859575,IT 2954859576,2954859583,DE -2954859584,2954859615,IE +2954859584,2954859615,PT 2954859616,2954859647,FR -2954859648,2954859655,ES +2954859648,2954859655,PL 2954859656,2954859663,NL 2954859664,2954859679,FR 2954859680,2954859695,PL 2954859696,2954859711,FR 2954859712,2954859727,PL 2954859728,2954859775,FR -2954859776,2954859807,PL +2954859776,2954859807,IE 2954859808,2954859823,GB -2954859824,2954859827,ES +2954859824,2954859827,CZ 2954859828,2954859831,PL 2954859832,2954859839,ES 2954859840,2954859903,FR @@ -86556,27 +86082,25 @@ 2954860172,2954860175,DE 2954860176,2954860179,IT 2954860180,2954860187,FR -2954860188,2954860191,ES +2954860188,2954860191,IE 2954860192,2954860223,FR -2954860224,2954860227,ES +2954860224,2954860227,PT 2954860228,2954860231,PL 2954860232,2954860239,FR 2954860240,2954860243,NL 2954860244,2954860247,ES 2954860248,2954860259,FR 2954860260,2954860263,PL -2954860264,2954860271,IE -2954860272,2954860319,FR +2954860264,2954860319,FR 2954860320,2954860327,DE -2954860328,2954860335,FR +2954860328,2954860335,BE 2954860336,2954860351,CH 2954860352,2954860415,FR -2954860416,2954860423,PL +2954860416,2954860423,GB 2954860424,2954860439,FR 2954860440,2954860443,CH -2954860444,2954860447,NL -2954860448,2954860455,FR -2954860456,2954860459,PL +2954860444,2954860447,GB +2954860448,2954860459,FR 2954860460,2954860463,GB 2954860464,2954860479,DE 2954860480,2954860483,PL @@ -86588,12 +86112,11 @@ 2954860536,2954860539,GB 2954860540,2954860559,ES 2954860560,2954860575,FR -2954860576,2954860607,IT -2954860608,2954860671,IE -2954860672,2954860687,FR +2954860576,2954860607,PT +2954860608,2954860687,FR 2954860688,2954860695,GB 2954860696,2954860703,CZ -2954860704,2954860767,PT +2954860704,2954860767,FR 2954860768,2954860783,ES 2954860784,2954860791,PL 2954860792,2954860799,IT @@ -86615,7 +86138,7 @@ 2954861144,2954861147,DE 2954861148,2954861151,FR 2954861152,2954861167,GB -2954861168,2954861183,FR +2954861168,2954861183,BE 2954861184,2954861191,IT 2954861192,2954861195,FR 2954861196,2954861199,CZ @@ -86624,37 +86147,36 @@ 2954861232,2954861239,PL 2954861240,2954861247,FR 2954861248,2954861311,PL -2954861312,2954861323,FR +2954861312,2954861315,FR +2954861316,2954861319,GB +2954861320,2954861323,FR 2954861324,2954861327,IT 2954861328,2954861343,NL 2954861344,2954861359,FR 2954861360,2954861363,IE 2954861364,2954861367,FR 2954861368,2954861371,ES -2954861372,2954861375,PT +2954861372,2954861375,FR 2954861376,2954861407,DE -2954861408,2954861431,FR -2954861432,2954861435,ES -2954861436,2954861567,FR +2954861408,2954861567,FR 2954861568,2954861571,ES 2954861572,2954861575,IT 2954861576,2954861591,FR 2954861592,2954861595,PL -2954861596,2954861599,NL +2954861596,2954861599,GB 2954861600,2954861619,PL 2954861620,2954861631,IT 2954861632,2954861635,NL -2954861636,2954861639,GB +2954861636,2954861639,FR 2954861640,2954861647,PL 2954861648,2954861655,GB -2954861656,2954861663,FR -2954861664,2954861667,DE +2954861656,2954861667,FR 2954861668,2954861671,ES 2954861672,2954861675,NL 2954861676,2954861683,PL 2954861684,2954861687,IT 2954861688,2954861691,GB -2954861692,2954861695,NL +2954861692,2954861695,FR 2954861696,2954861727,GB 2954861728,2954861751,FR 2954861752,2954861767,GB @@ -86677,20 +86199,19 @@ 2954861928,2954861935,DE 2954861936,2954861939,FR 2954861940,2954861943,DE -2954861944,2954861955,FR +2954861944,2954861947,FR +2954861948,2954861951,CH +2954861952,2954861955,FR 2954861956,2954861967,GB 2954861968,2954861975,ES 2954861976,2954861983,DE 2954861984,2954861987,FR 2954861988,2954861991,BE -2954861992,2954861995,PL -2954861996,2954861999,FR +2954861992,2954861999,FR 2954862000,2954862015,NL 2954862016,2954862047,FR -2954862048,2954862063,IT -2954862064,2954862079,FI -2954862080,2954862143,FR -2954862144,2954862207,ES +2954862048,2954862079,PT +2954862080,2954862207,FR 2954862208,2954862211,PL 2954862212,2954862215,PT 2954862216,2954862219,BE @@ -86702,15 +86223,16 @@ 2954862272,2954862303,FI 2954862304,2954862335,FR 2954862336,2954862367,PL -2954862368,2954862371,FR -2954862372,2954862375,CH +2954862368,2954862375,FR 2954862376,2954862379,NL -2954862380,2954862399,FR -2954862400,2954862415,GB -2954862416,2954862419,PL +2954862380,2954862383,FR +2954862384,2954862391,ES +2954862392,2954862415,FR +2954862416,2954862419,DE 2954862420,2954862423,FR 2954862424,2954862431,PL -2954862432,2954862471,FR +2954862432,2954862467,FR +2954862468,2954862471,PL 2954862472,2954862479,DE 2954862480,2954862483,ES 2954862484,2954862487,FR @@ -86726,7 +86248,7 @@ 2954862572,2954862575,FR 2954862576,2954862579,PL 2954862580,2954862587,FR -2954862588,2954862591,ES +2954862588,2954862591,PL 2954862592,2954863615,FR 2954863616,2954864639,DE 2954864640,2954865663,IT @@ -86744,14 +86266,12 @@ 2954870864,2954870867,GB 2954870868,2954870875,ES 2954870876,2954870879,PL -2954870880,2954870895,IE -2954870896,2954870903,FR +2954870880,2954870903,FR 2954870904,2954870907,PL 2954870908,2954870911,ES 2954870912,2954871039,FR 2954871040,2954871295,GB -2954871296,2954871551,FR -2954871552,2954871583,DE +2954871296,2954871583,FR 2954871584,2954871599,GB 2954871600,2954871603,FR 2954871604,2954871607,PL @@ -86795,17 +86315,19 @@ 2954872336,2954872351,FR 2954872352,2954872383,GB 2954872384,2954872415,FR -2954872416,2954872419,ES +2954872416,2954872419,PT 2954872420,2954872435,PL -2954872436,2954872447,FR -2954872448,2954872479,PL -2954872480,2954872551,FR +2954872436,2954872455,FR +2954872456,2954872479,PL +2954872480,2954872543,FR +2954872544,2954872547,PT +2954872548,2954872551,FR 2954872552,2954872555,GB 2954872556,2954872559,FR 2954872560,2954872567,PL 2954872568,2954872571,ES 2954872572,2954872587,FR -2954872588,2954872591,DE +2954872588,2954872591,PT 2954872592,2954872607,IT 2954872608,2954872639,ES 2954872640,2954872671,BE @@ -86814,13 +86336,11 @@ 2954872680,2954872683,FR 2954872684,2954872687,DE 2954872688,2954872703,CZ -2954872704,2954872831,DE -2954872832,2954872959,GB +2954872704,2954872959,GB 2954872960,2954872967,CH 2954872968,2954872975,FR 2954872976,2954872983,GB -2954872984,2954872987,FR -2954872988,2954872991,LT +2954872984,2954872991,FR 2954872992,2954873023,NL 2954873024,2954873087,BE 2954873088,2954873343,GB @@ -86834,14 +86354,13 @@ 2954873376,2954873391,FR 2954873392,2954873407,PL 2954873408,2954873447,FR -2954873448,2954873455,PL +2954873448,2954873451,ES +2954873452,2954873455,PL 2954873456,2954873459,FR 2954873460,2954873463,NL 2954873464,2954873471,FR 2954873472,2954873503,PT -2954873504,2954873583,FR -2954873584,2954873591,PT -2954873592,2954873599,FR +2954873504,2954873599,FR 2954873600,2954873631,DE 2954873632,2954873635,NL 2954873636,2954873651,FR @@ -86874,7 +86393,8 @@ 2954873920,2954873983,IE 2954873984,2954874111,GB 2954874112,2954874119,PT -2954874120,2954874127,PL +2954874120,2954874123,PL +2954874124,2954874127,FR 2954874128,2954874135,ES 2954874136,2954874139,FR 2954874140,2954874143,PT @@ -86909,7 +86429,7 @@ 2954874632,2954874635,CZ 2954874636,2954874639,FR 2954874640,2954874647,ES -2954874648,2954874651,FR +2954874648,2954874651,CZ 2954874652,2954874655,PL 2954874656,2954874671,FR 2954874672,2954874675,PL @@ -86918,7 +86438,7 @@ 2954874688,2954874719,PT 2954874720,2954874751,FI 2954874752,2954874799,IE -2954874800,2954874815,GB +2954874800,2954874815,FR 2954874816,2954874819,DE 2954874820,2954874823,GB 2954874824,2954874827,FR @@ -86936,14 +86456,14 @@ 2954874944,2954874975,IE 2954874976,2954874979,FR 2954874980,2954874983,DE -2954874984,2954874987,GB +2954874984,2954874987,FR 2954874988,2954874991,PL 2954874992,2954875007,IE 2954875008,2954875023,FR 2954875024,2954875027,ES 2954875028,2954875031,FR 2954875032,2954875039,PL -2954875040,2954875043,PT +2954875040,2954875043,FR 2954875044,2954875047,PL 2954875048,2954875051,FR 2954875052,2954875055,NL @@ -86955,8 +86475,8 @@ 2954875096,2954875099,GB 2954875100,2954875103,PL 2954875104,2954875135,NL -2954875136,2954875167,PT -2954875168,2954875183,IT +2954875136,2954875167,FR +2954875168,2954875183,CZ 2954875184,2954875191,GB 2954875192,2954875199,FR 2954875200,2954875203,PL @@ -86988,8 +86508,8 @@ 2954875552,2954875583,PL 2954875584,2954875587,ES 2954875588,2954875591,IT -2954875592,2954875599,FR -2954875600,2954875615,PT +2954875592,2954875607,FR +2954875608,2954875615,PT 2954875616,2954875623,PL 2954875624,2954875627,DE 2954875628,2954875631,ES @@ -87002,16 +86522,14 @@ 2954875660,2954875663,PT 2954875664,2954875671,ES 2954875672,2954875687,FR -2954875688,2954875691,IT +2954875688,2954875691,DE 2954875692,2954875695,FR 2954875696,2954875703,ES 2954875704,2954875707,PL 2954875708,2954875711,ES 2954875712,2954875775,IE 2954875776,2954875779,BE -2954875780,2954875783,FR -2954875784,2954875787,IT -2954875788,2954875791,FR +2954875780,2954875791,FR 2954875792,2954875807,PL 2954875808,2954875839,IT 2954875840,2954875871,FR @@ -87022,8 +86540,7 @@ 2954875904,2954875907,IT 2954875908,2954875911,CH 2954875912,2954875919,ES -2954875920,2954875935,FR -2954875936,2954875951,PL +2954875920,2954875951,FR 2954875952,2954875999,IE 2954876000,2954876031,BE 2954876032,2954876039,FR @@ -87044,8 +86561,7 @@ 2954876240,2954876243,ES 2954876244,2954876247,PL 2954876248,2954876255,ES -2954876256,2954876287,IE -2954876288,2954876351,FR +2954876256,2954876351,FR 2954876352,2954876383,ES 2954876384,2954876391,FR 2954876392,2954876395,DE @@ -87054,8 +86570,7 @@ 2954876412,2954876423,DE 2954876424,2954876431,PL 2954876432,2954876435,PT -2954876436,2954876439,GB -2954876440,2954876447,FR +2954876436,2954876447,FR 2954876448,2954876451,DE 2954876452,2954876455,FR 2954876456,2954876459,PL @@ -87073,22 +86588,18 @@ 2954876648,2954876655,FR 2954876656,2954876671,BE 2954876672,2954876703,PT -2954876704,2954876719,FR -2954876720,2954876727,GB +2954876704,2954876727,FR 2954876728,2954876731,PL 2954876732,2954876735,DE 2954876736,2954876767,IT -2954876768,2954876783,FR -2954876784,2954876791,IE -2954876792,2954876795,FR +2954876768,2954876795,FR 2954876796,2954876799,DE 2954876800,2954876863,IE 2954876864,2954876891,PL 2954876892,2954876895,FR 2954876896,2954876899,GB 2954876900,2954876903,IT -2954876904,2954876911,PT -2954876912,2954876959,FR +2954876904,2954876959,FR 2954876960,2954876975,DE 2954876976,2954876983,PL 2954876984,2954876987,FR @@ -87104,17 +86615,15 @@ 2954877060,2954877063,GB 2954877064,2954877071,DE 2954877072,2954877087,CH -2954877088,2954877103,DE +2954877088,2954877103,FR 2954877104,2954877111,PL -2954877112,2954877119,IE +2954877112,2954877119,FR 2954877120,2954877151,ES 2954877152,2954877159,NL 2954877160,2954877163,PL 2954877164,2954877167,FI 2954877168,2954877183,DE -2954877184,2954877455,FR -2954877456,2954877459,PT -2954877460,2954877463,FR +2954877184,2954877463,FR 2954877464,2954877471,DE 2954877472,2954877503,FR 2954877504,2954877519,ES @@ -87124,14 +86633,13 @@ 2954877536,2954877539,IT 2954877540,2954877547,FR 2954877548,2954877551,PL -2954877552,2954877583,FR -2954877584,2954877587,FI -2954877588,2954877591,PL +2954877552,2954877591,FR 2954877592,2954877595,DE 2954877596,2954877599,PT 2954877600,2954877615,PL 2954877616,2954877631,NL -2954877632,2954877651,FR +2954877632,2954877647,FR +2954877648,2954877651,IE 2954877652,2954877655,PT 2954877656,2954877663,FR 2954877664,2954877667,GB @@ -87153,7 +86661,8 @@ 2954878048,2954878063,FR 2954878064,2954878079,IT 2954878080,2954878095,FR -2954878096,2954878111,ES +2954878096,2954878103,PT +2954878104,2954878111,ES 2954878112,2954878143,PT 2954878144,2954878207,FR 2954878208,2954878463,IE @@ -87161,7 +86670,7 @@ 2954878472,2954878475,FR 2954878476,2954878479,GB 2954878480,2954878495,NL -2954878496,2954878499,GB +2954878496,2954878499,ES 2954878500,2954878511,FR 2954878512,2954878527,BE 2954878528,2954878543,FR @@ -87191,7 +86700,7 @@ 2954878784,2954878847,IE 2954878848,2954878855,FR 2954878856,2954878863,IE -2954878864,2954878871,FR +2954878864,2954878871,DE 2954878872,2954878875,PL 2954878876,2954878879,PT 2954878880,2954878883,ES @@ -87200,7 +86709,8 @@ 2954878892,2954878895,GB 2954878896,2954878899,DE 2954878900,2954878903,GB -2954878904,2954878911,PL +2954878904,2954878907,FR +2954878908,2954878911,PL 2954878912,2954878915,DE 2954878916,2954878919,PL 2954878920,2954878931,FR @@ -87263,7 +86773,7 @@ 2956259328,2956261375,DE 2956261376,2956263423,ES 2956263424,2956296191,TR -2956296192,2956328959,RU +2956312576,2956328959,RU 2956328960,2956460031,TR 2956460032,2956468223,RU 2956468224,2956470271,LV @@ -87274,11 +86784,11 @@ 2956492800,2956496895,CH 2956496896,2956500991,IR 2956500992,2956503039,NL -2956503040,2956504063,RU -2956504064,2956504319,CH +2956503040,2956504063,CY +2956504064,2956504319,NL 2956504320,2956504383,NL 2956504384,2956504575,RU -2956504576,2956504831,CH +2956504576,2956504831,NL 2956504832,2956505087,GB 2956505088,2956506111,NL 2956506112,2956506623,GB @@ -87999,7 +87509,9 @@ 2967345152,2967347199,ES 2967347200,2967347455,HR 2967347456,2967347460,GB -2967347461,2967351295,HR +2967347461,2967347588,HR +2967347589,2967347711,GB +2967347712,2967351295,HR 2967351296,2967355391,FR 2967355392,2967371775,RO 2967371776,2967388159,KZ @@ -88021,7 +87533,9 @@ 2967601152,2967633919,HU 2967633920,2967666687,RU 2967666688,2967699455,TR -2967699456,2967703551,GB +2967699456,2967702143,GB +2967702144,2967702271,EU +2967702272,2967703551,GB 2967703552,2967707647,ES 2967707648,2967709695,PL 2967709696,2967711743,IT @@ -88061,34 +87575,23 @@ 2968647984,2968647999,GB 2968648000,2968648079,FR 2968648080,2968648191,GB -2968648192,2968648223,FR -2968648224,2968648255,CH -2968648256,2968648287,GB -2968648288,2968648319,BE -2968648320,2968648383,FR -2968648384,2968648447,GB -2968648448,2968648479,FR -2968648480,2968648511,CH -2968648512,2968648543,GB -2968648544,2968648575,BE -2968648576,2968648639,FR -2968648640,2968648703,GB -2968648704,2968648751,FR +2968648192,2968648751,FR 2968648752,2968648831,GB 2968648832,2968648895,FR 2968648896,2968648959,GB 2968648960,2968649007,FR 2968649008,2968649087,GB 2968649088,2968649151,FR -2968649152,2968649719,GB -2968649720,2968649727,FR +2968649152,2968649727,GB 2968649728,2969042943,IT 2969042944,2969567231,GB 2969567232,2984247295,BR 2984247296,2984771583,MX 2986344448,2987393023,DE 2987393024,2987397119,IM -2987397120,2987401215,LV +2987397120,2987399935,LV +2987399936,2987400191,LV +2987400192,2987401215,LV 2987401216,2987405311,LT 2987405312,2987409407,DE 2987409408,2987413503,NO @@ -88130,7 +87633,8 @@ 2987520000,2987524095,GB 2987524096,2987528191,RU 2987528192,2987529215,US -2987529216,2987532287,NL +2987529216,2987530239,NL +2987530240,2987532287,US 2987532288,2987536383,MD 2987536384,2987540479,FR 2987540480,2987544575,SK @@ -88246,9 +87750,7 @@ 2987769856,2987771903,FI 2987771904,2987773951,IT 2987773952,2987775999,FR -2987776000,2987776663,NL -2987776664,2987776671,BE -2987776672,2987778047,NL +2987776000,2987778047,NL 2987778048,2987780095,CH 2987780096,2987782143,GB 2987782144,2987784191,EE @@ -88336,15 +87838,15 @@ 2988441816,2988441819,PT 2988441820,2988441839,FR 2988441840,2988441843,IE -2988441844,2988441855,FR +2988441844,2988441847,FR +2988441848,2988441855,NL 2988441856,2988441887,IT 2988441888,2988441895,FR 2988441896,2988441899,PL 2988441900,2988441903,ES 2988441904,2988441911,IT 2988441912,2988441915,FR -2988441916,2988441919,ES -2988441920,2988441923,GB +2988441916,2988441923,ES 2988441924,2988441931,PL 2988441932,2988441935,BE 2988441936,2988441939,FR @@ -88359,8 +87861,7 @@ 2988441984,2988441991,GB 2988441992,2988441995,ES 2988441996,2988441999,FI -2988442000,2988442003,GB -2988442004,2988442095,FR +2988442000,2988442095,FR 2988442096,2988442099,IT 2988442100,2988442399,FR 2988442400,2988442431,NL @@ -88369,8 +87870,7 @@ 2988442448,2988442463,GB 2988442464,2988442495,FR 2988442496,2988442503,PL -2988442504,2988442507,FR -2988442508,2988442511,NL +2988442504,2988442511,FR 2988442512,2988442519,ES 2988442520,2988442527,DE 2988442528,2988442559,FR @@ -88378,18 +87878,18 @@ 2988442576,2988442587,FR 2988442588,2988442591,ES 2988442592,2988442607,PL -2988442608,2988442623,ES -2988442624,2988442639,PL +2988442608,2988442639,FR 2988442640,2988442647,PT 2988442648,2988442651,DE 2988442652,2988442655,GB -2988442656,2988442671,PL +2988442656,2988442671,FR 2988442672,2988442675,GB -2988442676,2988442687,FR -2988442688,2988442695,PL +2988442676,2988442679,CH +2988442680,2988442695,FR 2988442696,2988442703,PT 2988442704,2988442751,FR -2988442752,2988442847,PT +2988442752,2988442783,PT +2988442784,2988442847,FR 2988442848,2988442855,PL 2988442856,2988442863,FR 2988442864,2988442871,BE @@ -88409,7 +87909,7 @@ 2988443000,2988443007,GB 2988443008,2988443023,PT 2988443024,2988443027,CZ -2988443028,2988443031,BE +2988443028,2988443031,FR 2988443032,2988443035,GB 2988443036,2988443039,IT 2988443040,2988443055,PL @@ -88419,19 +87919,16 @@ 2988443112,2988443119,ES 2988443120,2988443135,PL 2988443136,2988443391,GB -2988443392,2988443407,DE -2988443408,2988443439,FR +2988443392,2988443439,FR 2988443440,2988443443,CZ 2988443444,2988443447,DE 2988443448,2988443487,FR 2988443488,2988443519,GB -2988443520,2988443539,FR -2988443540,2988443547,ES +2988443520,2988443543,FR +2988443544,2988443547,ES 2988443548,2988443551,IT 2988443552,2988443555,CH -2988443556,2988443559,PL -2988443560,2988443563,GB -2988443564,2988443567,PL +2988443556,2988443567,PL 2988443568,2988443647,FR 2988443648,2988443651,NL 2988443652,2988443655,FR @@ -88453,7 +87950,7 @@ 2988443788,2988443791,IE 2988443792,2988443831,FR 2988443832,2988443839,NL -2988443840,2988443855,FR +2988443840,2988443855,BE 2988443856,2988443859,IT 2988443860,2988443871,PL 2988443872,2988443875,GB @@ -88474,8 +87971,7 @@ 2988444160,2988444175,FR 2988444176,2988444191,PT 2988444192,2988444199,FR -2988444200,2988444203,DE -2988444204,2988444207,NL +2988444200,2988444207,DE 2988444208,2988444208,IT 2988444209,2988444209,FI 2988444210,2988444211,IT @@ -88486,9 +87982,7 @@ 2988444288,2988444415,FR 2988444416,2988444671,IE 2988444672,2988444679,ES -2988444680,2988444687,FR -2988444688,2988444695,GB -2988444696,2988444703,FR +2988444680,2988444703,FR 2988444704,2988444719,GB 2988444720,2988444735,ES 2988444736,2988444739,GB @@ -88499,9 +87993,8 @@ 2988444768,2988444771,BE 2988444772,2988444775,GB 2988444776,2988444783,CZ -2988444784,2988444791,FI -2988444792,2988444795,GB -2988444796,2988444927,FR +2988444784,2988444791,IE +2988444792,2988444927,FR 2988444928,2988444931,PL 2988444932,2988444943,DE 2988444944,2988444967,PL @@ -88518,21 +88011,16 @@ 2988445128,2988445139,FR 2988445140,2988445143,DE 2988445144,2988445151,IT -2988445152,2988445167,FR -2988445168,2988445183,PL -2988445184,2988445215,FR +2988445152,2988445167,GB +2988445168,2988445215,FR 2988445216,2988445223,DE 2988445224,2988445231,ES -2988445232,2988445235,FR -2988445236,2988445239,PL -2988445240,2988445343,FR -2988445344,2988445375,IE +2988445232,2988445375,FR 2988445376,2988445391,GB 2988445392,2988445395,IT 2988445396,2988445399,FR 2988445400,2988445407,PT -2988445408,2988445439,FR -2988445440,2988445951,DE +2988445408,2988445951,FR 2988445952,2988446207,IE 2988446208,2988446271,FR 2988446272,2988446275,IT @@ -88549,65 +88037,56 @@ 2988446328,2988446399,PL 2988446400,2988446463,FR 2988446464,2988446719,PL -2988446720,2988446975,DE -2988446976,2988447103,IT +2988446720,2988447103,FR 2988447104,2988447167,GB -2988447168,2988447231,FR -2988447232,2988447359,DE +2988447168,2988447359,FR 2988447360,2988447423,PL 2988447424,2988447495,FR 2988447496,2988447499,GB 2988447500,2988447503,NL 2988447504,2988447507,FR 2988447508,2988447511,NL -2988447512,2988447515,PL +2988447512,2988447515,FR 2988447516,2988447519,NL 2988447520,2988447543,FR 2988447544,2988447547,DE 2988447548,2988447583,FR 2988447584,2988447599,NL -2988447600,2988447615,FR -2988447616,2988447747,DE +2988447600,2988447743,PT +2988447744,2988447747,DE 2988447748,2988447759,ES -2988447760,2988447775,FR -2988447776,2988447791,PT -2988447792,2988447871,FR -2988447872,2988447903,IE +2988447760,2988447903,FR 2988447904,2988447919,PT 2988447920,2988447923,PL -2988447924,2988447927,IT +2988447924,2988447927,GB 2988447928,2988447935,PL -2988447936,2988447943,DE +2988447936,2988447943,FR 2988447944,2988447947,GB 2988447948,2988447959,FR 2988447960,2988447967,IT 2988447968,2988447999,BE -2988448000,2988448127,DE -2988448128,2988448255,ES +2988448000,2988448127,FR +2988448128,2988448255,IT 2988448256,2988448287,FR 2988448288,2988448319,GB -2988448320,2988448383,FR -2988448384,2988448511,DE +2988448320,2988448511,PT 2988448512,2988448515,GB 2988448516,2988448519,FR 2988448520,2988448527,PL 2988448528,2988448543,NL 2988448544,2988448547,GB -2988448548,2988448551,FR -2988448552,2988448559,PL +2988448548,2988448559,FR 2988448560,2988448563,DE 2988448564,2988448575,PL 2988448576,2988448607,FR 2988448608,2988448639,ES 2988448640,2988448671,NL -2988448672,2988448691,IT +2988448672,2988448687,IT +2988448688,2988448691,IE 2988448692,2988448695,DE -2988448696,2988448703,FR -2988448704,2988448767,PT -2988448768,2988448783,FR +2988448696,2988448783,FR 2988448784,2988448815,PL -2988448816,2988448895,FR -2988448896,2988448903,IE +2988448816,2988448903,FR 2988448904,2988448907,ES 2988448908,2988449055,FR 2988449056,2988449071,IT @@ -88627,19 +88106,20 @@ 2988449208,2988449215,ES 2988449216,2988449247,FR 2988449248,2988449535,GB -2988449536,2988449631,FR +2988449536,2988449583,FR +2988449584,2988449599,PT +2988449600,2988449631,FR 2988449632,2988449639,ES 2988449640,2988449643,BE 2988449644,2988449647,CZ -2988449648,2988449747,FR -2988449748,2988449751,FI +2988449648,2988449751,FR 2988449752,2988449759,BE 2988449760,2988451839,FR 2988451840,2988453887,BE 2988453888,2988457983,GB 2988457984,2988457987,FR 2988457988,2988457991,PL -2988457992,2988457995,CH +2988457992,2988457995,GB 2988457996,2988457999,FR 2988458000,2988458015,DE 2988458016,2988458031,FR @@ -88650,8 +88130,8 @@ 2988458068,2988458075,FR 2988458076,2988458079,PL 2988458080,2988458247,FR -2988458248,2988458251,PL -2988458252,2988458271,FR +2988458248,2988458255,PL +2988458256,2988458271,FR 2988458272,2988458275,GB 2988458276,2988458279,FI 2988458280,2988458283,ES @@ -88661,10 +88141,11 @@ 2988458296,2988458299,GB 2988458300,2988458303,ES 2988458304,2988458319,FR -2988458320,2988458323,CZ +2988458320,2988458323,NL 2988458324,2988458331,FR 2988458332,2988458335,GB -2988458336,2988458399,FR +2988458336,2988458367,PT +2988458368,2988458399,FR 2988458400,2988458431,NL 2988458432,2988458495,FR 2988458496,2988458751,GB @@ -88687,7 +88168,7 @@ 2988459088,2988459103,GB 2988459104,2988459107,FR 2988459108,2988459111,PL -2988459112,2988459119,FR +2988459112,2988459119,NL 2988459120,2988459127,IT 2988459128,2988459151,PL 2988459152,2988459167,FR @@ -88709,7 +88190,8 @@ 2988459424,2988459431,PT 2988459432,2988459439,FR 2988459440,2988459455,NL -2988459456,2988459535,FR +2988459456,2988459519,FR +2988459520,2988459535,GB 2988459536,2988459543,PL 2988459544,2988459547,ES 2988459548,2988459551,PL @@ -88721,12 +88203,12 @@ 2988459624,2988459627,NL 2988459628,2988459631,PL 2988459632,2988459639,ES -2988459640,2988459643,IT +2988459640,2988459643,DE 2988459644,2988459647,CH 2988459648,2988459679,GB 2988459680,2988459683,ES 2988459684,2988459687,DE -2988459688,2988459691,FR +2988459688,2988459691,PL 2988459692,2988459695,ES 2988459696,2988459711,FR 2988459712,2988459715,ES @@ -88734,15 +88216,14 @@ 2988459724,2988459727,DE 2988459728,2988459731,FR 2988459732,2988459735,ES -2988459736,2988459743,PL +2988459736,2988459743,FR 2988459744,2988459747,ES 2988459748,2988459751,PL 2988459752,2988459759,FR 2988459760,2988459767,GB 2988459768,2988459771,NL 2988459772,2988459775,GB -2988459776,2988459839,FR -2988459840,2988459855,IT +2988459776,2988459855,IT 2988459856,2988459859,GB 2988459860,2988459863,FR 2988459864,2988459871,ES @@ -88764,8 +88245,7 @@ 2988460136,2988460143,FR 2988460144,2988460147,GB 2988460148,2988460159,ES -2988460160,2988460191,PL -2988460192,2988460195,FR +2988460160,2988460195,FR 2988460196,2988460199,NL 2988460200,2988460207,LT 2988460208,2988460223,PL @@ -88787,8 +88267,7 @@ 2988460368,2988460371,PL 2988460372,2988460375,FR 2988460376,2988460383,DE -2988460384,2988460415,PT -2988460416,2988460543,FR +2988460384,2988460543,FR 2988460544,2988460547,GB 2988460548,2988460551,DE 2988460552,2988460559,PL @@ -88815,18 +88294,16 @@ 2988460960,2988460991,FR 2988460992,2988460999,NL 2988461000,2988461003,FR -2988461004,2988461007,NL +2988461004,2988461007,PL 2988461008,2988461011,FR 2988461012,2988461015,PL 2988461016,2988461023,DE 2988461024,2988461027,NL 2988461028,2988461031,FR 2988461032,2988461035,ES -2988461036,2988461055,FR -2988461056,2988461087,PL -2988461088,2988461103,DE -2988461104,2988461135,FR -2988461136,2988461151,DE +2988461036,2988461119,FR +2988461120,2988461135,IE +2988461136,2988461151,LT 2988461152,2988461255,FR 2988461256,2988461259,ES 2988461260,2988461263,PT @@ -88834,35 +88311,31 @@ 2988461280,2988461295,IT 2988461296,2988461299,PL 2988461300,2988461307,FR -2988461308,2988461311,PL -2988461312,2988461375,PT +2988461308,2988461375,PL 2988461376,2988461391,GB 2988461392,2988461399,DE -2988461400,2988461407,PT -2988461408,2988461411,FR -2988461412,2988461419,PL -2988461420,2988461423,FR +2988461400,2988461411,FR +2988461412,2988461415,PL +2988461416,2988461423,FR 2988461424,2988461431,IT -2988461432,2988461439,PT +2988461432,2988461439,FR 2988461440,2988461471,FI -2988461472,2988461479,PT -2988461480,2988461491,FR +2988461472,2988461491,FR 2988461492,2988461495,PL 2988461496,2988461499,ES 2988461500,2988461503,PT 2988461504,2988461519,PL 2988461520,2988461523,PT -2988461524,2988461559,FR -2988461560,2988461567,PT -2988461568,2988461583,FR +2988461524,2988461583,FR 2988461584,2988461587,PL 2988461588,2988461591,IE -2988461592,2988461615,FR +2988461592,2988461595,FR +2988461596,2988461599,CH +2988461600,2988461615,FR 2988461616,2988461623,IT 2988461624,2988461631,FR 2988461632,2988461695,PL -2988461696,2988461699,FR -2988461700,2988461703,GB +2988461696,2988461703,FR 2988461704,2988461707,NL 2988461708,2988461711,BE 2988461712,2988461719,FR @@ -88878,8 +88351,7 @@ 2988461760,2988461791,PL 2988461792,2988461799,FR 2988461800,2988461807,ES -2988461808,2988461811,FI -2988461812,2988461815,FR +2988461808,2988461815,FR 2988461816,2988461819,PL 2988461820,2988461823,IE 2988461824,2988461851,FR @@ -88906,7 +88378,7 @@ 2988462128,2988462131,ES 2988462132,2988462143,FR 2988462144,2988462151,PL -2988462152,2988462155,IT +2988462152,2988462155,IE 2988462156,2988462159,NL 2988462160,2988462175,ES 2988462176,2988462191,PL @@ -88929,11 +88401,11 @@ 2988462604,2988462607,ES 2988462608,2988462735,FR 2988462736,2988462743,IT -2988462744,2988462751,FR -2988462752,2988462767,PL +2988462744,2988462767,FR 2988462768,2988462775,GB 2988462776,2988462779,PL -2988462780,2988462787,FR +2988462780,2988462783,FR +2988462784,2988462787,ES 2988462788,2988462799,PL 2988462800,2988462815,FR 2988462816,2988462823,BE @@ -88944,9 +88416,8 @@ 2988463112,2988463119,ES 2988463120,2988463123,GB 2988463124,2988463127,ES -2988463128,2988463131,FR -2988463132,2988463135,PT -2988463136,2988463143,FR +2988463128,2988463135,FR +2988463136,2988463143,IT 2988463144,2988463151,ES 2988463152,2988463159,FR 2988463160,2988463167,ES @@ -88959,14 +88430,15 @@ 2988463228,2988463251,FR 2988463252,2988463255,PL 2988463256,2988463259,IE -2988463260,2988463279,FR +2988463260,2988463263,FR +2988463264,2988463279,IE 2988463280,2988463283,GB 2988463284,2988463287,FR 2988463288,2988463291,PL 2988463292,2988463315,FR 2988463316,2988463319,PL 2988463320,2988463323,FI -2988463324,2988463327,FR +2988463324,2988463327,DE 2988463328,2988463331,ES 2988463332,2988463335,IT 2988463336,2988463339,PT @@ -88975,20 +88447,17 @@ 2988463360,2988463615,FR 2988463616,2988463623,BE 2988463624,2988463627,PL -2988463628,2988463631,DE +2988463628,2988463631,FR 2988463632,2988463647,GB 2988463648,2988463651,PL 2988463652,2988463659,GB 2988463660,2988463663,FR 2988463664,2988463671,PT 2988463672,2988463679,FR -2988463680,2988463683,GB -2988463684,2988463687,IE +2988463680,2988463687,PT 2988463688,2988463695,FR 2988463696,2988463711,PL -2988463712,2988463727,FR -2988463728,2988463735,PT -2988463736,2988463743,CZ +2988463712,2988463743,FR 2988463744,2988463747,BE 2988463748,2988463751,GB 2988463752,2988463791,FR @@ -88999,8 +88468,7 @@ 2988463840,2988463871,PL 2988463872,2988463907,FR 2988463908,2988463911,GB -2988463912,2988463915,FR -2988463916,2988463919,PL +2988463912,2988463919,FR 2988463920,2988463935,BE 2988463936,2988463939,FR 2988463940,2988463943,DE @@ -89014,7 +88482,8 @@ 2988464024,2988464027,GB 2988464028,2988464031,PL 2988464032,2988464059,FR -2988464060,2988464095,PL +2988464060,2988464063,ES +2988464064,2988464095,PL 2988464096,2988464271,FR 2988464272,2988464275,ES 2988464276,2988464279,PL @@ -89022,8 +88491,7 @@ 2988464284,2988464287,PL 2988464288,2988464295,FR 2988464296,2988464299,IT -2988464300,2988464303,FR -2988464304,2988464307,ES +2988464300,2988464307,FR 2988464308,2988464311,PL 2988464312,2988464351,FR 2988464352,2988464355,DE @@ -89038,7 +88506,8 @@ 2988464560,2988464575,ES 2988464576,2988464591,FR 2988464592,2988464595,ES -2988464596,2988464603,PL +2988464596,2988464599,FR +2988464600,2988464603,GB 2988464604,2988464607,IT 2988464608,2988464611,DE 2988464612,2988464615,PL @@ -89052,7 +88521,7 @@ 2988464788,2988464791,ES 2988464792,2988464799,FR 2988464800,2988464815,DE -2988464816,2988464819,IE +2988464816,2988464819,CZ 2988464820,2988464823,GB 2988464824,2988464827,CZ 2988464828,2988464895,FR @@ -89069,9 +88538,9 @@ 2988464960,2988464967,GB 2988464968,2988464971,PT 2988464972,2988464975,PL -2988464976,2988465215,FR -2988465216,2988465219,ES -2988465220,2988465227,FR +2988464976,2988465023,FR +2988465024,2988465215,PT +2988465216,2988465227,FR 2988465228,2988465231,IT 2988465232,2988465235,FR 2988465236,2988465239,ES @@ -89089,8 +88558,7 @@ 2988465404,2988465407,DE 2988465408,2988465423,CH 2988465424,2988465439,PT -2988465440,2988465455,GB -2988465456,2988465479,FR +2988465440,2988465479,FR 2988465480,2988465483,NL 2988465484,2988465503,FR 2988465504,2988465507,DE @@ -89118,13 +88586,18 @@ 2988465624,2988465647,FR 2988465648,2988465655,CZ 2988465656,2988465663,GB -2988465664,2988466047,FR -2988466048,2988466111,IE +2988465664,2988465919,FR +2988465920,2988465983,PT +2988465984,2988466047,FR +2988466048,2988466111,GB 2988466112,2988466115,FR -2988466116,2988466127,PL -2988466128,2988466135,FR +2988466116,2988466119,PL +2988466120,2988466123,DE +2988466124,2988466127,FR +2988466128,2988466131,PT +2988466132,2988466135,FR 2988466136,2988466139,ES -2988466140,2988466143,FR +2988466140,2988466143,DE 2988466144,2988466159,NL 2988466160,2988476415,FR 2988476416,2988478463,IT @@ -89144,7 +88617,7 @@ 2988478584,2988478587,FR 2988478588,2988478591,DE 2988478592,2988478623,FR -2988478624,2988478631,GB +2988478624,2988478631,IE 2988478632,2988478639,FR 2988478640,2988478643,PL 2988478644,2988478647,FR @@ -89162,17 +88635,15 @@ 2988478800,2988478803,NL 2988478804,2988478807,PL 2988478808,2988478811,IT -2988478812,2988478815,BE +2988478812,2988478815,FR 2988478816,2988478847,PL 2988478848,2988478851,ES 2988478852,2988478855,FR 2988478856,2988478859,LT -2988478860,2988478863,NL -2988478864,2988478867,CZ -2988478868,2988478871,FR +2988478860,2988478871,FR 2988478872,2988478879,IT 2988478880,2988478911,IE -2988478912,2988478919,FR +2988478912,2988478919,DE 2988478920,2988478927,GB 2988478928,2988478943,PT 2988478944,2988478947,FR @@ -89190,8 +88661,7 @@ 2988479004,2988479007,PL 2988479008,2988479055,FR 2988479056,2988479071,PL -2988479072,2988479075,BE -2988479076,2988479079,FR +2988479072,2988479079,FR 2988479080,2988479087,DE 2988479088,2988479103,FR 2988479104,2988479107,IE @@ -89199,7 +88669,7 @@ 2988479120,2988479135,PT 2988479136,2988479139,DE 2988479140,2988479143,NL -2988479144,2988479147,IE +2988479144,2988479147,DE 2988479148,2988479151,NL 2988479152,2988479155,PL 2988479156,2988479159,ES @@ -89214,8 +88684,7 @@ 2988479312,2988479315,PT 2988479316,2988479319,IT 2988479320,2988479323,GB -2988479324,2988479327,IT -2988479328,2988479363,FR +2988479324,2988479363,FR 2988479364,2988479379,PL 2988479380,2988479383,FR 2988479384,2988479391,PL @@ -89229,17 +88698,14 @@ 2988479512,2988479519,PL 2988479520,2988479535,FR 2988479536,2988479543,PL -2988479544,2988479551,IE +2988479544,2988479551,FR 2988479552,2988479555,DE 2988479556,2988479559,IE -2988479560,2988479567,GB -2988479568,2988479583,FR +2988479560,2988479583,FR 2988479584,2988479599,ES 2988479600,2988479603,PL 2988479604,2988479607,GB -2988479608,2988479615,FR -2988479616,2988479679,PT -2988479680,2988479711,FR +2988479608,2988479711,FR 2988479712,2988479743,PT 2988479744,2988479747,ES 2988479748,2988479751,FR @@ -89258,9 +88724,8 @@ 2988480016,2988480031,FR 2988480032,2988480047,IE 2988480048,2988480063,FR -2988480064,2988480127,ES -2988480128,2988480155,FR -2988480156,2988480159,CH +2988480064,2988480095,ES +2988480096,2988480159,FR 2988480160,2988480175,IE 2988480176,2988480191,FR 2988480192,2988480207,IT @@ -89269,9 +88734,9 @@ 2988480228,2988480231,IE 2988480232,2988480235,FR 2988480236,2988480239,IT -2988480240,2988480271,FR -2988480272,2988480275,PL -2988480276,2988480279,FR +2988480240,2988480259,FR +2988480260,2988480263,CH +2988480264,2988480279,FR 2988480280,2988480283,GB 2988480284,2988480287,PL 2988480288,2988480383,FR @@ -89285,8 +88750,7 @@ 2988480476,2988480479,PT 2988480480,2988480487,FR 2988480488,2988480495,GB -2988480496,2988480499,NL -2988480500,2988480503,FR +2988480496,2988480503,FR 2988480504,2988480511,PL 2988480512,2988480767,GB 2988480768,2988480771,FR @@ -89301,8 +88765,8 @@ 2988480820,2988480823,PT 2988480824,2988480827,PL 2988480828,2988480831,ES -2988480832,2988480895,FR -2988480896,2988480903,NL +2988480832,2988480863,CH +2988480864,2988480903,NL 2988480904,2988480911,FR 2988480912,2988480915,BE 2988480916,2988480919,IT @@ -89327,25 +88791,23 @@ 2988481128,2988481131,NL 2988481132,2988481135,GB 2988481136,2988481151,LT -2988481152,2988481159,FR +2988481152,2988481159,DE 2988481160,2988481167,PL -2988481168,2988481183,FR -2988481184,2988481187,DE -2988481188,2988481191,BE +2988481168,2988481175,PT +2988481176,2988481183,FR +2988481184,2988481191,CZ 2988481192,2988481195,ES 2988481196,2988481199,FR 2988481200,2988481203,PL 2988481204,2988481207,ES -2988481208,2988481211,IE -2988481212,2988481215,FR +2988481208,2988481215,FR 2988481216,2988481219,IE 2988481220,2988481223,FR 2988481224,2988481227,GB -2988481228,2988481231,BE -2988481232,2988481279,FR +2988481228,2988481279,FR 2988481280,2988481535,GB 2988481536,2988481663,CH -2988481664,2988481667,BE +2988481664,2988481667,FR 2988481668,2988481671,CH 2988481672,2988481675,FR 2988481676,2988481679,NL @@ -89358,8 +88820,9 @@ 2988481744,2988481759,ES 2988481760,2988481767,FR 2988481768,2988481771,GB -2988481772,2988481775,DE -2988481776,2988481783,BE +2988481772,2988481775,FR +2988481776,2988481779,GB +2988481780,2988481783,BE 2988481784,2988481791,PL 2988481792,2988481855,FR 2988481856,2988481859,GB @@ -89381,20 +88844,19 @@ 2988482024,2988482031,GB 2988482032,2988482043,FR 2988482044,2988482047,BE -2988482048,2988482079,PL -2988482080,2988482095,BE +2988482048,2988482095,PL 2988482096,2988482099,GB 2988482100,2988482103,FR 2988482104,2988482111,GB 2988482112,2988482143,DE -2988482144,2988482159,CH +2988482144,2988482159,FR 2988482160,2988482163,ES 2988482164,2988482167,PL 2988482168,2988482175,ES 2988482176,2988482191,CH 2988482192,2988482207,GB 2988482208,2988482223,FR -2988482224,2988482231,ES +2988482224,2988482231,NL 2988482232,2988482235,FR 2988482236,2988482239,GB 2988482240,2988482255,ES @@ -89426,18 +88888,17 @@ 2988482576,2988482579,CZ 2988482580,2988482583,PL 2988482584,2988482591,ES -2988482592,2988482607,PL +2988482592,2988482607,IE 2988482608,2988482631,FR 2988482632,2988482639,PL 2988482640,2988482687,FR 2988482688,2988482695,ES 2988482696,2988482699,NL -2988482700,2988482763,FR -2988482764,2988482767,GB -2988482768,2988482783,PL +2988482700,2988482775,FR +2988482776,2988482783,PL 2988482784,2988482799,FR 2988482800,2988482807,ES -2988482808,2988482811,PL +2988482808,2988482811,CH 2988482812,2988482815,FR 2988482816,2988482819,DE 2988482820,2988482823,FR @@ -89446,27 +88907,27 @@ 2988482836,2988482839,GB 2988482840,2988482843,FR 2988482844,2988482847,NL -2988482848,2988482863,DE +2988482848,2988482863,CH 2988482864,2988482871,ES 2988482872,2988482875,PT 2988482876,2988482879,CZ 2988482880,2988482887,PL 2988482888,2988482891,BE 2988482892,2988482895,PL -2988482896,2988482927,GB -2988482928,2988482931,FR +2988482896,2988482911,GB +2988482912,2988482931,FR 2988482932,2988482935,GB 2988482936,2988482939,PL 2988482940,2988482943,LT 2988482944,2988482959,PL 2988482960,2988482975,CZ -2988482976,2988482979,PL +2988482976,2988482979,FR 2988482980,2988482983,ES 2988482984,2988482987,DE 2988482988,2988482991,NL 2988482992,2988483031,FR 2988483032,2988483035,DE -2988483036,2988483039,LT +2988483036,2988483039,IT 2988483040,2988483079,FR 2988483080,2988483087,PL 2988483088,2988483099,FR @@ -89505,33 +88966,29 @@ 2988483372,2988483375,PT 2988483376,2988483379,GB 2988483380,2988483383,PL -2988483384,2988483427,FR -2988483428,2988483431,GB +2988483384,2988483431,FR 2988483432,2988483435,IT 2988483436,2988483447,FR 2988483448,2988483455,DE 2988483456,2988483519,BE 2988483520,2988483583,CH -2988483584,2988483587,PL -2988483588,2988483591,FR +2988483584,2988483591,FR 2988483592,2988483595,ES 2988483596,2988483599,FI -2988483600,2988483603,GB +2988483600,2988483603,FR 2988483604,2988483607,PT -2988483608,2988483615,NL -2988483616,2988483619,FR -2988483620,2988483623,PL -2988483624,2988483631,PT -2988483632,2988483639,FR +2988483608,2988483615,FR +2988483616,2988483619,BE +2988483620,2988483639,FR 2988483640,2988483647,GB 2988483648,2988483651,CH -2988483652,2988483655,CZ -2988483656,2988483667,IT +2988483652,2988483663,FR +2988483664,2988483667,IT 2988483668,2988483671,PT 2988483672,2988483675,GB -2988483676,2988483683,FR -2988483684,2988483687,PL -2988483688,2988483691,FR +2988483676,2988483679,FR +2988483680,2988483683,CZ +2988483684,2988483691,FR 2988483692,2988483695,PL 2988483696,2988483711,FR 2988483712,2988483727,PL @@ -89555,9 +89012,9 @@ 2988483984,2988483987,DE 2988483988,2988483995,FR 2988483996,2988483999,PL -2988484000,2988484003,DE -2988484004,2988484007,GB -2988484008,2988484019,FR +2988484000,2988484011,FR +2988484012,2988484015,DE +2988484016,2988484019,FR 2988484020,2988484023,ES 2988484024,2988484031,BE 2988484032,2988484039,IT @@ -89566,8 +89023,7 @@ 2988484052,2988484055,GB 2988484056,2988484059,PT 2988484060,2988484063,PL -2988484064,2988484079,FR -2988484080,2988484083,GB +2988484064,2988484083,FR 2988484084,2988484091,IT 2988484092,2988484095,PT 2988484096,2988484111,DE @@ -89576,9 +89032,9 @@ 2988484132,2988484135,PL 2988484136,2988484163,FR 2988484164,2988484167,GB -2988484168,2988484175,ES -2988484176,2988484187,FR -2988484188,2988484191,CH +2988484168,2988484171,FR +2988484172,2988484175,ES +2988484176,2988484191,FR 2988484192,2988484207,DE 2988484208,2988484223,FR 2988484224,2988484243,ES @@ -89592,12 +89048,11 @@ 2988484404,2988484427,PL 2988484428,2988484431,FR 2988484432,2988484439,PL -2988484440,2988484443,ES +2988484440,2988484443,NL 2988484444,2988484447,CH 2988484448,2988484463,SN 2988484464,2988484471,ES -2988484472,2988484475,BE -2988484476,2988484479,FR +2988484472,2988484479,FR 2988484480,2988484511,PL 2988484512,2988484543,IT 2988484544,2988484547,BE @@ -89608,7 +89063,7 @@ 2988484848,2988484863,FR 2988484864,2988484879,NL 2988484880,2988484883,GB -2988484884,2988484887,DE +2988484884,2988484887,BE 2988484888,2988484891,FR 2988484892,2988484895,GB 2988484896,2988484943,FR @@ -89616,10 +89071,8 @@ 2988484956,2988484967,FR 2988484968,2988484971,PL 2988484972,2988485007,FR -2988485008,2988485023,PL -2988485024,2988485039,FR -2988485040,2988485055,PL -2988485056,2988485087,FR +2988485008,2988485023,IT +2988485024,2988485087,FR 2988485088,2988485103,DE 2988485104,2988485119,PL 2988485120,2988485135,FR @@ -89646,14 +89099,13 @@ 2988485520,2988485559,FR 2988485560,2988485563,NL 2988485564,2988485567,ES -2988485568,2988485583,GB -2988485584,2988485587,FR +2988485568,2988485587,FR 2988485588,2988485591,BE 2988485592,2988485599,FR 2988485600,2988485607,PL 2988485608,2988485631,FR 2988485632,2988485663,ES -2988485664,2988485671,PL +2988485664,2988485671,FR 2988485672,2988485675,DE 2988485676,2988485679,GB 2988485680,2988485683,FR @@ -89674,10 +89126,10 @@ 2988485876,2988485879,IE 2988485880,2988485887,FR 2988485888,2988485903,PL -2988485904,2988485911,GB +2988485904,2988485911,FR 2988485912,2988485919,PT 2988485920,2988485951,FR -2988485952,2988485955,DE +2988485952,2988485955,BE 2988485956,2988485959,CZ 2988485960,2988485967,FR 2988485968,2988485983,IE @@ -89720,7 +89172,7 @@ 2988486292,2988486299,GB 2988486300,2988486303,NL 2988486304,2988486307,PL -2988486308,2988486311,FR +2988486308,2988486311,GB 2988486312,2988486319,CH 2988486320,2988486323,IT 2988486324,2988486327,PT @@ -89772,17 +89224,17 @@ 2988486748,2988486751,GB 2988486752,2988486759,FR 2988486760,2988486763,DE -2988486764,2988486783,FR +2988486764,2988486767,FR +2988486768,2988486775,PT +2988486776,2988486783,FR 2988486784,2988486787,DE 2988486788,2988486791,FR 2988486792,2988486795,ES -2988486796,2988486799,PL -2988486800,2988486807,FR +2988486796,2988486807,FR 2988486808,2988486811,DE 2988486812,2988486823,FR 2988486824,2988486831,IT -2988486832,2988486847,PL -2988486848,2988486879,FR +2988486832,2988486879,FR 2988486880,2988486883,PL 2988486884,2988486887,FR 2988486888,2988486891,PT @@ -89800,10 +89252,9 @@ 2988487080,2988487087,FR 2988487088,2988487099,PL 2988487100,2988487103,GB -2988487104,2988487135,FR -2988487136,2988487167,NL -2988487168,2988487679,FR -2988487680,2988487935,DE +2988487104,2988487167,FR +2988487168,2988487423,GB +2988487424,2988487935,FR 2988487936,2988487939,BE 2988487940,2988487947,FR 2988487948,2988487951,PL @@ -89813,8 +89264,7 @@ 2988487980,2988487983,ES 2988487984,2988488011,FR 2988488012,2988488015,LT -2988488016,2988488023,FR -2988488024,2988488031,GB +2988488016,2988488031,FR 2988488032,2988488047,IE 2988488048,2988488051,IT 2988488052,2988488055,FR @@ -89825,40 +89275,41 @@ 2988488104,2988488111,FR 2988488112,2988488127,PL 2988488128,2988488151,FR -2988488152,2988488159,GB +2988488152,2988488159,IT 2988488160,2988488175,FR 2988488176,2988488179,GB 2988488180,2988488191,DE -2988488192,2988488479,FR +2988488192,2988488447,FR +2988488448,2988488479,IE 2988488480,2988488487,PT 2988488488,2988488491,FR 2988488492,2988488495,ES 2988488496,2988488543,FR 2988488544,2988488555,GB 2988488556,2988488563,ES -2988488564,2988488567,FR +2988488564,2988488567,GB 2988488568,2988488571,ES -2988488572,2988488575,PT -2988488576,2988488607,FR +2988488572,2988488607,FR 2988488608,2988488639,DE 2988488640,2988488647,ES 2988488648,2988488655,IT 2988488656,2988488663,PL -2988488664,2988488959,FR +2988488664,2988488675,FR +2988488676,2988488679,PT +2988488680,2988488959,FR 2988488960,2988488963,NL 2988488964,2988488967,FR 2988488968,2988488971,DE 2988488972,2988488975,IT 2988488976,2988488983,ES -2988488984,2988488987,FR +2988488984,2988488987,CZ 2988488988,2988488991,NL 2988488992,2988489023,ES 2988489024,2988489055,FR 2988489056,2988489071,IE 2988489072,2988489095,FR 2988489096,2988489103,GB -2988489104,2988489119,FI -2988489120,2988489123,DE +2988489104,2988489123,FR 2988489124,2988489127,IE 2988489128,2988489131,IT 2988489132,2988489167,FR @@ -89872,8 +89323,7 @@ 2988489260,2988489263,FR 2988489264,2988489279,IT 2988489280,2988489283,FI -2988489284,2988489311,FR -2988489312,2988489327,PL +2988489284,2988489327,FR 2988489328,2988489331,NL 2988489332,2988489335,PL 2988489336,2988489339,DE @@ -89882,8 +89332,7 @@ 2988489348,2988489351,PT 2988489352,2988489355,FR 2988489356,2988489359,PT -2988489360,2988489363,FI -2988489364,2988489367,FR +2988489360,2988489367,FR 2988489368,2988489371,GB 2988489372,2988489375,FR 2988489376,2988489379,ES @@ -89892,37 +89341,36 @@ 2988489392,2988489399,NL 2988489400,2988489403,PL 2988489404,2988489407,IT -2988489408,2988489439,PT +2988489408,2988489439,FI 2988489440,2988489443,IT 2988489444,2988489447,GB 2988489448,2988489455,PL -2988489456,2988489471,FR -2988489472,2988489475,ES +2988489456,2988489475,FR 2988489476,2988489479,GB 2988489480,2988489483,PL 2988489484,2988489487,GB 2988489488,2988489503,FR 2988489504,2988489519,GB 2988489520,2988489527,ES -2988489528,2988489539,NL +2988489528,2988489535,PT +2988489536,2988489539,NL 2988489540,2988489543,CH 2988489544,2988489663,FR 2988489664,2988489667,DE 2988489668,2988489671,GB 2988489672,2988489675,ES -2988489676,2988489679,IE -2988489680,2988489695,FR +2988489676,2988489695,FR 2988489696,2988489711,FI 2988489712,2988489719,FR 2988489720,2988489723,IT 2988489724,2988489727,ES -2988489728,2988489747,FR +2988489728,2988489743,FR +2988489744,2988489747,CH 2988489748,2988489751,GB 2988489752,2988489755,ES 2988489756,2988489759,FR 2988489760,2988489791,NL -2988489792,2988489855,PL -2988489856,2988489887,GB +2988489792,2988489887,GB 2988489888,2988489903,FR 2988489904,2988489919,IE 2988489920,2988489935,FR @@ -89934,8 +89382,7 @@ 2988489984,2988490047,FR 2988490048,2988490051,ES 2988490052,2988490055,PL -2988490056,2988490059,LT -2988490060,2988490063,FR +2988490056,2988490063,FR 2988490064,2988490079,GB 2988490080,2988490095,FR 2988490096,2988490103,PT @@ -89943,13 +89390,13 @@ 2988490108,2988490111,FR 2988490112,2988490143,PT 2988490144,2988490175,FR -2988490176,2988490179,IT +2988490176,2988490179,IE 2988490180,2988490183,PL 2988490184,2988490191,ES -2988490192,2988490195,GB -2988490196,2988490223,FR +2988490192,2988490199,GB +2988490200,2988490223,FR 2988490224,2988490227,DE -2988490228,2988490231,GB +2988490228,2988490231,IT 2988490232,2988490235,ES 2988490236,2988490239,PL 2988490240,2988490247,FR @@ -89966,16 +89413,18 @@ 2988490368,2988490371,ES 2988490372,2988490375,NL 2988490376,2988490379,FR -2988490380,2988490383,GB -2988490384,2988490399,FR -2988490400,2988490407,GB +2988490380,2988490407,GB 2988490408,2988490411,FR 2988490412,2988490415,ES 2988490416,2988490419,FR 2988490420,2988490423,CH 2988490424,2988490463,FR 2988490464,2988490623,PL -2988490624,2988491775,FR +2988490624,2988490683,FR +2988490684,2988490687,BE +2988490688,2988490719,PT +2988490720,2988490735,BE +2988490736,2988491775,FR 2988491776,2988492031,TN 2988492032,2988492799,FR 2988492800,2988494847,PL @@ -90000,7 +89449,7 @@ 2988499360,2988499367,PL 2988499368,2988499375,FR 2988499376,2988499379,GB -2988499380,2988499383,IE +2988499380,2988499383,FR 2988499384,2988499387,BE 2988499388,2988499407,FR 2988499408,2988499415,PL @@ -90030,9 +89479,12 @@ 2988499700,2988499703,FR 2988499704,2988499711,DE 2988499712,2988499727,GB -2988499728,2988499729,FR +2988499728,2988499729,IE 2988499730,2988499730,GB -2988499731,2988499743,FR +2988499731,2988499731,IE +2988499732,2988499736,FR +2988499737,2988499737,NL +2988499738,2988499743,FR 2988499744,2988499747,IE 2988499748,2988499751,FR 2988499752,2988499755,PL @@ -90049,7 +89501,7 @@ 2988499848,2988499851,DE 2988499852,2988499855,PL 2988499856,2988499871,FR -2988499872,2988499903,IE +2988499872,2988499903,PT 2988499904,2988499907,FR 2988499908,2988499911,BE 2988499912,2988499915,FR @@ -90061,9 +89513,8 @@ 2988499968,2988500223,FR 2988500224,2988500271,ES 2988500272,2988500287,BE -2988500288,2988500303,PL -2988500304,2988500307,FR -2988500308,2988500311,GB +2988500288,2988500307,FR +2988500308,2988500311,FI 2988500312,2988500315,ES 2988500316,2988500319,DE 2988500320,2988500335,FR @@ -90071,26 +89522,27 @@ 2988500340,2988500347,IE 2988500348,2988500351,ES 2988500352,2988500367,DE -2988500368,2988500371,FR -2988500372,2988500375,CZ +2988500368,2988500375,FR 2988500376,2988500383,PT 2988500384,2988500399,PL 2988500400,2988500415,DE 2988500416,2988500447,CZ 2988500448,2988500479,ES -2988500480,2988500483,FR +2988500480,2988500483,GB 2988500484,2988500487,PT -2988500488,2988500499,FR +2988500488,2988500491,FR +2988500492,2988500495,IE +2988500496,2988500499,FR 2988500500,2988500503,DE 2988500504,2988500511,PL -2988500512,2988500519,FR +2988500512,2988500519,IE 2988500520,2988500523,ES 2988500524,2988500527,FR 2988500528,2988500543,BE 2988500544,2988500607,FR 2988500608,2988500623,PL 2988500624,2988500639,FR -2988500640,2988500671,GB +2988500640,2988500671,IE 2988500672,2988500679,IT 2988500680,2988500687,PL 2988500688,2988500703,NL @@ -90104,34 +89556,29 @@ 2988500800,2988500815,ES 2988500816,2988500831,FR 2988500832,2988500847,ES -2988500848,2988500851,IE +2988500848,2988500851,NL 2988500852,2988500855,PL 2988500856,2988500867,FR 2988500868,2988500871,DE -2988500872,2988500879,ES -2988500880,2988500887,BE +2988500872,2988500879,FR +2988500880,2988500883,BE +2988500884,2988500887,PT 2988500888,2988500903,FR 2988500904,2988500907,PL 2988500908,2988500911,PT -2988500912,2988500919,FR -2988500920,2988500927,PL -2988500928,2988500935,FR +2988500912,2988500935,FR 2988500936,2988500959,IT 2988500960,2988500975,IE 2988500976,2988500979,PL 2988500980,2988500987,DE 2988500988,2988500991,CH -2988500992,2988501023,IE -2988501024,2988501119,FR +2988500992,2988501119,FR 2988501120,2988501123,PL -2988501124,2988501127,IE -2988501128,2988501131,FR +2988501124,2988501131,FR 2988501132,2988501135,ES 2988501136,2988501143,FR 2988501144,2988501147,GB -2988501148,2988501223,FR -2988501224,2988501227,CZ -2988501228,2988501327,FR +2988501148,2988501327,FR 2988501328,2988501335,ES 2988501336,2988501343,PT 2988501344,2988501359,FR @@ -90139,11 +89586,11 @@ 2988501368,2988501375,ES 2988501376,2988501383,FR 2988501384,2988501391,PL -2988501392,2988501407,FR -2988501408,2988501415,PL +2988501392,2988501411,FR +2988501412,2988501415,PL 2988501416,2988501423,FR 2988501424,2988501439,NL -2988501440,2988501471,FR +2988501440,2988501471,IE 2988501472,2988501475,PT 2988501476,2988501479,BE 2988501480,2988501487,DE @@ -90157,7 +89604,7 @@ 2988501696,2988501727,FR 2988501728,2988501759,PL 2988501760,2988502039,FR -2988502040,2988502047,CZ +2988502040,2988502047,NL 2988502048,2988502051,FR 2988502052,2988502055,PL 2988502056,2988502059,GB @@ -90168,26 +89615,29 @@ 2988502080,2988502095,FR 2988502096,2988502099,FI 2988502100,2988502103,CZ -2988502104,2988502107,FR -2988502108,2988502111,IE -2988502112,2988502127,FR -2988502128,2988502143,PL -2988502144,2988502207,FR -2988502208,2988502223,GB +2988502104,2988502107,LT +2988502108,2988502111,GB +2988502112,2988502223,FR 2988502224,2988502239,IE 2988502240,2988502255,FR 2988502256,2988502263,DE 2988502264,2988502267,ES 2988502268,2988502271,DE -2988502272,2988502399,FR +2988502272,2988502303,FR +2988502304,2988502319,PT +2988502320,2988502323,FR +2988502324,2988502327,ES +2988502328,2988502335,FR +2988502336,2988502367,IE +2988502368,2988502391,FR +2988502392,2988502399,IT 2988502400,2988502407,NL 2988502408,2988502411,FR 2988502412,2988502415,PL 2988502416,2988502419,GB 2988502420,2988502423,IE 2988502424,2988502431,FI -2988502432,2988502455,FR -2988502456,2988502459,PL +2988502432,2988502459,FR 2988502460,2988502463,PT 2988502464,2988502479,IE 2988502480,2988502487,PL @@ -90205,14 +89655,14 @@ 2988502600,2988502603,DE 2988502604,2988502607,PL 2988502608,2988502631,FR -2988502632,2988502639,IE +2988502632,2988502639,PT 2988502640,2988502655,FR 2988502656,2988502719,DE 2988502720,2988502723,ES 2988502724,2988502727,BE 2988502728,2988502731,FR 2988502732,2988502735,PL -2988502736,2988502743,FR +2988502736,2988502743,IE 2988502744,2988502751,PL 2988502752,2988502783,ES 2988502784,2988502795,FR @@ -90221,16 +89671,12 @@ 2988502812,2988502815,PL 2988502816,2988502823,FR 2988502824,2988502831,ES -2988502832,2988502879,FR -2988502880,2988502883,IT +2988502832,2988502863,FR +2988502864,2988502883,IT 2988502884,2988502887,CZ 2988502888,2988502891,NL 2988502892,2988502895,PL -2988502896,2988502911,FR -2988502912,2988502915,DE -2988502916,2988502919,FR -2988502920,2988502927,PL -2988502928,2988502959,FR +2988502896,2988502959,FR 2988502960,2988502975,DE 2988502976,2988502983,PL 2988502984,2988502991,ES @@ -90248,29 +89694,26 @@ 2988503360,2988503375,FR 2988503376,2988503383,PT 2988503384,2988503391,PL -2988503392,2988503395,FR -2988503396,2988503399,BE -2988503400,2988503415,FR +2988503392,2988503399,FR +2988503400,2988503407,BE +2988503408,2988503415,FR 2988503416,2988503423,PL -2988503424,2988503455,FR -2988503456,2988503463,PT -2988503464,2988503471,FR +2988503424,2988503471,FR 2988503472,2988503487,ES 2988503488,2988503495,IT 2988503496,2988503499,PL 2988503500,2988503519,FR 2988503520,2988503535,NL -2988503536,2988503539,ES -2988503540,2988503547,FR +2988503536,2988503547,FR 2988503548,2988503551,PL 2988503552,2988503871,FR -2988503872,2988503903,DE +2988503872,2988503903,PT 2988503904,2988503907,PL 2988503908,2988503911,DE 2988503912,2988503919,FR 2988503920,2988503927,ES 2988503928,2988503935,NL -2988503936,2988503939,PT +2988503936,2988503939,FR 2988503940,2988503943,CH 2988503944,2988503947,PL 2988503948,2988503951,IE @@ -90284,9 +89727,7 @@ 2988504032,2988504063,ES 2988504064,2988504127,IE 2988504128,2988504143,DE -2988504144,2988504159,FR -2988504160,2988504191,PL -2988504192,2988504223,FR +2988504144,2988504223,FR 2988504224,2988504227,PT 2988504228,2988504231,FR 2988504232,2988504255,GB @@ -90330,11 +89771,9 @@ 2988504592,2988504599,IT 2988504600,2988504603,PL 2988504604,2988504639,FR -2988504640,2988504647,DE +2988504640,2988504647,NL 2988504648,2988504655,IT -2988504656,2988504675,FR -2988504676,2988504679,PL -2988504680,2988504687,FR +2988504656,2988504687,FR 2988504688,2988504703,PL 2988504704,2988504735,FR 2988504736,2988504743,PT @@ -90343,21 +89782,22 @@ 2988504756,2988504759,CZ 2988504760,2988504763,CH 2988504764,2988504767,FR -2988504768,2988504815,ES +2988504768,2988504799,ES +2988504800,2988504815,FR 2988504816,2988504819,BE 2988504820,2988504863,FR 2988504864,2988504879,PL 2988504880,2988504967,FR 2988504968,2988504975,BE -2988504976,2988504983,FR +2988504976,2988504979,ES +2988504980,2988504983,FR 2988504984,2988504987,ES 2988504988,2988504991,DE 2988504992,2988505023,CZ 2988505024,2988505087,DE 2988505088,2988505151,NL 2988505152,2988505167,GB -2988505168,2988505183,FR -2988505184,2988505191,IE +2988505168,2988505191,FR 2988505192,2988505195,PL 2988505196,2988505199,DE 2988505200,2988505207,PL @@ -90365,7 +89805,7 @@ 2988505212,2988505215,PT 2988505216,2988505247,FR 2988505248,2988505255,BE -2988505256,2988505263,FR +2988505256,2988505263,PT 2988505264,2988505267,IT 2988505268,2988505271,FR 2988505272,2988505275,CZ @@ -90379,8 +89819,8 @@ 2988505344,2988505375,IT 2988505376,2988505391,FR 2988505392,2988505395,PL -2988505396,2988505399,DE -2988505400,2988505403,ES +2988505396,2988505399,FI +2988505400,2988505403,PL 2988505404,2988505407,GB 2988505408,2988505439,FR 2988505440,2988505455,PL @@ -90389,14 +89829,19 @@ 2988505472,2988505475,ES 2988505476,2988505479,NL 2988505480,2988505487,IE -2988505488,2988505503,PL -2988505504,2988505535,FR +2988505488,2988505495,PL +2988505496,2988505499,NL +2988505500,2988505503,PL +2988505504,2988505535,IE 2988505536,2988505567,ES 2988505568,2988505583,IE 2988505584,2988505599,FR 2988505600,2988505603,DE 2988505604,2988505607,ES -2988505608,2988505663,FR +2988505608,2988505623,FR +2988505624,2988505627,CZ +2988505628,2988505631,NL +2988505632,2988505663,FR 2988505664,2988505695,PL 2988505696,2988505703,FR 2988505704,2988505711,PL @@ -90466,8 +89911,7 @@ 2988506524,2988506527,IE 2988506528,2988506543,FR 2988506544,2988506551,DE -2988506552,2988506559,FR -2988506560,2988506563,IT +2988506552,2988506563,FR 2988506564,2988506567,GB 2988506568,2988506571,PL 2988506572,2988506575,CH @@ -90486,8 +89930,7 @@ 2988506764,2988506767,PL 2988506768,2988506771,PT 2988506772,2988506775,IT -2988506776,2988506783,ES -2988506784,2988506815,PT +2988506776,2988506815,FR 2988506816,2988506819,PL 2988506820,2988506827,FR 2988506828,2988506831,IE @@ -90499,21 +89942,18 @@ 2988506892,2988506895,LT 2988506896,2988506975,FR 2988506976,2988507007,DE -2988507008,2988507071,FR -2988507072,2988507135,PT -2988507136,2988507143,NL -2988507144,2988507147,PL +2988507008,2988507135,FR +2988507136,2988507147,PL 2988507148,2988507155,IT 2988507156,2988507159,PL 2988507160,2988507163,CH 2988507164,2988507199,FR 2988507200,2988507203,GB 2988507204,2988507207,DE -2988507208,2988507211,ES -2988507212,2988507215,PL +2988507208,2988507215,PL 2988507216,2988507223,IT 2988507224,2988507231,PL -2988507232,2988507239,PT +2988507232,2988507239,FR 2988507240,2988507247,IT 2988507248,2988507263,FR 2988507264,2988507279,ES @@ -90523,14 +89963,13 @@ 2988507292,2988507327,FR 2988507328,2988507335,DE 2988507336,2988507339,ES -2988507340,2988507343,IE -2988507344,2988507391,FR +2988507340,2988507391,FR 2988507392,2988507423,DE 2988507424,2988507431,PL 2988507432,2988507439,DE 2988507440,2988507443,IT 2988507444,2988507447,PL -2988507448,2988507451,IT +2988507448,2988507451,IE 2988507452,2988507455,PL 2988507456,2988507459,GB 2988507460,2988507463,BE @@ -90547,8 +89986,7 @@ 2988507532,2988507535,DE 2988507536,2988507539,FR 2988507540,2988507543,PL -2988507544,2988507547,FR -2988507548,2988507551,PL +2988507544,2988507551,FR 2988507552,2988507560,GB 2988507561,2988507561,FR 2988507562,2988507567,GB @@ -90556,7 +89994,7 @@ 2988507584,2988507591,ES 2988507592,2988507595,FR 2988507596,2988507599,DE -2988507600,2988507603,ES +2988507600,2988507603,PT 2988507604,2988507607,FR 2988507608,2988507611,ES 2988507612,2988507615,DE @@ -90564,9 +90002,7 @@ 2988507624,2988507627,GB 2988507628,2988507631,PT 2988507632,2988507639,IT -2988507640,2988507643,FR -2988507644,2988507647,IT -2988507648,2988507711,FR +2988507640,2988507711,FR 2988507712,2988507715,GB 2988507716,2988507719,FR 2988507720,2988507727,CH @@ -90575,8 +90011,11 @@ 2988507736,2988507739,ES 2988507740,2988507743,IE 2988507744,2988507759,NL -2988507760,2988507767,FR -2988507768,2988507839,PL +2988507760,2988507775,FR +2988507776,2988507791,ES +2988507792,2988507807,IT +2988507808,2988507823,NL +2988507824,2988507839,GB 2988507840,2988507855,FR 2988507856,2988507859,BE 2988507860,2988507863,PL @@ -90584,7 +90023,8 @@ 2988507884,2988507887,GB 2988507888,2988507903,ES 2988507904,2988507919,PL -2988507920,2988507927,DE +2988507920,2988507923,PT +2988507924,2988507927,DE 2988507928,2988507935,BE 2988507936,2988507951,FR 2988507952,2988507955,DE @@ -90595,10 +90035,11 @@ 2988507976,2988507979,FR 2988507980,2988507983,DE 2988507984,2988507991,PL -2988507992,2988507999,FR -2988508000,2988508031,NL +2988507992,2988507995,GB +2988507996,2988508031,FR 2988508032,2988508035,PL -2988508036,2988508047,FR +2988508036,2988508039,DE +2988508040,2988508047,FR 2988508048,2988508055,GB 2988508056,2988508059,FR 2988508060,2988508063,DE @@ -90626,25 +90067,22 @@ 2988508264,2988508267,ES 2988508268,2988508287,FR 2988508288,2988508303,PL -2988508304,2988508307,PT -2988508308,2988508315,FR +2988508304,2988508315,FR 2988508316,2988508319,ES 2988508320,2988508343,FR 2988508344,2988508351,GB -2988508352,2988508367,ES -2988508368,2988508391,FR +2988508352,2988508391,FR 2988508392,2988508399,IT 2988508400,2988508415,GB 2988508416,2988508423,PL -2988508424,2988508431,FR +2988508424,2988508431,PT 2988508432,2988508435,CH 2988508436,2988508439,DE 2988508440,2988508443,GB 2988508444,2988508455,PL 2988508456,2988508479,FR -2988508480,2988508543,PT -2988508544,2988508607,GB -2988508608,2988508671,IT +2988508480,2988508543,BE +2988508544,2988508671,FR 2988508672,2988508679,DE 2988508680,2988508683,LT 2988508684,2988508687,ES @@ -90655,7 +90093,8 @@ 2988508724,2988508735,GB 2988508736,2988508767,FR 2988508768,2988508771,IT -2988508772,2988508783,FR +2988508772,2988508779,FR +2988508780,2988508783,DE 2988508784,2988508791,PT 2988508792,2988508795,FR 2988508796,2988508799,PL @@ -90663,31 +90102,27 @@ 2988508848,2988508855,GB 2988508856,2988508879,FR 2988508880,2988508895,DE -2988508896,2988508911,FR -2988508912,2988508919,BE -2988508920,2988508927,FR +2988508896,2988508927,FR 2988508928,2988508931,NL 2988508932,2988508935,GB 2988508936,2988508939,DE 2988508940,2988508943,PL 2988508944,2988508947,FR -2988508948,2988508959,ES -2988508960,2988508987,FR +2988508948,2988508951,ES +2988508952,2988508987,FR 2988508988,2988508991,PL 2988508992,2988509007,IT -2988509008,2988509011,PL +2988509008,2988509011,FR 2988509012,2988509015,GB 2988509016,2988509023,CH 2988509024,2988509119,FR 2988509120,2988509151,PT 2988509152,2988509183,PL -2988509184,2988509195,FR -2988509196,2988509199,NL -2988509200,2988509231,FR +2988509184,2988509231,FR 2988509232,2988509247,PL 2988509248,2988509279,FR 2988509280,2988509283,PL -2988509284,2988509287,PT +2988509284,2988509287,FR 2988509288,2988509291,BE 2988509292,2988509295,IE 2988509296,2988509343,FR @@ -90703,8 +90138,8 @@ 2988509408,2988509415,PL 2988509416,2988509443,FR 2988509444,2988509447,FI -2988509448,2988509451,GB -2988509452,2988509459,PL +2988509448,2988509455,GB +2988509456,2988509459,FR 2988509460,2988509463,GB 2988509464,2988509467,CH 2988509468,2988509471,NL @@ -90728,25 +90163,25 @@ 2988509720,2988509723,ES 2988509724,2988509727,PL 2988509728,2988509735,IE -2988509736,2988509747,FR +2988509736,2988509739,CH +2988509740,2988509747,FR 2988509748,2988509751,LT -2988509752,2988509759,DE +2988509752,2988509755,IT +2988509756,2988509759,DE 2988509760,2988509775,PL 2988509776,2988509779,ES 2988509780,2988509783,GB 2988509784,2988509787,FR 2988509788,2988509791,BE -2988509792,2988509823,NL -2988509824,2988509839,FR +2988509792,2988509823,IE +2988509824,2988509839,PL 2988509840,2988509855,ES -2988509856,2988509859,FR -2988509860,2988509863,DE -2988509864,2988509871,FR +2988509856,2988509871,FR 2988509872,2988509875,DE 2988509876,2988509879,PT 2988509880,2988509883,PL -2988509884,2988509887,PT -2988509888,2988509903,FR +2988509884,2988509887,FR +2988509888,2988509903,IT 2988509904,2988509907,PL 2988509908,2988509919,IT 2988509920,2988509927,FR @@ -90769,34 +90204,33 @@ 2988510080,2988510087,ES 2988510088,2988510091,PL 2988510092,2988510099,FR -2988510100,2988510103,GB +2988510100,2988510103,IT 2988510104,2988510111,BE 2988510112,2988510143,CZ -2988510144,2988510175,NL +2988510144,2988510175,FR 2988510176,2988510207,ES -2988510208,2988510211,FR -2988510212,2988510215,PT -2988510216,2988510239,FR +2988510208,2988510239,FR 2988510240,2988510243,DE 2988510244,2988510247,FR 2988510248,2988510251,FI 2988510252,2988510259,GB 2988510260,2988510263,FR 2988510264,2988510271,PL -2988510272,2988510303,FR -2988510304,2988510311,FI +2988510272,2988510311,FR 2988510312,2988510319,GB 2988510320,2988510323,FR 2988510324,2988510327,GB -2988510328,2988510403,FR +2988510328,2988510331,FR +2988510332,2988510335,ES +2988510336,2988510403,FR 2988510404,2988510407,GB 2988510408,2988510415,PL -2988510416,2988510431,FR -2988510432,2988510435,IT +2988510416,2988510427,FR +2988510428,2988510435,IT 2988510436,2988510463,FR -2988510464,2988510495,PL +2988510464,2988510495,IE 2988510496,2988510499,IT -2988510500,2988510503,PL +2988510500,2988510503,GB 2988510504,2988510507,FR 2988510508,2988510511,NL 2988510512,2988510515,PL @@ -90809,13 +90243,9 @@ 2988510656,2988510687,PL 2988510688,2988510703,FR 2988510704,2988510719,PL -2988510720,2988510751,FR -2988510752,2988510759,PT -2988510760,2988510767,FR -2988510768,2988510771,NL -2988510772,2988510775,FR -2988510776,2988510779,PT -2988510780,2988510847,FR +2988510720,2988510767,FR +2988510768,2988510771,BE +2988510772,2988510847,FR 2988510848,2988510911,PL 2988510912,2988510927,CH 2988510928,2988510943,FR @@ -90835,11 +90265,10 @@ 2988511176,2988511179,GB 2988511180,2988511187,FR 2988511188,2988511191,PL -2988511192,2988511551,FR -2988511552,2988511555,BE -2988511556,2988511559,CZ +2988511192,2988511559,FR 2988511560,2988511567,IT -2988511568,2988511575,FR +2988511568,2988511571,FR +2988511572,2988511575,DE 2988511576,2988511583,GB 2988511584,2988511663,FR 2988511664,2988511671,DE @@ -90862,36 +90291,39 @@ 2988511808,2988511823,ES 2988511824,2988511831,DE 2988511832,2988511835,GB -2988511836,2988511855,FR +2988511836,2988511839,PL +2988511840,2988511855,FR 2988511856,2988511871,PL -2988511872,2988511915,FR -2988511916,2988511919,PL -2988511920,2988511923,GB -2988511924,2988511927,ES -2988511928,2988511931,IT +2988511872,2988511883,FR +2988511884,2988511887,CZ +2988511888,2988511911,FR +2988511912,2988511919,GB +2988511920,2988511927,FR +2988511928,2988511931,ES 2988511932,2988511951,FR 2988511952,2988511955,GB 2988511956,2988511959,ES -2988511960,2988511967,PT +2988511960,2988511967,FR 2988511968,2988511975,IT 2988511976,2988511979,BE 2988511980,2988511983,FR 2988511984,2988511999,BE -2988512000,2988512047,FR +2988512000,2988512031,PL +2988512032,2988512047,FR 2988512048,2988512055,ES 2988512056,2988512059,GB 2988512060,2988512063,PL 2988512064,2988512095,FR 2988512096,2988512127,IE 2988512128,2988512143,ES -2988512144,2988512151,FR +2988512144,2988512151,IT 2988512152,2988512155,CH -2988512156,2988512195,FR +2988512156,2988512159,FR +2988512160,2988512191,PL +2988512192,2988512195,FR 2988512196,2988512199,DE 2988512200,2988512207,ES -2988512208,2988512223,FR -2988512224,2988512227,BE -2988512228,2988512239,FR +2988512208,2988512239,FR 2988512240,2988512247,DE 2988512248,2988512251,GB 2988512252,2988512255,ES @@ -90904,7 +90336,7 @@ 2988512320,2988512335,FR 2988512336,2988512343,PL 2988512344,2988512347,FR -2988512348,2988512351,IE +2988512348,2988512351,NL 2988512352,2988512383,IT 2988512384,2988512399,FR 2988512400,2988512403,ES @@ -90918,33 +90350,27 @@ 2988512468,2988512471,GB 2988512472,2988512479,FR 2988512480,2988512483,DE -2988512484,2988512491,FR -2988512492,2988512495,PL -2988512496,2988512523,FR +2988512484,2988512523,FR 2988512524,2988512527,IT 2988512528,2988512543,FR 2988512544,2988512551,PL 2988512552,2988512559,NL 2988512560,2988512575,FR 2988512576,2988512579,NL -2988512580,2988512583,PL -2988512584,2988512587,GB -2988512588,2988512591,FR +2988512580,2988512591,FR 2988512592,2988512595,BE 2988512596,2988512599,IT -2988512600,2988512607,PT -2988512608,2988512623,PL +2988512600,2988512615,FR +2988512616,2988512623,PL 2988512624,2988512631,FR 2988512632,2988512639,PL 2988512640,2988512647,GB 2988512648,2988512655,FR 2988512656,2988512663,PT -2988512664,2988512667,FR -2988512668,2988512671,PL -2988512672,2988512687,FR +2988512664,2988512687,FR 2988512688,2988512703,PL 2988512704,2988512735,FR -2988512736,2988512767,ES +2988512736,2988512767,PL 2988512768,2988512831,IE 2988512832,2988512835,GB 2988512836,2988512839,ES @@ -90955,7 +90381,9 @@ 2988512880,2988512887,PL 2988512888,2988512899,FR 2988512900,2988512911,ES -2988512912,2988512943,FR +2988512912,2988512927,FR +2988512928,2988512935,NL +2988512936,2988512943,FR 2988512944,2988512951,ES 2988512952,2988512955,FR 2988512956,2988512959,LT @@ -90966,14 +90394,18 @@ 2988512976,2988512979,FI 2988512980,2988512983,DE 2988512984,2988512987,CH -2988512988,2988512991,CZ -2988512992,2988512995,FR +2988512988,2988512995,CZ 2988512996,2988512999,GB 2988513000,2988513003,ES 2988513004,2988513007,PL 2988513008,2988513015,IT 2988513016,2988513019,FI -2988513020,2988513183,FR +2988513020,2988513087,FR +2988513088,2988513119,ES +2988513120,2988513143,FR +2988513144,2988513147,NL +2988513148,2988513151,GB +2988513152,2988513183,FR 2988513184,2988513191,DE 2988513192,2988513215,FR 2988513216,2988513223,NL @@ -90984,19 +90416,15 @@ 2988513276,2988513279,CH 2988513280,2988513283,FR 2988513284,2988513287,ES -2988513288,2988513291,FR -2988513292,2988513295,PL -2988513296,2988513303,NL -2988513304,2988513311,FR +2988513288,2988513311,FR 2988513312,2988513327,PT 2988513328,2988513331,PL -2988513332,2988513343,FR -2988513344,2988513351,ES +2988513332,2988513351,FR 2988513352,2988513359,IT 2988513360,2988513363,PT -2988513364,2988513383,FR -2988513384,2988513391,PT -2988513392,2988513407,GB +2988513364,2988513379,FR +2988513380,2988513383,PL +2988513384,2988513407,FR 2988513408,2988513471,PL 2988513472,2988513503,FR 2988513504,2988513507,CH @@ -91006,8 +90434,7 @@ 2988513520,2988513535,GB 2988513536,2988513551,FR 2988513552,2988513555,IT -2988513556,2988513567,FR -2988513568,2988513575,DE +2988513556,2988513575,FR 2988513576,2988513583,PL 2988513584,2988513599,IE 2988513600,2988513663,FR @@ -91025,17 +90452,21 @@ 2988513712,2988513723,FR 2988513724,2988513727,DE 2988513728,2988513731,FR -2988513732,2988513735,PL +2988513732,2988513735,LT 2988513736,2988513739,FR 2988513740,2988513743,ES -2988513744,2988513879,FR -2988513880,2988513883,ES +2988513744,2988513747,DE +2988513748,2988513791,FR +2988513792,2988513855,DE +2988513856,2988513879,FR +2988513880,2988513883,DE 2988513884,2988513887,FR 2988513888,2988513891,PL 2988513892,2988513899,IT 2988513900,2988513903,PL 2988513904,2988513919,IT -2988513920,2988513959,FR +2988513920,2988513951,GB +2988513952,2988513959,FR 2988513960,2988513963,NL 2988513964,2988513967,IE 2988513968,2988513983,NL @@ -91049,8 +90480,8 @@ 2988514100,2988514103,PL 2988514104,2988514111,FR 2988514112,2988514115,PL -2988514116,2988514127,FR -2988514128,2988514131,IE +2988514116,2988514119,ES +2988514120,2988514131,FR 2988514132,2988514135,IT 2988514136,2988514139,FR 2988514140,2988514143,LT @@ -91076,32 +90507,33 @@ 2988514368,2988514527,FR 2988514528,2988514543,GB 2988514544,2988514559,PL -2988514560,2988514623,FR +2988514560,2988514591,FR +2988514592,2988514623,PL 2988514624,2988514655,DE 2988514656,2988514671,FR 2988514672,2988514675,CH 2988514676,2988514679,IT 2988514680,2988514683,GB 2988514684,2988514687,DE -2988514688,2988514719,GB +2988514688,2988514719,PT 2988514720,2988514735,ES 2988514736,2988514739,DE 2988514740,2988514743,GB -2988514744,2988514747,ES +2988514744,2988514747,FR 2988514748,2988514751,GB -2988514752,2988514815,FI -2988514816,2988514819,FR +2988514752,2988514819,FR 2988514820,2988514823,NL 2988514824,2988514827,PL 2988514828,2988514839,FR 2988514840,2988514879,ES -2988514880,2988514943,PL +2988514880,2988514943,FR 2988514944,2988514959,ES 2988514960,2988514975,PL 2988514976,2988514979,DE 2988514980,2988514983,PL 2988514984,2988514995,IT -2988514996,2988515007,PL +2988514996,2988514999,CH +2988515000,2988515007,PL 2988515008,2988515027,FR 2988515028,2988515035,DE 2988515036,2988515327,FR @@ -91135,7 +90567,7 @@ 2988524064,2988524067,PL 2988524068,2988524071,GB 2988524072,2988524075,FR -2988524076,2988524079,ES +2988524076,2988524079,PT 2988524080,2988524083,GB 2988524084,2988524087,IT 2988524088,2988524111,FR @@ -91143,7 +90575,7 @@ 2988524128,2988524143,FR 2988524144,2988524147,GB 2988524148,2988524151,IT -2988524152,2988524155,PL +2988524152,2988524155,FR 2988524156,2988524159,PT 2988524160,2988524163,NL 2988524164,2988524167,FR @@ -91181,14 +90613,16 @@ 2988524384,2988524415,FR 2988524416,2988524447,FI 2988524448,2988524479,FR -2988524480,2988524483,CZ +2988524480,2988524483,NL 2988524484,2988524487,IT 2988524488,2988524495,FR -2988524496,2988524543,PL +2988524496,2988524511,CH +2988524512,2988524543,PL 2988524544,2988524575,IE 2988524576,2988524595,FR 2988524596,2988524599,GB -2988524600,2988524607,ES +2988524600,2988524603,FR +2988524604,2988524607,ES 2988524608,2988524627,GB 2988524628,2988524631,FR 2988524632,2988524635,DE @@ -91221,7 +90655,8 @@ 2988525844,2988525847,ES 2988525848,2988525851,IT 2988525852,2988525855,DE -2988525856,2988525951,FR +2988525856,2988525887,FR +2988525888,2988525951,GB 2988525952,2988525967,IT 2988525968,2988525983,FR 2988525984,2988525991,FI @@ -91231,32 +90666,34 @@ 2988526080,2988526083,GB 2988526084,2988526087,FR 2988526088,2988526091,IT -2988526092,2988526095,GB -2988526096,2988526135,FR +2988526092,2988526135,FR 2988526136,2988526143,GB -2988526144,2988526175,IE +2988526144,2988526175,FR 2988526176,2988526239,ES -2988526240,2988526423,PL +2988526240,2988526335,PL +2988526336,2988526367,FR +2988526368,2988526399,GB +2988526400,2988526423,ES 2988526424,2988526427,GB 2988526428,2988526431,PL 2988526432,2988526435,IT 2988526436,2988526439,FR 2988526440,2988526443,CH 2988526444,2988526447,BE -2988526448,2988526455,FR -2988526456,2988526463,ES +2988526448,2988526451,FR +2988526452,2988526455,ES +2988526456,2988526463,DE 2988526464,2988526575,FR 2988526576,2988526583,ES 2988526584,2988526587,DE 2988526588,2988526607,FR 2988526608,2988526615,DE -2988526616,2988526655,FR -2988526656,2988526659,IT +2988526616,2988526659,FR 2988526660,2988526663,FI 2988526664,2988526671,FR 2988526672,2988526679,DE 2988526680,2988526683,ES -2988526684,2988526687,NL +2988526684,2988526687,DE 2988526688,2988526703,FR 2988526704,2988526707,GB 2988526708,2988526711,PL @@ -91268,7 +90705,7 @@ 2988526752,2988526767,GB 2988526768,2988526783,FR 2988526784,2988526847,ES -2988526848,2988526863,BE +2988526848,2988526863,FR 2988526864,2988526867,ES 2988526868,2988526875,PT 2988526876,2988526879,PL @@ -91280,14 +90717,17 @@ 2988526956,2988526959,IT 2988526960,2988526991,FR 2988526992,2988526995,PL -2988526996,2988527007,ES +2988526996,2988526999,ES +2988527000,2988527003,IT +2988527004,2988527007,ES 2988527008,2988527055,FR 2988527056,2988527071,BE 2988527072,2988527087,FR 2988527088,2988527095,PT 2988527096,2988527103,PL 2988527104,2988527119,FR -2988527120,2988527167,PL +2988527120,2988527135,PL +2988527136,2988527167,FR 2988527168,2988527171,DE 2988527172,2988527175,ES 2988527176,2988527179,PT @@ -91298,16 +90738,13 @@ 2988527196,2988527199,DE 2988527200,2988527207,NL 2988527208,2988527211,CZ -2988527212,2988527215,IE -2988527216,2988527359,FR -2988527360,2988527391,DE -2988527392,2988527411,FR -2988527412,2988527423,PL -2988527424,2988527431,FR +2988527212,2988527411,FR +2988527412,2988527415,ES +2988527416,2988527419,CH +2988527420,2988527431,FR 2988527432,2988527439,IT -2988527440,2988527451,PL -2988527452,2988527455,PT -2988527456,2988527459,FR +2988527440,2988527447,GB +2988527448,2988527459,FR 2988527460,2988527463,IE 2988527464,2988527475,FR 2988527476,2988527479,ES @@ -91315,9 +90752,7 @@ 2988527488,2988527503,GB 2988527504,2988527527,FR 2988527528,2988527531,DE -2988527532,2988527535,FR -2988527536,2988527543,DE -2988527544,2988527551,FR +2988527532,2988527551,FR 2988527552,2988527583,PL 2988527584,2988527591,IT 2988527592,2988527595,IE @@ -91330,7 +90765,7 @@ 2988527624,2988527631,ES 2988527632,2988527667,FR 2988527668,2988527671,IE -2988527672,2988527675,ES +2988527672,2988527675,FR 2988527676,2988527679,DE 2988527680,2988527683,ES 2988527684,2988527687,FR @@ -91343,8 +90778,7 @@ 2988527752,2988527755,GB 2988527756,2988527759,PL 2988527760,2988527775,ES -2988527776,2988527807,IE -2988527808,2988527823,FR +2988527776,2988527823,FR 2988527824,2988527831,GB 2988527832,2988527839,ES 2988527840,2988527843,FR @@ -91356,8 +90790,8 @@ 2988527888,2988527895,FR 2988527896,2988527899,PL 2988527900,2988527903,FR -2988527904,2988527935,ES -2988527936,2988527967,DE +2988527904,2988527935,GB +2988527936,2988527967,PT 2988527968,2988527983,PL 2988527984,2988527999,FR 2988528000,2988528007,IT @@ -91391,10 +90825,12 @@ 2988528272,2988528275,ES 2988528276,2988528279,IT 2988528280,2988528287,DE -2988528288,2988528351,FR -2988528352,2988528383,DE -2988528384,2988528391,PL -2988528392,2988528399,CH +2988528288,2988528311,FR +2988528312,2988528319,GB +2988528320,2988528351,FR +2988528352,2988528391,PL +2988528392,2988528395,FR +2988528396,2988528399,CH 2988528400,2988528423,FR 2988528424,2988528431,NL 2988528432,2988528435,FR @@ -91420,7 +90856,8 @@ 2988528672,2988528679,CH 2988528680,2988528695,FR 2988528696,2988528699,NL -2988528700,2988528735,IE +2988528700,2988528703,FR +2988528704,2988528735,IE 2988528736,2988528751,FR 2988528752,2988528755,CH 2988528756,2988528759,PL @@ -91429,31 +90866,34 @@ 2988528772,2988528783,FR 2988528784,2988528787,ES 2988528788,2988528791,FR -2988528792,2988528795,DE +2988528792,2988528795,NL 2988528796,2988528799,GB -2988528800,2988528863,FR +2988528800,2988528835,FR +2988528836,2988528839,IT +2988528840,2988528863,FR 2988528864,2988528867,DE 2988528868,2988528871,FR 2988528872,2988528879,GB 2988528880,2988529151,FR 2988529152,2988529159,IT -2988529160,2988529163,PL +2988529160,2988529163,ES 2988529164,2988529167,DE 2988529168,2988529171,IE 2988529172,2988529175,PT 2988529176,2988529179,ES -2988529180,2988529199,FR +2988529180,2988529183,CH +2988529184,2988529199,FR 2988529200,2988529207,PL -2988529208,2988529247,FR +2988529208,2988529215,FR +2988529216,2988529247,IE 2988529248,2988529251,GB -2988529252,2988529255,DE +2988529252,2988529255,PT 2988529256,2988529263,IT 2988529264,2988529267,DE 2988529268,2988529271,PL 2988529272,2988529275,FR 2988529276,2988529279,ES -2988529280,2988529295,LT -2988529296,2988529311,IT +2988529280,2988529311,CZ 2988529312,2988529315,PL 2988529316,2988529319,DE 2988529320,2988529323,ES @@ -91466,7 +90906,7 @@ 2988529352,2988529359,GB 2988529360,2988529375,IT 2988529376,2988529383,GB -2988529384,2988529387,NL +2988529384,2988529387,LT 2988529388,2988529391,FR 2988529392,2988529407,PL 2988529408,2988529411,IT @@ -91474,28 +90914,27 @@ 2988529416,2988529419,PT 2988529420,2988529423,CH 2988529424,2988529431,DE -2988529432,2988529435,NL -2988529436,2988529439,FR +2988529432,2988529439,FR 2988529440,2988529455,PL 2988529456,2988529535,FR -2988529536,2988529567,FI +2988529536,2988529567,NL 2988529568,2988529583,FR 2988529584,2988529591,ES 2988529592,2988529599,FR 2988529600,2988529607,IT 2988529608,2988529631,FR 2988529632,2988529647,LT -2988529648,2988529663,CH +2988529648,2988529663,GB 2988529664,2988529667,PL 2988529668,2988529671,FR 2988529672,2988529675,CZ -2988529676,2988529679,FR -2988529680,2988529695,PT -2988529696,2988529703,FR +2988529676,2988529703,FR 2988529704,2988529707,DE -2988529708,2988529759,FR +2988529708,2988529711,CH +2988529712,2988529727,FR +2988529728,2988529759,PT 2988529760,2988529763,PL -2988529764,2988529767,DE +2988529764,2988529767,FR 2988529768,2988529771,GB 2988529772,2988529775,DE 2988529776,2988529783,ES @@ -91510,18 +90949,19 @@ 2988529888,2988529891,DE 2988529892,2988529895,PL 2988529896,2988529899,FR -2988529900,2988529903,PT +2988529900,2988529903,IT 2988529904,2988529907,PL 2988529908,2988529911,PT 2988529912,2988529915,CZ 2988529916,2988529919,DE -2988529920,2988529935,GB +2988529920,2988529935,NL 2988529936,2988529939,CH 2988529940,2988529943,GB 2988529944,2988529947,ES 2988529948,2988529955,DE 2988529956,2988529959,FR -2988529960,2988529983,GB +2988529960,2988529967,GB +2988529968,2988529983,FR 2988529984,2988529999,PL 2988530000,2988530003,FR 2988530004,2988530007,GB @@ -91554,7 +90994,10 @@ 2988530392,2988530395,PT 2988530396,2988530399,GB 2988530400,2988530403,ES -2988530404,2988530423,PL +2988530404,2988530407,PL +2988530408,2988530415,FR +2988530416,2988530419,PL +2988530420,2988530423,FR 2988530424,2988530431,ES 2988530432,2988530687,DE 2988530688,2988530695,IT @@ -91562,8 +91005,7 @@ 2988530704,2988530735,FR 2988530736,2988530739,IE 2988530740,2988530743,NL -2988530744,2988530751,PL -2988530752,2988530847,FR +2988530744,2988530847,FR 2988530848,2988530851,DE 2988530852,2988530855,FR 2988530856,2988530863,ES @@ -91574,18 +91016,18 @@ 2988530928,2988530943,FI 2988530944,2988530975,FR 2988530976,2988531007,PL -2988531008,2988531015,DE +2988531008,2988531015,FR 2988531016,2988531019,NL 2988531020,2988531023,IE 2988531024,2988531027,ES -2988531028,2988531031,FR -2988531032,2988531039,PL +2988531028,2988531035,FR +2988531036,2988531039,PL 2988531040,2988531047,FR 2988531048,2988531051,GB 2988531052,2988531075,FR 2988531076,2988531079,GB 2988531080,2988531083,FR -2988531084,2988531087,CZ +2988531084,2988531087,LT 2988531088,2988531103,FR 2988531104,2988531107,DE 2988531108,2988531135,FR @@ -91599,7 +91041,7 @@ 2988531200,2988531231,ES 2988531232,2988531247,IT 2988531248,2988531259,PL -2988531260,2988531263,FR +2988531260,2988531263,NL 2988531264,2988531267,GB 2988531268,2988531271,FR 2988531272,2988531279,ES @@ -91617,8 +91059,9 @@ 2988531360,2988531391,FR 2988531392,2988531399,PL 2988531400,2988531403,DE -2988531404,2988531407,FR -2988531408,2988531423,PL +2988531404,2988531407,CZ +2988531408,2988531415,FR +2988531416,2988531423,PL 2988531424,2988531427,BE 2988531428,2988531451,FR 2988531452,2988531455,GB @@ -91634,11 +91077,9 @@ 2988540020,2988540023,GB 2988540024,2988540207,FR 2988540208,2988540211,GB -2988540212,2988540215,FR -2988540216,2988540219,ES +2988540212,2988540219,FR 2988540220,2988540223,GB -2988540224,2988540231,NL -2988540232,2988540235,GB +2988540224,2988540235,NL 2988540236,2988540239,ES 2988540240,2988540247,FR 2988540248,2988540251,GB @@ -91664,30 +91105,32 @@ 2988540456,2988540463,IT 2988540464,2988540467,PL 2988540468,2988540471,GB -2988540472,2988540479,FR -2988540480,2988540483,CH +2988540472,2988540483,FR 2988540484,2988540491,PL -2988540492,2988540499,FR +2988540492,2988540495,DE +2988540496,2988540499,FR 2988540500,2988540503,CZ -2988540504,2988540507,PL +2988540504,2988540507,FR 2988540508,2988540511,DE 2988540512,2988540607,FR 2988540608,2988540623,BE 2988540624,2988540631,GB -2988540632,2988540635,DE +2988540632,2988540635,FR 2988540636,2988540639,PT 2988540640,2988540647,CZ 2988540648,2988540651,FR -2988540652,2988540667,PL +2988540652,2988540663,PL +2988540664,2988540667,ES 2988540668,2988540671,IT 2988540672,2988540679,ES -2988540680,2988540683,PL -2988540684,2988540707,FR +2988540680,2988540703,FR +2988540704,2988540707,PT 2988540708,2988540711,PL 2988540712,2988540715,FR 2988540716,2988540719,PL 2988540720,2988540735,DE -2988540736,2988540767,ES +2988540736,2988540751,FR +2988540752,2988540767,ES 2988540768,2988540775,GB 2988540776,2988540787,BE 2988540788,2988540795,FR @@ -91711,12 +91154,13 @@ 2988541136,2988541143,GB 2988541144,2988541215,FR 2988541216,2988541231,CZ -2988541232,2988541243,FR +2988541232,2988541235,PL +2988541236,2988541243,FR 2988541244,2988541247,GB 2988541248,2988541255,NL -2988541256,2988541263,FR +2988541256,2988541263,PT 2988541264,2988541279,IT -2988541280,2988541311,NL +2988541280,2988541311,DE 2988541312,2988541315,ES 2988541316,2988541327,FR 2988541328,2988541335,PL @@ -91724,7 +91168,8 @@ 2988541344,2988541347,GB 2988541348,2988541351,IT 2988541352,2988541355,IE -2988541356,2988541363,ES +2988541356,2988541359,FR +2988541360,2988541363,ES 2988541364,2988541367,FR 2988541368,2988541371,PL 2988541372,2988541375,GB @@ -91742,7 +91187,7 @@ 2988541468,2988541503,FR 2988541504,2988541519,CH 2988541520,2988541539,FR -2988541540,2988541543,GB +2988541540,2988541543,NL 2988541544,2988541547,FR 2988541548,2988541551,ES 2988541552,2988541575,FR @@ -91755,8 +91200,9 @@ 2988541612,2988541615,IT 2988541616,2988541619,BE 2988541620,2988541627,FR -2988541628,2988541631,DE -2988541632,2988541655,FR +2988541628,2988541631,ES +2988541632,2988541651,FR +2988541652,2988541655,PL 2988541656,2988541663,ES 2988541664,2988541679,FR 2988541680,2988541683,BE @@ -91766,20 +91212,18 @@ 2988541696,2988541727,PL 2988541728,2988541731,NL 2988541732,2988541735,PL -2988541736,2988541743,NL -2988541744,2988541759,FR -2988541760,2988541763,BE -2988541764,2988541767,FR +2988541736,2988541743,DE +2988541744,2988541767,FR 2988541768,2988541775,PL 2988541776,2988541779,CH -2988541780,2988541791,FR -2988541792,2988541807,GB +2988541780,2988541807,FR 2988541808,2988541815,PL 2988541816,2988541819,ES 2988541820,2988541823,CZ -2988541824,2988541859,FR +2988541824,2988541855,FR +2988541856,2988541859,NL 2988541860,2988541863,PL -2988541864,2988541867,DE +2988541864,2988541867,BE 2988541868,2988541887,FR 2988541888,2988541895,DE 2988541896,2988541903,CZ @@ -91793,26 +91237,24 @@ 2988541948,2988541951,ES 2988541952,2988541955,GB 2988541956,2988541959,DE -2988541960,2988541963,CH -2988541964,2988541967,DE +2988541960,2988541967,NL 2988541968,2988541999,FR 2988542000,2988542003,PL 2988542004,2988542007,DE 2988542008,2988542011,FI 2988542012,2988542015,CH -2988542016,2988542019,GB -2988542020,2988542023,FR +2988542016,2988542023,CZ 2988542024,2988542027,NL -2988542028,2988542031,PL -2988542032,2988542047,FR -2988542048,2988542051,DE +2988542028,2988542031,ES +2988542032,2988542051,FR 2988542052,2988542055,ES 2988542056,2988542063,FR 2988542064,2988542067,GB 2988542068,2988542071,ES 2988542072,2988542255,FR 2988542256,2988542271,IT -2988542272,2988542343,ES +2988542272,2988542335,ES +2988542336,2988542343,FR 2988542344,2988542347,PL 2988542348,2988542351,IT 2988542352,2988542359,FR @@ -91826,37 +91268,36 @@ 2988542432,2988542439,PL 2988542440,2988542443,ES 2988542444,2988542459,FR -2988542460,2988542495,ES -2988542496,2988542511,FR +2988542460,2988542463,ES +2988542464,2988542511,FR 2988542512,2988542515,BE 2988542516,2988542527,FR 2988542528,2988542535,DE 2988542536,2988542539,NL -2988542540,2988542543,LT -2988542544,2988542551,DE +2988542540,2988542551,DE 2988542552,2988542559,ES 2988542560,2988542591,FR 2988542592,2988542595,PT 2988542596,2988542599,FI 2988542600,2988542603,GB -2988542604,2988542611,FR +2988542604,2988542607,BE +2988542608,2988542611,FR 2988542612,2988542615,DE 2988542616,2988542623,PT 2988542624,2988542627,DE -2988542628,2988542651,FR +2988542628,2988542631,ES +2988542632,2988542651,FR 2988542652,2988542655,DE -2988542656,2988542719,BE -2988542720,2988542783,CH -2988542784,2988542847,CZ -2988542848,2988542911,DE -2988542912,2988542919,PT +2988542656,2988542719,PT +2988542720,2988542847,FR +2988542848,2988542919,PT 2988542920,2988542923,PL 2988542924,2988542935,FR 2988542936,2988542939,IT -2988542940,2988542943,FR +2988542940,2988542943,ES 2988542944,2988542959,DE 2988542960,2988542963,PL -2988542964,2988542967,FR +2988542964,2988542967,PT 2988542968,2988542975,DE 2988542976,2988542983,CH 2988542984,2988542987,FR @@ -91871,7 +91312,7 @@ 2988543052,2988543055,FR 2988543056,2988543059,PL 2988543060,2988543067,FR -2988543068,2988543071,PL +2988543068,2988543071,ES 2988543072,2988543103,FR 2988543104,2988543167,GB 2988543168,2988543171,PL @@ -91885,10 +91326,10 @@ 2988543208,2988543211,PL 2988543212,2988543215,GB 2988543216,2988543231,FR -2988543232,2988543235,GB +2988543232,2988543235,CZ 2988543236,2988543239,FR 2988543240,2988543243,PL -2988543244,2988543247,IT +2988543244,2988543247,BE 2988543248,2988543251,FR 2988543252,2988543255,ES 2988543256,2988543263,PL @@ -91898,12 +91339,11 @@ 2988543300,2988543303,FR 2988543304,2988543307,ES 2988543308,2988543311,PL -2988543312,2988543315,FR -2988543316,2988543319,IE +2988543312,2988543319,FR 2988543320,2988543323,FI 2988543324,2988543327,PL 2988543328,2988543379,FR -2988543380,2988543383,PL +2988543380,2988543383,BE 2988543384,2988543399,DE 2988543400,2988543403,GB 2988543404,2988543407,ES @@ -91912,8 +91352,7 @@ 2988543416,2988543419,CH 2988543420,2988543423,PL 2988543424,2988543431,DE -2988543432,2988543439,GB -2988543440,2988543447,FR +2988543432,2988543447,FR 2988543448,2988543451,BE 2988543452,2988543455,PL 2988543456,2988543459,NL @@ -91922,21 +91361,22 @@ 2988543496,2988543499,CH 2988543500,2988543503,NL 2988543504,2988543519,ES -2988543520,2988543527,FR -2988543528,2988543535,GB +2988543520,2988543535,FR 2988543536,2988543551,DE -2988543552,2988543555,CH -2988543556,2988543559,BE +2988543552,2988543559,FR 2988543560,2988543563,PT 2988543564,2988543575,FR 2988543576,2988543579,FI 2988543580,2988543583,FR 2988543584,2988543615,DE -2988543616,2988543839,FR +2988543616,2988543743,FR +2988543744,2988543775,ES +2988543776,2988543839,FR 2988543840,2988543871,GB 2988543872,2988543935,ES -2988543936,2988543947,PL -2988543948,2988543951,BE +2988543936,2988543939,PL +2988543940,2988543943,FR +2988543944,2988543951,IE 2988543952,2988543959,GB 2988543960,2988543999,FR 2988544000,2988544003,GB @@ -91950,11 +91390,9 @@ 2988544044,2988544047,GB 2988544048,2988544055,FR 2988544056,2988544063,FI -2988544064,2988544127,FR -2988544128,2988544159,GB -2988544160,2988544163,FR +2988544064,2988544163,FR 2988544164,2988544167,PL -2988544168,2988544175,GB +2988544168,2988544175,FR 2988544176,2988544179,CH 2988544180,2988544187,PL 2988544188,2988544191,FR @@ -91965,7 +91403,7 @@ 2988544276,2988544279,FR 2988544280,2988544283,GB 2988544284,2988544287,CZ -2988544288,2988544291,PL +2988544288,2988544291,ES 2988544292,2988544295,GB 2988544296,2988544303,FR 2988544304,2988544307,IT @@ -91983,26 +91421,28 @@ 2988544376,2988544383,ES 2988544384,2988544447,GB 2988544448,2988544479,FR -2988544480,2988544511,PL +2988544480,2988544495,PL +2988544496,2988544511,GB 2988544512,2988544527,FR 2988544528,2988544535,ES 2988544536,2988544543,FR 2988544544,2988544639,ES 2988544640,2988544647,PL 2988544648,2988544655,FR -2988544656,2988544663,ES +2988544656,2988544659,ES +2988544660,2988544663,FR 2988544664,2988544667,DE -2988544668,2988544671,FR +2988544668,2988544671,NL 2988544672,2988544687,GB 2988544688,2988544691,NL 2988544692,2988544767,FR 2988544768,2988544775,ES 2988544776,2988544783,NL 2988544784,2988544787,FR -2988544788,2988544791,PL -2988544792,2988544799,PT +2988544788,2988544791,IT +2988544792,2988544799,FR 2988544800,2988544831,FI -2988544832,2988544863,PT +2988544832,2988544863,FR 2988544864,2988544895,PL 2988544896,2988544927,FR 2988544928,2988544931,DE @@ -92017,25 +91457,22 @@ 2988544992,2988544995,PL 2988544996,2988544999,FR 2988545000,2988545003,DE -2988545004,2988545011,FR -2988545012,2988545019,DE +2988545004,2988545015,FR +2988545016,2988545019,IT 2988545020,2988545027,FR 2988545028,2988545031,IT 2988545032,2988545039,PL 2988545040,2988545047,ES 2988545048,2988545051,FR -2988545052,2988545055,PL -2988545056,2988545067,GB +2988545052,2988545067,GB 2988545068,2988545071,ES -2988545072,2988545151,FR -2988545152,2988545167,PL +2988545072,2988545167,FR 2988545168,2988545171,DE 2988545172,2988545175,FR 2988545176,2988545183,PL 2988545184,2988545215,FR 2988545216,2988545223,PT -2988545224,2988545227,PL -2988545228,2988545247,FR +2988545224,2988545247,FR 2988545248,2988545287,PL 2988545288,2988545291,FR 2988545292,2988545295,DE @@ -92043,8 +91480,7 @@ 2988545332,2988545335,DE 2988545336,2988545375,FR 2988545376,2988545383,PT -2988545384,2988545387,ES -2988545388,2988545391,FR +2988545384,2988545391,FR 2988545392,2988545395,DE 2988545396,2988545439,FR 2988545440,2988545443,DE @@ -92054,10 +91490,8 @@ 2988545512,2988545515,IT 2988545516,2988545519,FR 2988545520,2988545523,PL -2988545524,2988545527,FR -2988545528,2988545531,PL -2988545532,2988545551,FR -2988545552,2988545555,ES +2988545524,2988545551,FR +2988545552,2988545555,GB 2988545556,2988545559,IT 2988545560,2988545563,FR 2988545564,2988545571,DE @@ -92078,13 +91512,14 @@ 2988545856,2988545859,ES 2988545860,2988545863,FR 2988545864,2988545871,PL -2988545872,2988545903,FR +2988545872,2988545887,FR +2988545888,2988545903,DE 2988545904,2988545919,IT 2988545920,2988545923,NL 2988545924,2988545927,PL 2988545928,2988545931,BE 2988545932,2988545935,PL -2988545936,2988545943,GB +2988545936,2988545943,FR 2988545944,2988545947,CZ 2988545948,2988545971,FR 2988545972,2988545975,DE @@ -92094,7 +91529,7 @@ 2988545988,2988545991,PL 2988545992,2988545995,LT 2988545996,2988545999,FI -2988546000,2988546015,GB +2988546000,2988546015,CZ 2988546016,2988546031,FR 2988546032,2988546035,ES 2988546036,2988546039,BE @@ -92113,13 +91548,14 @@ 2988546288,2988546291,GB 2988546292,2988546295,FR 2988546296,2988546299,PL -2988546300,2988546307,ES +2988546300,2988546303,ES +2988546304,2988546307,FR 2988546308,2988546311,GB 2988546312,2988546315,FR 2988546316,2988546319,PL 2988546320,2988546327,IT 2988546328,2988546335,ES -2988546336,2988546351,CH +2988546336,2988546351,FR 2988546352,2988546367,ES 2988546368,2988546431,PT 2988546432,2988546439,FR @@ -92173,21 +91609,22 @@ 2988546968,2988546971,FR 2988546972,2988546975,BE 2988546976,2988546991,FI -2988546992,2988546999,DE +2988546992,2988546995,DE +2988546996,2988546999,FR 2988547000,2988547003,IT 2988547004,2988547007,ES 2988547008,2988547011,PL 2988547012,2988547015,FR 2988547016,2988547019,NL 2988547020,2988547023,ES -2988547024,2988547039,FR -2988547040,2988547047,ES +2988547024,2988547047,FR 2988547048,2988547055,PL 2988547056,2988547059,IT 2988547060,2988547063,FR 2988547064,2988547067,GB -2988547068,2988547071,PL -2988547072,2988547095,FR +2988547068,2988547071,NL +2988547072,2988547087,DE +2988547088,2988547095,FR 2988547096,2988547099,GB 2988547100,2988547103,IE 2988547104,2988547111,FR @@ -92196,12 +91633,13 @@ 2988547124,2988547127,IT 2988547128,2988547135,FR 2988547136,2988547167,IT -2988547168,2988547179,FR +2988547168,2988547175,GB +2988547176,2988547179,FR 2988547180,2988547183,PL 2988547184,2988547191,ES 2988547192,2988547195,DE 2988547196,2988547199,PL -2988547200,2988547207,IE +2988547200,2988547207,FR 2988547208,2988547211,ES 2988547212,2988547215,GB 2988547216,2988547223,FR @@ -92209,9 +91647,9 @@ 2988547228,2988547239,FR 2988547240,2988547243,PL 2988547244,2988547247,DE -2988547248,2988547255,NL +2988547248,2988547255,LT 2988547256,2988547263,FR -2988547264,2988547267,GB +2988547264,2988547267,IT 2988547268,2988547271,ES 2988547272,2988547275,BE 2988547276,2988547311,FR @@ -92253,12 +91691,13 @@ 2988547688,2988547691,PL 2988547692,2988547695,CZ 2988547696,2988547703,ES -2988547704,2988547751,FR +2988547704,2988547711,PT +2988547712,2988547751,FR 2988547752,2988547759,ES 2988547760,2988547775,FR 2988547776,2988547815,ES 2988547816,2988547823,CH -2988547824,2988547831,PT +2988547824,2988547831,FR 2988547832,2988547839,ES 2988547840,2988547855,DE 2988547856,2988547871,NL @@ -92269,21 +91708,20 @@ 2988547972,2988547975,DE 2988547976,2988547983,PL 2988547984,2988548015,FR -2988548016,2988548019,ES +2988548016,2988548019,PL 2988548020,2988548023,GB 2988548024,2988548047,FR 2988548048,2988548051,PL -2988548052,2988548055,FR -2988548056,2988548063,PL +2988548052,2988548059,FR +2988548060,2988548063,PL 2988548064,2988550151,ES 2988550152,2988550155,NL 2988550156,2988550159,GB -2988550160,2988550163,PT +2988550160,2988550163,FR 2988550164,2988550167,GB 2988550168,2988550171,FR 2988550172,2988550175,CH -2988550176,2988550179,ES -2988550180,2988550191,FR +2988550176,2988550191,FR 2988550192,2988550199,DE 2988550200,2988550207,FR 2988550208,2988550231,GB @@ -92309,10 +91747,7 @@ 2988550435,2988550435,GB 2988550436,2988550447,GB 2988550448,2988550451,CH -2988550452,2988550463,FR -2988550464,2988550495,GB -2988550496,2988550527,PT -2988550528,2988550591,FR +2988550452,2988550591,FR 2988550592,2988550595,DE 2988550596,2988550599,PT 2988550600,2988550603,PL @@ -92324,25 +91759,21 @@ 2988550628,2988550631,CH 2988550632,2988550643,FR 2988550644,2988550647,ES -2988550648,2988550655,PL +2988550648,2988550651,PL +2988550652,2988550655,FR 2988550656,2988550671,DE 2988550672,2988550679,CZ -2988550680,2988550683,PL -2988550684,2988550687,FR +2988550680,2988550687,FR 2988550688,2988550695,LT 2988550696,2988550699,FR 2988550700,2988550703,ES 2988550704,2988550719,NL -2988550720,2988550751,IE -2988550752,2988550783,NL -2988550784,2988550847,FR +2988550720,2988550847,FR 2988550848,2988550863,PL 2988550864,2988550887,FR 2988550888,2988550895,PT 2988550896,2988550903,PL -2988550904,2988550951,FR -2988550952,2988550955,PL -2988550956,2988550967,FR +2988550904,2988550967,FR 2988550968,2988550975,ES 2988550976,2988551007,FR 2988551008,2988551039,PL @@ -92358,21 +91789,19 @@ 2988551180,2988551183,GB 2988551184,2988551199,ES 2988551200,2988551215,IT -2988551216,2988551231,FR +2988551216,2988551223,NL +2988551224,2988551231,FR 2988551232,2988551263,IT -2988551264,2988551295,FR -2988551296,2988551299,PL -2988551300,2988551303,FR +2988551264,2988551303,FR 2988551304,2988551307,NL 2988551308,2988551319,FR 2988551320,2988551323,PL 2988551324,2988551327,GB -2988551328,2988551343,FR -2988551344,2988551359,DE -2988551360,2988551423,FR +2988551328,2988551423,FR 2988551424,2988551427,LT 2988551428,2988551439,FR -2988551440,2988551447,GB +2988551440,2988551443,GB +2988551444,2988551447,FR 2988551448,2988551451,ES 2988551452,2988551455,PT 2988551456,2988551471,GB @@ -92390,28 +91819,26 @@ 2988551608,2988551615,IT 2988551616,2988551631,ES 2988551632,2988551635,DE -2988551636,2988551643,IT -2988551644,2988551647,FR +2988551636,2988551639,IT +2988551640,2988551647,FR 2988551648,2988551651,DE 2988551652,2988551655,FR 2988551656,2988551663,ES 2988551664,2988551671,GB -2988551672,2988551743,FR -2988551744,2988551759,PT -2988551760,2988551775,FR +2988551672,2988551775,FR 2988551776,2988551807,PL -2988551808,2988551903,FR +2988551808,2988551855,FR +2988551856,2988551871,GB +2988551872,2988551903,FR 2988551904,2988551911,GB -2988551912,2988551915,IT +2988551912,2988551915,FR 2988551916,2988551919,DE -2988551920,2988551923,FR -2988551924,2988551927,PT -2988551928,2988551935,FR +2988551920,2988551935,FR 2988551936,2988552191,GB 2988552192,2988552319,NL 2988552320,2988552447,FR 2988552448,2988552479,GB -2988552480,2988552511,FR +2988552480,2988552511,PT 2988552512,2988552543,BE 2988552544,2988552551,PL 2988552552,2988552559,IE @@ -92426,8 +91853,7 @@ 2988552596,2988552599,DE 2988552600,2988552603,FR 2988552604,2988552611,GB -2988552612,2988552615,FR -2988552616,2988552619,GB +2988552612,2988552619,FR 2988552620,2988552623,PL 2988552624,2988552627,FR 2988552628,2988552631,CZ @@ -92437,13 +91863,13 @@ 2988552648,2988552651,PT 2988552652,2988552659,FR 2988552660,2988552663,PT -2988552664,2988552703,FR +2988552664,2988552671,NL +2988552672,2988552703,FR 2988552704,2988552711,ES 2988552712,2988552715,PT 2988552716,2988552719,FR 2988552720,2988552735,DE -2988552736,2988552751,FR -2988552752,2988552767,ES +2988552736,2988552767,ES 2988552768,2988552771,DE 2988552772,2988552775,PL 2988552776,2988552779,FR @@ -92461,9 +91887,9 @@ 2988552888,2988552891,PL 2988552892,2988552895,FR 2988552896,2988552911,CZ -2988552912,2988552915,FR -2988552916,2988552919,DE -2988552920,2988552959,FR +2988552912,2988552927,FR +2988552928,2988552943,PT +2988552944,2988552959,FR 2988552960,2988552975,ES 2988552976,2988552991,FR 2988552992,2988552995,ES @@ -92472,7 +91898,7 @@ 2988553004,2988553007,GB 2988553008,2988553023,IE 2988553024,2988553087,LT -2988553088,2988553119,FR +2988553088,2988553119,PT 2988553120,2988553135,ES 2988553136,2988553151,FR 2988553152,2988553159,ES @@ -92481,9 +91907,7 @@ 2988553176,2988553179,IT 2988553180,2988553199,FR 2988553200,2988553215,BE -2988553216,2988553235,FR -2988553236,2988553239,PL -2988553240,2988553247,FR +2988553216,2988553247,FR 2988553248,2988553251,PL 2988553252,2988553255,FR 2988553256,2988553263,CH @@ -92493,36 +91917,33 @@ 2988553288,2988553295,ES 2988553296,2988553299,FR 2988553300,2988553303,PL -2988553304,2988553311,BE +2988553304,2988553311,GB 2988553312,2988553315,ES 2988553316,2988553319,PL 2988553320,2988553327,IT 2988553328,2988553335,GB 2988553336,2988553343,FR 2988553344,2988553359,IE -2988553360,2988553367,FR -2988553368,2988553375,DE -2988553376,2988553399,FR +2988553360,2988553399,FR 2988553400,2988553403,ES -2988553404,2988553407,GB +2988553404,2988553407,FR 2988553408,2988553411,LT 2988553412,2988553415,IT 2988553416,2988553439,FR 2988553440,2988553447,CZ -2988553448,2988553451,FR -2988553452,2988553455,ES -2988553456,2988553487,FR +2988553448,2988553487,FR 2988553488,2988553495,PL -2988553496,2988553511,FR +2988553496,2988553503,DE +2988553504,2988553511,FR 2988553512,2988553519,PT 2988553520,2988553527,FR 2988553528,2988553531,CH -2988553532,2988553551,FR -2988553552,2988553567,PL -2988553568,2988553575,FR +2988553532,2988553575,FR 2988553576,2988553579,CH 2988553580,2988553583,ES -2988553584,2988553631,FR +2988553584,2988553599,FR +2988553600,2988553607,PT +2988553608,2988553631,FR 2988553632,2988553639,PL 2988553640,2988553643,IE 2988553644,2988553647,FR @@ -92530,14 +91951,13 @@ 2988553652,2988553663,FR 2988553664,2988553679,LT 2988553680,2988553695,FR -2988553696,2988553727,PT +2988553696,2988553727,IE 2988553728,2988553735,PL 2988553736,2988553739,DE 2988553740,2988553743,PL 2988553744,2988553747,ES 2988553748,2988553751,FI -2988553752,2988553755,PL -2988553756,2988553775,FR +2988553752,2988553775,FR 2988553776,2988553783,PT 2988553784,2988553791,FR 2988553792,2988553807,GB @@ -92545,8 +91965,7 @@ 2988553824,2988553855,IT 2988553856,2988553919,BE 2988553920,2988553923,GB -2988553924,2988553927,ES -2988553928,2988553931,FR +2988553924,2988553931,FR 2988553932,2988553935,PL 2988553936,2988553951,FR 2988553952,2988553955,ES @@ -92567,14 +91986,14 @@ 2988554128,2988554131,IT 2988554132,2988554167,FR 2988554168,2988554171,PL -2988554172,2988554175,IE +2988554172,2988554175,FR 2988554176,2988554183,GB 2988554184,2988554223,FR 2988554224,2988554239,IT 2988554240,2988554495,ES -2988554496,2988554499,FR -2988554500,2988554511,PL -2988554512,2988554519,BE +2988554496,2988554503,FR +2988554504,2988554507,PL +2988554508,2988554519,FR 2988554520,2988554523,DE 2988554524,2988554527,FR 2988554528,2988554531,DE @@ -92583,21 +92002,23 @@ 2988554544,2988554555,FR 2988554556,2988554559,DE 2988554560,2988554623,IT -2988554624,2988554751,FR +2988554624,2988554687,ES +2988554688,2988554751,FR 2988554752,2988554783,FI 2988554784,2988554787,DE 2988554788,2988554791,PL 2988554792,2988554795,FR 2988554796,2988554799,IT 2988554800,2988554807,GB -2988554808,2988554815,FR +2988554808,2988554815,ES 2988554816,2988554879,GB 2988554880,2988554919,FR 2988554920,2988554923,PL 2988554924,2988554927,PT 2988554928,2988554931,DE 2988554932,2988554935,ES -2988554936,2988554943,FR +2988554936,2988554939,PL +2988554940,2988554943,FR 2988554944,2988555007,GB 2988555008,2988555047,FR 2988555048,2988555051,PL @@ -92611,8 +92032,7 @@ 2988555092,2988555099,FR 2988555100,2988555103,IT 2988555104,2988555107,GB -2988555108,2988555111,IT -2988555112,2988555123,FR +2988555108,2988555123,FR 2988555124,2988555127,IT 2988555128,2988555131,ES 2988555132,2988555135,GB @@ -92621,14 +92041,12 @@ 2988555160,2988555163,PL 2988555164,2988555167,IE 2988555168,2988555183,ES -2988555184,2988555187,GB +2988555184,2988555187,FR 2988555188,2988555191,NL -2988555192,2988555199,PL -2988555200,2988555203,NL -2988555204,2988555207,FR +2988555192,2988555199,GB +2988555200,2988555207,FR 2988555208,2988555211,NL -2988555212,2988555215,DE -2988555216,2988555519,FR +2988555212,2988555519,FR 2988555520,2988555527,IE 2988555528,2988555531,DE 2988555532,2988555535,FR @@ -92637,17 +92055,18 @@ 2988555552,2988555559,DE 2988555560,2988555647,FR 2988555648,2988555711,GB -2988555712,2988555715,PL +2988555712,2988555715,FR 2988555716,2988555719,ES 2988555720,2988555727,FR 2988555728,2988555731,PT -2988555732,2988555735,PL +2988555732,2988555735,FR 2988555736,2988555743,ES 2988555744,2988556031,FR 2988556032,2988556095,DE 2988556096,2988556099,FR 2988556100,2988556103,PL -2988556104,2988556111,DE +2988556104,2988556107,DE +2988556108,2988556111,PT 2988556112,2988556115,PL 2988556116,2988556123,FR 2988556124,2988556127,NL @@ -92664,12 +92083,12 @@ 2988556200,2988556203,CZ 2988556204,2988556207,FI 2988556208,2988556211,DE -2988556212,2988556215,FR -2988556216,2988556219,DE +2988556212,2988556219,FR 2988556220,2988556223,PL 2988556224,2988556227,ES 2988556228,2988556231,FR -2988556232,2988556239,PL +2988556232,2988556235,PL +2988556236,2988556239,FR 2988556240,2988556243,DE 2988556244,2988556251,FR 2988556252,2988556255,CZ @@ -92679,10 +92098,9 @@ 2988556272,2988556275,CH 2988556276,2988556279,FR 2988556280,2988556283,PL -2988556284,2988556287,GB -2988556288,2988556295,PL +2988556284,2988556295,GB 2988556296,2988556303,FR -2988556304,2988556311,PL +2988556304,2988556311,ES 2988556312,2988556315,FR 2988556316,2988556319,DE 2988556320,2988556351,GB @@ -92691,10 +92109,10 @@ 2988556360,2988556363,DE 2988556364,2988556383,FR 2988556384,2988556415,DE -2988556416,2988556419,IT -2988556420,2988556427,FR -2988556428,2988556431,ES -2988556432,2988556447,PL +2988556416,2988556427,FR +2988556428,2988556431,GB +2988556432,2988556439,IT +2988556440,2988556447,PL 2988556448,2988556451,NL 2988556452,2988556455,PL 2988556456,2988556463,FR @@ -92705,22 +92123,17 @@ 2988556492,2988556495,DE 2988556496,2988556539,FR 2988556540,2988556543,BE -2988556544,2988556799,DE -2988556800,2988556831,FR -2988556832,2988556839,DE -2988556840,2988556847,FR -2988556848,2988556855,ES -2988556856,2988556871,GB +2988556544,2988556863,FR +2988556864,2988556871,GB 2988556872,2988556879,FR 2988556880,2988556883,ES 2988556884,2988556887,DE 2988556888,2988556891,BE -2988556892,2988556895,FR +2988556892,2988556895,IT 2988556896,2988556911,PL 2988556912,2988556919,NL 2988556920,2988556927,PL -2988556928,2988556943,FR -2988556944,2988556959,BE +2988556928,2988556959,FR 2988556960,2988556963,PL 2988556964,2988556967,FR 2988556968,2988556975,BE @@ -92728,7 +92141,8 @@ 2988556980,2988556999,FR 2988557000,2988557003,BE 2988557004,2988557007,ES -2988557008,2988557015,FR +2988557008,2988557011,FR +2988557012,2988557015,PL 2988557016,2988557023,DE 2988557024,2988557039,IE 2988557040,2988557043,PT @@ -92757,17 +92171,16 @@ 2988557288,2988557291,PL 2988557292,2988557295,FR 2988557296,2988557299,BE -2988557300,2988557303,PL +2988557300,2988557303,ES 2988557304,2988557311,CZ 2988557312,2988557327,DE 2988557328,2988557343,ES -2988557344,2988557359,PT +2988557344,2988557359,FR 2988557360,2988557375,PL -2988557376,2988557379,FR -2988557380,2988557383,PL +2988557376,2988557383,FR 2988557384,2988557387,GB -2988557388,2988557391,CH -2988557392,2988557399,PL +2988557388,2988557395,FR +2988557396,2988557399,PL 2988557400,2988557403,ES 2988557404,2988557407,IT 2988557408,2988557427,ES @@ -92775,9 +92188,9 @@ 2988557432,2988557435,PL 2988557436,2988557439,ES 2988557440,2988557471,GB -2988557472,2988557487,PL +2988557472,2988557487,PT 2988557488,2988557491,FI -2988557492,2988557495,FR +2988557492,2988557495,PL 2988557496,2988557499,DE 2988557500,2988557503,PL 2988557504,2988557511,FR @@ -92795,7 +92208,7 @@ 2988557640,2988557643,IE 2988557644,2988557647,GB 2988557648,2988557651,NL -2988557652,2988557655,FR +2988557652,2988557655,CH 2988557656,2988557663,DE 2988557664,2988557695,PL 2988557696,2988557727,FR @@ -92807,7 +92220,7 @@ 2988557776,2988557791,BE 2988557792,2988557951,FR 2988557952,2988557983,LT -2988557984,2988557999,NL +2988557984,2988557999,FR 2988558000,2988558015,IE 2988558016,2988558047,NL 2988558048,2988558063,PL @@ -92827,21 +92240,13 @@ 2988558132,2988558135,PL 2988558136,2988558139,GB 2988558140,2988558143,DE -2988558144,2988558151,PT -2988558152,2988558159,FR +2988558144,2988558159,FR 2988558160,2988558175,IE 2988558176,2988558191,FR 2988558192,2988558199,CZ 2988558200,2988558203,PL 2988558204,2988558207,DE -2988558208,2988558271,ES -2988558272,2988558335,FI -2988558336,2988558399,IE -2988558400,2988558463,LT -2988558464,2988558527,NL -2988558528,2988558591,PL -2988558592,2988558655,GB -2988558656,2988558719,FR +2988558208,2988558719,FR 2988558720,2988558727,PL 2988558728,2988558731,IT 2988558732,2988558735,PT @@ -92851,9 +92256,7 @@ 2988558768,2988558783,CH 2988558784,2988558799,FR 2988558800,2988558803,IT -2988558804,2988558807,FR -2988558808,2988558811,BE -2988558812,2988558815,FR +2988558804,2988558815,FR 2988558816,2988558831,PT 2988558832,2988558847,IT 2988558848,2988558863,FR @@ -92861,14 +92264,14 @@ 2988558880,2988558883,FR 2988558884,2988558887,BE 2988558888,2988558891,GB -2988558892,2988558895,NL +2988558892,2988558895,DE 2988558896,2988558899,CH 2988558900,2988558903,FR 2988558904,2988558907,NL 2988558908,2988558911,PT 2988558912,2988558927,LT 2988558928,2988558935,GB -2988558936,2988558939,ES +2988558936,2988558939,IT 2988558940,2988558943,GB 2988558944,2988558975,FR 2988558976,2988559007,GB @@ -92884,14 +92287,14 @@ 2988559064,2988559071,FR 2988559072,2988559135,ES 2988559136,2988559139,DE -2988559140,2988559147,PL +2988559140,2988559143,FR +2988559144,2988559147,PL 2988559148,2988559151,GB 2988559152,2988559247,FR 2988559248,2988559255,GB 2988559256,2988559263,FR 2988559264,2988559295,LT -2988559296,2988559359,PL -2988559360,2988559615,FR +2988559296,2988559615,FR 2988559616,2988559619,ES 2988559620,2988559631,FR 2988559632,2988559663,IE @@ -92904,10 +92307,12 @@ 2988559708,2988559723,FR 2988559724,2988559727,IT 2988559728,2988559731,DE -2988559732,2988559807,FR +2988559732,2988559735,FR +2988559736,2988559743,GB +2988559744,2988559807,FR 2988559808,2988559871,ES -2988559872,2988560383,IT -2988560384,2988560387,FR +2988559872,2988560383,FR +2988560384,2988560387,CZ 2988560388,2988560391,ES 2988560392,2988560395,GB 2988560396,2988560399,FR @@ -92921,7 +92326,8 @@ 2988560456,2988560459,FR 2988560460,2988560463,CH 2988560464,2988560479,PL -2988560480,2988560515,ES +2988560480,2988560511,ES +2988560512,2988560515,FR 2988560516,2988560519,FI 2988560520,2988560527,FR 2988560528,2988560535,ES @@ -92931,11 +92337,8 @@ 2988560580,2988560587,ES 2988560588,2988560595,FR 2988560596,2988560599,IT -2988560600,2988560603,PL -2988560604,2988560623,FR -2988560624,2988560627,PL -2988560628,2988560631,FR -2988560632,2988560635,IE +2988560600,2988560603,PT +2988560604,2988560635,FR 2988560636,2988560639,DE 2988560640,2988560703,GB 2988560704,2988560711,FR @@ -92943,20 +92346,20 @@ 2988560720,2988560751,DE 2988560752,2988560759,FR 2988560760,2988560767,FI -2988560768,2988560783,FR +2988560768,2988560775,FR +2988560776,2988560779,IT +2988560780,2988560783,FR 2988560784,2988560799,NL 2988560800,2988560815,DE 2988560816,2988560831,FR -2988560832,2988560863,GB +2988560832,2988560863,PT 2988560864,2988560871,PL 2988560872,2988560875,GB 2988560876,2988560879,ES 2988560880,2988560895,GB 2988560896,2988560919,FR -2988560920,2988560923,DE -2988560924,2988560935,FR -2988560936,2988560939,NL -2988560940,2988560975,FR +2988560920,2988560927,IE +2988560928,2988560975,FR 2988560976,2988560991,PL 2988560992,2988560995,FR 2988560996,2988560999,PL @@ -92966,15 +92369,15 @@ 2988561044,2988561047,DE 2988561048,2988561051,PL 2988561052,2988561055,GB -2988561056,2988561059,FR +2988561056,2988561059,ES 2988561060,2988561071,PL 2988561072,2988561075,ES -2988561076,2988561079,FR -2988561080,2988561083,PL -2988561084,2988561091,FR +2988561076,2988561083,FR +2988561084,2988561087,BE +2988561088,2988561091,FR 2988561092,2988561095,LT 2988561096,2988561099,NL -2988561100,2988561103,CZ +2988561100,2988561103,ES 2988561104,2988561119,BE 2988561120,2988561171,FR 2988561172,2988561175,PL @@ -92984,29 +92387,25 @@ 2988561188,2988561191,FR 2988561192,2988561195,CZ 2988561196,2988561199,LT -2988561200,2988561203,BE +2988561200,2988561203,FR 2988561204,2988561207,GB 2988561208,2988561215,PL 2988561216,2988561231,FR 2988561232,2988561235,PT -2988561236,2988561239,GB -2988561240,2988561255,PL +2988561236,2988561243,GB +2988561244,2988561255,PL 2988561256,2988561259,ES 2988561260,2988561283,FR -2988561284,2988561287,NL -2988561288,2988561291,ES +2988561284,2988561291,ES 2988561292,2988561295,PT 2988561296,2988561303,GB 2988561304,2988561343,FR 2988561344,2988561375,PL 2988561376,2988561391,FR 2988561392,2988561403,ES -2988561404,2988561407,FR -2988561408,2988561423,IE +2988561404,2988561423,FR 2988561424,2988561431,PL -2988561432,2988561519,FR -2988561520,2988561535,PT -2988561536,2988561543,FR +2988561432,2988561543,FR 2988561544,2988561547,PL 2988561548,2988561551,FR 2988561552,2988561567,PL @@ -93021,7 +92420,7 @@ 2988561664,2988561667,GB 2988561668,2988561671,DE 2988561672,2988561675,NL -2988561676,2988561679,FI +2988561676,2988561679,ES 2988561680,2988561683,FR 2988561684,2988561687,ES 2988561688,2988561691,DE @@ -93033,7 +92432,7 @@ 2988561752,2988561755,FR 2988561756,2988561759,PL 2988561760,2988561763,LT -2988561764,2988561767,PT +2988561764,2988561767,IT 2988561768,2988561843,FR 2988561844,2988561847,IT 2988561848,2988561855,FR @@ -93045,8 +92444,7 @@ 2988561904,2988561983,FR 2988561984,2988562015,DE 2988562016,2988562023,ES -2988562024,2988562027,PL -2988562028,2988562031,LT +2988562024,2988562031,FR 2988562032,2988562047,PL 2988562048,2988562079,DE 2988562080,2988562095,FR @@ -93091,7 +92489,8 @@ 2988563056,2988563059,NL 2988563060,2988563063,CH 2988563064,2988563067,FI -2988563068,2988563075,PT +2988563068,2988563071,NL +2988563072,2988563075,PT 2988563076,2988563079,GB 2988563080,2988563083,DE 2988563084,2988563087,FR @@ -93128,7 +92527,7 @@ 2988563676,2988563679,NL 2988563680,2988563967,FR 2988563968,2988563999,BE -2988564000,2988564003,PL +2988564000,2988564003,FR 2988564004,2988564007,BE 2988564008,2988564011,FR 2988564012,2988564015,IE @@ -93143,8 +92542,7 @@ 2988564188,2988564191,GB 2988564192,2988564195,ES 2988564196,2988564199,LT -2988564200,2988564203,DE -2988564204,2988564215,FR +2988564200,2988564215,FR 2988564216,2988564219,GB 2988564220,2988564223,IT 2988564224,2988564275,FR @@ -93154,13 +92552,7 @@ 2988564304,2988564307,IT 2988564308,2988564311,PL 2988564312,2988564319,ES -2988564320,2988564351,FR -2988564352,2988564367,GB -2988564368,2988564383,FR -2988564384,2988564387,IE -2988564388,2988564391,GB -2988564392,2988564395,NL -2988564396,2988564399,CH +2988564320,2988564399,FR 2988564400,2988564403,DE 2988564404,2988564407,ES 2988564408,2988564471,FR @@ -93174,11 +92566,10 @@ 2989228032,2989490175,RU 2989490176,2989555711,HU 2989555712,2989621247,RU -2989621248,2989640447,BE -2989640448,2989640703,FR -2989640704,2989752319,BE +2989621248,2989752319,BE 2989752320,2989817855,SY -2989817856,2989883391,KW +2989817856,2989882367,KW +2989882368,2989883391,US 2989883392,2989948927,UA 2989948928,2990014463,FI 2990014464,2990079999,PL @@ -93188,9 +92579,7 @@ 2990276608,2990342143,ES 2990342144,2990385919,KW 2990385920,2990386175,US -2990386176,2990386687,KW -2990386688,2990386943,US -2990386944,2990407679,KW +2990386176,2990407679,KW 2990407680,2990473215,RU 2990473216,2990475674,DE 2990475675,2990475675,HR @@ -93207,8 +92596,8 @@ 2990518080,2990528703,DE 2990528704,2990528735,RS 2990528736,2990534655,DE -2990534656,2990534687,EG -2990534688,2990538751,DE +2990534656,2990534671,EG +2990534672,2990538751,DE 2990538752,2991063039,RU 2991063040,2991067135,SE 2991067136,2991071231,DK @@ -93219,29 +92608,28 @@ 2991128576,2991144959,PL 2991144960,2991161343,SA 2991161344,2991177727,FR -2991177728,2991178864,SE +2991177728,2991178751,SE +2991178752,2991178864,SE 2991178865,2991178878,SE -2991178879,2991178926,SE -2991178927,2991178927,SE -2991178928,2991179120,SE +2991178879,2991179120,SE 2991179121,2991179134,SE -2991179135,2991179167,SE -2991179168,2991179199,SE +2991179135,2991179135,SE +2991179136,2991179199,SE 2991179200,2991179327,SE 2991179328,2991179775,SE 2991179776,2991179888,SE 2991179889,2991179902,SE -2991179903,2991180144,SE +2991179903,2991179967,SE +2991179968,2991180031,SE +2991180032,2991180144,SE 2991180145,2991180158,SE 2991180159,2991180400,SE 2991180401,2991180414,SE -2991180415,2991180543,SE -2991180544,2991180670,SE +2991180415,2991180656,SE +2991180657,2991180670,SE 2991180671,2991180912,SE -2991180913,2991180926,SE -2991180927,2991180927,SE -2991180928,2991180991,SE -2991180992,2991181168,SE +2991180913,2991181055,SE +2991181056,2991181168,SE 2991181169,2991181182,SE 2991181183,2991181424,SE 2991181425,2991181438,SE @@ -93256,8 +92644,7 @@ 2991182944,2991182975,SE 2991182976,2991183071,SE 2991183072,2991183103,SE -2991183104,2991183871,SE -2991183872,2991185919,SE +2991183104,2991185919,SE 2991185920,2991185951,GB 2991185952,2991185967,NL 2991185968,2991185983,DE @@ -93511,10 +92898,11 @@ 2995044352,2995046399,ES 2995046400,2995048447,RU 2995048448,2995050495,NL -2995050496,2995050561,AT +2995050496,2995050559,AL +2995050560,2995050561,AT 2995050562,2995050562,RS -2995050563,2995050751,AT -2995050752,2995052543,AL +2995050563,2995050623,AT +2995050624,2995052543,AL 2995052544,2995056639,DK 2995056640,2995058687,DE 2995058688,2995060735,SE @@ -93659,7 +93047,9 @@ 2997190656,2997223423,AT 2997223424,2997256191,PT 2997256192,2997321727,RU -2997321728,2997354495,IE +2997321728,2997324031,IE +2997324032,2997324287,GB +2997324288,2997354495,IE 2997354496,2997387263,MD 2997387264,2997420031,BY 2997420032,2997452799,RU @@ -93755,7 +93145,9 @@ 2998140928,2998403071,PL 2998403072,2998665215,RU 2998665216,2998927359,AT -2998927360,2999451647,CH +2998927360,2999389951,CH +2999389952,2999390079,IT +2999390080,2999451647,CH 2999451648,2999713791,DE 2999713792,2999975935,RU 2999975936,2999984127,FR @@ -93929,9 +93321,7 @@ 3000700928,3000705023,PL 3000705024,3000709119,RU 3000709120,3000713215,AM -3000713216,3000715519,IT -3000715520,3000715775,US -3000715776,3000717311,IT +3000713216,3000717311,IT 3000717312,3000721407,UA 3000721408,3000733695,PL 3000733696,3000737791,RU @@ -94110,14 +93500,7 @@ 3001886576,3001886583,GE 3001886584,3001888767,NL 3001888768,3001892863,BH -3001892864,3001893247,AZ -3001893248,3001893631,RU -3001893632,3001894399,AZ -3001894400,3001894655,RU -3001894656,3001894911,AZ -3001894912,3001895167,RU -3001895168,3001896191,AZ -3001896192,3001896959,RU +3001892864,3001896959,AZ 3001896960,3001901055,CH 3001901056,3001905151,FR 3001905152,3001909247,GB @@ -94132,7 +93515,9 @@ 3001950208,3001954303,CZ 3001954304,3001958399,IT 3001958400,3001962495,KZ -3001962496,3001966591,GB +3001962496,3001963007,GB +3001963008,3001963263,DE +3001963264,3001966591,GB 3001966592,3001970687,NL 3001970688,3001974783,RU 3001974784,3001982975,GB @@ -94353,7 +93738,9 @@ 3003077696,3003077711,US 3003077712,3003077887,GB 3003077888,3003077951,US -3003077952,3003080703,GB +3003077952,3003078143,GB +3003078144,3003078151,US +3003078152,3003080703,GB 3003080704,3003081150,FR 3003081151,3003081156,GB 3003081157,3003082751,FR @@ -94395,15 +93782,33 @@ 3003115520,3003117567,RU 3003117568,3003119615,IT 3003119616,3003121663,RU +3003121664,3003122175,AR +3003122176,3003122687,CL +3003122688,3003123711,AR +3003123712,3003123967,CL +3003123968,3003124479,CO +3003129856,3003138047,CR +3003187200,3003252735,CO 3003252736,3003449343,CL 3003580416,3003645951,PE 3003908096,3004170239,CO 3004694528,3005218815,UY 3006267392,3006271231,PA 3006271232,3006271487,NI -3006271488,3006332927,PA +3006271488,3006277887,PA +3006277888,3006278143,NI +3006278144,3006296575,PA +3006296576,3006296831,CR +3006296832,3006308351,PA +3006308352,3006308607,CR +3006308608,3006322431,PA +3006322432,3006322687,CR +3006322688,3006330367,PA +3006330368,3006330623,NI +3006330624,3006330879,PA +3006332928,3006349311,EC 3006529536,3006660607,DO -3009413120,3009445887,BR +3009413120,3010461695,BR 3011510272,3019898879,BR 3019898880,3024093183,JP 3024093184,3024617471,KR @@ -94415,9 +93820,7 @@ 3025603840,3025604095,HK 3025604096,3025604351,IN 3025604352,3025604637,SG -3025604638,3025607423,IN -3025607424,3025607679,HK -3025607680,3025633535,IN +3025604638,3025633535,IN 3025633536,3025633791,HK 3025633792,3025635839,IN 3025635840,3025636095,SG @@ -94462,14 +93865,21 @@ 3026069504,3026071551,JP 3026071552,3026073599,HK 3026073600,3026075647,CN -3026075648,3026076927,AF -3026076928,3026077183,IT -3026077184,3026079743,US +3026075648,3026077183,AF +3026077184,3026077695,US +3026077696,3026077951,AF +3026077952,3026079743,US 3026079744,3026079999,AF -3026080000,3026080511,US -3026080512,3026080767,AF -3026080768,3026081279,US -3026081280,3026083839,AF +3026080000,3026080767,US +3026080768,3026080769,AF +3026080770,3026080770,US +3026080771,3026081023,AF +3026081024,3026081279,US +3026081280,3026081535,AF +3026081536,3026082047,US +3026082048,3026082303,AF +3026082304,3026082559,US +3026082560,3026083839,AF 3026083840,3026087935,CN 3026087936,3026089983,AU 3026092032,3026108415,MO @@ -94529,7 +93939,9 @@ 3029727232,3029728255,AU 3029728256,3029729279,HK 3029729280,3029762047,AU -3029762048,3029770239,HK +3029762048,3029765631,HK +3029765632,3029765887,ID +3029765888,3029770239,HK 3029770240,3029778431,CN 3029778432,3029788671,KR 3029788672,3029790719,ID @@ -94623,8 +94035,8 @@ 3034472448,3034478591,IN 3034478592,3034480639,JP 3034480640,3034482687,SG -3034482688,3034483199,AF -3034483200,3034483967,US +3034482688,3034483711,AF +3034483712,3034483967,US 3034483968,3034484735,AF 3034484736,3034488831,TH 3034488832,3034492927,NZ @@ -94674,7 +94086,7 @@ 3037986816,3038773247,AR 3039035392,3039166463,DO 3039297536,3039363071,PY -3039363072,3039395839,BZ +3039363072,3039428607,BZ 3039428608,3039494143,CL 3039690752,3039821823,AR 3039821824,3040870399,CO @@ -94692,8 +94104,8 @@ 3044208640,3044212735,BZ 3044212736,3044245503,HN 3044245504,3044278271,BO -3044278272,3044505599,AR -3044505600,3044507647,US +3044278272,3044503551,AR +3044503552,3044507647,US 3044507648,3044540415,AR 3044802560,3045064703,PY 3045064704,3047161855,CO @@ -94732,12 +94144,18 @@ 3050307584,3050340351,VE 3050373120,3050405887,AR 3050438656,3050504191,HN -3051356160,3051380735,CR +3051356160,3051376895,CR +3051376896,3051377151,PA +3051377152,3051379455,CR +3051379456,3051379711,PA +3051379712,3051380735,CR 3051380736,3051388927,AR -3051388928,3051393023,PA -3051393024,3051395071,US +3051388928,3051395071,US 3051395072,3051397119,PA +3051397120,3051398143,CO +3051398144,3051399167,AR 3051399168,3051400191,DO +3051400192,3051401215,EC 3051401216,3051403263,AR 3051405312,3051407359,CR 3051407360,3051408383,PE @@ -94748,6 +94166,8 @@ 3051429888,3051438079,VE 3051446272,3051450367,CO 3051450368,3051454463,CL +3051462656,3051470847,PE +3051479040,3051487231,CU 3051487232,3051552767,CL 3051552768,3051618303,BO 3051618304,3051749375,AR @@ -94756,11 +94176,11 @@ 3051964672,3051964927,PA 3051964928,3051971071,CR 3051971072,3051971327,PA -3051971328,3051972095,CR -3051972096,3051972351,PA +3051971328,3051971839,CR +3051971840,3051972351,PA 3051972352,3051973887,CR 3051973888,3051974143,PA -3051974144,3051978751,CR +3051974144,3051986943,CR 3051995136,3052011519,PE 3052142592,3052273663,CO 3052273664,3052404735,AR @@ -94883,9 +94303,9 @@ 3064811520,3064823807,KR 3064823808,3064831999,JP 3064832000,3064840191,KR -3064840192,3064852479,GU -3064852480,3064854527,US -3064854528,3064856575,GU +3064840192,3064846335,GU +3064846336,3064848383,US +3064848384,3064856575,GU 3064856576,3064987647,CN 3064987648,3066036223,PK 3066036224,3066560511,KR @@ -95005,9 +94425,9 @@ 3091955712,3091959807,CA 3091959808,3091976191,US 3091976192,3091980287,CA -3091980288,3092569855,US -3092569856,3092570111,AU -3092570112,3092700671,US +3091980288,3092569343,US +3092569344,3092569599,AU +3092569600,3092700671,US 3092700672,3092700927,AU 3092700928,3093168127,US 3093168128,3093200895,CA @@ -95035,9 +94455,17 @@ 3093245576,3093245583,BR 3093245584,3093245719,US 3093245720,3093245727,AU -3093245728,3093247327,US +3093245728,3093245999,US +3093246000,3093246007,AU +3093246008,3093246431,US +3093246432,3093246439,AU +3093246440,3093247327,US 3093247328,3093247335,AU -3093247336,3093248375,US +3093247336,3093247511,US +3093247512,3093247519,AU +3093247520,3093247967,US +3093247968,3093247983,CA +3093247984,3093248375,US 3093248376,3093248399,AU 3093248400,3093248415,US 3093248416,3093248431,AU @@ -95115,7 +94543,9 @@ 3098255400,3098255407,BR 3098255408,3098255903,US 3098255904,3098255911,MV -3098255912,3098263551,US +3098255912,3098258671,US +3098258672,3098258679,MV +3098258680,3098263551,US 3098263552,3098271743,CA 3098271744,3098275950,US 3098275951,3098275953,CL @@ -95245,7 +94675,9 @@ 3098386912,3098386919,TR 3098386920,3098387607,US 3098387608,3098387615,RO -3098387616,3098388175,US +3098387616,3098387743,US +3098387744,3098387751,RO +3098387752,3098388175,US 3098388176,3098388183,SA 3098388184,3098390271,US 3098390272,3098390279,ES @@ -95297,7 +94729,8 @@ 3103850752,3103851007,PS 3103851520,3103852543,PL 3103852544,3103852799,AE -3103852800,3103853055,PL +3103852800,3103853567,PL +3103853568,3103853823,NO 3103916032,3103917055,CH 3103917056,3103918079,IT 3103918080,3103919103,DE @@ -95307,7 +94740,9 @@ 3103922176,3103924223,NL 3103924224,3103925247,RU 3103925248,3103926271,PL -3103926272,3103927295,CZ +3103926272,3103927039,CZ +3103927040,3103927103,SK +3103927104,3103927295,CZ 3103927296,3103929343,NL 3103929344,3103930367,BE 3103930368,3103931391,DE @@ -95464,7 +94899,8 @@ 3104082944,3104083967,IT 3104083968,3104084991,RU 3104084992,3104085247,DK -3104085248,3104086015,NL +3104085248,3104085503,HR +3104085504,3104086015,NL 3104086016,3104087039,IT 3104087040,3104088063,GB 3104088064,3104089087,UZ @@ -95530,8 +94966,8 @@ 3104143360,3104144383,NL 3104144384,3104145407,ES 3104145408,3104146431,RU -3104146432,3104147199,NL -3104147200,3104147455,US +3104146432,3104146943,NL +3104146944,3104147455,US 3104147456,3104149503,RU 3104149504,3104150527,GB 3104150528,3104151551,RU @@ -95716,19 +95152,16 @@ 3104331776,3104333823,GB 3104333824,3104334847,ES 3104334848,3104335871,SE -3104335872,3104335887,LT -3104335888,3104335935,CN +3104335872,3104335903,LT +3104335904,3104335935,CN 3104335936,3104335967,LT 3104335968,3104335975,CN 3104335976,3104335983,SC 3104335984,3104335999,US 3104336000,3104336111,CN 3104336112,3104336119,GB -3104336120,3104336135,LT -3104336136,3104336139,LV -3104336140,3104336143,LT -3104336144,3104336151,IL -3104336152,3104336159,LT +3104336120,3104336151,LT +3104336152,3104336159,DE 3104336160,3104336191,LK 3104336192,3104336223,BD 3104336224,3104336239,PH @@ -95737,9 +95170,11 @@ 3104336384,3104336399,LT 3104336400,3104336415,US 3104336416,3104336431,EE -3104336432,3104336447,SC -3104336448,3104336495,LK -3104336496,3104336895,LT +3104336432,3104336447,LT +3104336448,3104336511,LK +3104336512,3104336575,LT +3104336576,3104336639,CN +3104336640,3104336895,LT 3104336896,3104337919,GB 3104337920,3104338943,IE 3104338944,3104339967,DE @@ -95755,7 +95190,8 @@ 3104349184,3104350207,RU 3104350208,3104352255,CZ 3104352256,3104353279,DE -3104353280,3104354303,IR +3104353280,3104353792,IR +3104353793,3104354303,DE 3104354304,3104355327,NL 3104355328,3104356351,RU 3104356352,3104357375,AT @@ -95787,8 +95223,7 @@ 3104384000,3104385023,TR 3104385024,3104386047,UA 3104386048,3104387071,AL -3104387072,3104387583,GB -3104387584,3104388095,US +3104387072,3104388095,GB 3104388096,3104389119,IT 3104389120,3104390143,PL 3104390144,3104391167,SE @@ -95849,7 +95284,9 @@ 3104454656,3104455679,NL 3104455680,3104456703,RU 3104456704,3104457727,IL -3104457728,3104458751,DE +3104457728,3104458623,DE +3104458624,3104458639,AT +3104458640,3104458751,DE 3104458752,3104459775,IR 3104459776,3104460799,IT 3104460800,3104461823,ES @@ -96036,7 +95473,8 @@ 3104622592,3104623615,GB 3104623616,3104624639,FR 3104624640,3104625663,RU -3104625664,3104626687,BY +3104625664,3104625919,NL +3104625920,3104626687,BY 3104626688,3104627711,NL 3104627712,3104628735,LB 3104628736,3104629759,TR @@ -96120,16 +95558,20 @@ 3104658432,3104659455,JO 3104659456,3104660479,LU 3104660480,3104661503,NO -3104661504,3104661711,SE +3104661504,3104661679,SE +3104661680,3104661711,GB 3104661712,3104661727,NO 3104661728,3104661759,PL -3104661760,3104661967,SE +3104661760,3104661935,SE +3104661936,3104661967,GB 3104661968,3104661983,NO 3104661984,3104662015,PL -3104662016,3104662223,SE +3104662016,3104662191,SE +3104662192,3104662223,GB 3104662224,3104662239,NO 3104662240,3104662271,PL -3104662272,3104662479,SE +3104662272,3104662447,SE +3104662448,3104662479,GB 3104662480,3104662495,NO 3104662496,3104662527,PL 3104662528,3104663551,FR @@ -96293,9 +95735,7 @@ 3104830464,3104831135,DE 3104831136,3104831167,GB 3104831168,3104831199,YE -3104831200,3104831391,DE -3104831392,3104831423,AT -3104831424,3104831455,DE +3104831200,3104831455,DE 3104831456,3104831487,TR 3104831488,3104832511,NL 3104832512,3104833535,CZ @@ -96424,7 +95864,8 @@ 3104963584,3104964607,GB 3104964608,3104965631,DK 3104965632,3104966655,RU -3104966656,3104967679,NL +3104966656,3104966911,BE +3104966912,3104967679,NL 3104967680,3104968703,RS 3104968704,3104969727,ES 3104969728,3104970751,RU @@ -96604,7 +96045,9 @@ 3105150976,3105151999,UA 3105152000,3105153023,NL 3105153024,3105154047,RU -3105154048,3105156095,DE +3105154048,3105155327,DE +3105155328,3105155583,CH +3105155584,3105156095,DE 3105156096,3105157119,AT 3105157120,3105158143,DK 3105158144,3105159167,NO @@ -96667,7 +96110,8 @@ 3105220608,3105221631,DK 3105221632,3105222655,AT 3105222656,3105223679,NL -3105223680,3105224703,DE +3105223680,3105224575,DE +3105224576,3105224703,AE 3105224704,3105225727,IT 3105225728,3105226751,AM 3105226752,3105227775,RO @@ -96687,7 +96131,8 @@ 3105240320,3105240383,IS 3105240384,3105240446,CH 3105240447,3105240575,IS -3105240576,3105241087,CH +3105240576,3105240639,US +3105240640,3105241087,CH 3105241088,3105242111,TR 3105242112,3105243135,RU 3105243136,3105244159,KZ @@ -96709,6 +96154,190 @@ 3105260544,3105261567,FI 3105261568,3105262591,PL 3105262592,3105263615,DE +3105263616,3105264639,RS +3105264640,3105265663,DE +3105265664,3105266687,RU +3105266688,3105267711,IE +3105267712,3105268735,TR +3105268736,3105269759,GB +3105269760,3105270783,FR +3105270784,3105271807,RU +3105271808,3105272831,SK +3105272832,3105273855,RU +3105273856,3105274879,TR +3105274880,3105276927,NL +3105276928,3105277951,FR +3105277952,3105278975,ES +3105278976,3105279999,RU +3105280000,3105281023,GB +3105281024,3105282047,SK +3105282048,3105283071,FR +3105283072,3105284095,DE +3105284096,3105285119,GB +3105285120,3105286143,IT +3105286144,3105287167,RU +3105287168,3105288191,CZ +3105288192,3105289215,GB +3105289216,3105290239,AT +3105290240,3105291263,TR +3105291264,3105292287,CH +3105292288,3105293311,DE +3105293312,3105294335,GB +3105294336,3105295359,RU +3105295360,3105296383,PL +3105296384,3105297407,LT +3105297408,3105298431,PL +3105298432,3105299455,NL +3105299456,3105300479,IT +3105300480,3105301503,RU +3105301504,3105302527,ES +3105302528,3105303551,FR +3105303552,3105304575,IE +3105304576,3105305599,GE +3105305600,3105308671,GB +3105308672,3105309695,RU +3105309696,3105310719,ES +3105310720,3105311743,TR +3105311744,3105312767,SA +3105312768,3105313791,RU +3105313792,3105314815,IT +3105314816,3105315839,GR +3105315840,3105316863,FR +3105316864,3105317887,A2 +3105317888,3105318911,GB +3105318912,3105319935,UA +3105319936,3105320959,HU +3105320960,3105321983,SK +3105321984,3105323007,GB +3105323008,3105324031,ES +3105324032,3105325055,BH +3105325056,3105326079,IR +3105326080,3105328127,FR +3105328128,3105329151,NL +3105329152,3105330175,NO +3105330176,3105331199,PL +3105331200,3105332223,IQ +3105332224,3105333247,DE +3105333248,3105334271,LV +3105334272,3105335295,RU +3105335296,3105336319,GR +3105336320,3105337343,IL +3105337344,3105339391,GB +3105339392,3105340415,SY +3105340416,3105341439,FR +3105341440,3105342463,ES +3105342464,3105343487,AE +3105343488,3105344511,TJ +3105344512,3105345535,NO +3105345536,3105346559,DE +3105346560,3105347583,NL +3105347584,3105348607,DK +3105348608,3105349631,ES +3105349632,3105350655,DE +3105350656,3105351679,RU +3105351680,3105352703,GB +3105352704,3105354751,DE +3105354752,3105355775,BE +3105355776,3105356799,NL +3105356800,3105357823,GB +3105357824,3105358847,IS +3105358848,3105359871,ES +3105359872,3105360895,CZ +3105360896,3105361919,GB +3105361920,3105362943,FR +3105362944,3105363967,CZ +3105363968,3105364991,PL +3105364992,3105366015,FR +3105366016,3105367039,AL +3105367040,3105368063,SI +3105368064,3105370111,RU +3105370112,3105371135,NL +3105371136,3105373183,RU +3105373184,3105374207,SY +3105374208,3105375231,GB +3105375232,3105376255,DE +3105376256,3105377279,GB +3105377280,3105378303,IL +3105378304,3105380351,GB +3105380352,3105381375,PL +3105381376,3105382399,RU +3105382400,3105383423,GB +3105383424,3105383679,BY +3105383680,3105384447,AT +3105384448,3105385471,IT +3105385472,3105386495,DE +3105386496,3105387519,RU +3105387520,3105388543,IT +3105388544,3105389567,GB +3105389568,3105390591,TR +3105390592,3105391615,JO +3105391616,3105392639,NL +3105392640,3105393663,IR +3105393664,3105394687,FR +3105394688,3105395711,MD +3105395712,3105396735,IR +3105396736,3105398783,FR +3105398784,3105399807,GB +3105399808,3105400831,PL +3105400832,3105401855,DK +3105401856,3105402879,NL +3105402880,3105404927,RU +3105404928,3105405951,FR +3105405952,3105406975,NO +3105406976,3105407999,FR +3105408000,3105410047,PL +3105410048,3105411071,IL +3105411072,3105412095,BA +3105412096,3105413119,RU +3105413120,3105414143,PL +3105414144,3105416191,NL +3105416192,3105417215,IR +3105417216,3105418239,IE +3105418240,3105419263,CZ +3105419264,3105420287,NL +3105420288,3105421311,RU +3105421312,3105422335,NL +3105422336,3105423359,IR +3105423360,3105424383,LT +3105424384,3105426431,RU +3105426432,3105427455,QA +3105427456,3105428479,RU +3105428480,3105429503,GR +3105429504,3105430527,ES +3105430528,3105431551,CH +3105431552,3105432575,GB +3105432576,3105433599,DE +3105433600,3105434623,FR +3105434624,3105435647,SE +3105435648,3105436416,LT +3105436417,3105436480,CN +3105436481,3105436511,LT +3105436512,3105436543,RU +3105436544,3105436671,CN +3105436672,3105437695,GR +3105437696,3105438719,GB +3105438720,3105439743,RU +3105439744,3105440767,GB +3105440768,3105441791,RU +3105441792,3105442815,IT +3105442816,3105443839,FI +3105443840,3105444863,NL +3105444864,3105445887,GB +3105445888,3105446911,RU +3105446912,3105447935,CH +3105447936,3105448959,DE +3105448960,3105449983,TR +3105449984,3105451007,AE +3105451008,3105452031,PL +3105452032,3105453055,ES +3105453056,3105454079,UA +3105454080,3105455103,PL +3105455104,3105456127,AT +3105456128,3105457151,IT +3105457152,3105458175,DE +3105458176,3105459199,IT +3105459200,3105460223,DK +3105460224,3105461247,GB 3120562176,3120594943,CO 3120594944,3120599039,AR 3120599040,3120601087,EC @@ -96784,7 +96413,9 @@ 3122737408,3122738431,US 3122738432,3122739199,AR 3122739200,3122739455,US -3122739456,3122740479,AR +3122739456,3122739711,AR +3122739712,3122740223,US +3122740224,3122740479,AR 3122740480,3122740735,US 3122740736,3122741247,AR 3122741248,3122757631,DO @@ -96801,7 +96432,9 @@ 3123707904,3124232191,UY 3124232192,3124760751,AR 3124760752,3124760759,MX -3124760760,3124783103,AR +3124760760,3124765183,AR +3124765184,3124765439,MX +3124765440,3124783103,AR 3124783104,3124785151,GT 3124785152,3124788223,CL 3124788224,3124789247,PE @@ -96887,9 +96520,7 @@ 3133073408,3133074431,CW 3133074432,3133075455,CL 3133075456,3133079551,CW -3133079552,3133083647,AR -3133083648,3133087743,UY -3133087744,3133145087,AR +3133079552,3133145087,AR 3133145088,3145727999,BR 3145728000,3154116607,MX 3154116608,3154124799,RU @@ -96920,9 +96551,7 @@ 3156539648,3156541439,HU 3156541440,3156606975,PT 3156606976,3156672511,TR -3156672512,3156676863,GB -3156676864,3156677119,ES -3156677120,3156738047,GB +3156672512,3156738047,GB 3156738048,3156759431,DE 3156759432,3156759432,GB 3156759433,3156791439,DE @@ -97051,13 +96680,14 @@ 3158446080,3158448127,NL 3158450176,3158452223,RU 3158452224,3158454271,DE -3158454272,3158458367,EU 3158458368,3158474751,GB 3158474752,3158507519,OM 3158507520,3158573055,FI 3158573056,3158638591,RU 3158638592,3158704127,LT -3158704128,3158835199,KW +3158704128,3158749183,KW +3158749184,3158751231,US +3158751232,3158835199,KW 3158835200,3158851583,IQ 3158851584,3158867967,RU 3158867968,3158884351,AZ @@ -97339,33 +96969,36 @@ 3161636864,3161653247,RU 3161653248,3161669631,LU 3161669632,3161669887,RE -3161669888,3161670143,FR -3161670144,3161670655,RE +3161669888,3161670399,FR +3161670400,3161670655,RE 3161670656,3161670911,FR 3161670912,3161671167,RE 3161671168,3161671679,FR 3161671680,3161672191,RE -3161672192,3161672959,FR -3161672960,3161673727,RE +3161672192,3161672703,FR +3161672704,3161672959,RE +3161672960,3161673215,FR +3161673216,3161673727,RE 3161673728,3161674751,FR 3161674752,3161675263,RE -3161675264,3161677311,FR -3161677312,3161677823,RE +3161675264,3161676799,FR +3161676800,3161677823,RE 3161677824,3161678079,MQ 3161678080,3161678335,FR -3161678336,3161678847,MQ -3161678848,3161679103,FR -3161679104,3161679871,MQ -3161679872,3161682431,FR -3161682432,3161682687,GF -3161682688,3161683199,FR -3161683200,3161683455,MQ -3161683456,3161683711,FR -3161683712,3161683967,MQ -3161683968,3161684479,FR -3161684480,3161685247,MQ -3161685248,3161685759,FR -3161685760,3161686015,MQ +3161678336,3161679871,MQ +3161679872,3161680127,FR +3161680128,3161680895,GP +3161680896,3161681151,FR +3161681152,3161681663,GP +3161681664,3161681919,FR +3161681920,3161682943,GF +3161682944,3161683199,FR +3161683200,3161683967,MQ +3161683968,3161684223,FR +3161684224,3161684735,MQ +3161684736,3161684991,FR +3161684992,3161685247,MQ +3161685248,3161686015,FR 3161686016,3161702399,UA 3161702400,3161718783,AM 3161718784,3161735167,PL @@ -97403,9 +97036,7 @@ 3162071040,3162087423,IR 3162087424,3162095615,SK 3162095616,3162103807,GE -3162103808,3162107903,FR -3162107904,3162108415,NL -3162108416,3162109951,FR +3162103808,3162109951,FR 3162109952,3162110975,NL 3162110976,3162111231,FR 3162111232,3162111999,NL @@ -97455,18 +97086,18 @@ 3162390528,3162391807,SE 3162391808,3162391920,SE 3162391921,3162391934,SE -3162391935,3162392063,SE -3162392064,3162392959,SE +3162391935,3162391935,SE +3162391936,3162392959,SE 3162392960,3162393114,SE 3162393115,3162393115,SE 3162393116,3162393200,SE -3162393201,3162393343,SE -3162393344,3162393456,SE +3162393201,3162393214,SE +3162393215,3162393456,SE 3162393457,3162393470,SE -3162393471,3162393599,SE -3162393600,3162394623,SE -3162394624,3162396671,SE -3162396672,3162398719,SE +3162393471,3162393503,SE +3162393504,3162393535,SE +3162393536,3162393599,SE +3162393600,3162398719,SE 3162398720,3162406911,BE 3162406912,3162415103,IR 3162415104,3162423295,DE @@ -97612,9 +97243,10 @@ 3163161664,3163161695,US 3163161696,3163161727,BG 3163161728,3163161759,DE -3163161760,3163161823,BR +3163161760,3163161791,BR +3163161792,3163161823,DE 3163161824,3163161855,US -3163161856,3163161887,BR +3163161856,3163161887,DE 3163161888,3163161951,US 3163161952,3163162015,DE 3163162016,3163162047,US @@ -97628,7 +97260,9 @@ 3163162432,3163162463,CY 3163162464,3163162559,DE 3163162560,3163162623,US -3163162624,3163163679,DE +3163162624,3163163199,DE +3163163200,3163163231,GB +3163163232,3163163679,DE 3163163680,3163163711,RU 3163163712,3163163743,DE 3163163744,3163163807,US @@ -97638,8 +97272,7 @@ 3163163904,3163163935,GR 3163163936,3163163967,DE 3163163968,3163163999,US -3163164000,3163164063,DE -3163164064,3163164095,AM +3163164000,3163164095,DE 3163164096,3163164127,RU 3163164128,3163164159,DE 3163164160,3163164191,US @@ -97662,9 +97295,7 @@ 3163165696,3163165727,US 3163165728,3163165759,RU 3163165760,3163165791,PL -3163165792,3163165823,DE -3163165824,3163165855,BR -3163165856,3163165887,DE +3163165792,3163165887,DE 3163165888,3163165919,AR 3163165920,3163165951,US 3163165952,3163165983,DE @@ -97680,8 +97311,7 @@ 3163166240,3163166271,IT 3163166272,3163166335,DE 3163166336,3163166399,US -3163166400,3163166463,DE -3163166464,3163166495,BR +3163166400,3163166495,DE 3163166496,3163166527,RO 3163166528,3163166591,DE 3163166592,3163166623,IN @@ -97702,7 +97332,7 @@ 3163168192,3163168223,AT 3163168224,3163168255,DE 3163168256,3163168287,US -3163168288,3163168319,BR +3163168288,3163168319,DE 3163168320,3163168351,DK 3163168352,3163168383,RU 3163168384,3163168415,DE @@ -97731,8 +97361,7 @@ 3163170304,3163170335,IT 3163170336,3163170367,RO 3163170368,3163170399,US -3163170400,3163170431,BR -3163170432,3163170463,DE +3163170400,3163170463,DE 3163170464,3163170495,US 3163170496,3163170527,DE 3163170528,3163170559,AE @@ -97745,8 +97374,7 @@ 3163170816,3163171839,DE 3163171840,3163171871,NL 3163171872,3163171903,RO -3163171904,3163171935,BR -3163171936,3163171967,DE +3163171904,3163171967,DE 3163171968,3163171999,US 3163172000,3163172031,DE 3163172032,3163172063,LT @@ -97782,18 +97410,14 @@ 3163174240,3163174303,DE 3163174304,3163174335,US 3163174336,3163174367,RU -3163174368,3163174431,DE -3163174432,3163174463,BR -3163174464,3163174495,DE +3163174368,3163174495,DE 3163174496,3163174527,US 3163174528,3163174559,DE 3163174560,3163174591,PL 3163174592,3163174623,SE 3163174624,3163174655,GB 3163174656,3163174687,RU -3163174688,3163174751,DE -3163174752,3163174783,BR -3163174784,3163174815,DE +3163174688,3163174815,DE 3163174816,3163174847,CA 3163174848,3163174879,TR 3163174880,3163174911,RU @@ -97807,17 +97431,14 @@ 3163176192,3163176223,US 3163176224,3163176287,DE 3163176288,3163176319,RU -3163176320,3163176351,DE -3163176352,3163176383,BR +3163176320,3163176383,DE 3163176384,3163176415,IN 3163176416,3163176479,DE 3163176480,3163176511,FR 3163176512,3163176543,RU 3163176544,3163176575,UG 3163176576,3163176607,GR -3163176608,3163176671,DE -3163176672,3163176703,BR -3163176704,3163176767,DE +3163176608,3163176767,DE 3163176768,3163176799,PL 3163176800,3163176831,EG 3163176832,3163176863,DE @@ -97870,12 +97491,10 @@ 3164936192,3164937749,LT 3164937750,3164937750,FR 3164937751,3164938239,LT -3164938240,3164946431,FR -3164946432,3164946435,PL -3164946436,3164946439,PT -3164946440,3164946447,ES -3164946448,3164946479,FR -3164946480,3164946483,ES +3164938240,3164946435,FR +3164946436,3164946447,PT +3164946448,3164946471,FR +3164946472,3164946483,ES 3164946484,3164946495,PL 3164946496,3164946499,IT 3164946500,3164946503,GB @@ -97892,27 +97511,29 @@ 3164947008,3164947039,FR 3164947040,3164947043,ES 3164947044,3164947047,GB -3164947048,3164947055,FR -3164947056,3164947063,GB +3164947048,3164947063,FR 3164947064,3164947067,NL 3164947068,3164947071,IT 3164947072,3164947519,FR 3164947520,3164947551,ES 3164947552,3164947567,DE -3164947568,3164947587,FR +3164947568,3164947575,PT +3164947576,3164947579,DE +3164947580,3164947587,FR 3164947588,3164947591,DE 3164947592,3164947599,GB 3164947600,3164947619,FR 3164947620,3164947623,ES -3164947624,3164947627,GB +3164947624,3164947627,PL 3164947628,3164947635,ES 3164947636,3164947639,DE 3164947640,3164947643,IT 3164947644,3164947647,FR 3164947648,3164947651,CZ 3164947652,3164947655,PL -3164947656,3164947743,FR -3164947744,3164947747,ES +3164947656,3164947727,FR +3164947728,3164947743,BE +3164947744,3164947747,FR 3164947748,3164947751,BE 3164947752,3164947759,PL 3164947760,3164947839,FR @@ -97927,12 +97548,10 @@ 3164948768,3164948787,FR 3164948788,3164948791,ES 3164948792,3164948795,DE -3164948796,3164948799,PL -3164948800,3164948843,FR +3164948796,3164948843,FR 3164948844,3164948847,PL 3164948848,3164948851,PT -3164948852,3164948855,DE -3164948856,3164948863,FR +3164948852,3164948863,FR 3164948864,3164948927,GB 3164948928,3164948991,FR 3164948992,3164949087,GB @@ -97954,8 +97573,8 @@ 3164949176,3164949179,ES 3164949180,3164949183,FR 3164949184,3164949191,PT -3164949192,3164949199,DE -3164949200,3164949215,FR +3164949192,3164949195,DE +3164949196,3164949215,FR 3164949216,3164949223,PL 3164949224,3164949231,FR 3164949232,3164949247,BE @@ -97984,12 +97603,11 @@ 3164950024,3164950031,PT 3164950032,3164950063,FR 3164950064,3164950079,IE -3164950080,3164950143,FR -3164950144,3164950271,GB -3164950272,3164950399,FR +3164950080,3164950271,FR +3164950272,3164950399,IE 3164950400,3164950407,ES -3164950408,3164950411,FR -3164950412,3164950423,PL +3164950408,3164950415,FR +3164950416,3164950423,PL 3164950424,3164950431,FR 3164950432,3164950435,PL 3164950436,3164950439,ES @@ -98013,17 +97631,18 @@ 3164950708,3164950711,FR 3164950712,3164950715,FI 3164950716,3164950719,GB -3164950720,3164950735,FR +3164950720,3164950723,IE +3164950724,3164950735,FR 3164950736,3164950751,ES 3164950752,3164950759,GB 3164950760,3164950767,IT -3164950768,3164950783,ES -3164950784,3164951039,FR -3164951040,3164951167,DE -3164951168,3164951231,FR +3164950768,3164950783,FR +3164950784,3164951039,GB +3164951040,3164951231,FR 3164951232,3164951239,GB -3164951240,3164951263,FR -3164951264,3164951295,DE +3164951240,3164951247,FR +3164951248,3164951263,IE +3164951264,3164951295,PL 3164951296,3164951423,FR 3164951424,3164951455,ES 3164951456,3164951471,PL @@ -98035,8 +97654,7 @@ 3164951544,3164951547,NL 3164951548,3164951551,BE 3164951552,3164951555,IT -3164951556,3164951559,FR -3164951560,3164951567,PL +3164951556,3164951567,FR 3164951568,3164951571,BE 3164951572,3164951575,CZ 3164951576,3164951583,FR @@ -98085,34 +97703,28 @@ 3164952960,3164952975,GB 3164952976,3164953007,FR 3164953008,3164953023,ES -3164953024,3164953087,FR -3164953088,3164953151,LT -3164953152,3164953215,PL -3164953216,3164953247,FR +3164953024,3164953247,FR 3164953248,3164953255,BE 3164953256,3164953263,CZ 3164953264,3164953279,BE 3164953280,3164953327,FR 3164953328,3164953375,PL 3164953376,3164953379,NL -3164953380,3164953383,PT +3164953380,3164953383,FR 3164953384,3164953391,PL -3164953392,3164953395,IT -3164953396,3164953399,NL -3164953400,3164953403,BE +3164953392,3164953403,FR 3164953404,3164953407,PL 3164953408,3164953423,BE 3164953424,3164953439,FR 3164953440,3164953443,PL 3164953444,3164953447,DE -3164953448,3164953455,ES +3164953448,3164953451,PL +3164953452,3164953455,ES 3164953456,3164953459,FR 3164953460,3164953463,GB 3164953464,3164953467,FR 3164953468,3164953471,GB -3164953472,3164953515,FR -3164953516,3164953519,IE -3164953520,3164953535,FR +3164953472,3164953535,FR 3164953536,3164953551,PL 3164953552,3164953571,FR 3164953572,3164953575,GB @@ -98125,29 +97737,26 @@ 3164954220,3164954223,DE 3164954224,3164954231,FR 3164954232,3164954239,NL -3164954240,3164954251,PL -3164954252,3164954255,FR +3164954240,3164954247,PL +3164954248,3164954255,FR 3164954256,3164954271,NL -3164954272,3164954275,IT -3164954276,3164954279,GB -3164954280,3164954287,FR +3164954272,3164954287,FR 3164954288,3164954303,NL 3164954304,3164954371,FR 3164954372,3164954375,DE -3164954376,3164954383,FI -3164954384,3164954431,FR +3164954376,3164954431,FR 3164954432,3164954439,ES 3164954440,3164954443,NL 3164954444,3164954447,PL -3164954448,3164954495,FR +3164954448,3164954479,FR +3164954480,3164954495,IE 3164954496,3164954499,PL 3164954500,3164954503,FR 3164954504,3164954507,FI 3164954508,3164954511,ES -3164954512,3164954515,FR -3164954516,3164954519,IT +3164954512,3164954519,FR 3164954520,3164954527,CH -3164954528,3164954543,GB +3164954528,3164954543,NL 3164954544,3164954559,LT 3164954560,3164954567,PT 3164954568,3164954571,PL @@ -98161,23 +97770,22 @@ 3164956480,3164956543,GB 3164956544,3164958719,FR 3164958720,3164958847,GB -3164958848,3164958879,IE -3164958880,3164958911,FR +3164958848,3164958911,PT 3164958912,3164958927,CH 3164958928,3164958943,FR 3164958944,3164958947,PL 3164958948,3164958955,FR 3164958956,3164958959,GB -3164958960,3164958975,CZ -3164958976,3164959007,FR +3164958960,3164959007,FR 3164959008,3164959023,PL 3164959024,3164959039,FR -3164959040,3164959135,DE +3164959040,3164959103,IT +3164959104,3164959135,PT 3164959136,3164959167,ES 3164959168,3164959247,FR 3164959248,3164959255,ES 3164959256,3164959263,PL -3164959264,3164959295,NL +3164959264,3164959295,IE 3164959296,3164959303,IT 3164959304,3164959307,FR 3164959308,3164959311,IT @@ -98200,7 +97808,8 @@ 3164959664,3164959671,BE 3164959672,3164959763,FR 3164959764,3164959767,PL -3164959768,3164959807,FR +3164959768,3164959775,FR +3164959776,3164959807,PT 3164959808,3164959823,IE 3164959824,3164959839,FI 3164959840,3164959855,BE @@ -98212,9 +97821,10 @@ 3164959904,3164959927,FR 3164959928,3164959931,GB 3164959932,3164959935,IE -3164959936,3164959999,FR +3164959936,3164959999,BE 3164960000,3164960255,DE -3164960256,3164960263,FR +3164960256,3164960259,FI +3164960260,3164960263,FR 3164960264,3164960267,LT 3164960268,3164960271,NL 3164960272,3164960295,FR @@ -98226,7 +97836,7 @@ 3164960328,3164960331,CZ 3164960332,3164960339,LT 3164960340,3164960363,FR -3164960364,3164960367,PL +3164960364,3164960367,DE 3164960368,3164960383,FR 3164960384,3164960387,DE 3164960388,3164960391,PL @@ -98236,14 +97846,15 @@ 3164960416,3164960435,FR 3164960436,3164960439,PL 3164960440,3164960443,CH -3164960444,3164960447,BE +3164960444,3164960447,FR 3164960448,3164960463,PL 3164960464,3164960467,NL -3164960468,3164960479,FR +3164960468,3164960471,IE +3164960472,3164960479,FR 3164960480,3164960495,GB 3164960496,3164960507,FR 3164960508,3164960511,CH -3164960512,3164960575,FR +3164960512,3164960575,PT 3164960576,3164960591,DE 3164960592,3164960607,FR 3164960608,3164960623,GB @@ -98259,17 +97870,15 @@ 3164960676,3164960679,BE 3164960680,3164960687,FR 3164960688,3164960695,PL -3164960696,3164960703,ES +3164960696,3164960699,FR +3164960700,3164960703,ES 3164960704,3164960707,PL 3164960708,3164960719,FR 3164960720,3164960723,CH -3164960724,3164960727,FR -3164960728,3164960735,PL -3164960736,3164960751,FR +3164960724,3164960751,FR 3164960752,3164960831,ES 3164960832,3164960839,IE -3164960840,3164960843,FR -3164960844,3164960847,BE +3164960840,3164960847,FR 3164960848,3164960855,PL 3164960856,3164960863,ES 3164960864,3164960879,IE @@ -98280,17 +97889,19 @@ 3164960912,3164960919,PL 3164960920,3164960939,FR 3164960940,3164960943,DE -3164960944,3164960959,PL +3164960944,3164960959,NL 3164960960,3164960963,ES 3164960964,3164960967,FR 3164960968,3164960991,GB -3164960992,3164961003,FR +3164960992,3164960999,FR +3164961000,3164961003,PL 3164961004,3164961007,DE 3164961008,3164961023,PL 3164961024,3164961151,FR -3164961152,3164961167,DE -3164961168,3164961175,PL -3164961176,3164961319,FR +3164961152,3164961175,PL +3164961176,3164961183,FR +3164961184,3164961215,IE +3164961216,3164961319,FR 3164961320,3164961327,PL 3164961328,3164961331,CZ 3164961332,3164961371,FR @@ -98299,34 +97910,30 @@ 3164961380,3164961387,IT 3164961388,3164961395,FR 3164961396,3164961399,PL -3164961400,3164961403,FR -3164961404,3164961407,PL -3164961408,3164961503,FR +3164961400,3164961503,FR 3164961504,3164961519,GB 3164961520,3164961527,IT 3164961528,3164961535,PL 3164961536,3164961551,ES -3164961552,3164961555,NL +3164961552,3164961555,FR 3164961556,3164961559,ES 3164961560,3164961563,DE -3164961564,3164961631,FR +3164961564,3164961567,CH +3164961568,3164961631,FR 3164961632,3164961647,IT 3164961648,3164961655,NL 3164961656,3164961663,FR -3164961664,3164961695,DE -3164961696,3164961727,GB +3164961664,3164961727,PT 3164961728,3164961739,DE 3164961740,3164961743,GB 3164961744,3164961759,FR -3164961760,3164961763,PL +3164961760,3164961763,NL 3164961764,3164961767,IT 3164961768,3164961775,BE 3164961776,3164961783,PL 3164961784,3164961791,ES 3164961792,3164961807,PL -3164961808,3164961815,FR -3164961816,3164961819,CZ -3164961820,3164961823,DE +3164961808,3164961823,FR 3164961824,3164961827,ES 3164961828,3164961855,FR 3164961856,3164961859,PL @@ -98347,8 +97954,7 @@ 3164962032,3164962035,DE 3164962036,3164962079,FR 3164962080,3164962095,ES -3164962096,3164962111,FR -3164962112,3164962143,IE +3164962096,3164962143,FR 3164962144,3164962151,ES 3164962152,3164962159,DE 3164962160,3164962175,FR @@ -98361,10 +97967,9 @@ 3164962240,3164962247,PL 3164962248,3164962255,FR 3164962256,3164962259,BE -3164962260,3164962263,IE -3164962264,3164962271,PT +3164962260,3164962271,FR 3164962272,3164962279,GB -3164962280,3164962283,DE +3164962280,3164962283,BE 3164962284,3164962287,ES 3164962288,3164962291,FR 3164962292,3164962295,ES @@ -98372,20 +97977,16 @@ 3164962304,3164962319,IE 3164962320,3164962335,FR 3164962336,3164962367,DE -3164962368,3164962431,FR -3164962432,3164962439,PT -3164962440,3164962443,FR +3164962368,3164962443,FR 3164962444,3164962447,PL -3164962448,3164962451,GB +3164962448,3164962451,PT 3164962452,3164962455,FR 3164962456,3164962459,IE -3164962460,3164962463,FR -3164962464,3164962471,IE +3164962460,3164962471,FR 3164962472,3164962475,GB -3164962476,3164962479,NL -3164962480,3164962495,FR +3164962476,3164962495,FR 3164962496,3164962527,GB -3164962528,3164962535,PL +3164962528,3164962535,FR 3164962536,3164962539,CH 3164962540,3164962543,CZ 3164962544,3164962623,FR @@ -98395,16 +97996,14 @@ 3164962640,3164962647,ES 3164962648,3164962655,PT 3164962656,3164962663,NL -3164962664,3164962671,PT -3164962672,3164962687,FR -3164962688,3164962703,PL +3164962664,3164962687,FR +3164962688,3164962703,GB 3164962704,3164962715,FR -3164962716,3164962719,PT -3164962720,3164962723,FR +3164962716,3164962719,IE +3164962720,3164962723,GB 3164962724,3164962727,ES -3164962728,3164962751,FR -3164962752,3164962783,PT -3164962784,3164964863,ES +3164962728,3164962815,FR +3164962816,3164964863,ES 3164964864,3164966911,FI 3164966912,3164967055,FR 3164967056,3164967071,GB @@ -98416,28 +98015,26 @@ 3164967152,3164967155,FR 3164967156,3164967159,PL 3164967160,3164967167,FR -3164967168,3164967295,PT +3164967168,3164967295,ES 3164967296,3164967303,NL 3164967304,3164967307,PT 3164967308,3164967311,DE 3164967312,3164967327,IT 3164967328,3164967351,FR 3164967352,3164967359,PL -3164967360,3164967375,FR -3164967376,3164967391,GB +3164967360,3164967391,FR 3164967392,3164967423,IE 3164967424,3164967551,FR 3164967552,3164967679,GB 3164967680,3164967935,IE -3164967936,3164967967,DE -3164967968,3164967971,FR +3164967936,3164967971,FR 3164967972,3164967975,GB -3164967976,3164967983,FR +3164967976,3164967979,DE +3164967980,3164967983,FR 3164967984,3164967991,PL 3164967992,3164967999,PT 3164968000,3164968015,GB -3164968016,3164968191,FR -3164968192,3164968223,IE +3164968016,3164968223,FR 3164968224,3164968255,PL 3164968256,3164968271,DE 3164968272,3164968279,GB @@ -98452,37 +98049,35 @@ 3164968512,3164968543,BE 3164968544,3164968583,FR 3164968584,3164968587,DE -3164968588,3164968679,FR -3164968680,3164968703,PT -3164968704,3164968831,FR +3164968588,3164968831,FR 3164968832,3164968835,PL 3164968836,3164968839,NL 3164968840,3164968847,FR 3164968848,3164968851,ES 3164968852,3164968863,FR 3164968864,3164968871,CH -3164968872,3164968895,IE -3164968896,3164968903,FR +3164968872,3164968879,IE +3164968880,3164968903,FR 3164968904,3164968907,PL 3164968908,3164968911,GB 3164968912,3164968927,DE 3164968928,3164968951,FR 3164968952,3164968955,CZ 3164968956,3164968959,DE -3164968960,3164968991,GB +3164968960,3164968991,ES 3164968992,3164969007,IE 3164969008,3164969015,PT 3164969016,3164969019,NL 3164969020,3164969023,BE -3164969024,3164969027,GB -3164969028,3164969035,FR -3164969036,3164969039,PL -3164969040,3164969043,CH -3164969044,3164969047,PT +3164969024,3164969027,IT +3164969028,3164969031,FR +3164969032,3164969035,IT +3164969036,3164969047,FR 3164969048,3164969055,GB 3164969056,3164969079,FR 3164969080,3164969083,PL -3164969084,3164969095,ES +3164969084,3164969087,ES +3164969088,3164969095,FR 3164969096,3164969099,PL 3164969100,3164969103,DE 3164969104,3164969135,FR @@ -98498,15 +98093,14 @@ 3164969192,3164969199,FR 3164969200,3164969203,LT 3164969204,3164969207,ES -3164969208,3164969211,PL +3164969208,3164969211,FR 3164969212,3164969215,BE 3164969216,3164969503,FR 3164969504,3164969535,DE 3164969536,3164969543,FR 3164969544,3164969551,NL -3164969552,3164969655,FR -3164969656,3164969663,LT -3164969664,3164969695,FR +3164969552,3164969567,IT +3164969568,3164969695,FR 3164969696,3164969727,ES 3164969728,3164969743,DE 3164969744,3164969759,FR @@ -98524,13 +98118,13 @@ 3164969900,3164969983,FR 3164969984,3164970047,CH 3164970048,3164970063,FR -3164970064,3164970079,PL +3164970064,3164970079,IE 3164970080,3164970095,FR 3164970096,3164970111,ES 3164970112,3164970175,FR 3164970176,3164970207,DE 3164970208,3164970215,FR -3164970216,3164970219,BE +3164970216,3164970219,GB 3164970220,3164970223,FR 3164970224,3164970239,GB 3164970240,3164970271,IE @@ -98541,9 +98135,9 @@ 3164970300,3164970303,DE 3164970304,3164970339,NL 3164970340,3164970343,BE -3164970344,3164970347,PL +3164970344,3164970347,FR 3164970348,3164970351,GB -3164970352,3164970359,PT +3164970352,3164970359,FR 3164970360,3164970363,DE 3164970364,3164970367,ES 3164970368,3164970371,FR @@ -98552,14 +98146,12 @@ 3164970380,3164970383,IT 3164970384,3164970387,PL 3164970388,3164970391,IT -3164970392,3164970403,FR -3164970404,3164970407,CH -3164970408,3164970411,FR -3164970412,3164970415,GB -3164970416,3164970463,FR -3164970464,3164970495,GB +3164970392,3164970411,FR +3164970412,3164970415,BE +3164970416,3164970431,FR +3164970432,3164970495,PT 3164970496,3164970527,PL -3164970528,3164970543,NL +3164970528,3164970543,FR 3164970544,3164970551,PL 3164970552,3164970567,FR 3164970568,3164970571,GB @@ -98571,7 +98163,7 @@ 3164970624,3164970627,BE 3164970628,3164970631,DE 3164970632,3164970647,ES -3164970648,3164970651,DE +3164970648,3164970651,IE 3164970652,3164970655,FR 3164970656,3164970687,NL 3164970688,3164970691,GB @@ -98583,32 +98175,27 @@ 3164970824,3164970827,BE 3164970828,3164970831,CH 3164970832,3164970835,IT -3164970836,3164970839,BE +3164970836,3164970839,FR 3164970840,3164970847,GB 3164970848,3164970851,IE -3164970852,3164970867,FR -3164970868,3164970871,PL +3164970852,3164970871,FR 3164970872,3164970875,BE 3164970876,3164970879,NL 3164970880,3164970883,FR 3164970884,3164970887,ES 3164970888,3164970891,GB 3164970892,3164970911,FR -3164970912,3164970915,PL +3164970912,3164970915,ES 3164970916,3164970919,FR 3164970920,3164970923,IT 3164970924,3164970927,LT 3164970928,3164970991,FR 3164970992,3164971007,BE -3164971008,3164971011,DE +3164971008,3164971011,PL 3164971012,3164971015,IE -3164971016,3164971023,PL -3164971024,3164971103,FR +3164971016,3164971103,FR 3164971104,3164971135,DE -3164971136,3164971263,IT -3164971264,3164971391,GB -3164971392,3164971455,DE -3164971456,3164971459,FR +3164971136,3164971459,FR 3164971460,3164971463,IT 3164971464,3164971467,CH 3164971468,3164971471,DE @@ -98618,9 +98205,7 @@ 3164971488,3164971503,IT 3164971504,3164971511,PL 3164971512,3164971519,CZ -3164971520,3164971567,FR -3164971568,3164971571,CZ -3164971572,3164971575,FR +3164971520,3164971575,FR 3164971576,3164971579,PL 3164971580,3164971583,ES 3164971584,3164971615,FR @@ -98631,11 +98216,10 @@ 3164971728,3164971735,FR 3164971736,3164971739,PL 3164971740,3164971743,IT -3164971744,3164971775,ES -3164971776,3164971799,FR +3164971744,3164971799,FR 3164971800,3164971803,NL -3164971804,3164971807,FR -3164971808,3164971903,BE +3164971804,3164971839,FR +3164971840,3164971903,BE 3164971904,3164971967,FR 3164971968,3164971983,PT 3164971984,3164971999,FR @@ -98644,19 +98228,18 @@ 3164972020,3164972023,FR 3164972024,3164972027,ES 3164972028,3164972031,CH -3164972032,3164972319,FR -3164972320,3164972351,DE +3164972032,3164972287,NL +3164972288,3164972351,FR 3164972352,3164972367,PL 3164972368,3164972375,NL 3164972376,3164972379,IE 3164972380,3164972383,CZ 3164972384,3164972399,PL 3164972400,3164972403,GB -3164972404,3164972407,LT -3164972408,3164972447,FR +3164972404,3164972447,FR 3164972448,3164972463,PL 3164972464,3164972495,FR -3164972496,3164972499,CH +3164972496,3164972499,NL 3164972500,3164972511,DE 3164972512,3164972527,PL 3164972528,3164972531,DE @@ -98706,7 +98289,7 @@ 3164973624,3164973627,PL 3164973628,3164973631,CH 3164973632,3164973663,IE -3164973664,3164973695,ES +3164973664,3164973695,GB 3164973696,3164973703,DE 3164973704,3164973711,PT 3164973712,3164973727,GB @@ -98715,7 +98298,7 @@ 3164973808,3164973839,FR 3164973840,3164973843,PL 3164973844,3164973847,IE -3164973848,3164973855,DE +3164973848,3164973855,PT 3164973856,3164973863,PL 3164973864,3164973867,FR 3164973868,3164973871,GB @@ -98729,21 +98312,16 @@ 3164973936,3164973939,PL 3164973940,3164973943,FR 3164973944,3164973951,PL -3164973952,3164974079,FR -3164974080,3164974119,PT -3164974120,3164974127,FR -3164974128,3164974135,PT +3164973952,3164974135,FR 3164974136,3164974139,PL 3164974140,3164974143,DE -3164974144,3164974159,FR -3164974160,3164974175,PT -3164974176,3164974183,NL +3164974144,3164974175,FR +3164974176,3164974179,NL +3164974180,3164974183,FR 3164974184,3164974191,GB 3164974192,3164974335,FR 3164974336,3164974463,GB -3164974464,3164974495,FR -3164974496,3164974511,IE -3164974512,3164974591,FR +3164974464,3164974591,FR 3164974592,3164974623,PL 3164974624,3164974643,FR 3164974644,3164974647,PL @@ -98752,7 +98330,7 @@ 3164974656,3164974659,FR 3164974660,3164974663,GB 3164974664,3164974667,CZ -3164974668,3164974671,LT +3164974668,3164974671,GB 3164974672,3164974675,FR 3164974676,3164974679,PL 3164974680,3164974687,FR @@ -98760,17 +98338,15 @@ 3164974720,3164974727,FR 3164974728,3164974731,PL 3164974732,3164974735,IT -3164974736,3164974783,FR -3164974784,3164974815,IT -3164974816,3164974847,FR +3164974736,3164974847,FR 3164974848,3164974879,PL 3164974880,3164974887,FR -3164974888,3164974895,BE +3164974888,3164974895,PT 3164974896,3164974943,FR 3164974944,3164974975,PL -3164974976,3164975023,FR -3164975024,3164975031,GB -3164975032,3164975135,FR +3164974976,3164975031,FR +3164975032,3164975039,DE +3164975040,3164975135,FR 3164975136,3164975143,PL 3164975144,3164975151,PT 3164975152,3164975163,FR @@ -98783,13 +98359,13 @@ 3164975224,3164975231,FR 3164975232,3164975235,CZ 3164975236,3164975251,FR -3164975252,3164975267,PL -3164975268,3164975275,LT +3164975252,3164975259,PL +3164975260,3164975275,FR 3164975276,3164975279,GB 3164975280,3164975295,FR -3164975296,3164975299,BE +3164975296,3164975299,PT 3164975300,3164975343,ES -3164975344,3164975351,GB +3164975344,3164975351,FR 3164975352,3164975355,DE 3164975356,3164975651,FR 3164975652,3164975655,PL @@ -98812,12 +98388,13 @@ 3164975776,3164975807,FR 3164975808,3164975815,PL 3164975816,3164975823,IT -3164975824,3164975843,GB +3164975824,3164975839,GB +3164975840,3164975843,FR 3164975844,3164975847,PL 3164975848,3164975851,FR 3164975852,3164975855,PT 3164975856,3164975871,PL -3164975872,3164975935,PT +3164975872,3164975935,FR 3164975936,3164975939,ES 3164975940,3164975943,PT 3164975944,3164975947,PL @@ -98828,7 +98405,8 @@ 3164975992,3164975995,FR 3164975996,3164975999,NL 3164976000,3164976007,BE -3164976008,3164976015,PL +3164976008,3164976011,PL +3164976012,3164976015,DE 3164976016,3164976023,FR 3164976024,3164976031,ES 3164976032,3164976047,FR @@ -98865,40 +98443,44 @@ 3164976344,3164976347,PL 3164976348,3164976351,ES 3164976352,3164976383,IE -3164976384,3164976399,FR -3164976400,3164976403,CH +3164976384,3164976403,FR 3164976404,3164976407,PL 3164976408,3164976415,PT -3164976416,3164976431,FR -3164976432,3164976447,PT -3164976448,3164976455,FR +3164976416,3164976455,FR 3164976456,3164976459,LT 3164976460,3164976463,DE -3164976464,3164976575,FR +3164976464,3164976479,IT +3164976480,3164976511,FR +3164976512,3164976519,GB +3164976520,3164976527,NL +3164976528,3164976535,PT +3164976536,3164976539,DE +3164976540,3164976543,BE +3164976544,3164976567,FR +3164976568,3164976571,NL +3164976572,3164976575,PL 3164976576,3164976583,LT 3164976584,3164976591,IT 3164976592,3164976623,FR 3164976624,3164976631,BE -3164976632,3164976663,FR -3164976664,3164976671,GB -3164976672,3164976687,FR +3164976632,3164976687,FR 3164976688,3164976703,PL 3164976704,3164976767,FR 3164976768,3164976783,DE 3164976784,3164976799,CZ -3164976800,3164976831,FR -3164976832,3164976835,IT +3164976800,3164976835,FR 3164976836,3164976839,DE 3164976840,3164976847,FR 3164976848,3164976863,CH 3164976864,3164977407,FR 3164977408,3164977415,NL -3164977416,3164977471,FR -3164977472,3164977535,PT -3164977536,3164977599,FR +3164977416,3164977423,FR +3164977424,3164977439,LT +3164977440,3164977471,FR +3164977472,3164977551,PT +3164977552,3164977599,FR 3164977600,3164977631,GB -3164977632,3164977639,CZ -3164977640,3164977759,FR +3164977632,3164977759,FR 3164977760,3164977775,NL 3164977776,3164977823,FR 3164977824,3164977839,PT @@ -98925,7 +98507,8 @@ 3164978064,3164978067,ES 3164978068,3164978071,FR 3164978072,3164978079,ES -3164978080,3164978127,GB +3164978080,3164978111,GB +3164978112,3164978127,PT 3164978128,3164978147,FR 3164978148,3164978151,BE 3164978152,3164978155,GB @@ -98938,7 +98521,7 @@ 3164978568,3164978571,DE 3164978572,3164978575,IT 3164978576,3164978607,FR -3164978608,3164978615,DE +3164978608,3164978615,GB 3164978616,3164978623,FR 3164978624,3164978655,ES 3164978656,3164978659,IT @@ -98947,16 +98530,14 @@ 3164978668,3164978671,FR 3164978672,3164978679,PT 3164978680,3164978687,PL -3164978688,3164978695,FR -3164978696,3164978703,ES -3164978704,3164978719,BE -3164978720,3164978783,PT -3164978784,3164978815,FR -3164978816,3164978879,IE -3164978880,3164978951,FR +3164978688,3164978695,BE +3164978696,3164978703,FR +3164978704,3164978719,IE +3164978720,3164978751,PT +3164978752,3164978951,FR 3164978952,3164978955,PL 3164978956,3164978975,FR -3164978976,3164978979,FI +3164978976,3164978979,GB 3164978980,3164978983,ES 3164978984,3164978991,CZ 3164978992,3164978999,PL @@ -98964,14 +98545,13 @@ 3164979004,3164979007,DE 3164979008,3164979047,FR 3164979048,3164979051,BE -3164979052,3164979103,FR -3164979104,3164979107,FI +3164979052,3164979107,FR 3164979108,3164979111,IT 3164979112,3164979119,PL 3164979120,3164979135,NL 3164979136,3164979151,FR -3164979152,3164979159,ES -3164979160,3164979183,FR +3164979152,3164979155,ES +3164979156,3164979183,FR 3164979184,3164979199,DE 3164979200,3164995583,FR 3164995584,3165061119,RU @@ -99033,7 +98613,9 @@ 3167951360,3167986687,RO 3167986688,3167987711,GB 3167987712,3167989759,MD -3167989760,3168096255,RO +3167989760,3168050431,RO +3168050432,3168050687,MD +3168050688,3168096255,RO 3168096256,3168100351,MD 3168100352,3168110591,RO 3168110592,3168111615,GB @@ -99058,9 +98640,7 @@ 3169042432,3169044479,GR 3169044480,3169045119,NL 3169045120,3169045135,BE -3169045136,3169045183,NL -3169045184,3169045247,BE -3169045248,3169045375,NL +3169045136,3169045375,NL 3169045376,3169045503,BE 3169045504,3169046527,NL 3169046528,3169050623,AZ @@ -99075,7 +98655,9 @@ 3169087384,3169087391,DK 3169087392,3169087415,NO 3169087416,3169091583,DK -3169091584,3169124351,IT +3169091584,3169107967,IT +3169107968,3169112063,US +3169112064,3169124351,IT 3169124352,3169157119,RO 3169157120,3169189887,SY 3169189888,3169222655,UA @@ -99115,7 +98697,9 @@ 3169648640,3169714175,MD 3169714176,3169779711,FI 3169779712,3169845247,UA -3169845248,3169863679,RO +3169845248,3169863167,RO +3169863168,3169863423,MD +3169863424,3169863679,RO 3169863680,3169864703,MD 3169864704,3169867775,RO 3169867776,3169868031,DE @@ -99195,15 +98779,8 @@ 3187910656,3187914751,CL 3187914752,3187916799,BO 3187916800,3187933183,CO -3187933184,3187935607,GT -3187935608,3187935615,HN -3187935616,3187936711,GT -3187936712,3187936719,HN -3187936720,3187937279,GT -3187937280,3187939327,HN -3187939328,3187940351,GT -3187940352,3187941375,HN -3187941376,3187946111,GT +3187933184,3187939327,HN +3187939328,3187946111,GT 3187946112,3187946239,HN 3187946240,3187946639,GT 3187946640,3187946647,HN @@ -99346,9 +98923,7 @@ 3191608320,3191611391,CO 3191611392,3191619583,VE 3191619584,3191648255,CO -3191648256,3191648767,US -3191648768,3191649279,CO -3191649280,3191649791,US +3191648256,3191649791,US 3191649792,3191650303,CO 3191650304,3191650815,US 3191650816,3191651071,CO @@ -99360,7 +98935,9 @@ 3191679488,3191679743,US 3191679744,3191679999,AR 3191680000,3191680255,US -3191680256,3191683327,AR +3191680256,3191680511,AR +3191680512,3191680767,US +3191680768,3191683327,AR 3191683328,3191683583,US 3191683584,3191683839,AR 3191683840,3191684095,US @@ -99378,7 +98955,9 @@ 3191702528,3191703039,US 3191703040,3191704063,CO 3191704064,3191704575,US -3191704576,3191705599,CO +3191704576,3191705087,CO +3191705088,3191705343,US +3191705344,3191705599,CO 3191705600,3191705855,US 3191705856,3191706367,CO 3191706368,3191706623,US @@ -99390,7 +98969,9 @@ 3191726080,3191726335,AR 3191726336,3191727103,CO 3191727104,3191727359,AR -3191727360,3191730943,CO +3191727360,3191730431,CO +3191730432,3191730687,AR +3191730688,3191730943,CO 3191730944,3191731199,AR 3191731200,3191732479,CO 3191732480,3191732735,AR @@ -99408,11 +98989,15 @@ 3193176064,3193307135,CO 3193307136,3193438207,SV 3193438208,3193569279,CW -3193569280,3193582847,CO +3193569280,3193579263,CO +3193579264,3193579519,EC +3193579520,3193582847,CO 3193582848,3193583103,EC 3193583104,3193599999,CO 3193600000,3193600255,EC -3193600256,3193606143,CO +3193600256,3193605375,CO +3193605376,3193605631,EC +3193605632,3193606143,CO 3193606144,3193606399,EC 3193606400,3193606655,CO 3193606656,3193606911,EC @@ -99427,8 +99012,8 @@ 3193700352,3193724927,HN 3193724928,3193729023,AR 3193729024,3193733119,CU -3193733120,3193735423,AR -3193735424,3193735679,US +3193733120,3193735167,AR +3193735168,3193735679,US 3193735680,3193736191,AR 3193736192,3193736447,US 3193736448,3193737471,AR @@ -99443,15 +99028,21 @@ 3193740032,3193740287,US 3193740288,3193741311,AR 3193741312,3193741567,US -3193741568,3193743231,AR +3193741568,3193742591,AR +3193742592,3193742719,US +3193742720,3193743231,AR 3193743232,3193743359,US 3193743360,3193745279,AR 3193745280,3193745407,US 3193745408,3193746751,AR 3193746752,3193746815,US -3193746816,3193747839,AR +3193746816,3193747327,AR +3193747328,3193747455,US +3193747456,3193747839,AR 3193747840,3193748223,US -3193748224,3193749503,AR +3193748224,3193748863,AR +3193748864,3193748991,US +3193748992,3193749503,AR 3193749504,3193749759,US 3193749760,3193750015,AR 3193750016,3193750271,US @@ -99490,7 +99081,9 @@ 3194028032,3194044415,AR 3194044416,3194052607,CO 3194052608,3194056703,TT -3194056704,3194058751,CW +3194056704,3194058239,CW +3194058240,3194058495,CA +3194058496,3194058751,CW 3194058752,3194060799,AR 3194060800,3194068991,CO 3194068992,3194071039,PA @@ -99608,7 +99201,7 @@ 3194740736,3194742783,CL 3194742784,3194744831,EC 3194744832,3194746879,AR -3194746880,3194748927,US +3194746880,3194748927,CW 3194748928,3194757119,UY 3194757120,3194765311,AR 3194765312,3194767359,EC @@ -99662,7 +99255,9 @@ 3195068416,3195076607,CW 3195076608,3195084799,CL 3195084800,3195092991,CR -3195092992,3195097087,AR +3195097088,3195098111,CR +3195099136,3195100159,GT +3195100160,3195101183,PY 3195101184,3195109375,CR 3195109376,3195125759,AR 3195125760,3195133951,PE @@ -99726,12 +99321,12 @@ 3195737088,3195738111,CW 3195738112,3195740159,HN 3195740160,3195740415,US -3195740416,3195741439,PA -3195741440,3195741951,US +3195740416,3195741183,PA +3195741184,3195741951,US 3195741952,3195744255,PA 3195744256,3195748351,EC 3195748352,3195752447,CL -3195756544,3195763711,AR +3195752448,3195763711,AR 3195763712,3195764735,BO 3195764736,3195768831,CR 3195772928,3195781119,VE @@ -99787,6 +99382,7 @@ 3198681088,3198877695,VE 3198877696,3198894079,CR 3198894080,3198902271,CO +3198902272,3198910463,CR 3198910464,3198926847,CL 3198926848,3198943231,BO 3198943232,3199467519,AR @@ -99851,7 +99447,9 @@ 3201871872,3201875967,PE 3201875968,3201880063,CO 3201880064,3201884159,EC -3201884160,3201892351,VE +3201884160,3201891327,VE +3201891328,3201891583,US +3201891584,3201892351,VE 3201892352,3201925119,AR 3201925120,3201957887,CL 3201957888,3202088959,PA @@ -99943,10 +99541,8 @@ 3221802240,3221803775,US 3221803776,3221804031,IN 3221804032,3221806079,US -3221806080,3221806335,IN -3221806336,3221806591,US -3221806592,3221806847,IN -3221806848,3221843967,US +3221806080,3221807103,IN +3221807104,3221843967,US 3221843968,3221844223,EU 3221844224,3221993727,US 3221993728,3221993983,EU @@ -100237,9 +99833,13 @@ 3223586304,3223586559,GB 3223586560,3223589119,SE 3223589120,3223589375,US -3223589376,3223601663,SE +3223589376,3223598079,SE +3223598080,3223598591,CZ +3223598592,3223601663,SE 3223601664,3223602175,GB -3223602176,3223606527,SE +3223602176,3223602687,SE +3223602688,3223603199,CZ +3223603200,3223606527,SE 3223606528,3223606783,GB 3223606784,3223607551,SE 3223607552,3223607807,GB @@ -100253,14 +99853,18 @@ 3223616000,3223616767,GB 3223616768,3223617535,SE 3223617536,3223617791,NO -3223617792,3223620863,SE +3223617792,3223619583,SE +3223619584,3223620095,CZ +3223620096,3223620863,SE 3223620864,3223621119,DK 3223621120,3223621375,GB 3223621376,3223627775,SE 3223627776,3223628031,DE 3223628032,3223628287,SE 3223628288,3223628543,ES -3223628544,3223630591,SE +3223628544,3223628799,SE +3223628800,3223629311,CZ +3223629312,3223630591,SE 3223630592,3223630847,GB 3223630848,3223634431,SE 3223634432,3223634687,US @@ -100304,7 +99908,9 @@ 3223906304,3223909375,CA 3223909376,3223910911,US 3223911936,3223912191,CA -3223912448,3223938559,US +3223912448,3223933975,US +3223933976,3223933983,CA +3223933984,3223938559,US 3223938816,3223946239,GB 3223946240,3223947519,CH 3223947520,3223947775,US @@ -100415,8 +100021,8 @@ 3224367616,3224368127,US 3224368128,3224369663,CH 3224369664,3224373247,US -3224373248,3224373503,AU -3224373504,3224373759,US +3224373248,3224373248,AU +3224373249,3224373759,US 3224373760,3224374015,AU 3224374016,3224379135,US 3224379136,3224379391,DE @@ -100523,7 +100129,9 @@ 3224834560,3224834815,TH 3224834816,3224839423,US 3224839424,3224839679,EU -3224839680,3224850175,US +3224839680,3224841727,US +3224841728,3224841983,CN +3224841984,3224850175,US 3224850176,3224850431,IN 3224850432,3224851455,US 3224851456,3224851711,DE @@ -100854,7 +100462,11 @@ 3225892352,3225892863,FR 3225892864,3225894399,SE 3225894400,3225895423,GB -3225895424,3225905407,SE +3225895424,3225896447,SE +3225896448,3225896959,CZ +3225896960,3225900543,SE +3225900544,3225901567,CZ +3225901568,3225905407,SE 3225905408,3225905663,IT 3225905664,3225913855,SE 3225913856,3225914111,DE @@ -100880,7 +100492,9 @@ 3225934336,3225934591,AT 3225934592,3225935359,SE 3225935360,3225935615,US -3225935616,3225936639,SE +3225935616,3225935871,SE +3225935872,3225936383,CZ +3225936384,3225936639,SE 3225936640,3225936895,US 3225936896,3225937407,SE 3225937408,3225937663,US @@ -100894,7 +100508,9 @@ 3225942039,3225942039,EU 3225942040,3225942271,SE 3225942272,3225942527,HU -3225942528,3225944063,SE +3225942528,3225943295,SE +3225943296,3225943551,US +3225943552,3225944063,SE 3225944064,3226008831,TW 3226008832,3226009343,US 3226009600,3226010879,US @@ -101367,7 +100983,8 @@ 3227312128,3227312383,DK 3227312384,3227320319,US 3227320320,3227361791,FR -3227361792,3227362303,US +3227361792,3227362047,GB +3227362048,3227362303,US 3227362304,3227363071,GB 3227363072,3227385855,FR 3227385856,3227391999,US @@ -101431,7 +101048,9 @@ 3227449088,3227451455,US 3227451456,3227452375,CA 3227452376,3227452382,US -3227452383,3227454687,CA +3227452383,3227452735,CA +3227452736,3227452767,US +3227452768,3227454687,CA 3227454688,3227454719,US 3227454720,3227455487,CA 3227455488,3227456255,US @@ -101493,7 +101112,9 @@ 3227805184,3227805439,SG 3227805440,3227805695,FI 3227805696,3227806463,US -3227806464,3227806719,GB +3227806464,3227806495,FI +3227806496,3227806527,GB +3227806528,3227806719,FI 3227806720,3227806975,US 3227806976,3227807039,SG 3227807040,3227807743,US @@ -101553,7 +101174,7 @@ 3227894016,3227895039,US 3227895040,3227895551,DE 3227895552,3227909119,US -3227909120,3227909375,BE +3227909120,3227909375,GB 3227909376,3227909631,US 3227909632,3227909887,AU 3227910400,3227910655,AT @@ -101579,7 +101200,9 @@ 3227934464,3227934719,CH 3227934720,3227947519,US 3227947520,3227955711,DE -3227955712,3227964927,US +3227955712,3227962367,US +3227962368,3227962623,CN +3227962624,3227964927,US 3227964928,3227965183,GB 3227965184,3227967487,US 3227967488,3227967743,FR @@ -101670,7 +101293,7 @@ 3228105728,3228109311,US 3228109312,3228109567,NZ 3228109568,3228125951,US -3228125952,3228126207,RU +3228125952,3228126207,DE 3228126208,3228133375,US 3228133376,3228134655,CA 3228134656,3228150271,US @@ -101890,8 +101513,7 @@ 3229064192,3229064951,CA 3229064952,3229064955,US 3229064956,3229065215,CA -3229065216,3229069311,US -3229073408,3229092095,US +3229065216,3229092095,US 3229092096,3229093887,AU 3229093888,3229101823,US 3229101824,3229102591,FI @@ -101993,8 +101615,7 @@ 3229412096,3229483007,DE 3229483008,3229499647,FI 3229499648,3229500671,US -3229501440,3229511679,US -3229515776,3229614847,US +3229501440,3229614847,US 3229614848,3229615103,GB 3229615104,3229679103,US 3229679104,3229679359,EU @@ -102212,8 +101833,7 @@ 3230168832,3230177791,US 3230177792,3230178303,GB 3230178304,3230178559,CH -3230179328,3230183423,US -3230187520,3230210047,US +3230179328,3230210047,US 3230210048,3230210303,CA 3230210304,3230211839,US 3230211840,3230212095,CN @@ -102500,7 +102120,10 @@ 3231049984,3231050239,US 3231050496,3231051263,US 3231051264,3231051519,GB -3231051776,3231057919,US +3231051776,3231056895,US +3231056896,3231057407,CA +3231057408,3231057663,US +3231057664,3231057919,CA 3231057920,3231058175,EU 3231058176,3231060991,US 3231060992,3231061247,EU @@ -102572,8 +102195,7 @@ 3231149568,3231154431,US 3231155200,3231155711,US 3231155712,3231156223,CA -3231156224,3231166463,US -3231170560,3231186687,US +3231156224,3231186687,US 3231186688,3231186943,CN 3231186944,3231188479,US 3231188480,3231188735,NO @@ -102700,13 +102322,14 @@ 3231325184,3231326207,CA 3231326208,3231352831,US 3231352832,3231358975,CA -3231358976,3231363071,US -3231367168,3231383551,US +3231358976,3231383551,US 3231383552,3231385599,NO 3231385600,3231408127,US 3231416320,3231475199,US 3231475200,3231475455,PL -3231475456,3231482879,US +3231475456,3231477759,US +3231477760,3231478015,CA +3231478016,3231482879,US 3231482880,3231483135,BE 3231483136,3231484927,US 3231484928,3231490047,JP @@ -102866,8 +102489,8 @@ 3231588864,3231589119,GB 3231589120,3231591679,US 3231591680,3231591935,AU -3231591936,3231594239,US -3231594240,3231594495,GB +3231591936,3231593983,US +3231593984,3231594495,GB 3231594496,3231649791,US 3231649792,3231653887,SG 3231653888,3231663103,US @@ -102982,7 +102605,7 @@ 3231794176,3231800319,US 3231800320,3231801343,CN 3231809536,3231810047,NZ -3231810560,3231817727,US +3231810560,3231825919,US 3231825920,3231842303,CA 3231842304,3231843327,RU 3231843328,3231844351,NO @@ -103043,7 +102666,7 @@ 3231912960,3231913215,AP 3231913984,3231916031,US 3231916032,3231948799,FI -3231956992,3231973375,US +3231948800,3231973375,US 3231973376,3232038911,AT 3232038912,3232039167,SE 3232039168,3232039423,DK @@ -103135,19 +102758,16 @@ 3232169984,3232235519,IT 3232301056,3232309247,US 3232309248,3232311807,SG -3232312320,3232325631,US -3232333824,3232407039,US +3232312320,3232407039,US 3232407040,3232407551,SG -3232415744,3232432127,US -3232432128,3232433151,EU -3232433152,3232433407,FR -3232433408,3232433663,EU +3232407552,3232432127,US +3232432128,3232433663,EU 3232433920,3232440319,US +3232440320,3232448511,CA 3232448512,3232462847,US 3232462848,3232464895,BB 3232464896,3232483327,GB -3232483328,3232489471,US -3232497664,3232555007,US +3232483328,3232555007,US 3232555264,3232555640,US 3232555641,3232555641,US 3232555642,3232555775,US @@ -103164,13 +102784,12 @@ 3232570368,3232571391,CA 3232571392,3232595967,US 3232595968,3232598015,GB -3232598016,3232604159,US -3232612352,3232628735,US +3232598016,3232628735,US 3232629248,3232629759,US 3232629760,3232630783,CA 3232630784,3232645119,US 3232645120,3232647167,AT -3232647168,3232653311,US +3232647168,3232661503,US 3232661504,3232694271,JP 3232694272,3232702463,US 3232702464,3232703743,FI @@ -103179,7 +102798,7 @@ 3232704512,3232705535,GB 3232705536,3232706559,FI 3232706560,3232716799,US -3232716800,3232718847,CA +3232716800,3232727039,CA 3232727040,3232759807,US 3232759808,3232772095,SE 3232772096,3232774143,IT @@ -103202,12 +102821,12 @@ 3232820480,3232825343,SE 3232890880,3233288191,US 3233288192,3233292287,CA +3233292288,3233300479,US 3233316864,3233349631,US 3233480704,3233484799,US 3233484800,3233487359,ES 3233487872,3233488895,CA -3233488896,3233505279,US -3233513472,3233548287,US +3233488896,3233548287,US 3233548800,3233549055,PT 3233549056,3233549311,BR 3233549312,3233557247,US @@ -103431,9 +103050,11 @@ 3233803264,3233808383,US 3233808384,3233873919,TW 3233873920,3233874943,AU -3233874944,3233903743,US +3233874944,3233903615,US +3233903616,3233903743,GB 3233903744,3233903807,EU -3233903808,3233907711,US +3233903808,3233903871,GB +3233903872,3233907711,US 3233907712,3233907967,AP 3233907968,3233914879,US 3233914880,3233915135,AP @@ -103504,7 +103125,7 @@ 3234065664,3234065919,BR 3234065920,3234070527,US 3234070528,3234110463,FR -3234110464,3234111487,US +3234110464,3234119679,US 3234136064,3234172927,CA 3234172928,3234173951,US 3234173952,3234175999,CA @@ -103517,8 +103138,8 @@ 3234201600,3234203647,US 3234203648,3234205695,BR 3234205696,3234226175,US -3234234368,3234239231,US -3234239232,3234239487,MY +3234234368,3234238975,US +3234238976,3234239487,MY 3234239488,3234240255,US 3234240256,3234240383,EU 3234240384,3234240387,IE @@ -103662,8 +103283,8 @@ 3234856960,3234861055,CA 3234861056,3234906111,US 3234922496,3234988031,US -3234988032,3234992127,CA -3234992128,3235004415,US +3234988032,3234991103,CA +3234991104,3235004415,US 3235004416,3235021823,CA 3235021824,3235022079,US 3235022080,3235022143,AU @@ -103725,11 +103346,15 @@ 3235774464,3235776767,CA 3235777536,3235807231,US 3235807232,3235839999,CA -3235840000,3235856383,US +3235840000,3235842303,US +3235843072,3235844095,CA +3235844096,3235856383,US 3235856384,3235872767,BR 3235872768,3235876607,US 3235876608,3235876863,AP -3235876864,3235880447,US +3235876864,3235877375,US +3235877376,3235877631,AU +3235877632,3235880447,US 3235880448,3235880703,GB 3235880704,3235906303,US 3235906304,3235906559,CA @@ -103820,8 +103445,7 @@ 3236237937,3236238591,US 3236239360,3236241407,CA 3236241408,3236249599,US -3236265984,3236315135,US -3236364288,3236368127,US +3236265984,3236368127,US 3236368128,3236368383,NZ 3236368384,3236372991,US 3236372992,3236373247,AU @@ -104013,9 +103637,11 @@ 3237553155,3237553155,GB 3237553156,3237553922,US 3237553923,3237553923,EU -3237553924,3237554434,US +3237553924,3237554431,US +3237554432,3237554434,AU 3237554435,3237554435,AP -3237554436,3237560319,US +3237554436,3237554687,AU +3237554688,3237560319,US 3237609472,3237613567,US 3237613568,3237614591,CA 3237615104,3237615615,US @@ -104115,12 +103741,10 @@ 3238061568,3238061823,AT 3238061824,3238062079,CZ 3238062080,3238062591,CH -3238062592,3238062847,GB 3238062848,3238063103,SE 3238063104,3238063359,PL 3238063360,3238063615,CH 3238063616,3238063871,EU -3238063872,3238064127,GB 3238064128,3238064383,UA 3238064384,3238064639,ES 3238064640,3238064895,PL @@ -104139,9 +103763,9 @@ 3238067968,3238068223,GB 3238068224,3238133759,IE 3238133760,3238199295,SI -3238199296,3238201855,DK -3238201856,3238202111,US -3238202112,3238264831,DK +3238199296,3238201599,DK +3238201600,3238202367,US +3238202368,3238264831,DK 3238264832,3238330367,IS 3238330368,3238337023,CH 3238337024,3238337535,LI @@ -104236,9 +103860,51 @@ 3238675456,3238675711,DK 3238675712,3238723071,SE 3238723072,3238723327,DK -3238723328,3238801279,SE +3238723328,3238789119,SE +3238789120,3238790143,EE +3238790144,3238801279,SE 3238801280,3238801343,GB -3238801344,3239051263,SE +3238801344,3238802431,SE +3238802432,3238804479,NL +3238804480,3238806527,SE +3238806528,3238807551,NL +3238807552,3238828031,SE +3238828032,3238829055,EE +3238829056,3238832127,SE +3238832128,3238833151,NL +3238833152,3238838271,SE +3238838272,3238839295,NL +3238839296,3238843391,SE +3238843392,3238844415,EE +3238844416,3238847487,SE +3238847488,3238848511,NL +3238848512,3238865919,SE +3238865920,3238867967,NL +3238867968,3238887423,SE +3238887424,3238888447,NL +3238888448,3238893567,SE +3238893568,3238894591,NL +3238894592,3238897663,SE +3238897664,3238899711,NL +3238899712,3238901759,SE +3238901760,3238902783,NL +3238902784,3238909951,SE +3238909952,3238910975,NL +3238910976,3238911999,SE +3238912000,3238913023,NL +3238913024,3238916095,SE +3238916096,3238917119,NL +3238917120,3238919167,SE +3238919168,3238920191,NL +3238920192,3238941695,SE +3238941696,3238942719,NL +3238942720,3238986751,SE +3238986752,3238987775,NL +3238987776,3239001087,SE +3239001088,3239002111,NL +3239002112,3239008255,SE +3239008256,3239009279,NL +3239009280,3239051263,SE 3239051264,3239051519,CH 3239051520,3239062271,DE 3239062272,3239062527,ES @@ -104295,7 +103961,7 @@ 3239110656,3239110911,RU 3239110912,3239111167,UA 3239111168,3239111423,NL -3239111424,3239111935,DE +3239111424,3239111679,DE 3239111936,3239112191,AT 3239112192,3239112447,IL 3239112448,3239112959,PL @@ -104915,7 +104581,9 @@ 3239916800,3239917055,KZ 3239917056,3239917311,DE 3239917312,3239917567,BG -3239917568,3239935999,DE +3239917568,3239922687,DE +3239922688,3239922943,FR +3239922944,3239935999,DE 3239936000,3239936255,UA 3239936256,3239936511,FR 3239936512,3239938815,DE @@ -105148,7 +104816,7 @@ 3240241152,3240241407,EU 3240241408,3240242175,FI 3240242176,3240243199,PL -3240243200,3240244223,PL +3240243200,3240244223,GB 3240244224,3240245247,PL 3240245248,3240246271,IL 3240246272,3240247295,UA @@ -105277,7 +104945,6 @@ 3240407040,3240407295,IL 3240407296,3240407551,NL 3240407552,3240407807,NO -3240407808,3240408063,NL 3240408064,3240408319,DE 3240408320,3240408575,CH 3240408576,3240408831,FR @@ -105297,9 +104964,7 @@ 3240420608,3240420863,NL 3240420864,3240436735,GB 3240436736,3240437759,DE -3240437760,3240454911,GB -3240454912,3240455167,IN -3240455168,3240460287,GB +3240437760,3240460287,GB 3240460288,3240461055,IL 3240461056,3240461567,DE 3240461568,3240461823,UA @@ -105519,9 +105184,11 @@ 3240812544,3240813567,IT 3240813568,3240814591,PL 3240814592,3240818687,IT -3240818688,3240819715,NL +3240818688,3240819711,NL +3240819712,3240819715,GB 3240819716,3240819716,EU -3240819717,3240820735,NL +3240819717,3240819967,GB +3240819968,3240820735,NL 3240820736,3240820799,FR 3240820800,3240820831,CY 3240820832,3240820863,GB @@ -105759,7 +105426,6 @@ 3241497600,3241497855,SE 3241497856,3241498111,DK 3241498112,3241498367,BE -3241498368,3241498623,RO 3241498624,3241498879,NO 3241498880,3241499135,UA 3241499136,3241499903,BE @@ -106018,7 +105684,11 @@ 3244228608,3244261375,TN 3244261376,3244268031,IE 3244268032,3244268159,LU -3244268160,3244277359,IE +3244268160,3244273687,IE +3244273688,3244273695,US +3244273696,3244273727,IE +3244273728,3244273735,GB +3244273736,3244277359,IE 3244277360,3244277367,GB 3244277368,3244277631,IE 3244277632,3244277695,US @@ -106295,7 +105965,7 @@ 3244888576,3244888831,FR 3244888832,3244889087,DE 3244889088,3244889343,PL -3244889344,3244889599,RO +3244889344,3244889599,US 3244889600,3244889855,SI 3244889856,3244890111,HR 3244890112,3244890367,PL @@ -106746,8 +106416,7 @@ 3245162496,3245163007,DE 3245163008,3245163519,KE 3245163520,3245164543,RU -3245164544,3245164799,BE -3245164800,3245165055,DE +3245164544,3245165055,DE 3245165056,3245165567,AT 3245165568,3245166079,RU 3245166080,3245166591,TZ @@ -106952,8 +106621,7 @@ 3245284864,3245285375,PL 3245285376,3245285631,NL 3245285632,3245285887,GB -3245285888,3245286143,DE -3245286144,3245286399,GB +3245285888,3245286399,DE 3245286400,3245287423,PL 3245287424,3245287679,DE 3245287680,3245287935,PL @@ -106973,7 +106641,6 @@ 3245296128,3245296639,GB 3245296640,3245297151,TJ 3245297152,3245297663,IT -3245297664,3245297919,FR 3245297920,3245298175,NL 3245298176,3245298431,GB 3245298432,3245298687,UA @@ -107000,7 +106667,7 @@ 3245308928,3245309439,SE 3245309440,3245309951,UA 3245309952,3245311999,CZ -3245312000,3245314047,DE +3245312000,3245314047,GB 3245314048,3245315071,PL 3245315072,3245316095,IT 3245316096,3245317119,SE @@ -107017,7 +106684,6 @@ 3245320960,3245321215,IE 3245321216,3245321471,NL 3245321472,3245321727,UA -3245321728,3245321983,PL 3245321984,3245322239,DE 3245322240,3245323263,RU 3245323264,3245325311,GB @@ -107047,9 +106713,7 @@ 3245339648,3245340671,LV 3245340672,3245341695,UA 3245341696,3245342719,RU -3245342720,3245442685,GB -3245442686,3245442686,FR -3245442687,3245867007,GB +3245342720,3245867007,GB 3245867008,3245868543,IE 3245868544,3245868575,GB 3245868576,3245878303,IE @@ -107078,9 +106742,7 @@ 3245899344,3245899351,GB 3245899352,3245901831,IE 3245901832,3245901839,GB -3245901840,3245902127,IE -3245902128,3245902135,GB -3245902136,3245902887,IE +3245901840,3245902887,IE 3245902888,3245902895,GB 3245902896,3245902903,IE 3245902904,3245902911,GB @@ -107154,9 +106816,7 @@ 3246381056,3246381567,EU 3246381568,3246381823,ES 3246381824,3246391295,EU -3246391296,3246417959,GB -3246417960,3246417967,LV -3246417968,3246537887,GB +3246391296,3246537887,GB 3246537888,3246537903,A2 3246537904,3246547199,GB 3246547200,3246547455,EU @@ -107273,16 +106933,16 @@ 3247244368,3247244375,DE 3247244376,3247244391,NL 3247244392,3247244399,DE -3247244400,3247244767,NL +3247244400,3247244671,NL +3247244672,3247244679,DE +3247244680,3247244767,NL 3247244768,3247244775,DE 3247244776,3247244927,NL 3247244928,3247244935,DE 3247244936,3247245023,NL 3247245024,3247245031,DE 3247245032,3247245047,NL -3247245048,3247245055,DE -3247245056,3247245063,NL -3247245064,3247245071,DE +3247245048,3247245071,DE 3247245072,3247245175,NL 3247245176,3247245183,DE 3247245184,3247245471,NL @@ -107311,7 +106971,9 @@ 3247246176,3247246183,DE 3247246184,3247246271,NL 3247246272,3247246279,DE -3247246280,3247246351,NL +3247246280,3247246311,NL +3247246312,3247246319,DE +3247246320,3247246351,NL 3247246352,3247246359,DE 3247246360,3247246503,NL 3247246504,3247246511,DE @@ -107443,11 +107105,11 @@ 3247253480,3247253487,DE 3247253488,3247253503,NL 3247253504,3247255295,DE -3247255296,3247255367,NL -3247255368,3247255375,DE -3247255376,3247255559,NL +3247255296,3247255559,NL 3247255560,3247255567,DE -3247255568,3247255647,NL +3247255568,3247255631,NL +3247255632,3247255639,DE +3247255640,3247255647,NL 3247255648,3247255663,DE 3247255664,3247255671,NL 3247255672,3247255679,DE @@ -107507,7 +107169,9 @@ 3247262224,3247262231,DE 3247262232,3247262295,NL 3247262296,3247262303,DE -3247262304,3247262439,NL +3247262304,3247262367,NL +3247262368,3247262375,DE +3247262376,3247262439,NL 3247262440,3247262447,DE 3247262448,3247262615,NL 3247262616,3247262623,DE @@ -107529,7 +107193,9 @@ 3247263304,3247263311,DE 3247263312,3247263335,NL 3247263336,3247263359,DE -3247263360,3247263431,NL +3247263360,3247263391,NL +3247263392,3247263399,DE +3247263400,3247263431,NL 3247263432,3247263439,DE 3247263440,3247263551,NL 3247263552,3247263559,DE @@ -107591,13 +107257,19 @@ 3247265896,3247265903,DE 3247265904,3247265935,NL 3247265936,3247265943,DE -3247265944,3247266175,NL +3247265944,3247265951,NL +3247265952,3247265959,DE +3247265960,3247266175,NL 3247266176,3247266183,DE 3247266184,3247266271,NL 3247266272,3247266279,DE 3247266280,3247266287,NL 3247266288,3247266295,DE -3247266296,3247266559,NL +3247266296,3247266359,NL +3247266360,3247266367,DE +3247266368,3247266487,NL +3247266488,3247266495,DE +3247266496,3247266559,NL 3247266560,3247271679,DE 3247271680,3247271687,NL 3247271688,3247271695,DE @@ -107699,7 +107371,9 @@ 3247277408,3247277415,DE 3247277416,3247277479,NL 3247277480,3247277487,DE -3247277488,3247277743,NL +3247277488,3247277519,NL +3247277520,3247277527,DE +3247277528,3247277743,NL 3247277744,3247277751,DE 3247277752,3247277847,NL 3247277848,3247277855,DE @@ -107727,7 +107401,15 @@ 3247280280,3247280287,DE 3247280288,3247280487,NL 3247280488,3247280495,DE -3247280496,3247281159,NL +3247280496,3247280719,NL +3247280720,3247280727,DE +3247280728,3247280751,NL +3247280752,3247280759,DE +3247280760,3247280775,NL +3247280776,3247280783,DE +3247280784,3247280799,NL +3247280800,3247280815,DE +3247280816,3247281159,NL 3247281160,3247281167,DE 3247281168,3247281239,NL 3247281240,3247281255,DE @@ -107759,7 +107441,9 @@ 3247282064,3247282071,DE 3247282072,3247282095,NL 3247282096,3247282103,DE -3247282104,3247282271,NL +3247282104,3247282223,NL +3247282224,3247282231,DE +3247282232,3247282271,NL 3247282272,3247282279,DE 3247282280,3247282311,NL 3247282312,3247282319,DE @@ -107817,15 +107501,21 @@ 3247284728,3247284735,DE 3247284736,3247284887,NL 3247284888,3247284895,DE -3247284896,3247285127,NL +3247284896,3247285015,NL +3247285016,3247285023,DE +3247285024,3247285127,NL 3247285128,3247285135,DE 3247285136,3247285183,NL 3247285184,3247285191,DE -3247285192,3247285375,NL +3247285192,3247285319,NL +3247285320,3247285327,DE +3247285328,3247285375,NL 3247285376,3247285383,DE 3247285384,3247285391,NL 3247285392,3247285399,DE -3247285400,3247285471,NL +3247285400,3247285455,NL +3247285456,3247285463,DE +3247285464,3247285471,NL 3247285472,3247285479,DE 3247285480,3247285623,NL 3247285624,3247285631,DE @@ -107895,7 +107585,9 @@ 3247303152,3247303159,DE 3247303160,3247303223,NL 3247303224,3247303231,DE -3247303232,3247303343,NL +3247303232,3247303327,NL +3247303328,3247303335,DE +3247303336,3247303343,NL 3247303344,3247303359,DE 3247303360,3247303615,NL 3247303616,3247303623,DE @@ -107921,8 +107613,8 @@ 3247305584,3247305591,DE 3247305592,3247305623,NL 3247305624,3247305631,DE -3247305632,3247305823,NL -3247305824,3247305831,DE +3247305632,3247305815,NL +3247305816,3247305831,DE 3247305832,3247305959,NL 3247305960,3247305975,DE 3247305976,3247305991,NL @@ -107935,11 +107627,13 @@ 3247306296,3247306327,DE 3247306328,3247306335,NL 3247306336,3247306343,DE -3247306344,3247306423,NL -3247306424,3247306431,DE +3247306344,3247306415,NL +3247306416,3247306431,DE 3247306432,3247306447,NL 3247306448,3247306455,DE -3247306456,3247306567,NL +3247306456,3247306511,NL +3247306512,3247306519,DE +3247306520,3247306567,NL 3247306568,3247306575,DE 3247306576,3247306583,NL 3247306584,3247306599,DE @@ -107959,8 +107653,8 @@ 3247307000,3247307007,DE 3247307008,3247307071,NL 3247307072,3247307079,DE -3247307080,3247307303,NL -3247307304,3247307311,DE +3247307080,3247307295,NL +3247307296,3247307311,DE 3247307312,3247307375,NL 3247307376,3247307383,DE 3247307384,3247307415,NL @@ -107997,7 +107691,9 @@ 3247308416,3247308423,DE 3247308424,3247308479,NL 3247308480,3247308487,DE -3247308488,3247308727,NL +3247308488,3247308655,NL +3247308656,3247308663,DE +3247308664,3247308727,NL 3247308728,3247308735,DE 3247308736,3247308783,NL 3247308784,3247308791,DE @@ -108241,7 +107937,9 @@ 3248221216,3248221223,PL 3248221224,3248226303,DE 3248226304,3248357375,NO -3248357376,3248488447,DE +3248357376,3248418559,DE +3248418560,3248418815,US +3248418816,3248488447,DE 3248488448,3248488703,FR 3248488704,3248491519,NO 3248491520,3248492031,RU @@ -108320,9 +108018,7 @@ 3248791296,3248791551,DE 3248791552,3248792063,GB 3248792064,3248792319,EU -3248792320,3248792343,GB -3248792344,3248792351,EU -3248792352,3248792575,GB +3248792320,3248792575,GB 3248792576,3248796607,EU 3248796608,3248796863,GB 3248796864,3248798975,EU @@ -108441,7 +108137,7 @@ 3249119744,3249120255,IT 3249120256,3249120767,SE 3249120768,3249121279,LV -3249121280,3249121791,DE +3249121280,3249121791,GB 3249122304,3249124351,RU 3249124352,3249124863,DE 3249124864,3249125375,CZ @@ -108476,9 +108172,7 @@ 3249142784,3249143295,UA 3249143296,3249143807,GB 3249143808,3249274879,AT -3249274880,3249277759,NL -3249277760,3249277775,BG -3249277776,3249279743,NL +3249274880,3249279743,NL 3249279744,3249279999,EU 3249280000,3249290143,NL 3249290144,3249290159,BG @@ -108574,7 +108268,7 @@ 3249720320,3249721343,IT 3249721344,3249721599,AT 3249721600,3249721855,BE -3249721856,3249722623,FR +3249721856,3249722367,FR 3249722624,3249723135,PL 3249723136,3249723391,RU 3249723392,3249723647,IT @@ -108715,7 +108409,9 @@ 3250014208,3250014719,DE 3250014720,3250015231,SE 3250015232,3250015743,FI -3250015744,3250016767,SE +3250015744,3250015999,SE +3250016000,3250016127,DK +3250016128,3250016767,SE 3250016768,3250017279,NL 3250017280,3250017535,CH 3250017536,3250017791,SE @@ -108744,7 +108440,7 @@ 3250035712,3250038271,SE 3250038272,3250039295,ES 3250039296,3250039807,DK -3250039808,3250040319,NO +3250039808,3250040319,GB 3250040320,3250042623,SE 3250042624,3250043135,FR 3250043136,3250043391,SE @@ -108904,9 +108600,7 @@ 3250438144,3250443519,CH 3250443520,3250443527,DE 3250443528,3250446335,CH -3250446336,3250451583,DE -3250451584,3250451599,AT -3250451600,3250454527,DE +3250446336,3250454527,DE 3250454528,3250585599,BE 3250585600,3250585855,NL 3250585856,3250588671,PT @@ -109131,8 +108825,7 @@ 3251157248,3251157503,BE 3251157504,3251158015,PL 3251158016,3251158271,TR -3251158272,3251158527,RU -3251158528,3251158783,UA +3251158272,3251158783,UA 3251158784,3251159295,GB 3251159296,3251159551,DE 3251159808,3251160063,DE @@ -109394,8 +109087,8 @@ 3251321856,3251322879,RU 3251322880,3251329727,GB 3251329728,3251329791,FR -3251329792,3251331071,GB -3251331072,3251331583,FR +3251329792,3251331327,GB +3251331328,3251331583,FR 3251331584,3251332095,PL 3251332096,3251333119,RU 3251333120,3251333631,CH @@ -109413,8 +109106,7 @@ 3251347456,3251355647,DE 3251355648,3251356159,GB 3251356160,3251356671,AT -3251356672,3251356927,LV -3251356928,3251357183,EE +3251356672,3251357183,EE 3251357184,3251357695,BG 3251357696,3251358207,ES 3251358208,3251358719,RU @@ -109491,9 +109183,7 @@ 3252191232,3252197119,HR 3252197120,3252197375,NO 3252197376,3252203519,HR -3252203520,3252204287,SE -3252204288,3252204543,NO -3252204544,3252205567,SE +3252203520,3252205567,SE 3252205568,3252206079,NO 3252206080,3252207615,SE 3252207616,3252211711,NL @@ -109655,7 +109345,7 @@ 3252409232,3252409247,UG 3252409248,3252409263,CD 3252409264,3252409271,SS -3252409272,3252409279,LT +3252409272,3252409279,CD 3252409280,3252409295,SO 3252409296,3252409303,LT 3252409304,3252409343,SO @@ -109697,8 +109387,7 @@ 3252411824,3252411839,SO 3252411840,3252411879,LT 3252411880,3252411887,CD -3252411888,3252411895,LT -3252411896,3252411903,CD +3252411888,3252411903,LT 3252411904,3252411967,GN 3252411968,3252412159,LT 3252412160,3252412415,GN @@ -109716,11 +109405,9 @@ 3252414648,3252414655,NE 3252414656,3252414719,ER 3252414720,3252414983,LT -3252414984,3252415007,IQ -3252415008,3252415015,LT -3252415016,3252415039,IQ -3252415040,3252415055,LT -3252415056,3252415063,IQ +3252414984,3252414999,IQ +3252415000,3252415015,LT +3252415016,3252415063,IQ 3252415064,3252415079,LT 3252415080,3252415111,IQ 3252415112,3252415119,LT @@ -109748,7 +109435,9 @@ 3252417440,3252417455,LT 3252417456,3252417495,AF 3252417496,3252417503,LT -3252417504,3252417527,AF +3252417504,3252417511,AF +3252417512,3252417519,LT +3252417520,3252417527,AF 3252417528,3252417935,LT 3252417936,3252417951,ZM 3252417952,3252418559,LT @@ -109765,13 +109454,11 @@ 3252419168,3252419199,CD 3252419200,3252419215,LT 3252419216,3252419247,GN -3252419248,3252419311,LT -3252419312,3252419327,ZM -3252419328,3252419359,LT +3252419248,3252419359,LT 3252419360,3252419423,GH 3252419424,3252419839,LT -3252419840,3252419879,IQ -3252419880,3252419919,LT +3252419840,3252419887,IQ +3252419888,3252419919,LT 3252419920,3252419927,IQ 3252419928,3252420039,LT 3252420040,3252420047,IQ @@ -109804,8 +109491,7 @@ 3252425472,3252425535,AO 3252425536,3252425551,LT 3252425552,3252425567,AO -3252425568,3252427775,LT -3252427776,3252428287,MW +3252425568,3252428287,LT 3252428288,3252428303,AO 3252428304,3252428319,LT 3252428320,3252428335,AO @@ -109820,9 +109506,7 @@ 3252430464,3252430479,BJ 3252430480,3252430543,LT 3252430544,3252430559,BJ -3252430560,3252430847,LT -3252430848,3252431359,MW -3252431360,3252431871,LT +3252430560,3252431871,LT 3252431872,3252432127,SO 3252432128,3252432383,LR 3252432384,3252432575,LT @@ -109832,7 +109516,7 @@ 3252434704,3252434711,TZ 3252434712,3252434719,LT 3252434720,3252434743,GH -3252434744,3252434751,ML +3252434744,3252434751,LT 3252434752,3252434759,GN 3252434760,3252434767,SL 3252434768,3252434775,BF @@ -109841,8 +109525,7 @@ 3252434792,3252434807,ML 3252434808,3252435199,LT 3252435200,3252435231,TZ -3252435232,3252435247,LT -3252435248,3252435263,BW +3252435232,3252435263,LT 3252435264,3252435279,ML 3252435280,3252435287,GN 3252435288,3252435295,GH @@ -109859,7 +109542,7 @@ 3252435856,3252435871,MR 3252435872,3252435887,LT 3252435888,3252435903,CD -3252435904,3252435919,BW +3252435904,3252435919,LT 3252435920,3252435935,BF 3252435936,3252435959,CD 3252435960,3252435967,ZM @@ -109869,25 +109552,19 @@ 3252436272,3252436287,BF 3252436288,3252436303,CD 3252436304,3252436319,ZM -3252436320,3252436351,LT -3252436352,3252436383,GN +3252436320,3252436367,LT +3252436368,3252436383,GN 3252436384,3252436399,LR 3252436400,3252436415,SL 3252436416,3252436447,LT 3252436448,3252436479,ER 3252436480,3252436991,LT 3252436992,3252437503,NG -3252437504,3252439263,LT -3252439264,3252439271,SN -3252439272,3252439295,LT +3252437504,3252439295,LT 3252439296,3252439391,SO -3252439392,3252439807,LT -3252439808,3252439871,SO -3252439872,3252444287,LT +3252439392,3252444287,LT 3252444288,3252444351,TZ -3252444352,3252445183,LT -3252445184,3252445263,GN -3252445264,3252446711,LT +3252444352,3252446711,LT 3252446712,3252446719,NO 3252446720,3252447231,LT 3252447232,3252448255,NO @@ -109912,7 +109589,8 @@ 3252450960,3252451071,LT 3252451072,3252451327,CH 3252451328,3252451363,SL -3252451364,3252451591,LT +3252451364,3252451367,GH +3252451368,3252451591,LT 3252451592,3252451607,GM 3252451608,3252451631,GW 3252451632,3252451655,GN @@ -109941,8 +109619,8 @@ 3252454432,3252454655,LT 3252454656,3252454911,IQ 3252454912,3252455679,LT -3252455680,3252455935,BI -3252455936,3252456447,LT +3252455680,3252455807,BI +3252455808,3252456447,LT 3252456448,3252456959,BJ 3252456960,3252460287,LT 3252460288,3252460319,US @@ -110163,7 +109841,7 @@ 3253271552,3253338111,RU 3253338112,3253338367,PL 3253338368,3253380351,SE -3253380352,3253380607,AT +3253380352,3253380607,GB 3253380608,3253380863,SE 3253380864,3253381119,IT 3253381120,3253383935,SE @@ -110175,9 +109853,9 @@ 3253388800,3253389055,CY 3253389056,3253389823,FR 3253389824,3253395199,SE -3253395200,3253395455,CH +3253395200,3253395455,GB 3253395456,3253397503,SE -3253397504,3253397759,ES +3253397504,3253397759,GB 3253397760,3253398271,SE 3253398272,3253398783,FR 3253398784,3253399039,SE @@ -110210,7 +109888,9 @@ 3253428480,3253429247,SE 3253429248,3253429759,JP 3253429760,3253430015,ES -3253430016,3253432831,SE +3253430016,3253430783,SE +3253430784,3253431039,BE +3253431040,3253432831,SE 3253432832,3253433087,IT 3253433088,3253433343,DE 3253433344,3253434111,SE @@ -110399,11 +110079,34 @@ 3253730304,3253730815,RO 3253730816,3253731327,UA 3253731328,3253731583,DE -3253731584,3253734343,GB +3253731584,3253732127,GB +3253732128,3253732159,FR +3253732160,3253734343,GB 3253734344,3253734351,DE 3253734352,3253735135,GB 3253735136,3253735167,NL -3253735168,3253760767,GB +3253735168,3253735519,GB +3253735520,3253735527,ES +3253735528,3253735535,IE +3253735536,3253735543,DE +3253735544,3253735551,IT +3253735552,3253735559,ES +3253735560,3253735567,FR +3253735568,3253735575,SE +3253735576,3253735711,GB +3253735712,3253735743,DE +3253735744,3253735759,GB +3253735760,3253735767,HR +3253735768,3253735999,GB +3253736000,3253736007,IT +3253736008,3253736127,GB +3253736128,3253736159,FR +3253736160,3253736959,GB +3253736960,3253737215,FR +3253737216,3253737471,GB +3253737472,3253737599,ES +3253737600,3253760511,GB +3253760512,3253760767,FR 3253760768,3253761023,CH 3253761024,3253761287,GB 3253761288,3253761291,DE @@ -110531,20 +110234,13 @@ 3254157056,3254177279,CH 3254177280,3254177535,LI 3254177536,3254255615,CH -3254255616,3254255871,FR -3254255872,3254256127,RE +3254255616,3254256127,RE 3254256128,3254256639,GP -3254256640,3254261247,FR -3254261248,3254261503,YT -3254261504,3254261759,FR -3254261760,3254262015,YT -3254262016,3254275327,FR +3254256640,3254275327,FR 3254275328,3254275583,MQ -3254275584,3254276607,FR -3254276608,3254278143,YT -3254278144,3254291711,FR -3254291712,3254291967,RE -3254291968,3254485503,FR +3254275584,3254277119,FR +3254277120,3254278143,YT +3254278144,3254485503,FR 3254485504,3254485799,CI 3254485800,3254485807,FR 3254485808,3254485819,CI @@ -110607,8 +110303,7 @@ 3254493336,3254493343,FR 3254493344,3254493439,GP 3254493440,3254493695,CI -3254493696,3254493951,GP -3254493952,3254494207,MQ +3254493696,3254494207,FR 3254494208,3254494527,GP 3254494528,3254494719,FR 3254494720,3254494735,LB @@ -110655,18 +110350,21 @@ 3254557696,3254576383,FR 3254576384,3254576543,DO 3254576544,3254607871,FR -3254607872,3254608383,RE -3254608384,3254608639,FR -3254608640,3254610175,RE -3254610176,3254610431,FR -3254610432,3254610687,RE -3254610688,3254611455,FR +3254607872,3254608895,RE +3254608896,3254609151,FR +3254609152,3254610687,RE +3254610688,3254610943,FR +3254610944,3254611455,RE 3254611456,3254611456,YT 3254611457,3254611711,FR 3254611712,3254611712,YT -3254611713,3254611967,FR -3254611968,3254613503,RE -3254613504,3254615551,FR +3254611713,3254612223,FR +3254612224,3254612991,RE +3254612992,3254613247,FR +3254613248,3254613503,RE +3254613504,3254614527,FR +3254614528,3254615039,RE +3254615040,3254615551,FR 3254615552,3254615552,YT 3254615553,3254615807,FR 3254615808,3254615808,YT @@ -111083,9 +110781,7 @@ 3255248128,3255248383,LU 3255248384,3255250079,BE 3255250080,3255250111,LU -3255250112,3255250815,BE -3255250816,3255250879,LU -3255250880,3255252487,BE +3255250112,3255252487,BE 3255252488,3255252495,FR 3255252496,3255252527,BE 3255252528,3255252543,LU @@ -111095,7 +110791,9 @@ 3255254848,3255254879,LU 3255254880,3255254991,BE 3255254992,3255255007,LU -3255255008,3255255751,BE +3255255008,3255255359,BE +3255255360,3255255423,LU +3255255424,3255255751,BE 3255255752,3255255759,DK 3255255760,3255256319,BE 3255256320,3255256575,LU @@ -111139,9 +110837,7 @@ 3255276672,3255276703,LU 3255276704,3255276783,BE 3255276784,3255276799,LU -3255276800,3255277247,BE -3255277248,3255277255,LU -3255277256,3255278607,BE +3255276800,3255278607,BE 3255278608,3255278623,LU 3255278624,3255279007,BE 3255279008,3255279039,LU @@ -111418,9 +111114,11 @@ 3255558400,3255558655,UA 3255558656,3255564031,CH 3255564032,3255564287,RU -3255564288,3255565955,CH +3255564288,3255565311,CH +3255565312,3255565955,DE 3255565956,3255565956,EU -3255565957,3255566335,CH +3255565957,3255566079,DE +3255566080,3255566335,CH 3255566336,3255570431,GB 3255570432,3255574527,CH 3255574528,3255578623,CZ @@ -111446,12 +111144,16 @@ 3255719168,3255719423,NO 3255719424,3255719679,SE 3255719680,3255719935,IT -3255719936,3255724543,SE +3255719936,3255722239,SE +3255722240,3255722495,CH +3255722496,3255724543,SE 3255724544,3255725055,US 3255725056,3255725311,ES 3255725312,3255730943,SE 3255730944,3255731199,GB -3255731200,3255739647,SE +3255731200,3255731967,SE +3255731968,3255732223,LI +3255732224,3255739647,SE 3255739648,3255739903,GB 3255739904,3255742719,SE 3255742720,3255742975,SG @@ -111556,9 +111258,7 @@ 3256513792,3256514047,GB 3256514048,3256524287,NL 3256524288,3256524799,DE -3256524800,3256528895,NL -3256528896,3256530943,DE -3256530944,3256549375,NL +3256524800,3256549375,NL 3256549376,3256614911,TR 3256614912,3256615935,FI 3256615936,3256616959,UA @@ -111886,7 +111586,9 @@ 3257552020,3257552023,SE 3257552024,3257552127,GB 3257552128,3257552447,SE -3257552448,3257554687,GB +3257552448,3257552511,GB +3257552512,3257552639,SE +3257552640,3257554687,GB 3257554688,3257554943,DE 3257554944,3257555295,CH 3257555296,3257555327,RO @@ -111942,7 +111644,9 @@ 3257731552,3257731559,DE 3257731560,3257731567,NL 3257731568,3257731575,DE -3257731576,3257731823,NL +3257731576,3257731687,NL +3257731688,3257731695,DE +3257731696,3257731823,NL 3257731824,3257731831,DE 3257731832,3257731991,NL 3257731992,3257731999,DE @@ -111996,8 +111700,8 @@ 3257737024,3257737031,DE 3257737032,3257737039,NL 3257737040,3257737047,DE -3257737048,3257737119,NL -3257737120,3257737127,DE +3257737048,3257737111,NL +3257737112,3257737127,DE 3257737128,3257737175,NL 3257737176,3257737183,DE 3257737184,3257737207,NL @@ -112050,7 +111754,9 @@ 3257745200,3257745207,DE 3257745208,3257745255,NL 3257745256,3257745263,DE -3257745264,3257745479,NL +3257745264,3257745327,NL +3257745328,3257745335,DE +3257745336,3257745479,NL 3257745480,3257745487,DE 3257745488,3257745823,NL 3257745824,3257745831,DE @@ -112058,7 +111764,9 @@ 3257745880,3257745887,DE 3257745888,3257745935,NL 3257745936,3257745943,DE -3257745944,3257746047,NL +3257745944,3257745999,NL +3257746000,3257746007,DE +3257746008,3257746047,NL 3257746048,3257746063,DE 3257746064,3257746079,NL 3257746080,3257746087,DE @@ -112214,8 +111922,8 @@ 3257752008,3257752015,DE 3257752016,3257752023,NL 3257752024,3257752031,DE -3257752032,3257752047,NL -3257752048,3257752055,DE +3257752032,3257752039,NL +3257752040,3257752055,DE 3257752056,3257752071,NL 3257752072,3257752079,DE 3257752080,3257752103,NL @@ -112344,7 +112052,9 @@ 3257758880,3257758887,DE 3257758888,3257758927,NL 3257758928,3257758935,DE -3257758936,3257759087,NL +3257758936,3257759055,NL +3257759056,3257759063,DE +3257759064,3257759087,NL 3257759088,3257759095,DE 3257759096,3257759135,NL 3257759136,3257759167,DE @@ -112552,7 +112262,9 @@ 3257769216,3257769223,DE 3257769224,3257769479,NL 3257769480,3257769487,DE -3257769488,3257769527,NL +3257769488,3257769503,NL +3257769504,3257769511,DE +3257769512,3257769527,NL 3257769528,3257769535,DE 3257769536,3257769543,NL 3257769544,3257769551,DE @@ -112572,8 +112284,8 @@ 3257770072,3257770079,DE 3257770080,3257770095,NL 3257770096,3257770103,DE -3257770104,3257770151,NL -3257770152,3257770159,DE +3257770104,3257770143,NL +3257770144,3257770159,DE 3257770160,3257770191,NL 3257770192,3257770199,DE 3257770200,3257770279,NL @@ -112638,7 +112350,9 @@ 3257773272,3257773279,DE 3257773280,3257773303,NL 3257773304,3257773311,DE -3257773312,3257773391,NL +3257773312,3257773351,NL +3257773352,3257773359,DE +3257773360,3257773391,NL 3257773392,3257773399,DE 3257773400,3257773415,NL 3257773416,3257773423,DE @@ -112672,7 +112386,9 @@ 3257774360,3257774367,DE 3257774368,3257774375,NL 3257774376,3257774383,DE -3257774384,3257774487,NL +3257774384,3257774423,NL +3257774424,3257774431,DE +3257774432,3257774487,NL 3257774488,3257774495,DE 3257774496,3257774527,NL 3257774528,3257774535,DE @@ -112754,14 +112470,12 @@ 3257778120,3257778127,DE 3257778128,3257778159,NL 3257778160,3257778167,DE -3257778168,3257778383,NL -3257778384,3257778391,DE -3257778392,3257778439,NL +3257778168,3257778439,NL 3257778440,3257778447,DE 3257778448,3257778479,NL 3257778480,3257778487,DE -3257778488,3257778503,NL -3257778504,3257778511,DE +3257778488,3257778495,NL +3257778496,3257778511,DE 3257778512,3257778543,NL 3257778544,3257778551,DE 3257778552,3257778583,NL @@ -112992,7 +112706,9 @@ 3257790392,3257790407,DE 3257790408,3257790415,NL 3257790416,3257790423,DE -3257790424,3257790479,NL +3257790424,3257790447,NL +3257790448,3257790455,DE +3257790456,3257790479,NL 3257790480,3257790503,DE 3257790504,3257790559,NL 3257790560,3257790567,DE @@ -113002,8 +112718,8 @@ 3257790664,3257790671,DE 3257790672,3257790711,NL 3257790712,3257790719,DE -3257790720,3257790847,NL -3257790848,3257790855,DE +3257790720,3257790839,NL +3257790840,3257790855,DE 3257790856,3257790879,NL 3257790880,3257790887,DE 3257790888,3257790903,NL @@ -113020,8 +112736,8 @@ 3257791096,3257791103,DE 3257791104,3257791151,NL 3257791152,3257791159,DE -3257791160,3257791175,NL -3257791176,3257791183,DE +3257791160,3257791167,NL +3257791168,3257791183,DE 3257791184,3257791223,NL 3257791224,3257791231,DE 3257791232,3257791255,NL @@ -113116,13 +112832,7 @@ 3257793920,3257793927,DE 3257793928,3257793951,NL 3257793952,3257793959,DE -3257793960,3257794079,NL -3257794080,3257794087,DE -3257794088,3257794095,NL -3257794096,3257794103,DE -3257794104,3257794279,NL -3257794280,3257794287,DE -3257794288,3257794327,NL +3257793960,3257794327,NL 3257794328,3257794335,DE 3257794336,3257794351,NL 3257794352,3257794359,DE @@ -113414,9 +113124,7 @@ 3258732544,3258732799,SE 3258732800,3258733055,CH 3258733056,3258733311,RO -3258733312,3258746879,GB -3258746880,3258748927,DE -3258748928,3258764287,GB +3258733312,3258764287,GB 3258764288,3258764543,DE 3258764800,3258765055,BE 3258765056,3258765311,NL @@ -113507,11 +113215,18 @@ 3259236864,3259237119,CH 3259237120,3259237887,SE 3259237888,3259238143,FR -3259238144,3259243519,SE +3259238144,3259240447,SE +3259240448,3259241471,CZ +3259241472,3259243007,SE +3259243008,3259243519,AT 3259243520,3259244543,US -3259244544,3259248127,SE +3259244544,3259246591,SE +3259246592,3259247615,IT +3259247616,3259248127,SE 3259248128,3259248383,GB -3259248384,3259250722,SE +3259248384,3259250175,SE +3259250176,3259250687,AT +3259250688,3259250722,SE 3259250723,3259250723,EU 3259250724,3259252479,SE 3259252480,3259252735,EU @@ -113651,8 +113366,10 @@ 3259454720,3259454975,EU 3259454976,3259457279,SE 3259457280,3259457535,IT -3259457536,3259460351,SE -3259460352,3259460607,DE +3259457536,3259458559,SE +3259458560,3259459583,CZ +3259459584,3259460351,SE +3259460352,3259460607,CH 3259460608,3259465215,SE 3259465216,3259465471,KH 3259465472,3259470847,SE @@ -113664,7 +113381,10 @@ 3259480832,3259481087,ES 3259481088,3259484671,SE 3259484672,3259485183,ES -3259485184,3259495935,SE +3259485184,3259485695,AT +3259485696,3259491327,SE +3259491328,3259492351,CZ +3259492352,3259495935,SE 3259495936,3259496447,DK 3259496448,3259498495,SE 3259498496,3259506943,GB @@ -113765,7 +113485,9 @@ 3259823104,3259823615,RO 3259823616,3259823871,NO 3259823872,3259824127,IE -3259824128,3259891711,DE +3259824128,3259848719,DE +3259848720,3259848727,GB +3259848728,3259891711,DE 3259891712,3259893503,BE 3259893504,3259893759,EU 3259893760,3259900866,BE @@ -113961,7 +113683,10 @@ 3261533440,3261533695,US 3261533696,3261539327,SE 3261539328,3261540351,SG -3261540352,3261570303,SE +3261540352,3261540863,AT +3261540864,3261564927,SE +3261564928,3261565951,CZ +3261565952,3261570303,SE 3261570304,3261570559,IT 3261570560,3261583103,SE 3261583104,3261583359,DK @@ -114104,8 +113829,52 @@ 3262028800,3262029823,DE 3262029824,3262030847,US 3262030848,3262031871,FR -3262031872,3262033919,FI -3262033920,3262038015,AX +3262031872,3262034111,FI +3262034112,3262034119,AX +3262034120,3262034123,FI +3262034124,3262034127,AX +3262034128,3262034143,FI +3262034144,3262034191,AX +3262034192,3262034239,FI +3262034240,3262034287,AX +3262034288,3262034455,FI +3262034456,3262034463,AX +3262034464,3262034527,FI +3262034528,3262034567,AX +3262034568,3262034575,FI +3262034576,3262034591,AX +3262034592,3262034687,FI +3262034688,3262034723,AX +3262034724,3262034799,FI +3262034800,3262034807,AX +3262034808,3262034815,FI +3262034816,3262034831,AX +3262034832,3262034943,FI +3262034944,3262035455,AX +3262035456,3262035487,FI +3262035488,3262035519,AX +3262035520,3262035711,FI +3262035712,3262035967,AX +3262035968,3262036127,FI +3262036128,3262036151,AX +3262036152,3262036287,FI +3262036288,3262036307,AX +3262036308,3262036311,FI +3262036312,3262036335,AX +3262036336,3262036367,FI +3262036368,3262036383,AX +3262036384,3262036415,FI +3262036416,3262036431,AX +3262036432,3262036463,FI +3262036464,3262036479,AX +3262036480,3262036607,FI +3262036608,3262036623,AX +3262036624,3262036655,FI +3262036656,3262036659,AX +3262036660,3262036663,FI +3262036664,3262036671,AX +3262036672,3262036719,FI +3262036720,3262038015,AX 3262038016,3262038271,FR 3262038272,3262038527,RU 3262038528,3262038783,GB @@ -115235,7 +115004,7 @@ 3262882816,3262883071,DE 3262883072,3262906367,NL 3262906368,3262964991,CH -3262964992,3262965247,CH +3262964992,3262965247,DE 3262965248,3262971903,CH 3262971904,3263029247,IE 3263029248,3263030271,UA @@ -115359,8 +115128,8 @@ 3263446272,3263446527,CH 3263446528,3263447039,DE 3263447040,3263458047,SE -3263458048,3263458559,DE -3263458560,3263458815,SE +3263458048,3263458303,DE +3263458304,3263458815,SE 3263458816,3263459327,FR 3263459328,3263459583,AT 3263459584,3263459839,FR @@ -115576,9 +115345,7 @@ 3264282624,3264290815,GB 3264290816,3264296191,FI 3264296192,3264297727,FR -3264297728,3264298239,PT -3264298240,3264298495,DE -3264298496,3264298751,PT +3264297728,3264298751,DE 3264298752,3264299007,BG 3264299008,3264307199,DE 3264307200,3264311295,PL @@ -115766,7 +115533,15 @@ 3264614144,3264614399,GB 3264614400,3264614655,NL 3264614656,3264615423,SE -3264615424,3264615935,CH +3264615424,3264615735,CH +3264615736,3264615743,GB +3264615744,3264615775,CH +3264615776,3264615807,GB +3264615808,3264615823,CH +3264615824,3264615839,GB +3264615840,3264615871,CH +3264615872,3264615879,GB +3264615880,3264615935,CH 3264615936,3264616191,GB 3264616192,3264616447,CH 3264616448,3264616479,DE @@ -115777,8 +115552,8 @@ 3264616704,3264616959,GB 3264616960,3264617471,DE 3264617472,3264617727,GB -3264617728,3264617983,US -3264617984,3264618239,GB +3264617728,3264618015,US +3264618016,3264618239,GB 3264618240,3264618495,US 3264618496,3264619007,PL 3264619008,3264619263,BE @@ -116019,17 +115794,23 @@ 3265137728,3265137919,ES 3265137920,3265137951,CH 3265137952,3265137983,NL -3265137984,3265139711,CH -3265139712,3265139999,BE -3265140000,3265140735,CH +3265137984,3265138175,CH +3265138176,3265138431,NL +3265138432,3265138863,CH +3265138864,3265138879,SE +3265138880,3265139711,CH +3265139712,3265140015,BE +3265140016,3265140023,NL +3265140024,3265140031,BE +3265140032,3265140735,CH 3265140736,3265141043,GB 3265141044,3265141055,CH 3265141056,3265141151,GB 3265141152,3265141167,CH 3265141168,3265141775,GB 3265141776,3265141791,CH -3265141792,3265141823,GB -3265141824,3265142783,CH +3265141792,3265141887,GB +3265141888,3265142783,CH 3265142784,3265150975,MT 3265150976,3265159167,AD 3265159168,3265167359,FR @@ -116095,7 +115876,7 @@ 3265384448,3265386495,DE 3265386496,3265386751,NL 3265386752,3265387007,EU -3265387008,3265387263,NL +3265387008,3265387263,SE 3265387264,3265388543,EU 3265388544,3265396735,GB 3265396736,3265464847,DE @@ -116197,8 +115978,8 @@ 3265910016,3265910271,PL 3265910272,3265910527,FR 3265910528,3265910783,PT -3265910784,3265911039,DE -3265911040,3265911551,GB +3265910784,3265911295,DE +3265911296,3265911551,GB 3265911552,3265911807,CH 3265911808,3265912063,PL 3265912064,3265912319,GB @@ -116274,8 +116055,8 @@ 3266346752,3266347007,FR 3266347008,3266347263,GB 3266347264,3266351359,EU -3266351360,3266352639,GB -3266352640,3266352895,EU +3266351360,3266352607,GB +3266352608,3266352895,EU 3266352896,3266353567,GB 3266353568,3266353583,EU 3266353584,3266353591,GB @@ -116307,8 +116088,8 @@ 3266387968,3266389247,FR 3266389248,3266389327,LU 3266389328,3266395135,FR -3266395136,3266395647,NL -3266395648,3266396159,FR +3266395136,3266395391,NL +3266395392,3266396159,FR 3266396160,3266412543,IT 3266412544,3266420735,AT 3266420736,3266428927,GB @@ -116341,8 +116122,8 @@ 3266799616,3266800639,GB 3266800640,3266800895,CH 3266800896,3266801663,GB -3266801664,3266802215,BG -3266802216,3266802687,GB +3266801664,3266802223,BG +3266802224,3266802687,GB 3266802688,3266803711,FR 3266803712,3266803815,GB 3266803816,3266803823,NL @@ -116360,9 +116141,7 @@ 3266838528,3266969599,IT 3266969600,3267030095,RU 3267030096,3267030103,KZ -3267030104,3267032575,RU -3267032576,3267032831,KZ -3267032832,3267035135,RU +3267030104,3267035135,RU 3267035136,3267039231,NO 3267039232,3267040255,DE 3267040256,3267041279,RO @@ -116386,7 +116165,8 @@ 3267059712,3267060735,NL 3267060736,3267061759,LV 3267061760,3267063807,UA -3267063808,3267064576,BE +3267063808,3267064063,DE +3267064064,3267064576,BE 3267064577,3267064577,EU 3267064578,3267064831,BE 3267064832,3267065855,PL @@ -116544,7 +116324,8 @@ 3267627872,3267628031,DE 3267628032,3267628287,IT 3267628288,3267628327,FR -3267628328,3267628543,EU +3267628328,3267628415,EU +3267628416,3267628543,FR 3267628544,3267628799,IT 3267628800,3267629055,HU 3267629056,3267629311,CZ @@ -116590,8 +116371,8 @@ 3267637728,3267637731,IT 3267637732,3267637735,EU 3267637736,3267637759,IT -3267637760,3267637823,ES -3267637824,3267638015,EU +3267637760,3267637827,ES +3267637828,3267638015,EU 3267638016,3267638271,ES 3267638272,3267638527,BE 3267638528,3267638783,DK @@ -116695,21 +116476,11 @@ 3267661664,3267661679,GB 3267661680,3267661687,EU 3267661688,3267661823,GB -3267661824,3267661851,ES -3267661852,3267661855,EU -3267661856,3267661887,ES +3267661824,3267661887,ES 3267661888,3267662015,EU 3267662016,3267662079,ES 3267662080,3267662847,EU -3267662848,3267662879,IE -3267662880,3267662887,EU -3267662888,3267662895,GB -3267662896,3267662911,EU -3267662912,3267662951,IE -3267662952,3267662959,GB -3267662960,3267662991,IE -3267662992,3267663007,EU -3267663008,3267663103,IE +3267662848,3267663103,GB 3267663104,3267663327,IT 3267663328,3267663359,EU 3267663360,3267663871,GB @@ -116751,8 +116522,8 @@ 3267673024,3267673087,FR 3267673088,3267673487,DE 3267673488,3267673495,EU -3267673496,3267673543,DE -3267673544,3267673567,EU +3267673496,3267673559,DE +3267673560,3267673567,EU 3267673568,3267673759,DE 3267673760,3267673807,EU 3267673808,3267673855,DE @@ -116799,8 +116570,12 @@ 3267679744,3267679999,EU 3267680000,3267680255,CZ 3267680256,3267680767,SK -3267680768,3267681279,EU -3267681280,3267681535,FR +3267680768,3267681287,EU +3267681288,3267681311,FR +3267681312,3267681327,EU +3267681328,3267681503,FR +3267681504,3267681511,EU +3267681512,3267681535,FR 3267681536,3267681791,EU 3267681792,3267681887,FR 3267681888,3267681903,EU @@ -116843,8 +116618,11 @@ 3267690272,3267690495,FR 3267690496,3267691519,FI 3267691520,3267692543,SE -3267692544,3267710847,FI -3267710848,3267710975,SE +3267692544,3267710959,FI +3267710960,3267710963,LV +3267710964,3267710967,NO +3267710968,3267710971,DK +3267710972,3267710975,SE 3267710976,3267741439,FI 3267741440,3267741695,BE 3267741696,3267741759,FI @@ -116977,7 +116755,12 @@ 3268236800,3268237855,EU 3268237856,3268237887,GB 3268237888,3268238335,EU -3268238336,3268238847,GB +3268238336,3268238359,GB +3268238360,3268238367,DE +3268238368,3268238399,EU +3268238400,3268238463,GB +3268238464,3268238471,DE +3268238472,3268238847,GB 3268238848,3268239583,EU 3268239584,3268240127,GB 3268240128,3268240159,EU @@ -117072,9 +116855,7 @@ 3268259560,3268259575,GB 3268259576,3268259807,EU 3268259808,3268259815,GB -3268259816,3268259817,EU -3268259818,3268259819,GB -3268259820,3268259831,EU +3268259816,3268259831,EU 3268259832,3268260095,GB 3268260096,3268260351,EU 3268260352,3268260383,GB @@ -117249,9 +117030,7 @@ 3268932352,3268932607,RU 3268932608,3268935679,FI 3268935680,3269066751,GB -3269066752,3269118087,SE -3269118088,3269118091,GB -3269118092,3269131555,SE +3269066752,3269131555,SE 3269131556,3269131559,NO 3269131560,3269132287,SE 3269132288,3269197823,GR @@ -117317,8 +117096,7 @@ 3269285336,3269285343,FR 3269285344,3269285344,GB 3269285345,3269285345,EU -3269285346,3269285375,GB -3269285376,3269285631,FR +3269285346,3269285631,GB 3269285632,3269285887,DE 3269285888,3269286399,EU 3269286400,3269286463,DE @@ -118067,8 +117845,7 @@ 3272084736,3272084991,CV 3272084992,3272086015,PT 3272086016,3272086527,ST -3272086528,3272086655,AO -3272086656,3272086975,PT +3272086528,3272086975,PT 3272086976,3272087039,CW 3272087040,3272087551,PT 3272087552,3272088575,MR @@ -118097,14 +117874,12 @@ 3272106752,3272107007,PL 3272107008,3272107263,GB 3272107264,3272107519,PL -3272107520,3272107775,RU 3272107776,3272108031,GB 3272108032,3272108287,DE 3272108288,3272108543,RO 3272108544,3272109055,PL 3272109056,3272109311,CH 3272109312,3272109567,TR -3272109568,3272109823,GB 3272109824,3272110079,FR 3272110080,3272110335,SE 3272110336,3272110591,CH @@ -118298,13 +118073,9 @@ 3272238920,3272238975,IM 3272238976,3272239039,GB 3272239040,3272239103,IM -3272239104,3272239687,GB -3272239688,3272239695,IM -3272239696,3272239703,GB -3272239704,3272239711,IM -3272239712,3272239775,GB -3272239776,3272239799,IM -3272239800,3272240127,GB +3272239104,3272239615,GB +3272239616,3272239871,IM +3272239872,3272240127,GB 3272240128,3272240367,IM 3272240368,3272240575,GB 3272240576,3272240639,GH @@ -118395,19 +118166,7 @@ 3272358912,3272359935,NL 3272359936,3272368127,RU 3272368128,3272376319,KZ -3272376320,3272376463,SK -3272376464,3272376479,SR -3272376480,3272376495,SK -3272376496,3272376527,SR -3272376528,3272376535,SK -3272376536,3272376543,SR -3272376544,3272376607,SK -3272376608,3272376639,SR -3272376640,3272376735,SK -3272376736,3272376751,SR -3272376752,3272376767,SK -3272376768,3272376831,SR -3272376832,3272378183,SK +3272376320,3272378183,SK 3272378184,3272378201,SR 3272378202,3272384511,SK 3272384512,3272392703,LT @@ -118417,11 +118176,14 @@ 3272400936,3272401007,EU 3272401008,3272401023,SE 3272401024,3272401087,GB -3272401088,3272401215,EU +3272401088,3272401119,EU +3272401120,3272401151,GB +3272401152,3272401215,EU 3272401216,3272401247,PL 3272401248,3272401279,EU 3272401280,3272401407,NL -3272401408,3272401951,EU +3272401408,3272401663,FR +3272401664,3272401951,EU 3272401952,3272401967,SE 3272401968,3272401983,GB 3272401984,3272402031,DE @@ -118443,8 +118205,8 @@ 3272403008,3272403023,FR 3272403024,3272403039,EU 3272403040,3272403055,DE -3272403056,3272403071,NL -3272403072,3272403455,EU +3272403056,3272403199,NL +3272403200,3272403455,EU 3272403456,3272404991,FR 3272404992,3272406015,DE 3272406016,3272407039,NL @@ -118464,8 +118226,7 @@ 3272422912,3272423423,SE 3272423424,3272423935,BE 3272423936,3272424447,FR -3272424448,3272425471,GB -3272425472,3272426655,GB +3272424448,3272426655,GB 3272426656,3272426671,IL 3272426672,3272441855,GB 3272441856,3272474623,LV @@ -118499,7 +118260,9 @@ 3272482304,3272482559,PL 3272482560,3272482815,BE 3272482816,3272491007,RU -3272491008,3272499199,GB +3272491008,3272491407,GB +3272491408,3272491423,DE +3272491424,3272499199,GB 3272499200,3272499711,RU 3272499712,3272500223,NL 3272500224,3272500735,RU @@ -118516,7 +118279,11 @@ 3272507392,3272515583,CY 3272515584,3272523775,LT 3272523776,3272540159,DE -3272540160,3272552735,CH +3272540160,3272546559,CH +3272546560,3272546815,FR +3272546816,3272547387,CH +3272547388,3272547391,FR +3272547392,3272552735,CH 3272552736,3272552743,FR 3272552744,3272552879,CH 3272552880,3272552887,FR @@ -118889,7 +118656,8 @@ 3273340416,3273340927,EU 3273340928,3273341695,FR 3273341696,3273341951,DE -3273341952,3273342463,EU +3273341952,3273342207,GB +3273342208,3273342463,EU 3273342464,3273342975,DE 3273342976,3273343999,GB 3273344000,3273344767,DE @@ -119117,15 +118885,11 @@ 3273736192,3273743359,FR 3273743360,3273743615,JO 3273743616,3273744383,FR -3273744384,3273744799,GB -3273744800,3273744807,DE -3273744808,3273746943,GB +3273744384,3273746943,GB 3273746944,3273747199,EU 3273747200,3273748751,GB 3273748752,3273748767,DE -3273748768,3273749631,GB -3273749632,3273749759,FR -3273749760,3273751455,GB +3273748768,3273751455,GB 3273751456,3273751471,AU 3273751472,3273751487,FI 3273751488,3273751951,GB @@ -119631,7 +119395,8 @@ 3274804224,3274805247,FR 3274805248,3274806271,GB 3274806272,3274807295,UA -3274807296,3274809343,DE +3274807296,3274809087,DE +3274809088,3274809343,NL 3274809344,3274810367,SE 3274810368,3274811391,UA 3274811392,3274812415,RU @@ -119881,7 +119646,9 @@ 3275371776,3275372031,TJ 3275372032,3275374591,RU 3275374592,3275382783,GB -3275382784,3275390975,SE +3275382784,3275382887,SE +3275382888,3275382891,NO +3275382892,3275390975,SE 3275390976,3275399167,GB 3275399168,3275407359,AT 3275407360,3275415551,GB @@ -119912,11 +119679,21 @@ 3275432960,3275433983,EU 3275433984,3275436543,GB 3275436544,3275436799,EU -3275436800,3275441443,GB -3275441444,3275442175,EU +3275436800,3275441439,GB +3275441440,3275441471,EU +3275441472,3275441535,GB +3275441536,3275441599,EU +3275441600,3275441663,GB +3275441664,3275442175,EU 3275442176,3275442723,GB 3275442724,3275443199,EU -3275443200,3275443727,GB +3275443200,3275443227,GB +3275443228,3275443231,EU +3275443232,3275443239,GB +3275443240,3275443255,EU +3275443256,3275443391,GB +3275443392,3275443423,EU +3275443424,3275443727,GB 3275443728,3275443759,EU 3275443760,3275443775,GB 3275443776,3275443967,EU @@ -119926,11 +119703,7 @@ 3275447040,3275447055,EU 3275447056,3275447151,GB 3275447152,3275448319,EU -3275448320,3275449927,GB -3275449928,3275449935,EU -3275449936,3275449951,GB -3275449952,3275450015,EU -3275450016,3275450207,GB +3275448320,3275450207,GB 3275450208,3275450223,EU 3275450224,3275450879,GB 3275450880,3275451231,EU @@ -119946,22 +119719,16 @@ 3275460224,3275460239,IE 3275460240,3275460607,EU 3275460608,3275460863,HK -3275460864,3275463199,GB -3275463200,3275463215,EU -3275463216,3275468655,GB +3275460864,3275468655,GB 3275468656,3275468671,IE 3275468672,3275468735,GB 3275468736,3275468751,IE 3275468752,3275468767,GB 3275468768,3275468799,IE -3275468800,3275475043,GB -3275475044,3275475047,EU -3275475048,3275475327,GB -3275475328,3275475359,EU -3275475360,3275475839,GB -3275475840,3275475855,EU -3275475856,3275475863,GB -3275475864,3275475967,EU +3275468800,3275475875,GB +3275475876,3275475879,EU +3275475880,3275475887,GB +3275475888,3275475967,EU 3275475968,3275476223,GB 3275476224,3275476991,EU 3275476992,3275477567,GB @@ -120392,20 +120159,14 @@ 3275923456,3275931647,ME 3275931648,3275939839,UA 3275939840,3275948031,GB -3275948032,3275984007,SE +3275948032,3275953407,SE +3275953408,3275953663,FI +3275953664,3275984007,SE 3275984008,3275984011,DK 3275984012,3275984043,SE 3275984044,3275984047,DK 3275984048,3276013567,SE -3276013568,3276014087,FR -3276014088,3276014095,GB -3276014096,3276014151,FR -3276014152,3276014167,GB -3276014168,3276014191,FR -3276014192,3276014207,GB -3276014208,3276014255,FR -3276014256,3276014263,GB -3276014264,3276015103,FR +3276013568,3276015103,FR 3276015104,3276015119,GB 3276015120,3276015191,FR 3276015192,3276015231,GB @@ -120413,7 +120174,9 @@ 3276015248,3276015263,GB 3276015264,3276015295,FR 3276015296,3276015327,GB -3276015328,3276016391,FR +3276015328,3276015879,FR +3276015880,3276015887,GB +3276015888,3276016391,FR 3276016392,3276016399,GB 3276016400,3276016415,FR 3276016416,3276016463,GB @@ -120459,19 +120222,7 @@ 3276019680,3276019687,GB 3276019688,3276019695,FR 3276019696,3276019703,GB -3276019704,3276019719,FR -3276019720,3276019727,GB -3276019728,3276019823,FR -3276019824,3276019831,GB -3276019832,3276019839,FR -3276019840,3276019855,GB -3276019856,3276019863,FR -3276019864,3276019871,GB -3276019872,3276019919,FR -3276019920,3276019927,GB -3276019928,3276019959,FR -3276019960,3276019967,GB -3276019968,3276020503,FR +3276019704,3276020503,FR 3276020504,3276020511,GB 3276020512,3276020575,FR 3276020576,3276020591,GB @@ -120493,7 +120244,15 @@ 3276022456,3276022463,GB 3276022464,3276022479,FR 3276022480,3276022495,GB -3276022496,3276023071,FR +3276022496,3276022567,FR +3276022568,3276022575,GB +3276022576,3276022599,FR +3276022600,3276022639,GB +3276022640,3276022719,FR +3276022720,3276022735,GB +3276022736,3276022751,FR +3276022752,3276022783,GB +3276022784,3276023071,FR 3276023072,3276023079,GB 3276023080,3276023087,FR 3276023088,3276023167,GB @@ -120509,17 +120268,7 @@ 3276023872,3276023887,GB 3276023888,3276023943,FR 3276023944,3276023967,GB -3276023968,3276025111,FR -3276025112,3276025135,GB -3276025136,3276025151,FR -3276025152,3276025159,GB -3276025160,3276025167,FR -3276025168,3276025175,GB -3276025176,3276025183,FR -3276025184,3276025191,GB -3276025192,3276025207,FR -3276025208,3276025215,GB -3276025216,3276026167,FR +3276023968,3276026167,FR 3276026168,3276026175,GB 3276026176,3276026191,FR 3276026192,3276026199,GB @@ -120577,15 +120326,7 @@ 3276028880,3276028887,GB 3276028888,3276028895,FR 3276028896,3276028927,GB -3276028928,3276029183,FR -3276029184,3276029199,GB -3276029200,3276029343,FR -3276029344,3276029359,GB -3276029360,3276029375,FR -3276029376,3276029407,GB -3276029408,3276029423,FR -3276029424,3276029439,GB -3276029440,3276029583,FR +3276028928,3276029583,FR 3276029584,3276029599,GB 3276029600,3276029727,FR 3276029728,3276029791,GB @@ -120655,7 +120396,9 @@ 3276033840,3276033855,GB 3276033856,3276033863,FR 3276033864,3276033887,GB -3276033888,3276036383,FR +3276033888,3276033927,FR +3276033928,3276033951,GB +3276033952,3276036383,FR 3276036384,3276036415,GB 3276036416,3276036671,FR 3276036672,3276036863,GB @@ -120739,15 +120482,7 @@ 3276044672,3276044703,GB 3276044704,3276044735,FR 3276044736,3276044799,GB -3276044800,3276045191,FR -3276045192,3276045199,GB -3276045200,3276045223,FR -3276045224,3276045239,GB -3276045240,3276045255,FR -3276045256,3276045271,GB -3276045272,3276045287,FR -3276045288,3276045311,GB -3276045312,3276045351,FR +3276044800,3276045351,FR 3276045352,3276045359,GB 3276045360,3276045391,FR 3276045392,3276045407,GB @@ -120978,14 +120713,7 @@ 3276479616,3276479647,EU 3276479648,3276479743,FR 3276479744,3276479999,EU -3276480000,3276480331,FR -3276480332,3276480335,EU -3276480336,3276480375,FR -3276480376,3276480383,EU -3276480384,3276480439,FR -3276480440,3276480455,EU -3276480456,3276480499,FR -3276480500,3276480511,EU +3276480000,3276480511,FR 3276480512,3276480767,RU 3276480768,3276481023,EU 3276481024,3276481535,RU @@ -121053,8 +120781,8 @@ 3276497344,3276497603,DE 3276497604,3276497607,EU 3276497608,3276497919,DE -3276497920,3276498047,GB -3276498048,3276498175,EU +3276497920,3276498111,GB +3276498112,3276498175,EU 3276498176,3276498431,GB 3276498432,3276499199,DE 3276499200,3276499455,EU @@ -121112,16 +120840,7 @@ 3276508352,3276508415,FR 3276508416,3276508671,GB 3276508672,3276508679,EU -3276508680,3276508975,GB -3276508976,3276508983,EU -3276508984,3276509047,GB -3276509048,3276509055,EU -3276509056,3276509087,GB -3276509088,3276509103,EU -3276509104,3276509107,GB -3276509108,3276509119,EU -3276509120,3276509155,GB -3276509156,3276509183,EU +3276508680,3276509183,GB 3276509184,3276510207,IT 3276510208,3276510719,EU 3276510720,3276510751,IT @@ -121356,9 +121075,7 @@ 3276537344,3276537599,AT 3276537600,3276537663,GR 3276537664,3276537855,EU -3276537856,3276627711,ES -3276627712,3276627967,PT -3276627968,3276668927,ES +3276537856,3276668927,ES 3276668928,3276677119,MC 3276677120,3276678143,HR 3276678144,3276678655,SE @@ -121883,7 +121600,11 @@ 3276888064,3276888575,GB 3276888576,3276889215,IT 3276889216,3276890111,GB -3276890112,3276890623,US +3276890112,3276890135,US +3276890136,3276890139,GB +3276890140,3276890275,US +3276890276,3276890367,GB +3276890368,3276890623,US 3276890624,3276891135,IT 3276891136,3276891391,BE 3276891392,3276892159,US @@ -121908,13 +121629,19 @@ 3276898384,3276898407,GB 3276898408,3276898463,CH 3276898464,3276898479,GB -3276898480,3276900351,CH +3276898480,3276898655,CH +3276898656,3276898671,GB +3276898672,3276898687,CH +3276898688,3276898703,GB +3276898704,3276898775,CH +3276898776,3276898783,GB +3276898784,3276898799,CH +3276898800,3276898815,GB +3276898816,3276900351,CH 3276900352,3276900607,GB -3276900608,3276901503,CH -3276901504,3276901519,ES -3276901520,3276901551,CH -3276901552,3276901559,GB -3276901560,3276902151,CH +3276900608,3276901375,CH +3276901376,3276901631,FR +3276901632,3276902151,CH 3276902152,3276902159,GB 3276902160,3276902399,CH 3276902400,3276902583,SE @@ -121928,7 +121655,8 @@ 3276904096,3276904143,SE 3276904144,3276904159,GB 3276904160,3276904447,SE -3276904448,3276905319,GB +3276904448,3276905311,GB +3276905312,3276905319,ES 3276905320,3276905327,BE 3276905328,3276905335,NL 3276905336,3276905471,GB @@ -121954,17 +121682,14 @@ 3276906624,3276906751,GB 3276906752,3276906823,NL 3276906824,3276906831,CH -3276906832,3276907339,NL -3276907340,3276907343,GB -3276907344,3276908159,NL +3276906832,3276908159,NL 3276908160,3276908175,CH 3276908176,3276908183,NL 3276908184,3276908191,GB 3276908192,3276908543,NL 3276908544,3276908671,SE 3276908672,3276908687,NL -3276908688,3276908703,GB -3276908704,3276908799,SE +3276908688,3276908799,SE 3276908800,3276909055,NL 3276909056,3276909567,GB 3276909568,3276910591,NL @@ -121975,8 +121700,8 @@ 3276912624,3276912799,IT 3276912800,3276912815,GB 3276912816,3276912863,IT -3276912864,3276912895,GB -3276912896,3276913279,IT +3276912864,3276912879,GB +3276912880,3276913279,IT 3276913280,3276913295,GB 3276913296,3276913359,IT 3276913360,3276913360,GB @@ -121987,7 +121712,9 @@ 3276913984,3276914079,IT 3276914080,3276914095,GB 3276914096,3276914687,IT -3276914688,3276915567,ES +3276914688,3276915487,ES +3276915488,3276915503,GB +3276915504,3276915567,ES 3276915568,3276915583,NL 3276915584,3276915711,GB 3276915712,3276916047,ES @@ -122018,10 +121745,10 @@ 3276921304,3276921343,DE 3276921344,3276921399,GB 3276921400,3276921403,DK -3276921404,3276921599,GB -3276921600,3276922623,DE -3276922624,3276926847,FR -3276926848,3276931071,GB +3276921404,3276921607,GB +3276921608,3276922623,DE +3276922624,3276926975,FR +3276926976,3276931071,GB 3276931072,3276939263,KZ 3276939264,3276955647,DE 3276955648,3276963839,GB @@ -122220,7 +121947,11 @@ 3277389312,3277389823,AM 3277389824,3277394943,GB 3277394944,3277395455,US -3277395456,3277403135,GB +3277395456,3277399295,GB +3277399296,3277399327,BE +3277399328,3277399359,GB +3277399360,3277399551,BE +3277399552,3277403135,GB 3277403136,3277403647,FR 3277403648,3277404159,ES 3277404160,3277404415,DE @@ -122478,9 +122209,9 @@ 3278168192,3278176255,SE 3278176256,3278220799,FR 3278220800,3278221055,GB -3278221056,3278221091,FR -3278221092,3278221093,GB -3278221094,3278241791,FR +3278221056,3278221087,FR +3278221088,3278221119,GB +3278221120,3278241791,FR 3278241792,3278307327,GB 3278307328,3278358527,IT 3278358528,3278358783,US @@ -122522,9 +122253,7 @@ 3278781952,3278782463,RU 3278782464,3278782975,GB 3278782976,3278783231,DE -3278783232,3278784703,GB -3278784704,3278784735,NL -3278784736,3278786911,GB +3278783232,3278786911,GB 3278786912,3278786943,LU 3278786944,3278787567,GB 3278787568,3278787583,FR @@ -123515,9 +123244,7 @@ 3279084544,3279085567,IT 3279085568,3279089663,NL 3279089664,3279093759,KG -3279093760,3279103103,FR -3279103104,3279103135,GB -3279103136,3279123455,FR +3279093760,3279123455,FR 3279123456,3279123711,RE 3279123712,3279159295,FR 3279159296,3279290367,PL @@ -123760,7 +123487,6 @@ 3279948800,3279949823,GB 3279949824,3279950847,UA 3279950848,3279951871,DE -3279951872,3279952895,IQ 3279952896,3279953919,PL 3279953920,3279955967,TR 3279955968,3279958015,DE @@ -124071,16 +123797,22 @@ 3280662528,3280662543,IN 3280662544,3280662559,DE 3280662560,3280662607,IT -3280662608,3280662655,DE +3280662608,3280662623,DE +3280662624,3280662655,IT 3280662656,3280662687,AR 3280662688,3280662783,DE 3280662784,3280663295,CZ 3280663296,3280663327,AR -3280663328,3280663391,DE +3280663328,3280663343,IN +3280663344,3280663359,IT +3280663360,3280663391,DE 3280663392,3280663407,HK -3280663408,3280663807,DE -3280663808,3280663935,IN -3280663936,3280664575,DE +3280663408,3280663423,IT +3280663424,3280663935,DE +3280663936,3280663951,CH +3280663952,3280664063,DE +3280664064,3280664319,CZ +3280664320,3280664575,DE 3280664576,3280664703,GB 3280664704,3280664831,IN 3280664832,3280665087,JO @@ -124118,10 +123850,12 @@ 3280794624,3280795647,UA 3280795648,3280796671,MZ 3280796672,3280797695,CZ -3280797696,3280863231,CH +3280797696,3280810783,CH +3280810784,3280810799,DE +3280810800,3280863231,CH 3280863232,3280928767,TR -3280928768,3280928831,RU -3280928832,3280930303,GB +3280928768,3280928847,RU +3280928848,3280930303,GB 3280930304,3280930559,DE 3280930560,3280930959,GB 3280930960,3280930975,DE @@ -124131,9 +123865,9 @@ 3280933360,3280933375,DE 3280933376,3280933631,GB 3280933632,3280934399,DE -3280934400,3280936191,GB -3280936192,3280936447,DE -3280936448,3280938767,GB +3280934400,3280934911,GB +3280934912,3280936959,DE +3280936960,3280938767,GB 3280938768,3280938783,DE 3280938784,3280938799,GB 3280938800,3280938815,DE @@ -124423,25 +124157,15 @@ 3281043456,3281059839,RU 3281059840,3281062911,DE 3281062912,3281063167,EU -3281063168,3281068543,DE -3281068544,3281068647,US -3281068648,3281068655,DE -3281068656,3281068751,US -3281068752,3281068759,DE -3281068760,3281068799,US -3281068800,3281074671,DE +3281063168,3281074671,DE 3281074672,3281074679,ES -3281074680,3281103935,DE +3281074680,3281088359,DE +3281088360,3281088367,AT +3281088368,3281103935,DE 3281103936,3281103943,AT 3281103944,3281104127,DE 3281104128,3281104383,FR -3281104384,3281116927,DE -3281116928,3281117007,PL -3281117008,3281117023,DE -3281117024,3281117119,PL -3281117120,3281117135,DE -3281117136,3281117183,PL -3281117184,3281125375,DE +3281104384,3281125375,DE 3281125376,3281133567,SK 3281133568,3281141759,IR 3281141760,3281149951,RU @@ -124660,9 +124384,7 @@ 3282449024,3282449151,NL 3282449152,3282452479,GB 3282452480,3282452735,DE -3282452736,3282456023,GB -3282456024,3282456031,IT -3282456032,3282461439,GB +3282452736,3282461439,GB 3282461440,3282461695,CH 3282461696,3282464767,GB 3282464768,3282465023,SE @@ -124723,7 +124445,7 @@ 3282745856,3282746111,PL 3282746112,3282746367,SE 3282746368,3282746623,PL -3282746624,3282746879,SE +3282746624,3282746879,EU 3282746880,3282747135,RO 3282747136,3282747391,PL 3282747392,3282763775,RU @@ -124979,8 +124701,8 @@ 3283556392,3283556399,EU 3283556400,3283556623,FR 3283556624,3283556671,EU -3283556672,3283556735,FR -3283556736,3283556863,EU +3283556672,3283556743,FR +3283556744,3283556863,EU 3283556864,3283558303,FR 3283558304,3283558335,DE 3283558336,3283558367,IT @@ -125757,17 +125479,7 @@ 3284825344,3284828159,GB 3284828160,3284844543,AT 3284844544,3284860927,CH -3284860928,3284863743,DE -3284863744,3284863999,FR -3284864000,3284868863,DE -3284868864,3284869375,FR -3284869376,3284869631,DE -3284869632,3284869887,IT -3284869888,3284872959,DE -3284872960,3284873471,IT -3284873472,3284913919,DE -3284913920,3284914175,GB -3284914176,3284926463,DE +3284860928,3284926463,DE 3284926464,3284991999,NO 3284992000,3285057535,PL 3285057536,3285065727,IT @@ -125897,7 +125609,9 @@ 3285446656,3285447679,UA 3285447680,3285449727,RU 3285449728,3285450751,UA -3285450752,3285453055,GB +3285450752,3285452351,GB +3285452352,3285452415,EU +3285452416,3285453055,GB 3285453056,3285453119,EU 3285453120,3285454847,GB 3285454848,3285455103,EU @@ -125943,8 +125657,8 @@ 3285459712,3285459967,NO 3285459968,3285460479,FI 3285460480,3285460991,DK -3285460992,3285461031,NL -3285461032,3285461055,EU +3285460992,3285461039,NL +3285461040,3285461055,EU 3285461056,3285461111,NL 3285461112,3285461119,EU 3285461120,3285461263,NL @@ -126017,8 +125731,10 @@ 3285465232,3285465247,EU 3285465248,3285465343,DK 3285465344,3285465631,EU -3285465632,3285465727,DE -3285465728,3285465855,EU +3285465632,3285465767,DE +3285465768,3285465791,EU +3285465792,3285465823,DE +3285465824,3285465855,EU 3285465856,3285465951,DE 3285465952,3285465983,EU 3285465984,3285466367,DE @@ -126035,8 +125751,8 @@ 3285466968,3285466975,EU 3285466976,3285467007,BG 3285467008,3285467015,EU -3285467016,3285467023,BG -3285467024,3285467135,EU +3285467016,3285467031,BG +3285467032,3285467135,EU 3285467136,3285467391,DE 3285467392,3285467663,EU 3285467664,3285467679,DE @@ -126058,18 +125774,15 @@ 3285468616,3285468623,EU 3285468624,3285469695,DE 3285469696,3285469727,EU -3285469728,3285470975,DE -3285470976,3285471231,IN -3285471232,3285471743,DE +3285469728,3285471007,DE +3285471008,3285471039,EU +3285471040,3285471071,DE +3285471072,3285471103,EU +3285471104,3285471743,DE 3285471744,3285471807,EU 3285471808,3285471871,DE 3285471872,3285471935,EU -3285471936,3285472127,DE -3285472128,3285472159,EU -3285472160,3285472175,DE -3285472176,3285472183,EU -3285472184,3285472223,DE -3285472224,3285472255,EU +3285471936,3285472255,DE 3285472256,3285472511,US 3285472512,3285473315,EU 3285473316,3285473423,DE @@ -126250,11 +125963,14 @@ 3285501376,3285501407,CZ 3285501408,3285501439,EU 3285501440,3285501567,CZ -3285501568,3285501695,EU -3285501696,3285501823,GB -3285501824,3285501887,CZ -3285501888,3285501951,GB -3285501952,3285502207,EU +3285501568,3285501727,EU +3285501728,3285501759,GB +3285501760,3285501775,CZ +3285501776,3285501819,EU +3285501820,3285501887,CZ +3285501888,3285501895,EU +3285501896,3285501903,CZ +3285501904,3285502207,EU 3285502208,3285502463,CZ 3285502464,3285502495,IL 3285502496,3285502503,CY @@ -127326,9 +127042,7 @@ 3285942784,3285943039,ES 3285943040,3285943295,SE 3285943296,3285943551,ES -3285943552,3285943647,GB -3285943648,3285943679,NG -3285943680,3285944319,GB +3285943552,3285944319,GB 3285944320,3285944831,US 3285944832,3285945343,DK 3285945344,3285945599,ES @@ -127417,8 +127131,8 @@ 3285972736,3285972991,FR 3285972992,3285973095,GB 3285973096,3285973247,EU -3285973248,3285973767,GB -3285973768,3285973791,EU +3285973248,3285973759,GB +3285973760,3285973791,EU 3285973792,3285973823,GB 3285973824,3285974015,EU 3285974016,3285975039,GB @@ -127445,7 +127159,9 @@ 3286245888,3286246143,US 3286246144,3286254167,GB 3286254168,3286254175,NL -3286254176,3286279423,GB +3286254176,3286264879,GB +3286264880,3286264895,NL +3286264896,3286279423,GB 3286279424,3286279679,US 3286279680,3286291807,GB 3286291808,3286291823,US @@ -127516,15 +127232,9 @@ 3286376448,3286384639,GB 3286384640,3286397607,DE 3286397608,3286397615,A2 -3286397616,3286399759,DE -3286399760,3286399807,GB -3286399808,3286399815,DE -3286399816,3286399831,GB -3286399832,3286399839,DE -3286399840,3286399999,GB -3286400000,3286401023,DE -3286401024,3286404095,GB -3286404096,3286405375,GG +3286397616,3286401023,DE +3286401024,3286403839,GB +3286403840,3286405375,GG 3286405376,3286405887,GB 3286405888,3286407167,GG 3286407168,3286407679,GB @@ -127812,8 +127522,8 @@ 3287165696,3287165951,US 3287165952,3287166207,SA 3287166208,3287166975,US -3287166976,3287167999,SA -3287168000,3287168511,US +3287166976,3287167743,SA +3287167744,3287168511,US 3287168512,3287168767,EU 3287168768,3287169279,SA 3287169280,3287169535,US @@ -128002,7 +127712,9 @@ 3287555584,3287556095,FR 3287556096,3287564287,TR 3287564288,3287572479,FI -3287572480,3287580575,DE +3287572480,3287578863,DE +3287578864,3287578879,LI +3287578880,3287580575,DE 3287580576,3287580607,LI 3287580608,3287580671,DE 3287580672,3287588863,LV @@ -128351,7 +128063,8 @@ 3288435968,3288436223,PR 3288436224,3288436479,US 3288436480,3288436735,EG -3288436736,3288440831,ZA +3288436736,3288440575,ZA +3288440576,3288440831,TG 3288440832,3288441343,VC 3288441344,3288442879,BB 3288442880,3288443135,KN @@ -128365,9 +128078,7 @@ 3288466432,3288467455,SY 3288467456,3288469503,BI 3288469504,3288481791,ZA -3288481792,3288482303,ZW -3288482304,3288485631,ZA -3288485632,3288485887,ZW +3288481792,3288485887,ZW 3288485888,3288489983,MA 3288489984,3288514559,ZA 3288514560,3288522751,EG @@ -128377,9 +128088,10 @@ 3288535040,3288539135,CW 3288539136,3288543487,US 3288543488,3288543743,AP -3288543744,3288543996,CH +3288543744,3288543996,DE 3288543997,3288543997,EU -3288543998,3288543999,CH +3288543998,3288543998,CH +3288543999,3288543999,DE 3288544000,3288544498,US 3288544499,3288544499,EU 3288544500,3288544767,US @@ -128430,19 +128142,26 @@ 3288758528,3288772607,ZA 3288774656,3288774911,ZA 3288774912,3288775167,EG -3288775168,3288775679,NG +3288775168,3288777727,NG 3288778240,3288778495,ZA 3288778496,3288778751,MU 3288778752,3288779007,EG 3288779008,3288779263,ZA 3288779264,3288779775,KE +3288779776,3288780799,NG 3288781824,3288782591,ZA 3288782592,3288782847,KE 3288783872,3288784127,KE 3288784128,3288784895,ZA 3288787968,3288788223,EG 3288788224,3288788479,ZA -3288788992,3289063423,ZA +3288788992,3288792831,ZA +3288792832,3288793087,AO +3288793088,3289002751,ZA +3289002752,3289003007,TZ +3289005056,3289044991,ZA +3289044992,3289047039,ML +3289047040,3289063423,ZA 3289069568,3289070335,ZA 3289070336,3289070591,ZW 3289070592,3289070847,NA @@ -128458,7 +128177,9 @@ 3289128960,3289137151,IN 3289137152,3289153535,BM 3289153536,3289161727,RW -3289161728,3289169919,PR +3289161728,3289169631,PR +3289169632,3289169663,US +3289169664,3289169919,PR 3289169920,3289186303,MA 3289186304,3289229311,ZA 3289229312,3289229567,SZ @@ -128548,7 +128269,13 @@ 3290182079,3290182143,US 3290182144,3290182335,PR 3290182336,3290182399,US -3290182400,3290185727,PR +3290182400,3290183167,PR +3290183168,3290183199,US +3290183200,3290183230,PR +3290183231,3290183294,US +3290183295,3290183326,PR +3290183327,3290183423,US +3290183424,3290185727,PR 3290185728,3290226687,ZA 3290226688,3290230783,MZ 3290230784,3290234879,BF @@ -128564,7 +128291,9 @@ 3290284032,3290288127,AO 3290288128,3290292223,NG 3290292224,3290296319,GH -3290296320,3290431487,ZA +3290296320,3290333183,ZA +3290333184,3290333439,ZW +3290333440,3290431487,ZA 3290431488,3290433535,JM 3290439680,3290447871,TT 3290447872,3290456063,AR @@ -128731,31 +128460,44 @@ 3291434752,3291435007,ZA 3291435008,3291439103,A2 3291447296,3291463679,CI -3291480064,3291486463,SC +3291480064,3291484159,SC +3291484160,3291486463,DE 3291486464,3291486719,US -3291486720,3291488255,SC +3291486720,3291488255,DE 3291488256,3291488511,US 3291488512,3291492351,SC 3291492352,3291492607,US -3291492608,3291506431,SC +3291492608,3291500543,SC +3291500544,3291504639,US +3291504640,3291506431,SC 3291506432,3291506687,US 3291506688,3291510015,SC 3291510016,3291510527,US 3291510528,3291522559,SC 3291522560,3291522815,US -3291522816,3291535359,SC -3291535360,3291535615,US -3291535616,3291536639,SC -3291536640,3291536895,US -3291536896,3291539711,SC +3291522816,3291529215,SC +3291529216,3291533311,US +3291533312,3291535359,SC +3291535360,3291537407,US +3291537408,3291539711,SC 3291539712,3291539967,US 3291539968,3291540479,SC 3291540480,3291540735,US 3291540736,3291545599,SC 3291742208,3292004351,US -3292004352,3292018431,SC +3292004352,3292008191,SC +3292008192,3292008447,US +3292008448,3292008959,SC +3292008960,3292009471,US +3292009472,3292011519,SC +3292011520,3292011775,US +3292011776,3292013055,SC +3292013056,3292013311,US +3292013312,3292018431,SC 3292018432,3292018943,US -3292018944,3292023039,SC +3292018944,3292020479,SC +3292020480,3292020735,US +3292020736,3292023039,SC 3292023040,3292023295,US 3292023296,3292024063,SC 3292024064,3292024319,US @@ -128765,19 +128507,33 @@ 3292027136,3292027391,US 3292027392,3292031487,SC 3292031488,3292031743,US -3292031744,3292037375,SC +3292031744,3292033023,SC +3292033024,3292033279,US +3292033280,3292035071,SC +3292035072,3292035327,US +3292035328,3292037375,SC 3292037376,3292037631,US 3292037632,3292043007,SC 3292043008,3292043263,US -3292043264,3292047871,SC -3292047872,3292048127,US -3292048128,3292048383,SC -3292048384,3292048639,US -3292048640,3292066303,SC +3292043264,3292045567,SC +3292045568,3292045823,US +3292045824,3292047871,SC +3292047872,3292048639,US +3292048640,3292059391,SC +3292059392,3292059647,US +3292059648,3292062207,SC +3292062208,3292062719,US +3292062720,3292062975,SC +3292062976,3292063231,US +3292063232,3292066303,SC 3292066304,3292066559,US 3292066560,3292068095,SC 3292068096,3292068351,US -3292068352,3292079103,SC +3292068352,3292071935,SC +3292071936,3292072191,US +3292072192,3292072959,SC +3292072960,3292073215,US +3292073216,3292079103,SC 3292079104,3292079359,US 3292079360,3292088063,SC 3292088064,3292088319,US @@ -128787,53 +128543,115 @@ 3292094720,3292094975,US 3292094976,3292097535,SC 3292097536,3292097791,US -3292097792,3292105215,SC +3292097792,3292098815,SC +3292098816,3292099071,US +3292099072,3292102399,SC +3292102400,3292102655,US +3292102656,3292103167,SC +3292103168,3292103423,US +3292103424,3292103935,SC +3292103936,3292104191,US +3292104192,3292105215,SC 3292105216,3292105471,US -3292105472,3292112639,SC +3292105472,3292110335,SC +3292110336,3292110591,US +3292110592,3292110847,SC +3292110848,3292111103,US +3292111104,3292112639,SC 3292112640,3292112895,US 3292112896,3292114687,SC 3292114688,3292114943,US -3292114944,3292122623,SC -3292122624,3292122879,US +3292114944,3292115455,SC +3292115456,3292115711,US +3292115712,3292117503,SC +3292117504,3292117759,US +3292117760,3292118271,SC +3292118272,3292118527,US +3292118528,3292119295,SC +3292119296,3292119551,US +3292119552,3292121087,SC +3292121088,3292121343,US +3292121344,3292122111,SC +3292122112,3292122879,US 3292122880,3292128511,SC 3292128512,3292128767,US 3292128768,3292134143,SC 3292134144,3292134399,US -3292134400,3292151551,SC +3292134400,3292141311,SC +3292141312,3292141567,US +3292141568,3292143103,SC +3292143104,3292143359,US +3292143360,3292151551,SC 3292151552,3292151807,US -3292151808,3292162559,SC +3292151808,3292153343,SC +3292153344,3292153599,US +3292153600,3292154367,SC +3292154368,3292154623,US +3292154624,3292162559,SC 3292162560,3292162815,US 3292162816,3292163583,SC 3292163584,3292163839,US -3292163840,3292166143,SC +3292163840,3292165119,SC +3292165120,3292165375,US +3292165376,3292166143,SC 3292166144,3292166399,US -3292166400,3292169471,SC -3292169472,3292169727,US +3292166400,3292169215,SC +3292169216,3292169727,US 3292169728,3292172031,SC -3292172032,3292172287,US -3292172288,3292180479,SC +3292172032,3292172543,US +3292172544,3292174335,SC +3292174336,3292174591,US +3292174592,3292175615,SC +3292175616,3292175871,US +3292175872,3292180479,SC 3292180480,3292180735,US -3292180736,3292187135,SC +3292180736,3292181759,SC +3292181760,3292182015,US +3292182016,3292184063,SC +3292184064,3292184319,US +3292184320,3292187135,SC 3292187136,3292187391,US 3292187392,3292190207,SC 3292190208,3292190463,US -3292190464,3292193279,SC +3292190464,3292190719,SC +3292190720,3292190975,US +3292190976,3292193279,SC 3292193280,3292193791,US 3292193792,3292196863,SC 3292196864,3292197119,US -3292197120,3292205311,SC +3292197120,3292198399,SC +3292198400,3292198655,US +3292198656,3292199935,SC +3292199936,3292200191,US +3292200192,3292200959,SC +3292200960,3292201215,SE +3292201216,3292201727,SC +3292201728,3292201983,US +3292201984,3292202751,SC +3292202752,3292203007,US +3292203008,3292203263,SC +3292203264,3292203519,US +3292203520,3292205311,SC 3292205312,3292205567,US 3292205568,3292209407,SC 3292209408,3292209663,US 3292209664,3292213503,SC -3292213504,3292213759,US -3292213760,3292216831,SC -3292216832,3292217087,US -3292217088,3292220671,SC +3292213504,3292214015,US +3292214016,3292216575,SC +3292216576,3292217087,US +3292217088,3292217599,SC +3292217600,3292217855,US +3292217856,3292220671,SC 3292220672,3292220927,US 3292220928,3292221695,SC 3292221696,3292221951,US -3292221952,3292236543,SC +3292221952,3292226047,SC +3292226048,3292226303,US +3292226304,3292227327,SC +3292227328,3292227583,US +3292227584,3292234495,SC +3292234496,3292234751,US +3292234752,3292236543,SC 3292236544,3292236799,US 3292236800,3292239103,SC 3292239104,3292239359,US @@ -128843,11 +128661,20 @@ 3292243968,3292244223,US 3292244224,3292248063,SC 3292248064,3292248319,US -3292248320,3292260095,SC +3292248320,3292251647,SC +3292251648,3292251903,US +3292251904,3292254975,SC +3292254976,3292255231,US +3292255232,3292260095,SC 3292260096,3292260351,US 3292260352,3292261375,SC 3292261376,3292261631,US -3292261632,3292265983,SC +3292261632,3292262655,SC +3292262656,3292262911,US +3292262912,3292263423,SC +3292263424,3292263679,US +3292263680,3292265471,SC +3292265472,3292265983,US 3292265984,3292266239,DE 3292266240,3292266495,SC 3300917248,3300921343,MU @@ -128859,37 +128686,74 @@ 3301183744,3301183999,US 3301184000,3301188351,SC 3301188352,3301188607,US -3301188608,3301193727,SC +3301188608,3301188863,SC +3301188864,3301189119,US +3301189120,3301189375,SC +3301189376,3301189631,US +3301189632,3301191167,SC +3301191168,3301191423,US +3301191424,3301193727,SC 3301193728,3301193983,US 3301193984,3301197567,SC 3301197568,3301197823,US -3301197824,3301219327,SC +3301197824,3301205759,SC +3301205760,3301206015,US +3301206016,3301210623,SC +3301210624,3301210879,US +3301210880,3301213695,SC +3301213696,3301213951,US +3301213952,3301217535,SC +3301217536,3301217791,US +3301217792,3301219327,SC 3301219328,3301219583,US -3301219584,3301224959,SC +3301219584,3301220863,SC +3301220864,3301221119,US +3301221120,3301221887,SC +3301221888,3301222143,US +3301222144,3301224959,SC 3301224960,3301225215,US 3301225216,3301228543,SC 3301228544,3301228799,US 3301228800,3301230591,SC 3301230592,3301230847,US -3301230848,3301236991,SC +3301230848,3301234687,SC +3301234688,3301234943,US +3301234944,3301236991,SC 3301236992,3301237247,US -3301237248,3301241343,SC +3301237248,3301238527,SC +3301238528,3301238783,US +3301238784,3301241343,SC 3301241344,3301241599,US 3301241600,3301311487,SC 3301311488,3301312511,SA -3301312512,3301326847,SC -3301326848,3301330943,SA -3301330944,3301387007,SC +3301312512,3301318655,SC +3301318656,3301322751,DE +3301322752,3301330943,SA +3301330944,3301347327,SC +3301347328,3301351423,PL +3301351424,3301355519,SC +3301355520,3301363711,SE +3301363712,3301383679,SC +3301383680,3301383935,US +3301383936,3301387007,SC 3301387008,3301387263,US -3301387264,3301393407,SC -3301393408,3301393663,US +3301387264,3301393151,SC +3301393152,3301393663,US 3301393664,3301393919,SC 3301393920,3301394175,US 3301394176,3301394431,SC 3301394432,3301394687,US -3301394688,3301403135,SC +3301394688,3301397503,SC +3301397504,3301397759,US +3301397760,3301399295,SC +3301399296,3301399551,US +3301399552,3301403135,SC 3301403136,3301403391,US -3301403392,3301407743,SC +3301403392,3301403903,SC +3301403904,3301404159,US +3301404160,3301407231,SC +3301407232,3301407487,US +3301407488,3301407743,SC 3301407744,3301407999,US 3301408000,3301408511,SC 3301408512,3301408767,US @@ -128897,18 +128761,34 @@ 3301410048,3301410303,US 3301410304,3301412351,SC 3301412352,3301412607,US -3301412608,3301423103,SC +3301412608,3301419519,SC +3301419520,3301419775,US +3301419776,3301423103,SC 3301423104,3301423359,US 3301423360,3301426943,SC 3301426944,3301427199,US -3301427200,3301428223,SC +3301427200,3301427455,SC +3301427456,3301427711,US +3301427712,3301428223,SC 3301428224,3301428479,US -3301428480,3301433855,SC +3301428480,3301431295,SC +3301431296,3301431551,US +3301431552,3301432063,SC +3301432064,3301432319,US +3301432320,3301433855,SC 3301433856,3301434367,US 3301434368,3301435647,SC 3301435648,3301435903,US -3301435904,3301441535,SC -3301441536,3301441567,ZA +3301435904,3301437951,SC +3301437952,3301438207,US +3301438208,3301439999,SC +3301440000,3301440255,US +3301440256,3301440767,SC +3301440768,3301441023,US +3301441024,3301441535,SC +3301441536,3301441551,ZA +3301441552,3301441559,NG +3301441560,3301441567,ZA 3301441568,3301441575,NG 3301441576,3301441655,ZA 3301441656,3301441663,NG @@ -129052,8 +128932,8 @@ 3302548992,3302549503,ZA 3302549504,3302550015,KE 3302550016,3302550527,TZ -3302550528,3302551039,ZA -3302551040,3302551551,MU +3302550528,3302551295,ZA +3302551296,3302551551,MU 3302551552,3302552063,EG 3302552064,3302552575,KE 3302552576,3302552831,TZ @@ -129187,7 +129067,6 @@ 3315462144,3315463167,ZA 3315463168,3315464191,SO 3315464192,3315465215,CD -3315465216,3315466239,MU 3315466240,3315482623,MZ 3315482624,3315499007,MG 3315499008,3315515391,ZM @@ -129233,6 +129112,8 @@ 3319255040,3319257087,ZA 3319257088,3319258111,LR 3319258112,3319259135,CD +3319259136,3319263231,ZA +3319263232,3319267327,TZ 3319267328,3319398399,AO 3319398400,3319529471,MZ 3319529472,3319537663,ZM @@ -129280,6 +129161,7 @@ 3320312832,3320313855,ZM 3320313856,3320314879,BI 3320314880,3320315903,CD +3320315904,3320381439,KE 3320381440,3320446975,NA 3320479744,3320500223,ZA 3320500224,3320502271,BW @@ -129304,7 +129186,9 @@ 3320905728,3320938495,DJ 3320938496,3320971263,AO 3320971264,3320979455,GA -3320979456,3320995839,ZA +3320979456,3320982783,ZA +3320982784,3320983039,TZ +3320983040,3320995839,ZA 3320995840,3321004031,NG 3321004032,3321008127,GM 3321008128,3321012223,ZA @@ -129338,9 +129222,9 @@ 3321839616,3321843711,GH 3321843712,3321847807,MU 3321847808,3321848831,GH -3321848832,3321853695,MU -3321853696,3321853951,GH -3321853952,3321854975,MU +3321848832,3321849855,MU +3321849856,3321850879,GH +3321850880,3321854975,MU 3321854976,3321855999,GH 3321856000,3321860095,CV 3321860096,3321864191,ZA @@ -129349,18 +129233,20 @@ 3321872384,3321876479,GM 3321876480,3321880575,NG 3321880576,3321884671,KM -3321884672,3321885695,ZA +3321884672,3321885439,ZA +3321885440,3321885695,LS 3321885696,3321886719,NG 3321886720,3321887743,GA 3321887744,3321888767,NG 3321954304,3321968639,US 3321968640,3321970687,CA -3321970688,3321987071,US +3321970688,3322003455,US +3322003456,3322019839,CA 3322019840,3322023935,US 3322023936,3322028031,CL 3322028032,3322036223,US 3322036224,3322052607,CA -3322085376,3322167551,US +3322052608,3322167551,US 3322167552,3322167807,GB 3322167808,3322202111,US 3322202112,3322203135,GB @@ -129389,8 +129275,7 @@ 3322363040,3322363071,BR 3322363072,3322609663,US 3322609664,3322610687,SA -3322610688,3322642431,US -3322675200,3322683391,US +3322610688,3322683391,US 3322683392,3322691583,BR 3322691584,3322691647,US 3322691648,3322691655,KW @@ -129432,9 +129317,7 @@ 3322707584,3322707615,ID 3322707616,3322707719,US 3322707720,3322707727,ID -3322707728,3322707967,US -3322740736,3322773503,US -3322806272,3322875903,US +3322707728,3322875903,US 3322880000,3322888191,AU 3322888192,3322889199,US 3322889200,3322889207,CN @@ -129479,28 +129362,30 @@ 3322903488,3322903495,GB 3322903496,3322903519,US 3322903520,3322903535,GB -3322903536,3322904575,US -3322937344,3322940671,US +3322903536,3322940671,US 3322940672,3322940927,AP 3322940928,3322945535,US 3322945536,3322951679,CN 3322951680,3322970111,US +3322970112,3323002879,CA 3323003136,3323003391,JP 3323003392,3323003647,US -3323003904,3323013631,US +3323003904,3323013887,US 3323013888,3323014143,CA 3323014144,3323017727,US 3323017728,3323017983,CA -3323017984,3323018239,US -3323018752,3323020799,US +3323017984,3323020799,US 3323020800,3323021055,AP 3323021056,3323022591,US 3323022592,3323022847,GB 3323022848,3323023103,US -3323023360,3323031551,US +3323023360,3323027455,US +3323027456,3323027711,CA +3323027712,3323031807,US 3323032576,3323032831,US 3323032832,3323033087,IT 3323033088,3323033343,JP +3323033344,3323033599,US 3323033600,3323034111,BR 3323034112,3323038719,US 3323038720,3323038975,CA @@ -129508,15 +129393,18 @@ 3323048960,3323049727,NL 3323049728,3323062271,US 3323062272,3323062527,BR -3323062784,3323068415,US +3323062528,3323068415,US 3323199488,3323201535,US 3323201536,3323203583,CA 3323203584,3323207679,US 3323207680,3323215871,CA 3323215872,3323240447,US -3323267072,3323270420,US +3323240448,3323248639,CA +3323248640,3323270399,US +3323270400,3323270420,DE 3323270421,3323270421,CH -3323270422,3323330559,US +3323270422,3323270655,DE +3323270656,3323330559,US 3323330816,3323331071,US 3323331072,3323331839,CA 3323331840,3323342335,US @@ -129630,9 +129518,7 @@ 3324047360,3324047615,KN 3324047616,3324051455,US 3324051456,3324182527,CA -3324182528,3324193279,US -3324193792,3324194815,CA -3324194816,3324195167,US +3324182528,3324195167,US 3324195168,3324195199,GB 3324195200,3324195775,US 3324195776,3324195807,CA @@ -129651,7 +129537,7 @@ 3324270080,3324270591,EU 3324270592,3324277247,US 3324277760,3324278783,CA -3324280832,3324354559,US +3324278784,3324354559,US 3324354560,3324362751,CA 3324362752,3324379135,US 3324379136,3324380159,CA @@ -129765,13 +129651,19 @@ 3324706560,3324732415,US 3324732416,3324732671,EU 3324732672,3324772351,US -3324837888,3324843799,US +3324837888,3324843775,US +3324843776,3324843799,SG 3324843800,3324843801,AP -3324843802,3324844543,US +3324843802,3324844031,SG +3324844032,3324844543,US 3324844544,3324844799,EU 3324844800,3324980223,US 3324980224,3324981247,CA -3324981248,3325034495,US +3324981248,3324997631,US +3324997632,3324997887,US +3324997888,3324998399,US +3324998400,3324998655,US +3324998656,3325034495,US 3325034496,3325035519,NZ 3325035520,3325067263,US 3325067264,3325100031,CA @@ -129796,7 +129688,11 @@ 3325202048,3325202079,US 3325202080,3325204479,CA 3325204480,3325205503,US -3325205504,3325231103,CA +3325205504,3325206639,CA +3325206640,3325206655,US +3325206656,3325207807,CA +3325207808,3325207935,US +3325207936,3325231103,CA 3325231104,3325232127,US 3325233152,3325234175,US 3325234176,3325234431,SA @@ -129827,13 +129723,15 @@ 3325313024,3325323687,US 3325323688,3325323695,GB 3325323696,3325329407,US -3325329408,3325427711,CA +3325329408,3325348415,CA +3325348416,3325348671,US +3325348672,3325427711,CA 3325427712,3325450239,ZA 3325451008,3325451263,ZA 3325451264,3325452287,US 3325452800,3325453311,ZA 3325453312,3325454335,CA -3325456384,3325456751,US +3325454336,3325456751,US 3325456752,3325456759,CA 3325456760,3325456855,US 3325456856,3325456863,PH @@ -129847,8 +129745,7 @@ 3325459984,3325459999,CA 3325460000,3325460079,US 3325460080,3325460095,CA -3325460096,3325460479,US -3325462528,3325463551,US +3325460096,3325463551,US 3325463808,3325464063,ZA 3325464064,3325465087,NA 3325465088,3325481983,ZA @@ -129862,7 +129759,9 @@ 3325505536,3325509631,CA 3325509632,3325551615,US 3325551616,3325552639,CA -3325554688,3325640703,US +3325552640,3325573119,US +3325573120,3325575167,BB +3325575168,3325640703,US 3325640704,3325644799,CA 3325644800,3325689855,US 3325689856,3325690367,JM @@ -129910,11 +129809,12 @@ 3326619648,3326623743,CA 3326623744,3326631935,US 3326631936,3326640127,CA -3326640128,3326676991,US -3326679040,3326680063,US +3326640128,3326680063,US 3326680832,3326682623,CA 3326682624,3326682879,US -3326682880,3326713343,CA +3326682880,3326697471,CA +3326697472,3326699519,US +3326699520,3326713343,CA 3326713344,3326714111,US 3326714112,3326716927,CA 3326716928,3326717951,US @@ -129970,9 +129870,9 @@ 3328202752,3328204799,US 3328204800,3328214783,CA 3328214784,3328215295,GB -3328215296,3328223231,CA -3328223232,3328225279,US -3328225280,3328235007,CA +3328215296,3328224255,CA +3328224256,3328224511,US +3328224512,3328235007,CA 3328235008,3328235263,US 3328235520,3328241663,CA 3328241664,3328242943,US @@ -129980,7 +129880,9 @@ 3328243200,3328245759,CA 3328245760,3328300031,US 3328300032,3328301055,CA -3328303104,3328383487,US +3328301056,3328358399,US +3328358400,3328360447,CA +3328360448,3328383487,US 3328384000,3328385023,CA 3328385024,3328393727,US 3328393728,3328393983,GB @@ -130049,7 +129951,9 @@ 3330677760,3330678783,CA 3330678784,3330684927,US 3330684928,3330685183,IN -3330685184,3330714367,US +3330685184,3330697471,US +3330697472,3330697727,US +3330697728,3330714367,US 3330714368,3330714623,CA 3330714624,3330726655,US 3330726656,3330726911,CA @@ -130066,7 +129970,9 @@ 3330778880,3330779135,GB 3330779136,3330791423,US 3330791424,3330791679,CA -3330791680,3330815743,US +3330791680,3330812927,US +3330812928,3330813951,CA +3330813952,3330815743,US 3330815744,3330815999,CA 3330816000,3330817882,US 3330817883,3330817887,CL @@ -130096,13 +130002,17 @@ 3330897920,3330898175,CA 3330898176,3330898431,DE 3330898432,3330898943,FR -3330898944,3331102463,US +3330898944,3331070463,US +3331070464,3331070975,UM +3331070976,3331102463,US 3331102464,3331102719,CA 3331102720,3331194879,US 3331194880,3331260415,AU -3331260416,3331352919,US -3331352920,3331352920,US -3331352921,3331356671,US +3331260416,3331269375,US +3331269376,3331269631,AU +3331269632,3331352575,US +3331352576,3331353087,US +3331353088,3331356671,US 3331356672,3331357183,BZ 3331357184,3331362815,US 3331362816,3331366911,CA @@ -130122,7 +130032,11 @@ 3331372352,3331372367,ES 3331372368,3331374079,US 3331374080,3331374335,CA -3331374336,3331527167,US +3331374336,3331523583,US +3331523584,3331523839,GB +3331523840,3331524095,US +3331524096,3331524607,SG +3331524608,3331527167,US 3331527168,3331527679,GB 3331527680,3331563519,US 3331563520,3331563775,CH @@ -130148,7 +130062,7 @@ 3331868162,3331868162,EU 3331868163,3331934719,US 3331935232,3331936255,CA -3331936256,3331987967,US +3331936256,3331988479,US 3331988480,3331989503,CA 3331989504,3332002303,US 3332002304,3332002304,CA @@ -130217,8 +130131,8 @@ 3332083968,3332084223,AP 3332084224,3332095231,US 3332095232,3332095487,EU -3332095488,3332440063,US -3332440064,3332460543,CA +3332095488,3332440319,US +3332440320,3332460543,CA 3332460544,3332460799,US 3332460800,3332461311,CA 3332461568,3332473855,CA @@ -130245,11 +130159,15 @@ 3332595456,3332595711,US 3332595712,3332610559,CA 3332610560,3332611071,US -3332611072,3332616191,CA +3332611072,3332611327,CA +3332611328,3332611583,US +3332611584,3332616191,CA 3332616192,3332616959,US -3332616960,3332617471,CA +3332616960,3332617727,CA 3332617728,3332624383,US -3332624384,3332724735,CA +3332624384,3332636415,CA +3332636416,3332636671,US +3332636672,3332724735,CA 3332724736,3332726783,PM 3332726784,3332737023,CA 3332737024,3332738047,PM @@ -130257,27 +130175,33 @@ 3332744192,3332745215,PM 3332745216,3332752127,CA 3332752128,3332752383,PM -3332752384,3332866303,CA -3332866560,3332874239,US -3332874240,3332876287,CA -3332878336,3332882431,US +3332752384,3332833279,CA +3332833280,3332833535,US +3332833536,3332866303,CA +3332866304,3332874239,US +3332874240,3332875007,CA +3332875008,3332875263,US +3332875264,3332876287,CA +3332876288,3332882431,US 3332882432,3332890623,KN -3332890624,3332894719,US -3332896768,3332897279,US -3332897280,3332906495,CA -3332906496,3332906751,US -3332909056,3332909567,US +3332890624,3332897279,US +3332897280,3332898559,CA +3332898560,3332898815,US +3332898816,3332906495,CA +3332906496,3332909567,US 3332909568,3332922879,CA 3332922880,3332923391,US 3332923392,3332925695,CA -3332925952,3332929023,US +3332925696,3332929023,US 3332929024,3332930047,CA -3332930048,3332930559,US +3332930048,3332931327,US 3332931328,3332947967,CA 3332947968,3332948223,US 3332948224,3332966143,CA 3332966144,3332966399,US -3332966400,3332988927,CA +3332966400,3332979967,CA +3332979968,3332980223,US +3332980736,3332988927,CA 3332988928,3332989951,US 3332989952,3333012479,CA 3333012480,3333012991,US @@ -130292,7 +130216,9 @@ 3333213696,3333214079,US 3333214080,3333246505,US 3333246506,3333246506,US -3333246507,3333385983,US +3333246507,3333374975,US +3333374976,3333375231,IN +3333375232,3333385983,US 3333385984,3333386239,JP 3333386240,3333396689,US 3333396690,3333396691,EU @@ -130324,7 +130250,9 @@ 3333603330,3333603583,GB 3333603584,3333609733,US 3333609734,3333609734,AU -3333609735,3333624319,US +3333609735,3333614591,US +3333614592,3333614847,GB +3333614848,3333624319,US 3333624320,3333624575,CA 3333624576,3333675775,US 3333675776,3333676031,CA @@ -130381,7 +130309,9 @@ 3334934016,3334934527,CA 3334934528,3334995967,US 3334995968,3334998527,PH -3334998528,3335012351,US +3334998528,3335011071,US +3335011072,3335011327,US +3335011328,3335012351,US 3335012352,3335028735,CA 3335028736,3335057919,US 3335057920,3335058175,CA @@ -130436,8 +130366,8 @@ 3337060352,3337069055,US 3337069056,3337069119,GB 3337069120,3337289983,US -3337289984,3337292799,CA -3337292800,3337293823,US +3337289984,3337293567,CA +3337293568,3337293823,US 3337293824,3337297919,CA 3337297920,3337302015,US 3337302016,3337303551,CA @@ -130455,7 +130385,8 @@ 3337342464,3337355007,CA 3337355008,3337650175,US 3337650176,3337650687,GB -3337650688,3337651199,US +3337650688,3337650943,US +3337650944,3337651199,HK 3337651200,3337651455,CH 3337651456,3337651711,SG 3337651712,3337653503,CH @@ -130609,11 +130540,11 @@ 3338912768,3338913023,EC 3338913024,3338916351,US 3338916352,3338916479,CN -3338916480,3338934015,US -3338934016,3338934271,GB -3338934272,3338935039,US +3338916480,3338935039,US 3338935040,3338935295,GB -3338935296,3339059629,US +3338935296,3338964991,US +3338964992,3338965247,CA +3338965248,3339059629,US 3339059630,3339059885,NL 3339059886,3339075583,US 3339075584,3339076863,GB @@ -130970,7 +130901,8 @@ 3341084672,3341180927,US 3341180928,3341182975,CA 3341182976,3341205503,US -3341205504,3341207551,VC +3341205504,3341206527,BB +3341206528,3341207551,VC 3341207552,3341216255,US 3341216256,3341216511,JP 3341216512,3341216767,US @@ -131031,9 +130963,9 @@ 3341339648,3341339903,AP 3341339904,3341340159,US 3341340160,3341340415,AP -3341340416,3341438975,US -3341438976,3341439231,CA -3341439232,3341444863,US +3341340416,3341439200,US +3341439201,3341439201,CA +3341439202,3341444863,US 3341444864,3341445631,DE 3341445632,3341464575,US 3341464576,3341464831,GB @@ -131232,10 +131164,10 @@ 3343055872,3343056895,CA 3343056896,3343108863,US 3343108864,3343109119,EU -3343109120,3343153151,US -3343153152,3343153167,CA -3343153168,3343153175,US -3343153176,3343155199,CA +3343109120,3343127551,US +3343127552,3343127807,GB +3343127808,3343153151,US +3343153152,3343155199,CA 3343155200,3343167487,US 3343167488,3343169535,CA 3343169536,3343171583,US @@ -131385,7 +131317,11 @@ 3345299456,3345301503,CA 3345301504,3345309855,US 3345309856,3345309871,BR -3345309872,3345310207,US +3345309872,3345309959,US +3345309960,3345309967,ES +3345309968,3345310079,US +3345310080,3345310143,PL +3345310144,3345310207,US 3345310208,3345310231,CA 3345310232,3345310287,US 3345310288,3345310295,AR @@ -131446,7 +131382,10 @@ 3345332432,3345332435,ID 3345332436,3345333247,US 3345333248,3345334271,MF -3345334272,3345339391,US +3345334272,3345334527,US +3345334528,3345335295,US +3345335296,3345335551,US +3345335552,3345339391,US 3345339392,3345340415,CA 3345340416,3345375231,US 3345375232,3345377279,CA @@ -131578,7 +131517,9 @@ 3345443328,3345443583,CH 3345443584,3345443839,DE 3345443840,3345444607,US -3345444608,3345444676,CH +3345444608,3345444627,CH +3345444628,3345444629,US +3345444630,3345444676,CH 3345444677,3345444678,US 3345444679,3345445119,CH 3345445120,3345445375,US @@ -131797,7 +131738,9 @@ 3349645312,3349647359,CA 3349647360,3349649407,US 3349649408,3349653503,CA -3349653504,3349711539,US +3349653504,3349711474,US +3349711475,3349711508,GB +3349711509,3349711539,US 3349711540,3349711547,GB 3349711548,3349723260,US 3349723261,3349723265,CA @@ -131810,9 +131753,7 @@ 3349725000,3349731327,US 3349731328,3349733375,CA 3349733376,3349739519,US -3349739520,3349739551,CA -3349739552,3349739559,US -3349739560,3349740543,CA +3349739520,3349740543,CA 3349740544,3349987327,US 3349987328,3349996543,BM 3349996544,3349997055,KY @@ -131864,7 +131805,11 @@ 3350491648,3350491903,PL 3350491904,3350492961,US 3350492962,3350492990,GB -3350492991,3350514639,US +3350492991,3350501439,US +3350501440,3350501447,MX +3350501448,3350501631,US +3350501632,3350501887,MX +3350501888,3350514639,US 3350514640,3350514655,GB 3350514656,3350514879,US 3350514880,3350514911,GB @@ -132003,7 +131948,9 @@ 3351045440,3351045471,CA 3351045472,3351045631,US 3351045632,3351045695,TW -3351045696,3351071743,US +3351045696,3351047167,US +3351047168,3351047679,US +3351047680,3351071743,US 3351071744,3351072767,CA 3351072768,3351074751,US 3351074752,3351074783,DE @@ -132100,7 +132047,8 @@ 3351298048,3351303167,US 3351303168,3351304191,CA 3351304192,3351306239,US -3351306240,3351307263,VC +3351306240,3351306751,VC +3351306752,3351307263,LC 3351307264,3351307295,US 3351307296,3351307311,MX 3351307312,3351308287,US @@ -132320,9 +132268,7 @@ 3353335770,3353335776,NL 3353335777,3353335782,US 3353335783,3353335789,NL -3353335790,3353652735,US -3353652736,3353652863,DE -3353652864,3353653503,US +3353335790,3353653503,US 3353653504,3353653759,GB 3353653760,3353722367,US 3353722368,3353722623,GB @@ -132332,19 +132278,15 @@ 3353730048,3353731071,CA 3353731072,3353731487,US 3353731488,3353731503,AU -3353731504,3353731775,US -3353731776,3353731823,IL -3353731824,3353731999,US -3353732000,3353732031,CN -3353732032,3353732063,US -3353732064,3353732071,RU -3353732072,3353732127,US +3353731504,3353732127,US 3353732128,3353732143,RU 3353732144,3353732159,US 3353732160,3353732191,CA 3353732192,3353732607,US 3353732608,3353732863,DE -3353732864,3353752581,US +3353732864,3353736447,US +3353736448,3353736703,PR +3353736704,3353752581,US 3353752582,3353752585,FR 3353752586,3353752589,BE 3353752590,3353752677,US @@ -132409,7 +132351,9 @@ 3353864448,3353864703,CA 3353864704,3353864959,US 3353864960,3353865215,CA -3353865216,3353942527,US +3353865216,3353884927,US +3353884928,3353885183,GB +3353885184,3353942527,US 3353942528,3353943039,CA 3353943040,3353960191,US 3353960192,3353960447,CA @@ -132432,7 +132376,8 @@ 3354485376,3354485439,GB 3354485440,3354492927,US 3354492928,3354494975,CA -3354494976,3354501119,US +3354494976,3354499071,US +3354499072,3354501119,AU 3354501120,3354503167,CA 3354503168,3354507327,US 3354507328,3354507335,CY @@ -132552,11 +132497,9 @@ 3354687488,3354688511,CA 3354688512,3354708207,US 3354708208,3354708223,CA -3354708224,3354731007,US -3354731008,3354731018,BE +3354708224,3354731018,US 3354731019,3354731019,EU -3354731020,3354731263,BE -3354731264,3354731519,US +3354731020,3354731519,US 3354731520,3354731775,AP 3354731776,3354737919,US 3354737920,3354738175,CN @@ -133171,13 +133114,9 @@ 3357443584,3357444351,HN 3357444352,3357444479,GT 3357444480,3357444487,HN -3357444488,3357444623,GT -3357444624,3357444631,SV -3357444632,3357444647,GT -3357444648,3357444655,SV -3357444656,3357444663,GT -3357444664,3357444671,SV -3357444672,3357448407,GT +3357444488,3357444607,GT +3357444608,3357444863,SV +3357444864,3357448407,GT 3357448408,3357448415,SV 3357448416,3357448447,GT 3357448448,3357448703,SV @@ -133228,8 +133167,23 @@ 3357477248,3357477375,EC 3357477376,3357477423,AR 3357477424,3357477431,EC -3357477432,3357477887,AR -3357477888,3357480959,CO +3357477432,3357477543,AR +3357477544,3357477551,EC +3357477552,3357477887,AR +3357477888,3357478911,CO +3357478912,3357479135,AR +3357479136,3357479151,CO +3357479152,3357479215,AR +3357479216,3357479223,CO +3357479224,3357479551,AR +3357479552,3357479679,CO +3357479680,3357479871,AR +3357479872,3357479879,CO +3357479880,3357479935,AR +3357479936,3357480447,CO +3357480448,3357480463,AR +3357480464,3357480479,CO +3357480480,3357480959,AR 3357480960,3357483007,EC 3357483008,3357491199,CL 3357491200,3357499391,CO @@ -133239,7 +133193,8 @@ 3357523968,3357532159,CO 3357532160,3357556735,AR 3357556736,3357556991,VE -3357556992,3357557759,AR +3357556992,3357557247,AR +3357557248,3357557759,MX 3357557760,3357558783,EC 3357558784,3357559039,AR 3357559040,3357559295,EC @@ -133303,10 +133258,8 @@ 3358150432,3358150495,AR 3358150496,3358150655,CO 3358150656,3358150783,EC -3358150784,3358151263,AR -3358151264,3358151271,EC -3358151272,3358151423,AR -3358151424,3358151551,EC +3358150784,3358151167,AR +3358151168,3358151551,EC 3358151552,3358151679,AR 3358151680,3358151807,PE 3358151808,3358151935,AR @@ -133331,8 +133284,8 @@ 3358154752,3358158847,PE 3358158848,3358159159,AR 3358159160,3358159167,US -3358159168,3358159487,AR -3358159488,3358159615,EC +3358159168,3358159359,AR +3358159360,3358159615,EC 3358159616,3358159871,US 3358159872,3358160895,VE 3358160896,3358236671,AR @@ -133344,13 +133297,15 @@ 3358326784,3358392319,VE 3358392320,3358457855,AR 3358457856,3358523391,PA -3358523392,3358525439,VE -3358525440,3358527487,AR -3358527488,3358529791,VE -3358529792,3358530303,AR +3358523392,3358526463,VE +3358526464,3358526719,AR +3358526720,3358529535,VE +3358529536,3358530303,AR 3358530304,3358531071,VE -3358531072,3358533631,AR -3358533632,3358534143,VE +3358531072,3358531583,AR +3358531584,3358532607,VE +3358532608,3358533119,AR +3358533120,3358534143,VE 3358534144,3358534655,AR 3358534656,3358535423,VE 3358535424,3358535679,AR @@ -133364,9 +133319,9 @@ 3358548224,3358548479,AR 3358548480,3358549759,VE 3358549760,3358550015,AR -3358550016,3358552063,VE -3358552064,3358556159,AR -3358556160,3358558463,VE +3358550016,3358553087,VE +3358553088,3358553855,AR +3358553856,3358558463,VE 3358558464,3358558591,PY 3358558592,3358562303,VE 3358562304,3358563327,PE @@ -133415,8 +133370,8 @@ 3358568960,3358570495,VE 3358570496,3358570751,MX 3358570752,3358571263,PE -3358571264,3358572031,MX -3358572032,3358573055,VE +3358571264,3358572543,MX +3358572544,3358573055,VE 3358573056,3358573311,AR 3358573312,3358574847,VE 3358574848,3358575103,AR @@ -133612,7 +133567,9 @@ 3360760832,3360763903,AR 3360763904,3360765951,GT 3360765952,3360767999,CO -3360768000,3360788479,AR +3360768000,3360781839,AR +3360781840,3360781847,DO +3360781848,3360788479,AR 3360788480,3360790527,CL 3360792576,3360849919,AR 3360849920,3360882687,VE @@ -133629,9 +133586,8 @@ 3361054720,3361058815,NI 3361058816,3361062911,AR 3361062912,3361071103,CL -3361071104,3361071455,VE -3361071456,3361071471,CO -3361071472,3361071631,VE +3361071104,3361071615,CO +3361071616,3361071631,VE 3361071632,3361071635,CO 3361071636,3361072767,VE 3361072768,3361072895,CO @@ -133645,8 +133601,12 @@ 3361144832,3361210367,BO 3361210368,3361275903,DO 3361275904,3361278463,VE -3361278464,3361278847,PE -3361278848,3361279999,VE +3361278464,3361278591,PE +3361278592,3361278719,VE +3361278720,3361278975,PE +3361278976,3361279615,VE +3361279616,3361279743,PE +3361279744,3361279999,VE 3361280000,3361281279,PE 3361281280,3361281791,VE 3361281792,3361282047,PE @@ -133740,10 +133700,8 @@ 3362652160,3362664447,PE 3362664448,3362668543,BO 3362668544,3362684927,EC -3362684928,3362686975,AR -3362686976,3362687263,CO -3362687264,3362687304,AR -3362687305,3362689279,CO +3362684928,3362687999,AR +3362688000,3362689279,CO 3362689280,3362689311,AR 3362689312,3362690367,CO 3362690368,3362690431,AR @@ -133759,14 +133717,16 @@ 3362711552,3362713599,EC 3362713600,3362714623,VE 3362714624,3362714879,HN -3362714880,3362717695,VE +3362714880,3362716415,VE +3362716416,3362716671,CR +3362716672,3362717695,VE 3362717696,3362815999,CL 3362816000,3362832383,AR 3362836480,3362838527,CO 3362838528,3362840575,EC 3362840576,3362897919,CL -3362897920,3362903807,HT -3362903808,3362904063,MX +3362897920,3362903551,HT +3362903552,3362904063,MX 3362904064,3362914303,HT 3362914304,3362930687,CO 3362934784,3362936831,AR @@ -133861,7 +133821,9 @@ 3384706048,3384707071,US 3384707072,3384721407,PA 3384721408,3384725503,US -3384725504,3384737791,PA +3384725504,3384732415,PA +3384732416,3384732671,BR +3384732672,3384737791,PA 3384737792,3385851903,CR 3385851904,3386114047,VE 3386114048,3386245119,AR @@ -133894,14 +133856,14 @@ 3386630144,3386632191,UY 3386638336,3386640895,SX 3386640896,3386641151,US -3386641152,3386642175,SX -3386642176,3386642431,CA +3386641152,3386642431,SX 3386642432,3386644735,AR 3386644736,3386644991,PY 3386644992,3386645247,CR 3386645248,3386645503,CL 3386645504,3386645759,AR -3386646528,3386647551,CO +3386645760,3386646015,CR +3386646016,3386647551,CO 3386647552,3386647679,VE 3386647680,3386647743,CO 3386647744,3386648063,VE @@ -133965,7 +133927,8 @@ 3387608576,3387608831,EC 3387608832,3387609087,AR 3387609088,3387613183,EC -3387613184,3387617279,VE +3387613184,3387613439,US +3387613440,3387617279,VE 3387617280,3387619327,CO 3387619328,3387686911,AR 3387686912,3387736063,CL @@ -133993,7 +133956,7 @@ 3389016064,3389016575,JP 3389016576,3389017087,AU 3389017088,3389017343,JP -3389017344,3389017599,IN +3389017344,3389017599,HK 3389017600,3389017855,AU 3389017856,3389018111,VN 3389018112,3389018367,PG @@ -134015,8 +133978,10 @@ 3389025536,3389025791,IN 3389025792,3389026047,PK 3389026048,3389026303,TH -3389026304,3389028351,IN -3389028352,3389028607,TH +3389026304,3389026559,IN +3389026560,3389027071,AU +3389027072,3389027583,IN +3389027584,3389028607,TH 3389028608,3389028863,NZ 3389028864,3389029375,CN 3389029376,3389029887,NZ @@ -134041,7 +134006,9 @@ 3389071360,3389079551,PG 3389079552,3389087743,SG 3389087744,3389087999,HK -3389088000,3389092351,SG +3389088000,3389090815,SG +3389090816,3389091071,HK +3389091072,3389092351,SG 3389092352,3389092863,PH 3389092864,3389093887,AU 3389093888,3389095935,IN @@ -134085,7 +134052,9 @@ 3389214720,3389218815,NZ 3389218816,3389222911,AU 3389222912,3389223935,US -3389223936,3389227007,IN +3389223936,3389226239,IN +3389226240,3389226495,AU +3389226496,3389227007,IN 3389227008,3389227519,CN 3389227520,3389228031,PK 3389228032,3389228799,AU @@ -134149,8 +134118,8 @@ 3389358080,3389366271,PK 3389366272,3389370177,AU 3389370178,3389370178,PG -3389370179,3389372415,AU -3389372416,3389373439,US +3389370179,3389373183,AU +3389373184,3389373439,US 3389373440,3389374463,AU 3389374464,3389378559,MN 3389382656,3389390847,TW @@ -134289,7 +134258,8 @@ 3389612032,3389616127,MY 3389620224,3389640703,IN 3389640704,3389644799,JP -3389644800,3389661183,AU +3389644800,3389645823,NZ +3389645824,3389661183,AU 3389661184,3389669375,ID 3389669376,3389673471,CN 3389673472,3389677567,AU @@ -134339,8 +134309,8 @@ 3389812736,3389813759,AU 3389813760,3389814015,CN 3389814016,3389814527,TH -3389814528,3389846271,AU -3389846272,3389847551,JP +3389814528,3389846527,AU +3389846528,3389847551,JP 3389847552,3389849599,NZ 3389849600,3389915135,JP 3389915136,3389916159,AU @@ -134432,8 +134402,11 @@ 3389980672,3390308351,JP 3390308352,3390310399,NZ 3390310400,3390316543,AU -3390316544,3390324735,NZ -3390324736,3390328831,AU +3390316544,3390325247,NZ +3390325248,3390325503,CN +3390325504,3390327807,AU +3390327808,3390328575,NZ +3390328576,3390328831,CN 3390328832,3390329087,NZ 3390329088,3390329343,AU 3390329344,3390330623,KR @@ -134598,7 +134571,6 @@ 3391725568,3391733759,TH 3391733760,3391734015,CN 3391734016,3391734783,AU -3391735808,3391736831,JP 3391736832,3391737855,IN 3391737856,3391741951,JP 3391741952,3391746047,HK @@ -134659,7 +134631,8 @@ 3391906304,3391906815,AU 3391906816,3391907839,PH 3391907840,3391909887,BD -3391909888,3391910399,US +3391909888,3391910143,IO +3391910144,3391910399,US 3391910400,3391910911,IO 3391910912,3391911935,AU 3391911936,3391913983,HK @@ -134688,9 +134661,9 @@ 3391954944,3391971327,HK 3391971328,3391979519,AU 3391979520,3391979775,HK -3391979776,3391979955,JP +3391979776,3391979955,CN 3391979956,3391979957,AP -3391979958,3391980031,JP +3391979958,3391980031,CN 3391980032,3391980543,HK 3391980544,3391983615,MY 3391983616,3391984639,NP @@ -134773,7 +134746,6 @@ 3392385024,3392389119,BD 3392389120,3392401407,ID 3392401408,3392403455,SG -3392403456,3392404479,AU 3392404480,3392405503,ID 3392405504,3392406015,NP 3392406016,3392406527,IN @@ -134895,7 +134867,6 @@ 3392823296,3392824319,KH 3392824320,3392824831,AU 3392824832,3392825343,IN -3392825344,3392826367,JP 3392828416,3392829439,JP 3392829440,3392830463,IN 3392830464,3392830719,ID @@ -135047,8 +135018,9 @@ 3393257472,3393260031,CN 3393260032,3393260543,BD 3393260544,3393265663,AU -3393265664,3393267711,NZ -3393267712,3393273855,CK +3393265664,3393266687,CK +3393266688,3393267199,NZ +3393267200,3393273855,CK 3393273856,3393282047,AU 3393286144,3393290239,ID 3393290240,3393298431,IN @@ -135072,7 +135044,8 @@ 3393478656,3393486847,AU 3393486848,3393495039,IN 3393495040,3393499135,AU -3393499136,3393503231,SG +3393499136,3393501183,US +3393501184,3393503231,SG 3393503232,3393507327,HK 3393507328,3393511423,SG 3393511424,3393519615,KR @@ -135161,9 +135134,9 @@ 3393855744,3393855999,NZ 3393856000,3393856255,AU 3393856256,3393856511,HK -3393856768,3393856896,AU +3393856768,3393856896,SG 3393856897,3393856897,AP -3393856898,3393857023,AU +3393856898,3393857023,SG 3393857024,3393857535,NZ 3393857536,3393858047,HK 3393858048,3393858559,ID @@ -135215,7 +135188,7 @@ 3394027520,3394035711,JP 3394035712,3394039807,MY 3394039808,3394040063,CN -3394040064,3394040319,SG +3394040064,3394040319,AU 3394040320,3394040831,IN 3394040832,3394041087,KR 3394041088,3394041855,SG @@ -135369,8 +135342,7 @@ 3394764800,3394772991,HK 3394772992,3394775039,PK 3394777088,3394781183,JP -3394781184,3394783231,US -3394783232,3394789375,MP +3394781184,3394789375,MP 3394789376,3394797567,HK 3394797568,3394813951,IN 3394813952,3394815999,JP @@ -135383,9 +135355,10 @@ 3394835968,3394836223,AP 3394836224,3394836479,HK 3394836480,3394838527,BT -3394838528,3394841087,NZ -3394841088,3394841599,AU -3394841600,3394846719,NZ +3394838528,3394844671,NZ +3394844672,3394845695,AU +3394845696,3394845951,NZ +3394845952,3394846719,AU 3394846720,3394850815,IN 3394850816,3394854911,JP 3394855936,3394856959,AU @@ -135559,7 +135532,9 @@ 3397070848,3397074943,PH 3397074944,3397083135,HK 3397083136,3397087231,CN -3397091328,3397099519,GU +3397091328,3397093375,US +3397093376,3397096447,GU +3397096448,3397099519,US 3397099520,3397103615,HK 3397103616,3397105663,LA 3397105664,3397107711,JP @@ -135626,9 +135601,9 @@ 3397283840,3397285887,KR 3397285888,3397287935,BD 3397287936,3397296127,SG -3397296128,3397298687,HK -3397298688,3397299455,SG -3397299456,3397304319,HK +3397296128,3397298943,HK +3397298944,3397299199,SG +3397299200,3397304319,HK 3397304320,3397308415,NZ 3397308416,3397312511,HK 3397312512,3397320703,JP @@ -135646,9 +135621,10 @@ 3397369856,3397374463,CN 3397374464,3397374975,AU 3397374976,3397386239,CN -3397386240,3397387775,GU -3397387776,3397388031,US -3397388032,3397394431,GU +3397386240,3397387263,US +3397387264,3397387775,GU +3397387776,3397390335,US +3397390336,3397394431,GU 3397394432,3397402623,PH 3397402624,3397410815,GU 3397410816,3397411327,IN @@ -135681,9 +135657,7 @@ 3397507840,3397508095,IN 3397508096,3397509119,PH 3397509120,3397510143,ID -3397510144,3397510399,FJ -3397510400,3397510655,VU -3397510656,3397511167,FJ +3397510144,3397511167,FJ 3397511168,3397512191,LK 3397512192,3397512447,KH 3397512448,3397512703,AU @@ -135758,9 +135732,7 @@ 3397836800,3397844991,AU 3397844992,3397869823,JP 3397869824,3397870079,AU -3397870080,3397908735,JP -3397908736,3397908991,AU -3397908992,3397910527,JP +3397870080,3397910527,JP 3397910528,3397914111,SG 3397914112,3397914367,AP 3397914368,3397918719,SG @@ -135865,10 +135837,8 @@ 3398637120,3398637183,HK 3398637184,3398637823,JP 3398637824,3398638079,PH -3398638080,3398640639,JP -3398640640,3398640895,AU -3398640896,3398641663,JP -3398641664,3398668287,AU +3398638080,3398639615,JP +3398639616,3398668287,AU 3398668288,3398672383,CN 3398672384,3398680575,PK 3398680576,3398684671,ID @@ -136050,11 +136020,7 @@ 3399841792,3399852031,TW 3399852032,3399856127,JP 3399856128,3399860223,CN -3399860224,3399863551,PG -3399863552,3399863615,AU -3399863616,3399863647,PG -3399863648,3399863807,AU -3399863808,3399864319,PG +3399860224,3399864319,PG 3399864320,3399868415,CN 3399868416,3399872255,PK 3399872256,3399873023,CN @@ -136081,8 +136047,9 @@ 3399954432,3399974911,US 3399974912,3399995391,MY 3399995392,3399999487,KR -3399999488,3400001535,AU -3400001536,3400004607,SG +3399999488,3400000255,SG +3400000256,3400000511,AU +3400000512,3400004607,SG 3400004608,3400005631,AU 3400005632,3400006143,SG 3400006144,3400006399,HK @@ -136142,9 +136109,7 @@ 3400264704,3400265215,ID 3400265216,3400265471,AU 3400265472,3400265727,IN -3400265728,3400265983,PG -3400265984,3400266239,AU -3400266240,3400267775,PG +3400265728,3400267775,PG 3400267776,3400268799,KR 3400268800,3400269823,MO 3400269824,3400270847,CN @@ -136196,8 +136161,9 @@ 3400438528,3400438783,AF 3400438784,3400441599,HK 3400441600,3400441855,AU -3400441856,3400445951,NZ -3400445952,3400450047,AU +3400441856,3400446975,NZ +3400446976,3400447231,AU +3400447232,3400450047,NZ 3400450048,3400458239,JP 3400458240,3400466431,AU 3400466432,3400499199,MO @@ -136218,9 +136184,14 @@ 3400608768,3400609791,IN 3400609792,3400630271,JP 3400630272,3400646655,IN -3400646656,3400648815,AU +3400646656,3400647935,SG +3400647936,3400648191,AU +3400648192,3400648815,SG 3400648816,3400648831,HK -3400648832,3400654847,AU +3400648832,3400650239,SG +3400650240,3400650495,AU +3400650496,3400650751,SG +3400650752,3400654847,AU 3400654848,3400663039,IN 3400663040,3400683519,MY 3400683520,3400691711,JP @@ -136294,13 +136265,21 @@ 3401545728,3401547775,BD 3401547776,3401580543,IN 3401580544,3402629119,CN -3402629120,3404506879,JP -3404506880,3404507135,US -3404507136,3404630015,JP -3404630016,3404633087,US +3402629120,3403081727,JP +3403081728,3403083007,US +3403083008,3403083263,JP +3403083264,3403083775,US +3403083776,3404630527,JP +3404630528,3404633087,US 3404633088,3404693503,JP -3404693504,3404697599,US -3404697600,3405774847,JP +3404693504,3404695295,US +3404695296,3404695551,JP +3404695552,3404697343,US +3404697344,3404720639,JP +3404720640,3404720678,US +3404720679,3404720679,JP +3404720680,3404720895,US +3404720896,3405774847,JP 3405774848,3405775871,AU 3405775872,3405776895,CN 3405776896,3405777407,AU @@ -136630,9 +136609,7 @@ 3406528000,3406528255,CN 3406528256,3406528511,AU 3406528512,3406528767,AP -3406528768,3406529535,HK -3406529536,3406529791,IN -3406529792,3406530047,HK +3406528768,3406530047,HK 3406530048,3406530303,SG 3406530304,3406530559,HK 3406530560,3406531583,CN @@ -136836,9 +136813,7 @@ 3406948096,3406948351,CN 3406948352,3406948607,AU 3406948608,3406948863,CN -3406948864,3406950399,AU -3406950400,3406951423,NF -3406951424,3406952447,AU +3406948864,3406952447,AU 3406952448,3406952703,CN 3406952704,3406952959,PH 3406952960,3406954239,AU @@ -136952,7 +136927,7 @@ 3407089920,3407090175,CN 3407090176,3407095807,AU 3407095808,3407096319,CN -3407096320,3407097855,AU +3407096576,3407097855,AU 3407097856,3407098111,CN 3407098112,3407101183,AU 3407101184,3407101439,CN @@ -137682,7 +137657,6 @@ 3408041472,3408041727,CN 3408041728,3408041983,AU 3408041984,3408042495,CN -3408042496,3408042751,HK 3408042752,3408044287,AU 3408044288,3408044799,CN 3408044800,3408050943,AU @@ -138072,9 +138046,11 @@ 3411644928,3411645951,ID 3411645952,3411646207,SG 3411646208,3411647487,IN -3411647488,3411648511,AU -3411648512,3411656703,NZ -3411656704,3411673087,AU +3411647488,3411649535,AU +3411649536,3411650047,NZ +3411650048,3411654399,AU +3411654400,3411654655,NZ +3411654656,3411673087,AU 3411673088,3411674111,CN 3411674112,3411674623,IN 3411674624,3411675135,HK @@ -138104,7 +138080,6 @@ 3411795968,3411804159,AU 3411804160,3411805183,CN 3411805184,3411805695,PK -3411805696,3411805951,JP 3411805952,3411806207,AU 3411806208,3411808255,PH 3411808256,3411810303,JP @@ -138135,7 +138110,8 @@ 3412017152,3412025343,SG 3412025344,3412066303,CN 3412066304,3412213759,NZ -3412213760,3412221951,AU +3412213760,3412221695,AU +3412221696,3412221951,AU 3412221952,3412230143,IN 3412230144,3412246527,HK 3412246528,3412254719,AU @@ -138171,7 +138147,7 @@ 3412336640,3412342783,CN 3412342784,3412343039,AU 3412343040,3412343295,IN -3412343296,3412343807,AU +3412343552,3412343807,AU 3412344064,3412344319,AU 3412344320,3412344575,SG 3412344576,3412344831,CN @@ -138220,14 +138196,15 @@ 3413032960,3413033471,AU 3413033472,3413033727,US 3413033728,3413036287,AU -3413036288,3413037055,US +3413036288,3413036799,US +3413036800,3413037055,AU 3413037056,3413041151,CN 3413041152,3413043199,JP 3413043200,3413043967,CN 3413043968,3413044223,AU -3413044224,3413044735,HK -3413044736,3413044991,IN -3413044992,3413045247,HK +3413044224,3413044479,HK +3413044480,3413044735,SG +3413044736,3413045247,HK 3413045248,3413047295,IN 3413047296,3413098495,AU 3413098496,3413102591,JP @@ -138235,7 +138212,7 @@ 3413106688,3413110783,PH 3413110784,3413112831,JP 3413112832,3413113855,IN -3413113856,3413133311,JP +3413114880,3413133311,JP 3413133312,3413135359,BD 3413135360,3413135615,AP 3413135616,3413135871,HK @@ -138336,7 +138313,6 @@ 3413835776,3413843967,SG 3413843968,3413848063,IN 3413848064,3413850111,SG -3413850112,3413850879,JP 3413850880,3413851135,AU 3413851136,3413852159,ID 3413852160,3413868543,AU @@ -138382,7 +138358,8 @@ 3414269952,3414278143,JP 3414278144,3414294527,IN 3414294528,3414302719,PK -3414302720,3414310911,CN +3414302720,3414306815,CN +3414306816,3414310911,A2 3414310912,3414327295,KR 3414327296,3414335487,TH 3414335488,3414339583,AU @@ -138585,9 +138562,7 @@ 3416709120,3416709375,AU 3416709376,3416709631,ID 3416709632,3416710143,AU -3416710144,3416710655,HK -3416710656,3416710911,JP -3416710912,3416711167,HK +3416710144,3416711167,HK 3416711168,3416719359,AU 3416719360,3416727551,PH 3416727552,3416735743,JP @@ -138666,7 +138641,8 @@ 3417182208,3417184767,AU 3417184768,3417185023,NZ 3417185024,3417185279,AF -3417185280,3417185791,SG +3417185280,3417185535,AU +3417185536,3417185791,SG 3417185792,3417186303,NZ 3417186304,3417194495,HK 3417194496,3417198591,JP @@ -138698,10 +138674,11 @@ 3417338368,3417338879,HK 3417338880,3417339903,PH 3417339904,3417340415,AU -3417340416,3417341951,NZ +3417340416,3417340927,NZ 3417341952,3417346047,KH 3417346048,3417348095,MY -3417348096,3417348607,AU +3417348096,3417348351,AU +3417348352,3417348607,IN 3417348608,3417349119,NZ 3417349120,3417349631,IN 3417349632,3417350143,AU @@ -138787,8 +138764,7 @@ 3418243072,3418251263,PH 3418251264,3418255359,CN 3418255360,3418257407,ID -3418257408,3418259199,HK -3418259200,3418259455,MY +3418257408,3418259455,HK 3418259456,3418267647,IN 3418267648,3418271743,VN 3418271744,3418273791,SG @@ -138834,22 +138810,24 @@ 3418382336,3418390527,JP 3418390528,3418394623,AU 3418394624,3418397183,AP -3418397184,3418397439,MY -3418397440,3418399231,AP +3418397184,3418397695,MY +3418397696,3418398719,AP +3418398720,3418399231,AU 3418399232,3418399247,PH -3418399248,3418400255,AP -3418400256,3418400767,AU -3418400768,3418402815,AP -3418402816,3418404863,AU +3418399248,3418404863,AU 3418404864,3418405439,AP 3418405440,3418405471,AU -3418405472,3418406911,AP +3418405472,3418405631,AP +3418405632,3418405887,SG +3418405888,3418406911,AP 3418406912,3418423295,IN 3418423296,3418444091,HK 3418444092,3418444095,CN 3418444096,3418448639,HK 3418448640,3418448895,SG -3418448896,3418456063,HK +3418448896,3418452479,HK +3418452480,3418452735,SG +3418452736,3418456063,HK 3418456064,3418472447,IN 3418472448,3418480639,AU 3418480640,3418488831,CN @@ -138917,7 +138895,8 @@ 3419078656,3419209727,TW 3419209728,3419226111,VN 3419226112,3419234303,CN -3419234304,3419238399,JP +3419234304,3419237375,US +3419237376,3419238399,JP 3419238400,3419242495,US 3419242496,3419275263,CN 3419275264,3419340799,AU @@ -138988,9 +138967,7 @@ 3419734016,3419774975,AU 3419774976,3419783167,JP 3419783168,3419791359,PH -3419791360,3419844607,AU -3419844608,3419844863,MY -3419844864,3419873279,AU +3419791360,3419873279,AU 3419873280,3419877375,AF 3419877376,3419877631,ID 3419877632,3419877887,KH @@ -139068,7 +139045,10 @@ 3420413952,3420422143,KR 3420422144,3420430335,MY 3420430336,3420434431,PK -3420434432,3420435455,IN +3420434432,3420434687,IN +3420434688,3420434943,KR +3420434944,3420435199,HK +3420435200,3420435455,AU 3420435456,3420436479,JP 3420436480,3420437503,AU 3420437504,3420438527,IN @@ -139083,8 +139063,7 @@ 3422717440,3422717695,US 3422717696,3422847487,US 3422847488,3422847743,GB -3422847744,3422847999,FR -3422848000,3422848511,US +3422847744,3422848511,US 3422848512,3422848767,GB 3422848768,3422850559,US 3422850560,3422851071,GB @@ -139098,13 +139077,13 @@ 3423092848,3423093759,VI 3423093760,3423094783,US 3423094784,3423095807,CA -3423095808,3423143935,US +3423095808,3423113983,US +3423113984,3423114239,CA +3423114240,3423143935,US 3423143936,3423145983,CA 3423145984,3423161031,US 3423161032,3423161039,CA -3423161040,3423161613,US -3423161614,3423161621,CA -3423161622,3423162159,US +3423161040,3423162159,US 3423162160,3423162167,MX 3423162168,3423162367,US 3423162368,3423163391,CA @@ -139438,12 +139417,11 @@ 3423371264,3423375359,ZA 3423375360,3423377151,CA 3423377152,3423377407,US -3423377408,3423378175,CA -3423378176,3423378303,US -3423378304,3423378431,CA +3423377408,3423378431,CA 3423378432,3423378943,US 3423378944,3423379455,CA -3423379456,3423389047,US +3423379456,3423379967,US +3423379968,3423389047,US 3423389048,3423389055,MX 3423389056,3423393903,US 3423393904,3423393911,RU @@ -139471,7 +139449,9 @@ 3423474656,3423474671,CY 3423474672,3423474687,CA 3423474688,3423479807,US -3423479808,3423480831,A2 +3423479808,3423480063,A2 +3423480064,3423480319,AU +3423480320,3423480831,A2 3423480832,3423480987,NG 3423480988,3423480988,US 3423480989,3423481343,NG @@ -139485,9 +139465,15 @@ 3423493912,3423493919,TT 3423493920,3423493967,US 3423493968,3423493975,AT -3423493976,3423533055,US +3423493976,3423529983,US +3423529984,3423530239,CA +3423530240,3423533055,US 3423533056,3423535103,AI -3423535104,3423543295,US +3423535104,3423540087,US +3423540088,3423540095,HN +3423540096,3423540175,US +3423540176,3423540183,HN +3423540184,3423543295,US 3423543296,3423545343,CA 3423545344,3423554183,US 3423554184,3423554191,CA @@ -139519,14 +139505,21 @@ 3423584528,3423584543,US 3423584544,3423584719,CA 3423584720,3423584735,US -3423584736,3423586303,CA +3423584736,3423585911,CA +3423585912,3423585919,ES +3423585920,3423585927,CA +3423585928,3423585935,NZ +3423585936,3423585999,CA +3423586000,3423586007,US +3423586008,3423586015,NZ +3423586016,3423586031,CA +3423586032,3423586039,NZ +3423586040,3423586303,CA 3423586304,3423589151,US 3423589152,3423589159,GB 3423589160,3423590871,US 3423590872,3423590879,HT -3423590880,3423591143,US -3423591144,3423591151,HN -3423591152,3423592599,US +3423590880,3423592599,US 3423592600,3423592607,ES 3423592608,3423592687,US 3423592688,3423592703,CA @@ -139569,7 +139562,7 @@ 3423850752,3423854335,CA 3423854336,3423854591,US 3423854592,3423858175,CA -3423858176,3423858687,US +3423858176,3423858687,CA 3423858688,3423858943,CA 3423858944,3423859455,US 3423859456,3423859711,CA @@ -139608,7 +139601,9 @@ 3425864712,3425864719,US 3425864720,3425865327,CA 3425865328,3425865335,US -3425865336,3425894399,CA +3425865336,3425869167,CA +3425869168,3425869183,US +3425869184,3425894399,CA 3425894400,3425911967,US 3425911968,3425911983,IL 3425911984,3425911999,US @@ -139645,7 +139640,11 @@ 3426415872,3426416127,GB 3426416128,3426617855,US 3426617856,3426618367,CA -3426618368,3426618911,US +3426618368,3426618439,US +3426618440,3426618463,NZ +3426618464,3426618551,US +3426618552,3426618591,NZ +3426618592,3426618911,US 3426618912,3426619071,NZ 3426619072,3426619103,US 3426619104,3426619135,NZ @@ -139661,7 +139660,9 @@ 3426729472,3426729983,CA 3426729984,3426744319,US 3426744320,3426746367,CA -3426746368,3427112447,US +3426746368,3427038719,US +3427038720,3427038975,US +3427038976,3427112447,US 3427112448,3427112703,CN 3427112704,3427117055,US 3427117056,3427117311,CA @@ -139876,7 +139877,9 @@ 3428582400,3428582655,US 3428582656,3428582911,CA 3428582912,3428583167,US -3428583168,3428583455,CA +3428583168,3428583231,CA +3428583232,3428583359,US +3428583360,3428583455,CA 3428583456,3428583487,US 3428583488,3428583551,CA 3428583552,3428583583,US @@ -140000,9 +140003,7 @@ 3428606384,3428606415,US 3428606416,3428606431,CA 3428606432,3428606463,US -3428606464,3428606591,CA -3428606592,3428606655,US -3428606656,3428606719,CA +3428606464,3428606719,CA 3428606720,3428606911,US 3428606912,3428606975,IS 3428606976,3428607743,US @@ -140077,7 +140078,11 @@ 3428646144,3428646911,CA 3428646912,3428660735,US 3428660736,3428661503,CA -3428661504,3428671487,US +3428661504,3428661759,US +3428661760,3428662015,US +3428662016,3428662271,US +3428662272,3428662527,US +3428662528,3428671487,US 3428679680,3428689646,US 3428689647,3428689647,US 3428689648,3428701439,US @@ -140149,7 +140154,9 @@ 3430729245,3430729245,GB 3430729246,3430729471,US 3430729472,3430729727,GB -3430729728,3430747903,US +3430729728,3430732543,US +3430732544,3430732799,GB +3430732800,3430747903,US 3430747904,3430748159,CA 3430748160,3430749951,US 3430749952,3430750207,CA @@ -140317,9 +140324,7 @@ 3432749056,3432749311,US 3432749312,3432807423,US 3432807424,3432808447,CA -3432808448,3433090582,US -3433090583,3433090583,CA -3433090584,3433581312,US +3432808448,3433581312,US 3433581313,3433581567,CA 3433581568,3433824511,US 3433824512,3433824767,DE @@ -140354,7 +140359,7 @@ 3434134080,3434423295,US 3434423296,3434423303,CA 3434423304,3434427391,US -3434427392,3434428415,HR +3434427392,3434428415,HN 3434428416,3434433279,US 3434433280,3434433535,PR 3434433536,3434553343,US @@ -140392,8 +140397,16 @@ 3434831360,3434831615,US 3434831616,3434872575,CA 3434872576,3434907647,US -3434907648,3434909695,PA -3434909696,3434913791,US +3434907648,3434908063,PA +3434908064,3434908079,US +3434908080,3434908511,PA +3434908512,3434908527,US +3434908528,3434908767,PA +3434908768,3434908783,US +3434908784,3434909327,PA +3434909328,3434909343,US +3434909344,3434909679,PA +3434909680,3434913791,US 3434913792,3434914047,AG 3434914048,3434914303,DM 3434914304,3434914559,VG @@ -140580,9 +140593,7 @@ 3438280704,3438542847,US 3438542848,3438544943,CA 3438544944,3438544959,TC -3438544960,3438545735,CA -3438545736,3438545743,US -3438545744,3438546175,CA +3438544960,3438546175,CA 3438546176,3438546183,US 3438546184,3438552271,CA 3438552272,3438552287,US @@ -140938,7 +140949,9 @@ 3449598464,3449598975,US 3449598976,3449599231,AU 3449599232,3449638911,US -3449638912,3449639679,GB +3449638912,3449639359,GB +3449639360,3449639423,US +3449639424,3449639679,GB 3449639680,3449639935,US 3449639936,3449640191,GB 3449640192,3449640447,NL @@ -140955,9 +140968,7 @@ 3449843200,3449843711,YE 3449843712,3449874687,US 3449874688,3449874943,AG -3449874944,3449884159,US -3449884160,3449884415,AS -3449884416,3449910719,US +3449874944,3449910719,US 3449910720,3449910783,CA 3449910784,3449923583,US 3449923584,3449923839,ES @@ -140973,7 +140984,9 @@ 3450085376,3450085631,US 3450085632,3450085887,US 3450085888,3450086143,US -3450086144,3450213887,US +3450086144,3450089983,US +3450089984,3450090239,US +3450090240,3450213887,US 3450213888,3450214143,CA 3450214144,3450217215,US 3450217216,3450217471,LC @@ -141054,10 +141067,9 @@ 3450960960,3450960975,DM 3450960976,3450961007,US 3450961008,3450961015,DM -3450961016,3450974255,US -3450974256,3450974271,GB -3450974272,3450974975,US -3450974976,3450975231,ZM +3450961016,3450974207,US +3450974208,3450974463,GB +3450974464,3450975231,US 3450975232,3450975743,LB 3450975744,3450976511,US 3450976512,3450976767,IL @@ -141452,9 +141464,9 @@ 3453740032,3453740159,MX 3453740160,3454003013,US 3454003014,3454003014,ES -3454003015,3454004997,US -3454004998,3454004998,GB -3454004999,3454292479,US +3454003015,3454004991,US +3454004992,3454005247,GB +3454005248,3454292479,US 3454292480,3454292735,GB 3454292736,3454436351,US 3454436352,3454436607,GU @@ -141567,7 +141579,9 @@ 3454881792,3454883839,CA 3454883840,3454915071,US 3454915072,3454926591,CA -3454926592,3455035391,US +3454926592,3455034879,US +3455034880,3455035135,AU +3455035136,3455035391,US 3455035392,3455035903,AU 3455035904,3455042565,US 3455042566,3455042566,CA @@ -141582,7 +141596,9 @@ 3455132160,3455133695,BO 3455133696,3455242407,US 3455242408,3455242415,CA -3455242416,3455320063,US +3455242416,3455244847,US +3455244848,3455244855,CA +3455244856,3455320063,US 3455320064,3455322111,FR 3455322112,3455328255,US 3455328256,3455329279,DO @@ -141754,7 +141770,9 @@ 3455908832,3455908863,DM 3455908864,3456303103,US 3456303104,3456311295,JP -3456311296,3456892927,US +3456311296,3456360447,US +3456360448,3456364543,BG +3456364544,3456892927,US 3456892928,3456958463,CA 3456958464,3457246367,US 3457246368,3457246383,SE @@ -141828,7 +141846,9 @@ 3458195456,3458196479,SG 3458196480,3458765631,US 3458765632,3458765695,CA -3458765696,3458811903,US +3458765696,3458807039,US +3458807040,3458807295,GB +3458807296,3458811903,US 3458813952,3458818047,CA 3458818048,3458820095,US 3458822144,3458823559,US @@ -142007,7 +142027,8 @@ 3459513856,3459592191,US 3459592192,3459596287,CA 3459596288,3459614719,US -3459616768,3459617791,US +3459616768,3459617023,US +3459617024,3459617791,CA 3459617792,3459617999,AP 3459618000,3459618000,ID 3459618001,3459618047,AP @@ -142023,13 +142044,9 @@ 3459842816,3459843071,AR 3459843072,3459848959,US 3459848960,3459849215,FR -3459849216,3459850431,US -3459850432,3459850495,CA -3459850496,3459852991,US +3459849216,3459852991,US 3459852992,3459853007,CA -3459853008,3459873807,US -3459873808,3459873823,IT -3459873824,3460057283,US +3459853008,3460057283,US 3460057284,3460057287,TH 3460057288,3460061687,US 3460061688,3460061691,HK @@ -142514,9 +142531,7 @@ 3461536960,3461536975,CA 3461536976,3461554175,US 3461554176,3461556223,CA -3461558272,3461597887,US -3461597888,3461597951,CO -3461597952,3461598015,US +3461558272,3461598015,US 3461598016,3461598079,CO 3461598080,3461808127,US 3461808128,3461873663,CA @@ -142636,9 +142651,7 @@ 3463156736,3463157759,BO 3463157760,3463176191,US 3463176192,3463176703,CW -3463176704,3463183943,US -3463183944,3463183951,CN -3463183952,3463184383,US +3463176704,3463184383,US 3463184384,3463194623,CA 3463194624,3463198719,US 3463198720,3463213311,CA @@ -142673,7 +142686,9 @@ 3464128000,3464128255,DE 3464128256,3464129535,US 3464129536,3464130047,DE -3464130048,3464167679,US +3464130048,3464142335,US +3464142336,3464142591,FR +3464142592,3464167679,US 3464167680,3464169215,CA 3464169216,3464169471,US 3464169472,3464171775,CA @@ -142683,11 +142698,16 @@ 3464173824,3464174591,CA 3464175104,3464175359,US 3464175360,3464180735,CA -3464180736,3464191791,US +3464180736,3464184487,US +3464184488,3464184495,GB +3464184496,3464184511,CA +3464184512,3464191791,US 3464191792,3464191799,ES 3464191800,3464191911,US 3464191912,3464191919,ES -3464191920,3464195943,US +3464191920,3464195543,US +3464195544,3464195551,IT +3464195552,3464195943,US 3464195944,3464195951,AU 3464195952,3464195959,IT 3464195960,3464196151,US @@ -142799,15 +142819,13 @@ 3464769536,3464773631,CA 3464773632,3464774079,US 3464774080,3464774111,ES -3464774112,3464782079,US -3464782080,3464782335,GB -3464782336,3464785151,US +3464774112,3464781823,US +3464781824,3464782847,GB +3464782848,3464785151,US 3464785152,3464785407,AR 3464785408,3464802303,US 3464802304,3464806399,CA -3464806400,3464818943,US -3464818944,3464819199,PL -3464819200,3465154559,US +3464806400,3465154559,US 3465154560,3465158655,BS 3465158656,3465177087,US 3465177088,3465179135,PE @@ -142823,7 +142841,8 @@ 3465413384,3465413775,US 3465413776,3465413799,HK 3465413800,3465462783,US -3465462784,3465463039,GB +3465462784,3465462911,FR +3465462912,3465463039,GB 3465463040,3465463279,US 3465463280,3465463295,GB 3465463296,3465463367,US @@ -143058,7 +143077,9 @@ 3466907648,3466909695,DE 3466909696,3466914303,US 3466914304,3466914559,FR -3466914560,3466929407,US +3466914560,3466921087,US +3466921088,3466921215,US +3466921216,3466929407,US 3466929408,3466929663,IT 3466929664,3466937667,US 3466937668,3466937669,DE @@ -143068,8 +143089,7 @@ 3466938445,3466938448,HK 3466938449,3466958079,US 3466958080,3466958335,CA -3466958336,3466958591,GB -3466958592,3466976767,US +3466958336,3466976767,US 3466976768,3466977023,US 3466977024,3467051007,US 3467051008,3467116543,CA @@ -143464,7 +143484,9 @@ 3469176320,3469176575,MX 3469176576,3469186303,US 3469186304,3469186559,MX -3469186560,3469893631,US +3469186560,3469859583,US +3469859584,3469859839,CA +3469859840,3469893631,US 3469893632,3469901823,CA 3469901824,3470131199,US 3470131200,3470135295,AG @@ -143967,7 +143989,9 @@ 3470458880,3470475263,KR 3470475264,3470509311,US 3470509312,3470509567,CA -3470509568,3470558207,US +3470509568,3470522879,US +3470522880,3470523135,AE +3470523136,3470558207,US 3470558208,3470559231,HK 3470559232,3470573567,US 3470573568,3470575615,CA @@ -144161,7 +144185,9 @@ 3471262720,3471263743,EC 3471263744,3471265791,CO 3471265792,3471276031,US -3471276032,3471278079,BB +3471276032,3471276799,BB +3471276800,3471277055,US +3471277056,3471278079,BB 3471278080,3471529215,US 3471529216,3471529983,CA 3471529984,3471558655,US @@ -144251,7 +144277,9 @@ 3475384680,3475384687,CA 3475384688,3475405743,US 3475405744,3475405751,SV -3475405752,3475589887,US +3475405752,3475406527,US +3475406528,3475406591,BR +3475406592,3475589887,US 3475589888,3475590143,EC 3475590144,3475670015,US 3475670016,3475670047,AG @@ -144261,10 +144289,13 @@ 3475670208,3475670271,AG 3475670272,3475670527,AI 3475670528,3475670783,LC -3475670784,3475671039,DM +3475670784,3475670847,DM +3475670848,3475671039,AG 3475671040,3475681279,US 3475681280,3475685375,HN -3475685376,3475752703,US +3475685376,3475745503,US +3475745504,3475745535,CA +3475745536,3475752703,US 3475752704,3475752959,CW 3475752960,3475813423,US 3475813424,3475813679,US @@ -144451,7 +144482,9 @@ 3478364224,3478364255,US 3478364256,3478364271,BR 3478364272,3478372351,US -3478372352,3478380543,MX +3478372352,3478374399,MX +3478374400,3478374655,US +3478374656,3478380543,MX 3478380544,3479207935,US 3479207936,3479240703,CA 3479240704,3479568383,US @@ -144465,9 +144498,7 @@ 3479961600,3480223743,US 3480223744,3480226415,CA 3480226416,3480226423,US -3480226424,3480251007,CA -3480251008,3480251071,US -3480251072,3480256511,CA +3480226424,3480256511,CA 3480256512,3480284159,US 3480284160,3480284671,CA 3480284672,3480444927,US @@ -144650,9 +144681,7 @@ 3481958144,3481958399,NL 3481958400,3481964575,US 3481964576,3481964579,IE -3481964580,3481966719,US -3481966720,3481966847,CH -3481966848,3481973247,US +3481964580,3481973247,US 3481973248,3481973503,CA 3481973504,3481993215,US 3481993216,3481993783,CA @@ -144691,8 +144720,8 @@ 3483240960,3483247359,US 3483247360,3483247871,US 3483247872,3483248639,US -3483248640,3483248895,US -3483248896,3483435007,US +3483248640,3483249151,US +3483249152,3483435007,US 3483435008,3483533311,CA 3483533312,3483552511,US 3483552512,3483552607,GB @@ -144910,9 +144939,7 @@ 3485462528,3485464575,VC 3485464576,3485466623,LC 3485466624,3485597695,US -3485597696,3485671583,CA -3485671584,3485671615,US -3485671616,3485695999,CA +3485597696,3485695999,CA 3485696000,3485721056,US 3485721057,3485721057,AE 3485721058,3485724671,US @@ -144929,9 +144956,7 @@ 3486023680,3486031871,CA 3486031872,3486269439,US 3486269440,3486285823,JM -3486285824,3486287359,PR -3486287360,3486287487,US -3486287488,3486302207,PR +3486285824,3486302207,PR 3486302208,3486310399,CA 3486310400,3486501951,US 3486501952,3486501967,DE @@ -145185,19 +145210,20 @@ 3486700400,3486700407,CA 3486700408,3486700439,US 3486700440,3486700447,IT -3486700448,3486707519,US +3486700448,3486702591,US +3486702592,3486702847,CA +3486702848,3486707519,US 3486707520,3486707535,SE 3486707536,3486707559,US 3486707560,3486707567,HN 3486707568,3487039487,US 3487039488,3487105023,CA -3487105024,3487175935,US -3487175936,3487176191,GB -3487176192,3487178111,US -3487178112,3487178239,GB +3487105024,3487177983,US +3487177984,3487178239,GB 3487178240,3487181359,US 3487181360,3487181375,GB -3487181376,3487189247,US +3487181376,3487188991,US +3487188992,3487189247,GB 3487189248,3487189503,DK 3487189504,3487194111,US 3487194112,3487194367,GB @@ -145404,7 +145430,11 @@ 3488291520,3488291647,IN 3488291648,3488300287,US 3488300288,3488300543,A2 -3488300544,3488350207,US +3488300544,3488307966,US +3488307967,3488307967,IN +3488307968,3488308031,US +3488308032,3488308223,IN +3488308224,3488350207,US 3488350208,3488361215,CA 3488361216,3488361471,US 3488361472,3488415743,CA @@ -145413,7 +145443,9 @@ 3488616192,3488718847,US 3488718848,3488719615,A2 3488719616,3488720895,US -3488720896,3488725503,A2 +3488720896,3488721919,A2 +3488721920,3488722943,US +3488722944,3488725503,A2 3488725504,3488725759,US 3488725760,3488727039,A2 3488727040,3488901887,US @@ -145440,9 +145472,7 @@ 3489575936,3489577008,CN 3489577009,3489577215,US 3489577216,3489578239,CN -3489578240,3489665481,US -3489665482,3489665482,PR -3489665483,3489673471,US +3489578240,3489673471,US 3489673472,3489673727,PR 3489673728,3489717759,US 3489717760,3489718015,PR @@ -145497,12 +145527,16 @@ 3491219184,3491219191,PR 3491219192,3491226687,US 3491226688,3491226719,CA -3491226720,3491351455,US +3491226720,3491231807,US +3491231808,3491231823,PR +3491231824,3491351455,US 3491351456,3491351463,HR 3491351464,3491358183,US 3491358184,3491358191,PR 3491358192,3491381247,US -3491381248,3491389439,BM +3491381248,3491381503,BM +3491381504,3491381759,KY +3491381760,3491389439,BM 3491389440,3491476991,US 3491476992,3491478527,VI 3491478528,3491478591,US @@ -145513,7 +145547,9 @@ 3491508224,3491512319,CA 3491512320,3491637247,US 3491637248,3491637759,CO -3491637760,3491651583,US +3491637760,3491639807,US +3491639808,3491639823,DK +3491639824,3491651583,US 3491651584,3491659775,VI 3491659776,3491705023,US 3491705024,3491705039,SG @@ -145578,9 +145614,11 @@ 3492730416,3492730431,CA 3492730432,3492795775,US 3492795776,3492795903,AR -3492795904,3492815359,US -3492815360,3492815487,GB -3492815488,3492827391,US +3492795904,3492807155,US +3492807156,3492807159,SE +3492807160,3492815457,US +3492815458,3492815458,GB +3492815459,3492827391,US 3492827392,3492827423,CA 3492827424,3492827431,US 3492827432,3492827439,DE @@ -145591,23 +145629,17 @@ 3492827904,3492827967,AU 3492827968,3492845823,US 3492845824,3492846079,CH -3492846080,3492869631,US +3492846080,3492868607,US +3492868608,3492868863,MX +3492868864,3492869631,US 3492869632,3492870143,BR -3492870144,3492886527,US -3492886528,3492886559,GB -3492886560,3492886591,US -3492886592,3492886783,GB -3492886784,3492893951,US -3492893952,3492893953,GB -3492893954,3492893954,US -3492893955,3492893985,GB +3492870144,3492893951,US +3492893952,3492893985,GB 3492893986,3492893986,US 3492893987,3492894207,GB 3492894208,3492894975,US 3492894976,3492895231,BE -3492895232,3492897023,US -3492897024,3492897279,GB -3492897280,3492905983,US +3492895232,3492905983,US 3492905984,3492906239,FR 3492906240,3492906495,US 3492906496,3492906751,EU @@ -145630,22 +145662,20 @@ 3492950880,3492960383,US 3492960384,3492960511,ES 3492960512,3492962303,US -3492962304,3492962893,GB -3492962894,3492962894,US -3492962895,3492963327,GB -3492963328,3492968415,US -3492968416,3492968447,GB -3492968448,3492968703,US -3492968704,3492970239,VI -3492970240,3492996127,US +3492962304,3492963327,GB +3492963328,3492968447,US +3492968448,3492970239,VI +3492970240,3492970367,US +3492970368,3492970495,VI +3492970496,3492994815,US +3492994816,3492995071,GB +3492995072,3492996127,US 3492996128,3492996136,GB 3492996137,3493003519,US 3493003520,3493003775,AU -3493003776,3493008255,US -3493008256,3493008383,MX -3493008384,3493009279,US -3493009280,3493009407,GB -3493009408,3493011327,US +3493003776,3493008127,US +3493008128,3493008383,MX +3493008384,3493011327,US 3493011328,3493011455,GB 3493011456,3493013247,US 3493013248,3493013503,MX @@ -145660,14 +145690,16 @@ 3493029343,3493039359,US 3493039360,3493039615,AR 3493039616,3493050367,US -3493050368,3493050464,FR +3493050368,3493050386,FR +3493050387,3493050387,US +3493050388,3493050464,FR 3493050465,3493050496,US 3493050497,3493050623,FR 3493050624,3493061119,US 3493061120,3493061375,BR -3493061376,3493068543,US -3493068544,3493068799,GB -3493068800,3493069055,US +3493061376,3493062911,US +3493062912,3493063167,DE +3493063168,3493069055,US 3493069056,3493069311,A2 3493069312,3493073151,US 3493073152,3493073407,BO @@ -145729,7 +145761,9 @@ 3493937152,3493939199,US 3493939200,3493940223,CA 3493940224,3493980159,US -3493980160,3493981183,CA +3493980160,3493980447,CA +3493980448,3493980455,US +3493980456,3493981183,CA 3493981184,3493982207,US 3493982208,3493984255,CA 3493984256,3493986303,US @@ -145772,7 +145806,13 @@ 3494102688,3494102701,PE 3494102702,3494102735,US 3494102736,3494102743,VI -3494102744,3494115471,US +3494102744,3494109925,US +3494109926,3494109942,CA +3494109943,3494110091,US +3494110092,3494110109,CA +3494110110,3494110145,US +3494110146,3494110161,CA +3494110162,3494115471,US 3494115472,3494115487,AU 3494115488,3494115495,US 3494115496,3494115503,CA @@ -145798,7 +145838,9 @@ 3494139904,3494141951,CA 3494141952,3494143999,US 3494144000,3494145023,CA -3494145024,3494168575,US +3494145024,3494159039,US +3494159040,3494159071,CH +3494159072,3494168575,US 3494168576,3494170623,CA 3494170624,3494181631,US 3494181632,3494181887,SN @@ -145809,22 +145851,7 @@ 3494191616,3494191871,GB 3494191872,3494192127,NL 3494192128,3494197247,US -3494197248,3494197391,CA -3494197392,3494197412,FR -3494197413,3494197448,CA -3494197449,3494197456,AE -3494197457,3494197493,CA -3494197494,3494197502,FR -3494197503,3494197536,CA -3494197537,3494197560,AE -3494197561,3494197569,FR -3494197570,3494197604,CA -3494197605,3494197614,US -3494197615,3494197760,CA -3494197761,3494197777,AE -3494197778,3494197953,CA -3494197954,3494197967,US -3494197968,3494198271,CA +3494197248,3494198271,CA 3494198272,3494228031,US 3494228032,3494228095,AU 3494228096,3494228319,US @@ -145885,11 +145912,7 @@ 3494313376,3494316031,US 3494316032,3494317055,CA 3494317056,3494336511,US -3494336512,3494337023,CA -3494337024,3494337087,US -3494337088,3494337135,CA -3494337136,3494337151,US -3494337152,3494337535,CA +3494336512,3494337535,CA 3494337536,3494342655,US 3494342656,3494344703,CA 3494344704,3494359039,US @@ -145994,11 +146017,7 @@ 3494744400,3494744407,AU 3494744408,3494744703,US 3494744704,3494744711,DE -3494744712,3494745151,US -3494745152,3494745159,AU -3494745160,3494745303,US -3494745304,3494745311,AU -3494745312,3494745951,US +3494744712,3494745951,US 3494745952,3494745959,GB 3494745960,3494746019,US 3494746020,3494746023,AU @@ -146031,11 +146050,7 @@ 3494764536,3494776831,US 3494776832,3494777855,CA 3494777856,3494785023,US -3494785024,3494785279,GP -3494785280,3494785535,MF -3494785536,3494786047,GP -3494786048,3494786303,MF -3494786304,3494786559,GP +3494785024,3494786559,GP 3494786560,3494787071,MF 3494787072,3494787199,A2 3494787200,3494787231,GB @@ -146148,7 +146163,9 @@ 3495219200,3495251967,US 3495251968,3495254015,CA 3495254016,3495260159,US -3495260160,3495261183,CA +3495260160,3495260799,CA +3495260800,3495260927,US +3495260928,3495261183,CA 3495261184,3495276287,US 3495276288,3495276351,IN 3495276352,3495286783,US @@ -146162,9 +146179,7 @@ 3495358464,3495359487,CA 3495359488,3495361023,US 3495361024,3495361055,CA -3495361056,3495363019,US -3495363020,3495363023,AR -3495363024,3495367679,US +3495361056,3495367679,US 3495367680,3495368703,CA 3495368704,3495370239,US 3495370240,3495370495,RU @@ -146215,9 +146230,7 @@ 3495456768,3495463935,US 3495463936,3495464959,CA 3495464960,3495475199,US -3495475200,3495475711,CA -3495475712,3495476223,EE -3495476224,3495477247,CA +3495475200,3495477247,CA 3495477248,3495478271,US 3495478272,3495479295,CA 3495479296,3495485599,US @@ -146347,11 +146360,7 @@ 3495985152,3495988223,NI 3495988224,3495989247,GT 3495989248,3496034303,US -3496034304,3496048135,CA -3496048136,3496048351,US -3496048352,3496048359,CA -3496048360,3496048383,US -3496048384,3496050687,CA +3496034304,3496050687,CA 3496050688,3496132607,US 3496132608,3496148991,CA 3496148992,3496181759,US @@ -146440,7 +146449,9 @@ 3496888672,3496888679,NO 3496888680,3496893695,US 3496893696,3496893703,RU -3496893704,3496894463,US +3496893704,3496893991,US +3496893992,3496893999,TR +3496894000,3496894463,US 3496894464,3496902655,CA 3496902656,3496946175,US 3496946176,3496946431,HK @@ -146532,11 +146543,7 @@ 3497033440,3497033447,PK 3497033448,3497066495,US 3497066496,3497082879,CA -3497082880,3497156863,US -3497156864,3497156879,NL -3497156880,3497156983,US -3497156984,3497157006,DZ -3497157007,3497157375,US +3497082880,3497157375,US 3497157376,3497158143,A2 3497158144,3497160191,US 3497160192,3497160351,NL @@ -146594,13 +146601,9 @@ 3497226296,3497226303,SG 3497226304,3497226391,US 3497226392,3497226399,IR -3497226400,3497226687,US -3497226688,3497226719,GB -3497226720,3497226943,US +3497226400,3497226943,US 3497226944,3497226975,CA -3497226976,3497227311,US -3497227312,3497227327,CA -3497227328,3497227599,US +3497226976,3497227599,US 3497227600,3497227615,CA 3497227616,3497229687,US 3497229688,3497229695,AU @@ -146642,8 +146645,8 @@ 3497713416,3497713423,EC 3497713424,3497717759,US 3497717760,3497719807,A2 -3497719808,3497720063,MR -3497720064,3497721343,A2 +3497719808,3497719839,MR +3497719840,3497721343,A2 3497721344,3497721599,NG 3497721600,3497721855,A2 3497721856,3497739679,US @@ -146786,11 +146789,7 @@ 3501183168,3501183231,SG 3501183232,3501183487,US 3501183488,3501183743,GB -3501183744,3501340415,US -3501340416,3501340471,DE -3501340472,3501340478,US -3501340479,3501340671,DE -3501340672,3501368831,US +3501183744,3501368831,US 3501368832,3501369087,NL 3501369088,3501376147,US 3501376148,3501376151,NL @@ -146808,11 +146807,7 @@ 3501747968,3501748031,CA 3501748032,3501789442,US 3501789443,3501789443,US -3501789444,3501789695,US -3501789696,3501789703,GB -3501789704,3501791751,US -3501791752,3501791759,TW -3501791760,3501817983,US +3501789444,3501817983,US 3501817984,3501818015,HK 3501818016,3502439167,US 3502439168,3502439423,PK @@ -146828,15 +146823,15 @@ 3502683136,3502683391,MC 3502683392,3502993407,US 3502993408,3502993919,NL -3502993920,3503058431,US +3502993920,3503027327,US +3503027328,3503027359,GB +3503027360,3503058431,US 3503058432,3503058447,CA 3503058448,3503206399,US 3503206400,3503206911,CR 3503206912,3503222695,US 3503222696,3503222703,CA -3503222704,3503227391,US -3503227392,3503227407,CA -3503227408,3503250431,US +3503222704,3503250431,US 3503250432,3503250943,PK 3503250944,3503323135,US 3503323136,3503323647,KE @@ -146921,9 +146916,7 @@ 3506135264,3506135295,GB 3506135296,3506155751,US 3506155752,3506155759,AF -3506155760,3506161975,US -3506161976,3506161983,AF -3506161984,3506192639,US +3506155760,3506192639,US 3506192640,3506192895,A2 3506192896,3506194535,US 3506194536,3506194543,AU @@ -147121,10 +147114,7 @@ 3507639712,3507639721,BE 3507639722,3507639741,US 3507639742,3507639751,NZ -3507639752,3507642527,US -3507642528,3507642559,IL -3507642560,3507642591,CA -3507642592,3507643007,US +3507639752,3507643007,US 3507643008,3507643039,GB 3507643040,3507643175,US 3507643176,3507643185,FR @@ -147568,7 +147558,11 @@ 3508780080,3508780111,NL 3508780112,3508780623,US 3508780624,3508780639,IT -3508780640,3509144575,US +3508780640,3509112831,US +3509112832,3509114879,US +3509114880,3509116159,US +3509116160,3509116415,US +3509116416,3509144575,US 3509144576,3509144831,BR 3509144832,3509145487,US 3509145488,3509145495,BR @@ -147637,7 +147631,9 @@ 3509527200,3509527215,US 3509527216,3509527551,CA 3509527552,3509527807,US -3509527808,3509528319,CA +3509527808,3509528207,CA +3509528208,3509528223,US +3509528224,3509528319,CA 3509528320,3509528831,US 3509528832,3509529343,CA 3509529344,3509529599,US @@ -147659,11 +147655,7 @@ 3509533824,3509534335,US 3509534336,3509534367,CA 3509534368,3509534719,US -3509534720,3509535535,CA -3509535536,3509535551,US -3509535552,3509535663,CA -3509535664,3509535679,US -3509535680,3509536895,CA +3509534720,3509536895,CA 3509536896,3509537023,US 3509537024,3509538335,CA 3509538336,3509538351,US @@ -147675,13 +147667,7 @@ 3509538816,3509539071,US 3509539072,3509539327,CA 3509539328,3509539583,US -3509539584,3509539679,CA -3509539680,3509539695,US -3509539696,3509539727,CA -3509539728,3509539743,US -3509539744,3509539823,CA -3509539824,3509539839,US -3509539840,3509539903,CA +3509539584,3509539903,CA 3509539904,3509539967,US 3509539968,3509540095,CA 3509540096,3509540127,US @@ -147748,12 +147734,14 @@ 3509567200,3509567231,US 3509567232,3509569023,CA 3509569024,3509569535,US -3509569536,3509569919,CA +3509569536,3509569663,CA +3509569664,3509569791,US +3509569792,3509569919,CA 3509569920,3509570047,US 3509570048,3509570431,CA 3509570432,3509570687,US -3509570688,3509571583,CA -3509571584,3509571647,US +3509570688,3509571327,CA +3509571328,3509571647,US 3509571648,3509571663,CA 3509571664,3509571839,US 3509571840,3509572095,CA @@ -147772,9 +147760,7 @@ 3509576704,3509576959,US 3509576960,3509577407,CA 3509577408,3509577471,US -3509577472,3509577535,CA -3509577536,3509577551,US -3509577552,3509577727,CA +3509577472,3509577727,CA 3509577728,3509577983,US 3509577984,3509578367,CA 3509578368,3509578495,US @@ -147836,17 +147822,15 @@ 3509775649,3509775664,CA 3509775665,3509775792,US 3509775793,3509775870,CA -3509775871,3509775903,US -3509775904,3509775919,AU +3509775871,3509775911,US +3509775912,3509775919,AU 3509775920,3509775943,US 3509775944,3509775951,IT 3509775952,3509776023,US 3509776024,3509776031,CA 3509776032,3509776047,US 3509776048,3509776055,SA -3509776056,3509776095,US -3509776096,3509776103,AU -3509776104,3509776111,US +3509776056,3509776111,US 3509776112,3509776119,IT 3509776120,3509777167,US 3509777168,3509777175,RU @@ -147968,9 +147952,7 @@ 3510322176,3510323199,AG 3510323200,3510324223,KN 3510324224,3510325247,AI -3510325248,3510325503,AG -3510325504,3510325759,KN -3510325760,3510326271,AG +3510325248,3510326271,AG 3510326272,3510327295,VG 3510327296,3510328319,AG 3510328320,3510328575,KN @@ -148022,9 +148004,17 @@ 3510935552,3510943743,CA 3510943744,3511140351,US 3511140352,3511156735,CA -3511156736,3511257087,US +3511156736,3511256063,US +3511256064,3511256319,US +3511256320,3511257087,US 3511257088,3511257343,US -3511257344,3511331199,US +3511257344,3511258367,US +3511258368,3511258623,US +3511258624,3511260159,US +3511260160,3511260415,US +3511260416,3511260927,US +3511260928,3511261183,US +3511261184,3511331199,US 3511331200,3511331231,CA 3511331232,3511335231,US 3511335232,3511335263,RU @@ -148159,8 +148149,7 @@ 3512207104,3512207231,NI 3512207232,3512207359,US 3512207360,3512209407,CO -3512209408,3512210687,US -3512210688,3512210943,NA +3512209408,3512210943,US 3512210944,3512211199,CL 3512211200,3512211455,AR 3512211456,3512221439,US @@ -148682,9 +148671,7 @@ 3513475072,3513483263,CA 3513499648,3513501183,US 3513501184,3513501439,PH -3513501440,3513502719,US -3513502720,3513502975,US -3513502976,3513506559,US +3513501440,3513506559,US 3513506560,3513506815,CA 3513506816,3513670911,US 3513670912,3513671167,A2 @@ -148766,9 +148753,9 @@ 3515001870,3515001873,GB 3515001874,3515007869,US 3515007870,3515007870,GB -3515007871,3515136511,US -3515136512,3515136767,GB -3515136768,3515149567,US +3515007871,3515114247,US +3515114248,3515114255,AU +3515114256,3515149567,US 3515149568,3515149583,AU 3515149584,3515301887,US 3515301888,3515318271,CA @@ -148908,7 +148895,11 @@ 3517395808,3517395839,US 3517395840,3517395871,CA 3517395872,3517395903,US -3517395904,3517396911,CA +3517395904,3517396095,CA +3517396096,3517396111,US +3517396112,3517396127,CA +3517396128,3517396175,US +3517396176,3517396911,CA 3517396912,3517396927,US 3517396928,3517397503,CA 3517397504,3517397759,US @@ -148970,7 +148961,19 @@ 3517416144,3517416159,US 3517416160,3517416591,CA 3517416592,3517416607,US -3517416608,3517417535,CA +3517416608,3517416711,CA +3517416712,3517416727,US +3517416728,3517416735,CA +3517416736,3517416743,US +3517416744,3517416775,CA +3517416776,3517416783,US +3517416784,3517416791,CA +3517416792,3517416799,US +3517416800,3517416823,CA +3517416824,3517416839,US +3517416840,3517416871,CA +3517416872,3517416879,US +3517416880,3517417535,CA 3517417536,3517417567,US 3517417568,3517417631,CA 3517417632,3517417663,US @@ -149129,9 +149132,7 @@ 3517447792,3517447847,CA 3517447848,3517447863,US 3517447864,3517448191,CA -3517448192,3517523167,US -3517523168,3517523183,BS -3517523184,3517524183,US +3517448192,3517524183,US 3517524184,3517524191,VI 3517524192,3517546495,US 3517546496,3517562879,CA @@ -149179,15 +149180,17 @@ 3517607936,3517608191,DE 3517608192,3517608447,US 3517608448,3517608703,GB -3517608704,3517610015,US +3517608704,3517609743,US +3517609744,3517609759,SE +3517609760,3517609791,US +3517609792,3517609855,SE +3517609856,3517610015,US 3517610016,3517610111,SE 3517610112,3517610143,NO 3517610144,3517610159,ES 3517610160,3517610175,SE 3517610176,3517610183,US -3517610184,3517610191,SE -3517610192,3517610199,US -3517610200,3517610495,SE +3517610184,3517610495,SE 3517610496,3517611263,IE 3517611264,3517611295,SE 3517611296,3517611303,DE @@ -149314,8 +149317,8 @@ 3519406264,3519406375,US 3519406376,3519406383,IT 3519406384,3519406391,IN -3519406392,3519406407,GB -3519406408,3519406503,US +3519406392,3519406399,GB +3519406400,3519406503,US 3519406504,3519406511,CA 3519406512,3519406695,US 3519406696,3519406831,SA @@ -149354,17 +149357,12 @@ 3519412800,3519412815,RU 3519412816,3519412999,US 3519413000,3519413007,CY -3519413008,3519415847,US -3519415848,3519415851,CA -3519415852,3519416847,US +3519413008,3519416847,US 3519416848,3519416879,CA 3519416880,3519417087,US 3519417088,3519417151,IT 3519417152,3519417183,CA -3519417184,3519466895,US -3519466896,3519466911,SZ -3519466912,3519467519,US -3519469568,3519475711,US +3519417184,3519475711,US 3519475712,3519476223,BH 3519476224,3519477759,A2 3519477760,3519554047,US @@ -149438,7 +149436,15 @@ 3520021056,3520021071,US 3520021072,3520021183,CA 3520021184,3520021191,US -3520021192,3520021687,CA +3520021192,3520021319,CA +3520021320,3520021359,US +3520021360,3520021383,CA +3520021384,3520021415,US +3520021416,3520021471,CA +3520021472,3520021479,US +3520021480,3520021495,CA +3520021496,3520021503,US +3520021504,3520021687,CA 3520021688,3520021695,US 3520021696,3520021839,CA 3520021840,3520021847,US @@ -149540,9 +149546,7 @@ 3520028656,3520028671,US 3520028672,3520028695,CA 3520028696,3520028711,US -3520028712,3520029167,CA -3520029168,3520029175,IL -3520029176,3520030975,CA +3520028712,3520030975,CA 3520030976,3520030983,NL 3520030984,3520031143,CA 3520031144,3520031151,US @@ -149556,11 +149560,7 @@ 3520032160,3520032191,US 3520032192,3520032199,CA 3520032200,3520032223,US -3520032224,3520032303,CA -3520032304,3520032311,US -3520032312,3520032399,CA -3520032400,3520032407,US -3520032408,3520032591,CA +3520032224,3520032591,CA 3520032592,3520032599,US 3520032600,3520032687,CA 3520032688,3520032711,US @@ -149572,7 +149572,13 @@ 3520032808,3520032847,US 3520032848,3520032855,CA 3520032856,3520032863,US -3520032864,3520033583,CA +3520032864,3520033031,CA +3520033032,3520033047,US +3520033048,3520033055,CA +3520033056,3520033063,US +3520033064,3520033135,CA +3520033136,3520033159,US +3520033160,3520033583,CA 3520033584,3520033591,US 3520033592,3520033631,CA 3520033632,3520033639,US @@ -149582,13 +149588,7 @@ 3520033696,3520033703,US 3520033704,3520033759,CA 3520033760,3520033767,US -3520033768,3520034151,CA -3520034152,3520034159,US -3520034160,3520034167,CA -3520034168,3520034175,US -3520034176,3520034263,CA -3520034264,3520034271,US -3520034272,3520034487,CA +3520033768,3520034487,CA 3520034488,3520034495,US 3520034496,3520034559,CA 3520034560,3520034567,US @@ -149642,7 +149642,9 @@ 3520078048,3520078911,US 3520078912,3520078927,AU 3520078928,3520078943,EC -3520078944,3520082151,US +3520078944,3520081455,US +3520081456,3520081471,BR +3520081472,3520082151,US 3520082152,3520082167,CA 3520082168,3520083967,US 3520083968,3520084031,AE @@ -149786,11 +149788,9 @@ 3521933390,3521933397,AE 3521933398,3521933405,US 3521933406,3521933413,VE -3521933414,3521933421,IN -3521933422,3521933429,US +3521933414,3521933429,US 3521933430,3521933437,EG -3521933438,3521933445,VE -3521933446,3521933493,US +3521933438,3521933493,US 3521933494,3521933501,EG 3521933502,3521933833,US 3521933834,3521933841,EG @@ -149831,14 +149831,41 @@ 3521934736,3521934743,EG 3521934744,3521935245,US 3521935246,3521935253,LK -3521935254,3521935310,US -3521935311,3521935318,EG -3521935319,3521965055,US +3521935254,3521935709,US +3521935710,3521935725,IN +3521935726,3521935741,US +3521935742,3521935749,LK +3521935750,3521935993,US +3521935994,3521936025,EG +3521936026,3521936243,US +3521936244,3521936251,IN +3521936252,3521936291,US +3521936292,3521936299,IN +3521936300,3521936693,US +3521936694,3521936701,EG +3521936702,3521936739,US +3521936740,3521936747,EG +3521936748,3521936758,US +3521936759,3521936766,IN +3521936767,3521936827,US +3521936828,3521936860,EG +3521936861,3521936874,US +3521936875,3521936882,IN +3521936883,3521936905,US +3521936906,3521936913,LK +3521936914,3521937017,US +3521937018,3521937025,SG +3521937026,3521937033,EG +3521937034,3521937041,IN +3521937042,3521937161,US +3521937162,3521937252,EG +3521937253,3521937260,US +3521937261,3521937406,EG +3521937407,3521965055,US 3521965056,3521966079,DE 3521966080,3521989631,US 3521989632,3521989887,A2 -3521989888,3522029439,US -3522029440,3522029503,FI +3521989888,3522029503,US 3522029504,3522029567,CA 3522029568,3522101247,US 3522101248,3522109439,CA @@ -149896,7 +149923,9 @@ 3522195456,3522199551,CA 3522199552,3522773503,US 3522773504,3522773759,US -3522773760,3522854911,US +3522773760,3522816767,US +3522816768,3522817023,CA +3522817024,3522854911,US 3522854912,3522871295,CA 3522871296,3522902015,US 3522902016,3522903039,CA @@ -149947,8 +149976,8 @@ 3523593600,3523593855,HK 3523593856,3523593919,IR 3523593920,3523597823,HK -3523597824,3523598079,US -3523598080,3523601663,HK +3523597824,3523598335,US +3523598336,3523601663,HK 3523601664,3523601919,SA 3523601920,3523603199,HK 3523603200,3523603455,US @@ -149990,7 +150019,11 @@ 3524722688,3524730879,SG 3524730880,3524739071,CN 3524739072,3524743167,ID -3524743168,3524747263,MP +3524743168,3524745471,MP +3524745472,3524745599,GU +3524745600,3524745727,MP +3524745728,3524745983,GU +3524745984,3524747263,MP 3524747264,3524755455,PH 3524755456,3524763647,AU 3524763648,3524788223,PH @@ -150057,7 +150090,9 @@ 3528978432,3528982527,HK 3528982528,3529056255,JP 3529056256,3529064447,IN -3529064448,3529072639,HK +3529064448,3529065983,HK +3529065984,3529066239,AU +3529066240,3529072639,HK 3529072640,3529080831,JP 3529080832,3529089023,AU 3529089024,3529097215,KR @@ -150065,7 +150100,9 @@ 3529113600,3531603967,KR 3531603968,3532929279,JP 3532929280,3532929535,AP -3532929536,3534749695,JP +3532929536,3533703231,JP +3533703232,3533703247,HK +3533703248,3534749695,JP 3534749696,3534763775,HK 3534763776,3534764031,AP 3534764032,3534867711,HK @@ -150136,24 +150173,20 @@ 3545235456,3546808319,CN 3546808320,3547856895,KR 3547856896,3547916287,JP -3547916288,3547916543,US -3547916544,3548905471,JP +3547916288,3547917311,US +3547917312,3548905471,JP 3548905472,3551002623,CN 3551002624,3556769791,KR 3556769792,3556774399,DE 3556774400,3556786175,EU 3556786176,3556794367,RU -3556794368,3556797839,ES -3556797840,3556797847,PT -3556797848,3556800079,ES -3556800080,3556800087,FR -3556800088,3556800399,ES +3556794368,3556800399,ES 3556800400,3556800407,FR -3556800408,3556800799,ES -3556800800,3556800807,FR -3556800808,3556802479,ES +3556800408,3556802479,ES 3556802480,3556802487,PT -3556802488,3556802559,ES +3556802488,3556802527,ES +3556802528,3556802535,FR +3556802536,3556802559,ES 3556802560,3556810751,SD 3556810752,3556818943,PT 3556818944,3556827135,MD @@ -150235,7 +150268,11 @@ 3557028096,3557028351,GB 3557028352,3557028735,BE 3557028736,3557028799,GB -3557028800,3557029887,BE +3557028800,3557028911,BE +3557028912,3557028927,GB +3557028928,3557029059,BE +3557029060,3557029071,GB +3557029072,3557029887,BE 3557029888,3557029951,GB 3557029952,3557030079,BE 3557030080,3557030143,GB @@ -150252,7 +150289,7 @@ 3557048320,3557056511,CH 3557056512,3557064703,ES 3557064704,3557072511,CZ -3557072512,3557072543,US +3557072512,3557072543,NL 3557072544,3557072895,CZ 3557072896,3557081087,DE 3557081088,3557086015,NL @@ -150299,9 +150336,7 @@ 3557261312,3557277695,DE 3557277696,3557278710,NL 3557278711,3557278714,CH -3557278715,3557280334,NL -3557280335,3557280336,IN -3557280337,3557283839,NL +3557278715,3557283839,NL 3557283840,3557284863,PL 3557284864,3557285887,NL 3557285888,3557294079,RU @@ -150330,8 +150365,8 @@ 3557338880,3557340159,BE 3557340160,3557340191,EU 3557340192,3557340927,BE -3557340928,3557341183,EU -3557341184,3557341455,BE +3557340928,3557341439,EU +3557341440,3557341455,BE 3557341456,3557341471,EU 3557341472,3557341527,BE 3557341528,3557341535,EU @@ -150370,9 +150405,13 @@ 3557360560,3557360575,JE 3557360576,3557360679,GB 3557360680,3557360687,JE -3557360688,3557360895,GB -3557360896,3557361151,JE -3557361152,3557361159,GB +3557360688,3557360927,GB +3557360928,3557360943,JE +3557360944,3557360959,GB +3557360960,3557360967,JE +3557360968,3557361055,GB +3557361056,3557361087,JE +3557361088,3557361159,GB 3557361160,3557361167,JE 3557361168,3557361375,GB 3557361376,3557361391,JE @@ -150383,8 +150422,8 @@ 3557361616,3557361951,GB 3557361952,3557361983,JE 3557361984,3557362047,GB -3557362048,3557362175,JE -3557362176,3557362439,GB +3557362048,3557362431,JE +3557362432,3557362439,GB 3557362440,3557363199,JE 3557363200,3557363359,GB 3557363360,3557363455,JE @@ -150433,7 +150472,9 @@ 3557366016,3557366055,GB 3557366056,3557366063,JE 3557366064,3557366783,GB -3557366784,3557367807,JE +3557366784,3557367039,JE +3557367040,3557367551,GB +3557367552,3557367807,JE 3557367808,3557375999,DE 3557376000,3557384191,ES 3557384192,3557392383,GB @@ -150505,12 +150546,14 @@ 3557862016,3557862399,SE 3557862400,3557862911,FI 3557862912,3557863295,SE -3557863296,3557863359,FI +3557863296,3557863327,FI +3557863328,3557863351,SE +3557863352,3557863359,FI 3557863360,3557863391,SE 3557863392,3557863399,FI -3557863400,3557864287,SE -3557864288,3557864303,DK -3557864304,3557864311,SE +3557863400,3557864289,SE +3557864290,3557864290,DK +3557864291,3557864311,SE 3557864312,3557864319,FI 3557864320,3557867519,SE 3557867520,3557875711,RU @@ -150583,9 +150626,7 @@ 3558155516,3558155519,A2 3558155520,3558156031,SD 3558156032,3558156287,KG -3558156288,3558156351,US -3558156352,3558156359,GB -3558156360,3558156543,US +3558156288,3558156543,US 3558156544,3558156671,KN 3558156672,3558156927,SM 3558156928,3558157183,AF @@ -150606,7 +150647,9 @@ 3558157792,3558158079,SL 3558158080,3558158207,US 3558158208,3558158239,SC -3558158240,3558158335,US +3558158240,3558158327,A2 +3558158328,3558158331,SC +3558158332,3558158335,A2 3558158336,3558158847,SE 3558158848,3558159359,DE 3558159360,3558159615,US @@ -150618,7 +150661,7 @@ 3558159872,3558160127,SL 3558160128,3558160383,GB 3558160384,3558161151,A2 -3558161152,3558161407,AF +3558161152,3558161407,US 3558161408,3558162143,A2 3558162144,3558162175,SO 3558162176,3558162431,BI @@ -150695,13 +150738,7 @@ 3558289784,3558289919,IT 3558289920,3558290175,CZ 3558290176,3558290431,GB -3558290432,3558290559,BE -3558290560,3558290591,GB -3558290592,3558290599,BE -3558290600,3558290615,GB -3558290616,3558290663,BE -3558290664,3558290679,GB -3558290680,3558290687,BE +3558290432,3558290687,BE 3558290688,3558290871,ES 3558290872,3558290879,GB 3558290880,3558290943,ES @@ -150714,8 +150751,7 @@ 3558291024,3558291031,SE 3558291032,3558291135,DE 3558291136,3558291199,GB -3558291200,3558291207,CH -3558291208,3558291215,GB +3558291200,3558291215,CH 3558291216,3558291231,AT 3558291232,3558291239,CH 3558291240,3558291263,GB @@ -150749,7 +150785,11 @@ 3558337784,3558337787,DE 3558337788,3558339699,CH 3558339700,3558339703,DE -3558339704,3558340655,CH +3558339704,3558339959,CH +3558339960,3558339967,DE +3558339968,3558340039,CH +3558340040,3558340043,DE +3558340044,3558340655,CH 3558340656,3558340663,CG 3558340664,3558342655,CH 3558342656,3558350847,IT @@ -150786,17 +150826,13 @@ 3558372608,3558372735,AT 3558372736,3558372863,ES 3558372864,3558375423,AT -3558375424,3558379999,CZ -3558380000,3558380015,CY -3558380016,3558382743,CZ +3558375424,3558382743,CZ 3558382744,3558382747,CY 3558382748,3558383615,CZ 3558383616,3558391807,HU 3558391808,3558399999,LU 3558400000,3558408191,SA -3558408192,3558412095,CH -3558412096,3558412103,GB -3558412104,3558416383,CH +3558408192,3558416383,CH 3558416384,3558424575,BG 3558424576,3558440959,IL 3558440960,3558449151,SE @@ -150882,25 +150918,7 @@ 3558740352,3558740359,GB 3558740360,3558740367,GG 3558740368,3558740383,GB -3558740384,3558741255,GG -3558741256,3558741271,GB -3558741272,3558741279,GG -3558741280,3558741287,GB -3558741288,3558741295,GG -3558741296,3558741311,GB -3558741312,3558741335,GG -3558741336,3558741359,GB -3558741360,3558741367,GG -3558741368,3558741391,GB -3558741392,3558741399,GG -3558741400,3558741423,GB -3558741424,3558741431,GG -3558741432,3558741439,GB -3558741440,3558741447,GG -3558741448,3558741471,GB -3558741472,3558741487,GG -3558741488,3558741503,GB -3558741504,3558742015,GG +3558740384,3558742015,GG 3558742016,3558742039,GB 3558742040,3558742047,GG 3558742048,3558742055,GB @@ -150932,7 +150950,8 @@ 3558742736,3558742743,GB 3558742744,3558742751,GG 3558742752,3558742775,GB -3558742776,3558744063,GG +3558742776,3558743039,GG +3558743040,3558744063,GB 3558744064,3558752255,LB 3558752256,3558760447,SI 3558760448,3558768639,FR @@ -150952,13 +150971,7 @@ 3558842368,3558850559,SE 3558850560,3558850815,ES 3558850816,3558851327,US -3558851328,3558851391,ES -3558851392,3558851423,GB -3558851424,3558851471,ES -3558851472,3558851479,NO -3558851480,3558851535,ES -3558851536,3558851543,GB -3558851544,3558851583,ES +3558851328,3558851583,ES 3558851584,3558851599,GB 3558851600,3558851623,ES 3558851624,3558851627,GB @@ -151004,9 +151017,7 @@ 3558856192,3558856639,GB 3558856640,3558856703,NL 3558856704,3558858751,US -3558858752,3558864167,IT -3558864168,3558864175,GB -3558864176,3558864695,IT +3558858752,3558864695,IT 3558864696,3558864703,GB 3558864704,3558866943,IT 3558866944,3558899711,GB @@ -151040,8 +151051,8 @@ 3559088128,3559088263,BE 3559088264,3559088267,GB 3559088268,3559088303,BE -3559088304,3559088319,GB -3559088320,3559088367,BE +3559088304,3559088311,GB +3559088312,3559088367,BE 3559088368,3559088371,GB 3559088372,3559088375,BE 3559088376,3559088379,GB @@ -151055,9 +151066,7 @@ 3559089080,3559089087,GB 3559089088,3559089407,BE 3559089408,3559089411,GB -3559089412,3559089415,BE -3559089416,3559089423,GB -3559089424,3559089431,BE +3559089412,3559089431,BE 3559089432,3559089443,GB 3559089444,3559089447,BE 3559089448,3559089451,GB @@ -151071,9 +151080,7 @@ 3559089536,3559089543,GB 3559089544,3559089547,BE 3559089548,3559089551,GB -3559089552,3559089559,BE -3559089560,3559089567,GB -3559089568,3559089591,BE +3559089552,3559089591,BE 3559089592,3559089599,GB 3559089600,3559089607,BE 3559089608,3559089611,GB @@ -151083,18 +151090,10 @@ 3559089640,3559089643,GB 3559089644,3559089655,BE 3559089656,3559089659,GB -3559089660,3559089919,BE -3559089920,3559089935,GB -3559089936,3559090071,BE -3559090072,3559090079,NL -3559090080,3559090103,BE -3559090104,3559090111,GB -3559090112,3559090407,BE +3559089660,3559090407,BE 3559090408,3559090415,GB 3559090416,3559090759,BE -3559090760,3559090767,GB -3559090768,3559090775,BE -3559090776,3559090779,GB +3559090760,3559090779,GB 3559090780,3559090791,BE 3559090792,3559090799,GB 3559090800,3559090803,BE @@ -151106,20 +151105,18 @@ 3559090900,3559090903,BE 3559090904,3559090907,GB 3559090908,3559090923,BE -3559090924,3559090927,GB -3559090928,3559090943,BE -3559090944,3559091007,GB +3559090924,3559091007,GB 3559091008,3559091011,BE 3559091012,3559091023,GB -3559091024,3559091047,BE -3559091048,3559091055,GB +3559091024,3559091039,BE +3559091040,3559091055,GB 3559091056,3559091087,BE 3559091088,3559091091,GB 3559091092,3559091095,BE 3559091096,3559091103,GB 3559091104,3559091115,BE -3559091116,3559091119,GB -3559091120,3559091175,BE +3559091116,3559091135,GB +3559091136,3559091175,BE 3559091176,3559091183,GB 3559091184,3559091203,BE 3559091204,3559091207,GB @@ -151215,38 +151212,7 @@ 3559093216,3559093219,GB 3559093220,3559093223,BE 3559093224,3559093243,GB -3559093244,3559094019,BE -3559094020,3559094023,GB -3559094024,3559094031,BE -3559094032,3559094039,FR -3559094040,3559094047,BE -3559094048,3559094055,FR -3559094056,3559094063,GB -3559094064,3559094083,BE -3559094084,3559094087,GB -3559094088,3559094095,FR -3559094096,3559094099,GB -3559094100,3559094103,BE -3559094104,3559094111,GB -3559094112,3559094143,BE -3559094144,3559094147,GB -3559094148,3559094151,BE -3559094152,3559094159,GB -3559094160,3559094175,BE -3559094176,3559094179,GB -3559094180,3559094183,BE -3559094184,3559094191,GB -3559094192,3559094211,BE -3559094212,3559094215,GB -3559094216,3559094219,BE -3559094220,3559094223,GB -3559094224,3559094231,BE -3559094232,3559094235,GB -3559094236,3559094239,BE -3559094240,3559094243,GB -3559094244,3559094247,BE -3559094248,3559094251,GB -3559094252,3559094271,BE +3559093244,3559094271,BE 3559094272,3559094287,GB 3559094288,3559094319,BE 3559094320,3559094335,GB @@ -151286,8 +151252,8 @@ 3559095928,3559095935,BE 3559095936,3559095999,GB 3559096000,3559096031,BE -3559096032,3559096063,GB -3559096064,3559096123,BE +3559096032,3559096071,GB +3559096072,3559096123,BE 3559096124,3559096127,GB 3559096128,3559096191,BE 3559096192,3559096199,GB @@ -151507,14 +151473,16 @@ 3559900992,3559901007,RU 3559901008,3559901183,UA 3559901184,3559901695,EE -3559901696,3559901807,UA +3559901696,3559901791,UA +3559901792,3559901799,EE +3559901800,3559901807,UA 3559901808,3559901855,EE 3559901856,3559901919,UA -3559901920,3559902011,EE +3559901920,3559901999,EE +3559902000,3559902007,UA +3559902008,3559902011,EE 3559902012,3559902015,UA -3559902016,3559902031,EE -3559902032,3559902047,UA -3559902048,3559902055,EE +3559902016,3559902055,EE 3559902056,3559902071,UA 3559902072,3559902079,EE 3559902080,3559902151,UA @@ -151579,13 +151547,9 @@ 3560027624,3560027631,GB 3560027632,3560027647,ES 3560027648,3560028159,GB -3560028160,3560028775,ES -3560028776,3560028863,GB -3560028864,3560029239,ES -3560029240,3560029247,GB -3560029248,3560029279,ES -3560029280,3560029295,GB -3560029296,3560029723,ES +3560028160,3560028839,ES +3560028840,3560028863,GB +3560028864,3560029723,ES 3560029724,3560029727,GB 3560029728,3560030207,ES 3560030208,3560046591,GB @@ -151644,11 +151608,7 @@ 3560366720,3560374271,CH 3560374272,3560382463,ES 3560382464,3560390655,FO -3560390656,3560391423,UA -3560391424,3560391679,RU -3560391680,3560394751,UA -3560394752,3560395007,RU -3560395008,3560398847,UA +3560390656,3560398847,UA 3560398848,3560407039,RU 3560407040,3560423423,PT 3560423424,3560431615,CH @@ -151681,7 +151641,9 @@ 3560603648,3560611839,GB 3560611840,3560620031,UA 3560620032,3560628223,RU -3560628224,3560636415,GB +3560628224,3560632207,GB +3560632208,3560632215,NL +3560632216,3560636415,GB 3560636416,3560644607,LT 3560644608,3560652799,DE 3560652800,3560660991,GB @@ -151713,7 +151675,9 @@ 3560882176,3560890367,DE 3560890368,3560898559,NO 3560898560,3560906751,FI -3560906752,3560919047,DE +3560906752,3560916383,DE +3560916384,3560916391,CH +3560916392,3560919047,DE 3560919048,3560919055,CH 3560919056,3560923135,DE 3560923136,3560931327,ES @@ -152450,7 +152414,91 @@ 3560944088,3560944103,DE 3560944104,3560944107,US 3560944108,3560944119,DE -3560944120,3560944639,US +3560944120,3560944135,US +3560944136,3560944139,DE +3560944140,3560944143,US +3560944144,3560944147,DE +3560944148,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,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 @@ -152685,7 +152733,39 @@ 3560946672,3560946679,BR 3560946680,3560946687,US 3560946688,3560946943,DE -3560946944,3560947199,US +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,3560947159,US +3560947160,3560947163,PR +3560947164,3560947191,US +3560947192,3560947195,VE +3560947196,3560947199,DE 3560947200,3560947203,CA 3560947204,3560947207,US 3560947208,3560947211,DE @@ -152737,17 +152817,13 @@ 3560950848,3560950863,SE 3560950864,3560950867,DK 3560950868,3560950871,ES -3560950872,3560950956,SE -3560950957,3560950958,PL -3560950959,3560951027,SE +3560950872,3560951027,SE 3560951028,3560951031,DK 3560951032,3560951039,SE 3560951040,3560951043,NO 3560951044,3560951083,SE 3560951084,3560951087,DK -3560951088,3560951088,SE -3560951089,3560951090,PL -3560951091,3560951091,SE +3560951088,3560951091,SE 3560951092,3560951095,IT 3560951096,3560951103,SE 3560951104,3560951107,DE @@ -152770,15 +152846,9 @@ 3560951212,3560951215,IT 3560951216,3560951307,SE 3560951308,3560951311,IT -3560951312,3560951376,SE -3560951377,3560951378,PL -3560951379,3560951380,SE -3560951381,3560951382,FI -3560951383,3560951383,SE +3560951312,3560951383,SE 3560951384,3560951387,NO -3560951388,3560951388,SE -3560951389,3560951390,PT -3560951391,3560951391,SE +3560951388,3560951391,SE 3560951392,3560951395,IT 3560951396,3560951399,DE 3560951400,3560951403,SE @@ -152788,11 +152858,7 @@ 3560951428,3560951431,DK 3560951432,3560951435,SE 3560951436,3560951439,DK -3560951440,3560951440,SE -3560951441,3560951442,JP -3560951443,3560951444,SE -3560951445,3560951446,HU -3560951447,3560951447,SE +3560951440,3560951447,SE 3560951448,3560951451,FR 3560951452,3560951459,SE 3560951460,3560951463,FI @@ -152811,11 +152877,7 @@ 3560951764,3560951767,HU 3560951768,3560951807,SE 3560951808,3560951811,US -3560951812,3560951816,SE -3560951817,3560951818,ES -3560951819,3560951820,SE -3560951821,3560951822,IT -3560951823,3560951831,SE +3560951812,3560951831,SE 3560951832,3560951835,DE 3560951836,3560951915,SE 3560951916,3560951919,PL @@ -152838,9 +152900,7 @@ 3560952296,3560952299,NL 3560952300,3560952431,SE 3560952432,3560952435,DK -3560952436,3560953103,SE -3560953104,3560953119,JP -3560953120,3560955903,SE +3560952436,3560955903,SE 3560955904,3560964095,BE 3560964096,3560996863,NL 3560996864,3561005055,GB @@ -152908,9 +152968,7 @@ 3561414656,3561422847,IT 3561422848,3561427207,BE 3561427208,3561427211,NL -3561427212,3561428135,BE -3561428136,3561428143,NL -3561428144,3561429279,BE +3561427212,3561429279,BE 3561429280,3561429287,NL 3561429288,3561431039,BE 3561431040,3561439231,SA @@ -152928,7 +152986,11 @@ 3561496892,3561496955,GB 3561496956,3561496959,NL 3561496960,3561497087,GB -3561497088,3561497423,NL +3561497088,3561497119,NL +3561497120,3561497215,GB +3561497216,3561497311,NL +3561497312,3561497327,GB +3561497328,3561497423,NL 3561497424,3561497471,GB 3561497472,3561497535,NL 3561497536,3561497599,GB @@ -152989,7 +153051,9 @@ 3561595008,3561603071,SE 3561603072,3561603263,FR 3561603264,3561603295,GB -3561603296,3561604911,FR +3561603296,3561604799,FR +3561604800,3561604863,GB +3561604864,3561604911,FR 3561604912,3561604927,GB 3561604928,3561604959,FR 3561604960,3561605119,GB @@ -153011,8 +153075,12 @@ 3561610672,3561611311,FR 3561611312,3561611327,GB 3561611328,3561611391,FR -3561611392,3561611519,GB -3561611520,3561612415,FR +3561611392,3561611559,GB +3561611560,3561611567,FR +3561611568,3561611775,GB +3561611776,3561612031,FR +3561612032,3561612287,GB +3561612288,3561612415,FR 3561612416,3561613311,GB 3561613312,3561613319,FR 3561613320,3561613343,GB @@ -153028,8 +153096,12 @@ 3561614848,3561615359,GB 3561615360,3561615615,FR 3561615616,3561615871,IT -3561615872,3561616639,FR -3561616640,3561616767,GB +3561615872,3561616471,FR +3561616472,3561616495,GB +3561616496,3561616543,FR +3561616544,3561616559,GB +3561616560,3561616591,FR +3561616592,3561616767,GB 3561616768,3561616959,FR 3561616960,3561617151,GB 3561617152,3561617407,FR @@ -153067,9 +153139,9 @@ 3561775104,3561783295,IL 3561783296,3561799679,RU 3561799680,3561807871,DE -3561807872,3561815295,BE -3561815296,3561815551,LU -3561815552,3561816063,BE +3561807872,3561814015,BE +3561814016,3561814271,LU +3561814272,3561816063,BE 3561816064,3561819263,VA 3561819264,3561819279,IT 3561819280,3561823999,VA @@ -153152,7 +153224,9 @@ 3561929856,3561929871,NL 3561929872,3561929879,GB 3561929880,3561929903,NL -3561929904,3561929967,GB +3561929904,3561929943,GB +3561929944,3561929951,NL +3561929952,3561929967,GB 3561929968,3561930239,NL 3561930240,3561930495,GB 3561930496,3561930511,NL @@ -153359,7 +153433,9 @@ 3562848256,3562856447,HR 3562856448,3562864639,UA 3562864640,3562872831,DE -3562872832,3562881023,DK +3562872832,3562874623,DK +3562874624,3562874879,SE +3562874880,3562881023,DK 3562881024,3562889215,GB 3562889216,3562897407,LV 3562897408,3562905599,RO @@ -153435,9 +153511,7 @@ 3563200512,3563208703,CH 3563208704,3563210751,DK 3563210752,3563211007,DE -3563211008,3563211639,DK -3563211640,3563211647,DE -3563211648,3563212799,DK +3563211008,3563212799,DK 3563212800,3563212807,DE 3563212808,3563212847,DK 3563212848,3563212895,GB @@ -153460,8 +153534,7 @@ 3563372544,3563380735,SA 3563380736,3563382583,GB 3563382584,3563382587,AT -3563382588,3563382589,DE -3563382590,3563388927,GB +3563382588,3563388927,GB 3563388928,3563397119,CH 3563397120,3563405311,DE 3563405312,3563407871,ES @@ -153612,7 +153685,15 @@ 3563848320,3563848327,GB 3563848328,3563848383,NL 3563848384,3563848447,GB -3563848448,3563848847,NL +3563848448,3563848575,NL +3563848576,3563848583,GB +3563848584,3563848639,NL +3563848640,3563848645,IT +3563848646,3563848646,NL +3563848647,3563848655,IT +3563848656,3563848671,NL +3563848672,3563848703,GB +3563848704,3563848847,NL 3563848848,3563848855,EU 3563848856,3563848979,NL 3563848980,3563848983,GB @@ -153628,8 +153709,8 @@ 3563850240,3563850751,GB 3563850752,3563851007,NL 3563851008,3563851135,GB -3563851136,3563852031,NL -3563852032,3563852071,GB +3563851136,3563852047,NL +3563852048,3563852071,GB 3563852072,3563852079,NL 3563852080,3563852095,GB 3563852096,3563852191,NL @@ -153652,8 +153733,8 @@ 3563854216,3563854223,GB 3563854224,3563854259,NL 3563854260,3563854263,GB -3563854264,3563854271,NL -3563854272,3563854591,GB +3563854264,3563854335,NL +3563854336,3563854591,GB 3563854592,3563854847,NL 3563854848,3563855359,GB 3563855360,3563855487,NL @@ -153664,9 +153745,11 @@ 3563855872,3563864063,AT 3563864064,3563872255,GB 3563872256,3563880447,RU -3563880448,3563884651,CY +3563880448,3563884543,TR +3563884544,3563884651,CY 3563884652,3563884652,TR -3563884653,3563888639,CY +3563884653,3563886591,CY +3563886592,3563888639,TR 3563888640,3563896831,DE 3563896832,3563899903,HU 3563899904,3563900159,SK @@ -153706,9 +153789,7 @@ 3564027904,3564036351,DE 3564036352,3564039423,A2 3564039424,3564039679,DE -3564039680,3564041215,A2 -3564041216,3564041727,RU -3564041728,3564043263,A2 +3564039680,3564043263,A2 3564043264,3564043519,DE 3564043520,3564044287,A2 3564044288,3564052479,CZ @@ -153728,33 +153809,41 @@ 3564129744,3564130655,IT 3564130656,3564130671,IN 3564130672,3564134399,IT -3564134400,3564141055,KG -3564141056,3564141311,US -3564141312,3564142591,KG +3564134400,3564142591,KG 3564142592,3564146175,DE 3564146176,3564150783,DK 3564150784,3564152607,SE 3564152608,3564152639,NO 3564152640,3564153087,SE -3564153088,3564153151,NO -3564153152,3564153183,SE -3564153184,3564153343,NO +3564153088,3564153343,NO 3564153344,3564155151,SE 3564155152,3564155159,NO 3564155160,3564156415,SE 3564156416,3564156419,NO -3564156420,3564156919,SE -3564156920,3564156927,FI -3564156928,3564157207,SE +3564156420,3564157207,SE 3564157208,3564157215,NO 3564157216,3564158831,SE 3564158832,3564158839,FI 3564158840,3564158975,SE -3564158976,3564161855,DE +3564158976,3564159999,DE +3564160000,3564161279,CZ +3564161280,3564161855,DE 3564161856,3564161891,NL -3564161892,3564165119,DE +3564161892,3564162303,DE +3564162304,3564162815,CZ +3564162816,3564163071,DE +3564163072,3564163327,CZ +3564163328,3564163583,DE +3564163584,3564163839,CZ +3564163840,3564164351,DE +3564164352,3564164863,CZ +3564164864,3564165119,DE 3564165120,3564165439,NL -3564165440,3564175359,DE +3564165440,3564165887,DE +3564165888,3564166399,CZ +3564166400,3564166911,DE +3564166912,3564167167,CZ +3564167168,3564175359,DE 3564175360,3564183551,GB 3564183552,3564185087,UA 3564185088,3564185160,DE @@ -153895,8 +153984,8 @@ 3564561792,3564561795,GB 3564561796,3564561799,US 3564561800,3564561855,GB -3564561856,3564562175,US -3564562176,3564562431,GB +3564561856,3564561919,US +3564561920,3564562431,GB 3564562432,3564562687,GB 3564562688,3564562831,US 3564562832,3564562847,GB @@ -153967,7 +154056,9 @@ 3564571592,3564571599,FR 3564571600,3564571647,GB 3564571648,3564571679,DE -3564571680,3564571775,GB +3564571680,3564571703,GB +3564571704,3564571711,DE +3564571712,3564571775,GB 3564571776,3564571823,DE 3564571824,3564571839,GB 3564571840,3564571903,DE @@ -154018,9 +154109,15 @@ 3564716032,3564724223,IT 3564724224,3564732415,NL 3564732416,3564733183,DE -3564733184,3564733375,GB +3564733184,3564733311,GB +3564733312,3564733319,DE +3564733320,3564733351,GB +3564733352,3564733359,DE +3564733360,3564733375,GB 3564733376,3564733383,DE -3564733384,3564733439,GB +3564733384,3564733415,GB +3564733416,3564733423,DE +3564733424,3564733439,GB 3564733440,3564734207,DE 3564734208,3564734463,EU 3564734464,3564734815,DE @@ -154047,9 +154144,11 @@ 3564736992,3564737023,GB 3564737024,3564739335,DE 3564739336,3564739343,GB -3564739344,3564739383,DE -3564739384,3564739391,ES -3564739392,3564739495,DE +3564739344,3564739391,DE +3564739392,3564739399,GB +3564739400,3564739407,DE +3564739408,3564739455,GB +3564739456,3564739495,DE 3564739496,3564739503,GB 3564739504,3564739519,AT 3564739520,3564739807,GB @@ -154294,7 +154393,7 @@ 3564920832,3564921855,DE 3564921856,3564929023,US 3564929024,3564937215,AT -3564937216,3564945407,RS +3564937216,3564945407,IT 3564945408,3564947175,GB 3564947176,3564947183,FR 3564947184,3564948063,GB @@ -154836,7 +154935,9 @@ 3566403584,3566436351,CH 3566436352,3566438546,IE 3566438547,3566438547,EU -3566438548,3566469119,IE +3566438548,3566439615,IE +3566439616,3566439631,GB +3566439632,3566469119,IE 3566469120,3566534655,GB 3566534656,3566551039,DE 3566551040,3566574747,FI @@ -154999,7 +155100,9 @@ 3567323024,3567323135,GB 3567323136,3567323391,IE 3567323392,3567324479,GB -3567324480,3567324543,ES +3567324480,3567324495,ES +3567324496,3567324511,GB +3567324512,3567324543,ES 3567324544,3567324559,GB 3567324560,3567324575,ES 3567324576,3567324607,GB @@ -155027,9 +155130,7 @@ 3567386624,3567386671,GB 3567386672,3567386687,DE 3567386688,3567386751,GB -3567386752,3567386815,DE -3567386816,3567386879,GB -3567386880,3567386883,DE +3567386752,3567386883,DE 3567386884,3567386911,GB 3567386912,3567386943,DE 3567386944,3567386975,GB @@ -155074,10 +155175,12 @@ 3567392768,3567393023,DE 3567393024,3567393279,FR 3567393280,3567393535,HU -3567393536,3567393791,GB +3567393536,3567393663,GB +3567393664,3567393791,DE 3567393792,3567394047,SI 3567394048,3567394175,HR -3567394176,3567394975,GB +3567394176,3567394303,DE +3567394304,3567394975,GB 3567394976,3567395007,DE 3567395008,3567395071,GB 3567395072,3567395327,DE @@ -155130,7 +155233,11 @@ 3567452352,3567452383,GB 3567452384,3567452399,ES 3567452400,3567452415,GB -3567452416,3567453439,ES +3567452416,3567453103,ES +3567453104,3567453119,GB +3567453120,3567453134,ES +3567453135,3567453135,GB +3567453136,3567453439,ES 3567453440,3567453951,GB 3567453952,3567454239,ES 3567454240,3567454255,GB @@ -155394,8 +155501,7 @@ 3567715328,3567715583,EU 3567715584,3567715839,GB 3567715840,3567716351,EU -3567716352,3567716383,GB -3567716384,3567716607,EU +3567716352,3567716607,GB 3567716608,3567716639,IL 3567716640,3567716943,EU 3567716944,3567717119,GB @@ -155453,7 +155559,9 @@ 3568697344,3568730111,PL 3568730112,3568746495,NL 3568746496,3568762879,FI -3568762880,3568795647,AT +3568762880,3568767231,AT +3568767232,3568767455,DE +3568767456,3568795647,AT 3568795648,3568803839,GB 3568803840,3568812031,IT 3568812032,3568828415,ES @@ -155463,13 +155571,13 @@ 3568848792,3568848799,PL 3568848800,3568848871,DE 3568848872,3568848879,GB -3568848880,3568900095,DE +3568848880,3568893951,DE +3568893952,3568894207,NL +3568894208,3568900095,DE 3568900096,3568900351,A2 3568900352,3568904191,DE 3568904192,3568904447,EU -3568904448,3568915791,DE -3568915792,3568915807,LU -3568915808,3568939519,DE +3568904448,3568939519,DE 3568939520,3568939527,IT 3568939528,3568943199,DE 3568943200,3568943207,A2 @@ -155825,15 +155933,13 @@ 3569876992,3569942527,RS 3569942528,3570073599,DE 3570073600,3570081791,NL -3570081792,3570098687,CH +3570081792,3570097023,CH +3570097024,3570097088,ES +3570097089,3570098687,CH 3570098688,3570098943,EU 3570098944,3570106367,CH 3570106368,3570139135,PL -3570139136,3570170079,DE -3570170080,3570170111,BE -3570170112,3570171655,DE -3570171656,3570171663,AU -3570171664,3570171903,DE +3570139136,3570171903,DE 3570171904,3570204671,NL 3570204672,3570215679,GR 3570215680,3570215807,DE @@ -155892,7 +155998,9 @@ 3570991104,3571023871,MA 3571023872,3571056639,SE 3571056640,3571122175,DE -3571122176,3571187711,GB +3571122176,3571147519,GB +3571147520,3571147775,US +3571147776,3571187711,GB 3571187712,3571253247,RU 3571253248,3571264607,BE 3571264608,3571264639,FR @@ -156103,16 +156211,16 @@ 3573089760,3573089791,AT 3573089792,3573090055,CH 3573090056,3573090063,CD -3573090064,3573101055,CH +3573090064,3573096719,CH +3573096720,3573096727,GB +3573096728,3573101055,CH 3573101056,3573101311,EU 3573101312,3573142015,CH 3573142016,3573142271,AT 3573142272,3573153791,CH 3573153792,3573175711,GB 3573175712,3573175727,IE -3573175728,3573208511,GB -3573208512,3573208543,IE -3573208544,3573219327,GB +3573175728,3573219327,GB 3573219328,3573252095,GR 3573252096,3573284863,NO 3573284864,3573415935,TR @@ -156217,9 +156325,7 @@ 3574183680,3574183807,GB 3574183808,3574185031,ES 3574185032,3574185039,GB -3574185040,3574186847,ES -3574186848,3574187007,GB -3574187008,3574190591,ES +3574185040,3574190591,ES 3574190592,3574190847,EU 3574190848,3574192639,ES 3574192640,3574192703,GB @@ -156351,15 +156457,11 @@ 3575365984,3575365991,FR 3575365992,3575366135,ES 3575366136,3575366143,GB -3575366144,3575373183,ES -3575373184,3575373191,GB -3575373192,3575375279,ES +3575366144,3575375279,ES 3575375280,3575375287,FR 3575375288,3575375319,ES 3575375320,3575375327,GB -3575375328,3575376191,ES -3575376192,3575376199,US -3575376200,3575382015,ES +3575375328,3575382015,ES 3575382016,3575412991,FI 3575412992,3575413119,RU 3575413120,3575447551,FI @@ -156819,9 +156921,13 @@ 3576039904,3576039935,GB 3576039936,3576040063,EU 3576040064,3576040127,GB -3576040128,3576040191,EU -3576040192,3576040447,GB -3576040448,3576040831,EU +3576040128,3576040215,EU +3576040216,3576040223,GB +3576040224,3576040271,EU +3576040272,3576040287,GB +3576040288,3576040351,EU +3576040352,3576040383,GB +3576040384,3576040831,EU 3576040832,3576040959,GB 3576040960,3576041471,EU 3576041472,3576041535,GB @@ -156978,8 +157084,8 @@ 3576072080,3576072287,EU 3576072288,3576072319,GB 3576072320,3576072415,EU -3576072416,3576072703,GB -3576072704,3576073215,EU +3576072416,3576072511,GB +3576072512,3576073215,EU 3576073216,3576073279,GB 3576073280,3576074751,EU 3576074752,3576074879,GB @@ -157144,7 +157250,11 @@ 3576237712,3576237743,GB 3576237744,3576237919,FR 3576237920,3576237935,GB -3576237936,3576238863,FR +3576237936,3576238151,FR +3576238152,3576238159,GB +3576238160,3576238303,FR +3576238304,3576238335,GB +3576238336,3576238863,FR 3576238864,3576238879,GB 3576238880,3576238927,FR 3576238928,3576238975,GB @@ -157187,8 +157297,8 @@ 3576249824,3576249831,FR 3576249832,3576249839,GB 3576249840,3576250175,FR -3576250176,3576250335,GB -3576250336,3576250623,FR +3576250176,3576250303,GB +3576250304,3576250623,FR 3576250624,3576251007,GB 3576251008,3576251055,FR 3576251056,3576251095,GB @@ -157200,13 +157310,7 @@ 3576251584,3576251599,GB 3576251600,3576251615,FR 3576251616,3576251647,GB -3576251648,3576254543,FR -3576254544,3576254551,GB -3576254552,3576254567,FR -3576254568,3576254575,GB -3576254576,3576254631,FR -3576254632,3576254647,GB -3576254648,3576254847,FR +3576251648,3576254847,FR 3576254848,3576254855,GB 3576254856,3576254863,FR 3576254864,3576254879,GB @@ -157214,7 +157318,9 @@ 3576254896,3576254911,GB 3576254912,3576255231,FR 3576255232,3576255239,GB -3576255240,3576255375,FR +3576255240,3576255327,FR +3576255328,3576255359,GB +3576255360,3576255375,FR 3576255376,3576255383,GB 3576255384,3576255407,FR 3576255408,3576255423,GB @@ -157302,11 +157408,7 @@ 3576258672,3576258687,GB 3576258688,3576258703,FR 3576258704,3576258783,GB -3576258784,3576258863,FR -3576258864,3576258871,GB -3576258872,3576258887,FR -3576258888,3576258895,GB -3576258896,3576259103,FR +3576258784,3576259103,FR 3576259104,3576259199,GB 3576259200,3576259215,FR 3576259216,3576259247,GB @@ -157374,9 +157476,7 @@ 3576264384,3576264399,GB 3576264400,3576264415,FR 3576264416,3576264439,GB -3576264440,3576264639,FR -3576264640,3576264655,GB -3576264656,3576299519,FR +3576264440,3576299519,FR 3576299520,3576365055,AE 3576365056,3576430591,TR 3576430592,3576496127,FR @@ -157422,23 +157522,30 @@ 3577004032,3577020415,GB 3577020416,3577085951,NL 3577085952,3577151487,DE -3577151488,3577151999,FR -3577152000,3577152511,RE -3577152512,3577153535,FR -3577153536,3577154047,RE -3577154048,3577154303,FR -3577154304,3577155327,RE -3577155328,3577155455,FR -3577155456,3577156735,RE -3577156736,3577156863,FR -3577156864,3577159679,RE -3577159680,3577161727,FR -3577161728,3577161983,RE -3577161984,3577162751,FR -3577162752,3577163263,RE -3577163264,3577164031,FR -3577164032,3577164287,RE -3577164288,3577167871,FR +3577151488,3577151999,RE +3577152000,3577152255,FR +3577152256,3577153023,RE +3577153024,3577153279,FR +3577153280,3577153535,RE +3577153536,3577154559,FR +3577154560,3577155327,RE +3577155328,3577155583,FR +3577155584,3577156607,RE +3577156608,3577156863,FR +3577156864,3577158399,RE +3577158400,3577158911,FR +3577158912,3577159167,RE +3577159168,3577159423,FR +3577159424,3577159935,RE +3577159936,3577161727,FR +3577161728,3577162239,RE +3577162240,3577162751,FR +3577162752,3577163007,RE +3577163008,3577164031,FR +3577164032,3577164543,RE +3577164544,3577165311,FR +3577165312,3577165823,RE +3577165824,3577167871,FR 3577167872,3577184255,ET 3577184256,3577217023,CH 3577217024,3577282559,FR @@ -157554,17 +157661,7 @@ 3577638960,3577638967,EU 3577638968,3577639239,FR 3577639240,3577639247,EU -3577639248,3577639743,FR -3577639744,3577639767,EU -3577639768,3577639783,FR -3577639784,3577639799,EU -3577639800,3577639807,FR -3577639808,3577639839,EU -3577639840,3577639847,FR -3577639848,3577639863,EU -3577639864,3577639871,FR -3577639872,3577639935,EU -3577639936,3577640719,FR +3577639248,3577640719,FR 3577640720,3577640735,EU 3577640736,3577641151,FR 3577641152,3577641159,EU @@ -157572,8 +157669,7 @@ 3577641472,3577641983,EU 3577641984,3577642239,GB 3577642240,3577642495,EU -3577642496,3577642751,DE -3577642752,3577643007,FR +3577642496,3577643007,FR 3577643008,3577643231,NL 3577643232,3577643247,GB 3577643248,3577643263,NL @@ -157738,10 +157834,17 @@ 3579188416,3579188431,IS 3579188432,3579189071,GB 3579189072,3579189087,CH -3579189088,3579193599,GB -3579193600,3579193655,BE -3579193656,3579193663,NL -3579193664,3579193855,BE +3579189088,3579191759,GB +3579191760,3579191775,DE +3579191776,3579193599,GB +3579193600,3579193679,NL +3579193680,3579193695,GB +3579193696,3579193703,NL +3579193704,3579193711,GB +3579193712,3579193727,BE +3579193728,3579193815,NL +3579193816,3579193823,ES +3579193824,3579193855,NL 3579193856,3579194103,GB 3579194104,3579194111,US 3579194112,3579197055,GB @@ -157762,9 +157865,7 @@ 3579205632,3579205887,IE 3579205888,3579210079,GB 3579210080,3579210087,BE -3579210088,3579212287,GB -3579212288,3579212543,FR -3579212544,3579213247,GB +3579210088,3579213247,GB 3579213248,3579213311,IT 3579213312,3579221023,GB 3579221024,3579221039,FR @@ -157774,10 +157875,7 @@ 3579221104,3579221119,IT 3579221120,3579221471,GB 3579221472,3579221503,ES -3579221504,3579223071,GB -3579223072,3579223087,BE -3579223088,3579223103,FR -3579223104,3579226143,GB +3579221504,3579226143,GB 3579226144,3579226151,DE 3579226152,3579226327,GB 3579226328,3579226351,FR @@ -158000,8 +158098,12 @@ 3580112896,3580116991,LV 3580116992,3580133375,SE 3580133376,3580133887,LV -3580133888,3580138495,SE -3580138496,3580139007,HR +3580133888,3580135423,SE +3580135424,3580135531,EE +3580135532,3580135532,SE +3580135533,3580135935,EE +3580135936,3580137983,SE +3580137984,3580139007,HR 3580139008,3580150783,SE 3580150784,3580151039,NL 3580151040,3580162047,SE @@ -158104,7 +158206,9 @@ 3580641280,3580643327,FR 3580643328,3580645375,UA 3580645376,3580647423,PL -3580647424,3580649471,DE +3580647424,3580647935,GB +3580647936,3580649215,DE +3580649216,3580649471,GB 3580649472,3580651519,SE 3580651520,3580653567,NL 3580653568,3580655615,PL @@ -158237,9 +158341,7 @@ 3582173184,3582181375,GB 3582181376,3582190927,DE 3582190928,3582190931,FR -3582190932,3582190943,DE -3582190944,3582190951,PL -3582190952,3582192127,DE +3582190932,3582192127,DE 3582192128,3582192143,NL 3582192144,3582193151,DE 3582193152,3582193407,EU @@ -158325,10 +158427,8 @@ 3582314492,3582315519,JE 3582315520,3582315775,GB 3582315776,3582316543,JE -3582316544,3582316863,GB -3582316864,3582316871,JE -3582316872,3582317055,GB -3582317056,3582317311,JE +3582316544,3582316799,GB +3582316800,3582317311,JE 3582317312,3582317479,GB 3582317480,3582317487,JE 3582317488,3582317567,GB @@ -158346,17 +158446,7 @@ 3582319008,3582319103,GB 3582319104,3582319487,JE 3582319488,3582319870,GB -3582319871,3582319871,JE -3582319872,3582319879,GB -3582319880,3582319887,JE -3582319888,3582319895,GB -3582319896,3582319903,JE -3582319904,3582319927,GB -3582319928,3582319935,JE -3582319936,3582320207,GB -3582320208,3582320367,JE -3582320368,3582320375,GB -3582320376,3582320639,JE +3582319871,3582320639,JE 3582320640,3582328831,CH 3582328832,3582337023,HU 3582337024,3582341119,ES @@ -158369,7 +158459,9 @@ 3582386176,3582394367,NL 3582394368,3582402559,DE 3582402560,3582410751,PL -3582410752,3582435327,RU +3582410752,3582417919,RU +3582417920,3582418175,FI +3582418176,3582435327,RU 3582435328,3582443519,MK 3582443520,3582451711,DE 3582451712,3582459903,LU @@ -158384,12 +158476,8 @@ 3582492672,3582509055,IT 3582509056,3582517247,SA 3582517248,3582525439,PL -3582525440,3582525695,IM -3582525696,3582525743,GB -3582525744,3582525747,IM -3582525748,3582525879,GB -3582525880,3582525895,IM -3582525896,3582526059,GB +3582525440,3582525951,IM +3582525952,3582526059,GB 3582526060,3582526063,IM 3582526064,3582526135,GB 3582526136,3582526143,IM @@ -158400,19 +158488,9 @@ 3582527744,3582529023,GB 3582529024,3582530303,IM 3582530304,3582530399,GB -3582530400,3582530815,IM -3582530816,3582530951,GB -3582530952,3582530959,IM -3582530960,3582530979,GB -3582530980,3582530983,IM -3582530984,3582530991,GB -3582530992,3582530999,IM -3582531000,3582531031,GB -3582531032,3582531039,IM -3582531040,3582531135,GB -3582531136,3582531631,IM -3582531632,3582531651,GB -3582531652,3582531663,IM +3582530400,3582531583,IM +3582531584,3582531647,GB +3582531648,3582531663,IM 3582531664,3582531671,GB 3582531672,3582531695,IM 3582531696,3582531767,GB @@ -158452,7 +158530,7 @@ 3582559296,3582559487,MC 3582559488,3582559647,EU 3582559648,3582560255,MC -3582560256,3582560511,GN +3582560256,3582560511,EU 3582560512,3582560527,MC 3582560528,3582561039,EU 3582561040,3582561055,MC @@ -158515,7 +158593,17 @@ 3582570240,3582570399,GB 3582570400,3582570487,FR 3582570488,3582570751,EU -3582570752,3582571263,FR +3582570752,3582570831,FR +3582570832,3582570847,EU +3582570848,3582570863,FR +3582570864,3582570879,EU +3582570880,3582570883,FR +3582570884,3582570887,EU +3582570888,3582570895,FR +3582570896,3582570903,EU +3582570904,3582571031,FR +3582571032,3582571135,EU +3582571136,3582571263,FR 3582571264,3582571303,EU 3582571304,3582571307,CH 3582571308,3582571311,EU @@ -158596,9 +158684,7 @@ 3582656512,3582664047,ES 3582664048,3582664055,FR 3582664056,3582664703,ES -3582664704,3582668095,JO -3582668096,3582668223,US -3582668224,3582672895,JO +3582664704,3582672895,JO 3582672896,3582681087,DE 3582681088,3582689279,FR 3582689280,3582697471,DE @@ -158675,7 +158761,8 @@ 3583160320,3583161343,DE 3583161344,3583162367,GB 3583162368,3583162623,DE -3583162624,3583163391,GB +3583162624,3583162879,ZA +3583162880,3583163391,GB 3583163392,3583163903,IE 3583163904,3583164415,GB 3583164416,3583172607,PT @@ -158690,9 +158777,7 @@ 3583246336,3583254527,RU 3583254528,3583262719,GB 3583262720,3583270911,TR -3583270912,3583283743,DE -3583283744,3583283747,A2 -3583283748,3583287295,DE +3583270912,3583287295,DE 3583287296,3583295487,RU 3583295488,3583303679,ES 3583303680,3583311871,NL @@ -158928,16 +159013,9 @@ 3583741440,3583741695,GB 3583741696,3583741951,NL 3583741952,3583743487,EU -3583743488,3583743503,FR -3583743504,3583743519,EU -3583743520,3583743551,FR -3583743552,3583743615,EU -3583743616,3583743743,GB -3583743744,3583743775,EU -3583743776,3583743807,NL -3583743808,3583743975,EU -3583743976,3583743983,IE -3583743984,3583744063,EU +3583743488,3583743743,GB +3583743744,3583743999,IE +3583744000,3583744063,EU 3583744064,3583744067,FR 3583744068,3583744071,GB 3583744072,3583744095,EU @@ -158969,7 +159047,8 @@ 3583745088,3583745183,EU 3583745184,3583745279,SE 3583745280,3583745535,GB -3583745536,3583745719,EU +3583745536,3583745663,CZ +3583745664,3583745719,EU 3583745720,3583745723,FR 3583745724,3583745799,EU 3583745800,3583745807,NL @@ -159001,9 +159080,7 @@ 3583853056,3583854591,FI 3583854592,3583854871,GB 3583854872,3583854879,FI -3583854880,3583854927,GB -3583854928,3583854943,FI -3583854944,3583855103,GB +3583854880,3583855103,GB 3583855104,3583855167,US 3583855168,3583855175,FI 3583855176,3583855183,US @@ -159013,7 +159090,9 @@ 3583855208,3583855247,US 3583855248,3583855311,FI 3583855312,3583855327,US -3583855328,3583856383,FI +3583855328,3583855631,FI +3583855632,3583855639,GB +3583855640,3583856383,FI 3583856384,3583856510,SG 3583856511,3583856511,FI 3583856512,3583856590,SG @@ -159103,17 +159182,11 @@ 3584247653,3584247956,NL 3584247957,3584247957,NL 3584247958,3584253951,NL -3584253952,3584260135,AL -3584260136,3584260139,RS -3584260140,3584260151,AL -3584260152,3584260155,RS -3584260156,3584260231,AL -3584260232,3584260239,RS -3584260240,3584260247,AL +3584253952,3584260247,AL 3584260248,3584260255,RS 3584260256,3584260351,AL 3584260352,3584260607,RS -3584260608,3584260863,ME +3584260608,3584260863,US 3584260864,3584260991,RS 3584260992,3584261119,AL 3584261120,3584261375,ME @@ -159327,7 +159400,9 @@ 3585376256,3585384447,PL 3585384448,3585392639,CH 3585392640,3585400831,RU -3585400832,3585409023,A2 +3585400832,3585407999,A2 +3585408000,3585408255,FR +3585408256,3585409023,A2 3585409024,3585417215,RU 3585417216,3585425407,BE 3585425408,3585433599,ES @@ -159343,7 +159418,9 @@ 3585515520,3585523711,RU 3585523712,3585531903,LV 3585531904,3585540095,AT -3585540096,3585543295,DE +3585540096,3585542335,DE +3585542336,3585542351,TR +3585542352,3585543295,DE 3585543296,3585543303,CH 3585543304,3585544903,DE 3585544904,3585544911,CH @@ -159369,8 +159446,8 @@ 3585662976,3585671167,BY 3585671168,3585672191,SE 3585672192,3585672447,DK -3585672448,3585672703,SE -3585672704,3585673727,DK +3585672448,3585672959,SE +3585672960,3585673727,DK 3585673728,3585674239,SE 3585674240,3585675775,DK 3585675776,3585676287,SE @@ -159430,7 +159507,9 @@ 3585703168,3585703423,FR 3585703424,3585703935,A2 3585703936,3585712127,DE -3585712128,3585720319,AT +3585712128,3585716335,AT +3585716336,3585716351,DE +3585716352,3585720319,AT 3585720320,3585728511,GB 3585728512,3585736703,SE 3585736704,3585744895,HR @@ -159501,9 +159580,7 @@ 3585908992,3585909759,GF 3585909760,3585910015,GP 3585910016,3585910271,MQ -3585910272,3585910527,GP -3585910528,3585910783,FR -3585910784,3585911039,GP +3585910272,3585911039,GP 3585911040,3585911295,FR 3585911296,3585914623,GP 3585914624,3585914879,GF @@ -159933,8 +160010,10 @@ 3587236608,3587237391,GB 3587237392,3587237399,NL 3587237400,3587237407,GB -3587237408,3587237503,NL -3587237504,3587237519,GB +3587237408,3587237447,NL +3587237448,3587237455,GB +3587237456,3587237471,NL +3587237472,3587237519,GB 3587237520,3587237535,NL 3587237536,3587237551,GB 3587237552,3587237567,NL @@ -159955,7 +160034,13 @@ 3587239440,3587239447,BE 3587239448,3587239487,NL 3587239488,3587239503,GB -3587239504,3587240239,NL +3587239504,3587239607,NL +3587239608,3587239615,GB +3587239616,3587239839,NL +3587239840,3587239847,GB +3587239848,3587239911,NL +3587239912,3587239919,GB +3587239920,3587240239,NL 3587240240,3587240255,GB 3587240256,3587240271,NL 3587240272,3587240279,GB @@ -159971,7 +160056,11 @@ 3587241288,3587241295,GB 3587241296,3587241343,NL 3587241344,3587241471,GB -3587241472,3587242271,NL +3587241472,3587242063,NL +3587242064,3587242071,GB +3587242072,3587242103,NL +3587242104,3587242111,GB +3587242112,3587242271,NL 3587242272,3587242287,GB 3587242288,3587242463,NL 3587242464,3587242495,GB @@ -159979,20 +160068,33 @@ 3587242552,3587242559,GB 3587242560,3587242671,NL 3587242672,3587242679,DE -3587242680,3587243903,NL +3587242680,3587243287,NL +3587243288,3587243295,GB +3587243296,3587243335,NL +3587243336,3587243343,GB +3587243344,3587243367,NL +3587243368,3587243375,GB +3587243376,3587243407,NL +3587243408,3587243415,GB +3587243416,3587243431,NL +3587243432,3587243439,GB +3587243440,3587243455,NL +3587243456,3587243471,GB +3587243472,3587243495,NL +3587243496,3587243503,GB +3587243504,3587243903,NL 3587243904,3587243919,GB 3587243920,3587243935,NL 3587243936,3587243951,GB 3587243952,3587243967,NL -3587243968,3587243975,GB -3587243976,3587243983,NL -3587243984,3587243991,GB +3587243968,3587243991,GB 3587243992,3587244007,NL 3587244008,3587244015,GB 3587244016,3587244023,NL 3587244024,3587244031,GB 3587244032,3587260415,IT -3587260416,3587284991,DE +3587260416,3587282943,DE +3587282944,3587284991,CZ 3587284992,3587285135,EU 3587285136,3587285159,HK 3587285160,3587285216,EU @@ -160071,9 +160173,7 @@ 3587287960,3587287963,FR 3587287964,3587287967,GB 3587287968,3587287983,DE -3587287984,3587288063,IT -3587288064,3587288319,EU -3587288320,3587288575,IT +3587287984,3587288575,IT 3587288576,3587288703,AE 3587288704,3587288707,DE 3587288708,3587288759,NL @@ -160161,7 +160261,9 @@ 3587687592,3587687599,NL 3587687600,3587691399,IT 3587691400,3587691407,DE -3587691408,3587701295,IT +3587691408,3587700031,IT +3587700032,3587700039,GB +3587700040,3587701295,IT 3587701296,3587701303,FR 3587701304,3587702783,IT 3587702784,3587710975,DE @@ -160178,9 +160280,7 @@ 3587850240,3587854335,NL 3587854336,3587866623,PL 3587866624,3587874815,FR -3587874816,3587877407,DE -3587877408,3587877439,NL -3587877440,3587878527,DE +3587874816,3587878527,DE 3587878528,3587878559,AT 3587878560,3587883007,DE 3587883008,3587915775,GB @@ -160249,9 +160349,7 @@ 3588592000,3588592127,FR 3588592128,3588595199,ES 3588595200,3588595455,FR -3588595456,3588598607,ES -3588598608,3588598615,IT -3588598616,3588603903,ES +3588595456,3588603903,ES 3588603904,3588620287,SI 3588620288,3588628479,SA 3588628480,3588636671,CH @@ -160295,13 +160393,9 @@ 3589029888,3589029951,GB 3589029952,3589030015,NL 3589030016,3589030111,GB -3589030112,3589030183,NL -3589030184,3589030191,GB -3589030192,3589030207,NL -3589030208,3589030239,GB -3589030240,3589030303,NL -3589030304,3589030335,FR -3589030336,3589031423,NL +3589030112,3589030143,NL +3589030144,3589030399,FR +3589030400,3589031423,NL 3589031424,3589031935,GB 3589031936,3589034015,NL 3589034016,3589034111,GB @@ -160316,27 +160410,14 @@ 3589034240,3589034495,EU 3589034496,3589037055,ES 3589037056,3589037311,EU -3589037312,3589037343,NL -3589037344,3589037375,SE -3589037376,3589037391,NL -3589037392,3589037407,GB -3589037408,3589037423,NL -3589037424,3589037439,ES -3589037440,3589037471,GB -3589037472,3589037487,NL +3589037312,3589037487,NL 3589037488,3589037495,IT -3589037496,3589037503,CH -3589037504,3589037535,NL -3589037536,3589037551,GB -3589037552,3589037559,BE -3589037560,3589037567,NL +3589037496,3589037567,NL 3589037568,3589038079,ES 3589038080,3589040127,NL -3589040128,3589042207,GB -3589042208,3589042239,NL -3589042240,3589042271,GB -3589042272,3589042367,NL -3589042368,3589043231,GB +3589040128,3589042175,GB +3589042176,3589042431,NL +3589042432,3589043231,GB 3589043232,3589043327,NL 3589043328,3589043455,GB 3589043456,3589043711,NL @@ -160395,7 +160476,8 @@ 3589428352,3589429247,GB 3589429248,3589429503,FR 3589429504,3589430271,GB -3589430272,3589430543,FR +3589430272,3589430527,ES +3589430528,3589430543,FR 3589430544,3589430559,ES 3589430560,3589430575,GB 3589430576,3589430591,ES @@ -160485,8 +160567,8 @@ 3589583744,3589584127,NL 3589584128,3589584255,GB 3589584256,3589584271,NL -3589584272,3589584639,GB -3589584640,3589585983,NL +3589584272,3589584383,GB +3589584384,3589585983,NL 3589585984,3589586175,GB 3589586176,3589586943,NL 3589586944,3589603327,RS @@ -160609,11 +160691,11 @@ 3589722984,3589722991,GB 3589722992,3589723023,BE 3589723024,3589723031,FR -3589723032,3589723791,BE -3589723792,3589723799,FR -3589723800,3589723975,BE +3589723032,3589723975,BE 3589723976,3589723983,FR -3589723984,3589724671,BE +3589723984,3589724431,BE +3589724432,3589724439,LU +3589724440,3589724671,BE 3589724672,3589724679,FR 3589724680,3589724695,GB 3589724696,3589724703,BE @@ -160672,9 +160754,7 @@ 3589742688,3589742695,AT 3589742696,3589742975,NL 3589742976,3589743039,IE -3589743040,3589743458,NL -3589743459,3589743460,US -3589743461,3589744895,NL +3589743040,3589744895,NL 3589744896,3589744959,BE 3589744960,3589745119,NL 3589745120,3589745151,BE @@ -160702,7 +160782,8 @@ 3589828672,3589828735,SE 3589828736,3589828991,NL 3589828992,3589829119,ES -3589829120,3589829375,GB +3589829120,3589829183,GB +3589829184,3589829375,EU 3589829376,3589829503,FR 3589829504,3589829631,DE 3589829632,3589830655,GB @@ -160942,7 +161023,20 @@ 3590308560,3590308567,GB 3590308568,3590308583,IQ 3590308584,3590308607,GB -3590308608,3590308863,US +3590308608,3590308735,US +3590308736,3590308739,AF +3590308740,3590308743,GB +3590308744,3590308747,SO +3590308748,3590308767,GB +3590308768,3590308775,RW +3590308776,3590308783,ZA +3590308784,3590308799,ZW +3590308800,3590308807,GB +3590308808,3590308815,ZM +3590308816,3590308823,KE +3590308824,3590308831,SO +3590308832,3590308855,GB +3590308856,3590308863,SS 3590308864,3590309119,ZM 3590309120,3590309123,GB 3590309124,3590309127,IQ @@ -160961,7 +161055,9 @@ 3590309544,3590309551,AM 3590309552,3590309575,GB 3590309576,3590309583,US -3590309584,3590309615,GB +3590309584,3590309599,GB +3590309600,3590309607,ER +3590309608,3590309615,GB 3590309616,3590309623,UG 3590309624,3590309631,GB 3590309632,3590309647,IQ @@ -160997,7 +161093,9 @@ 3590310312,3590310319,IQ 3590310320,3590310359,GB 3590310360,3590310367,IQ -3590310368,3590310911,GB +3590310368,3590310648,GB +3590310649,3590310655,CD +3590310656,3590310911,GB 3590310912,3590310919,IQ 3590310920,3590310951,GB 3590310952,3590310959,IQ @@ -161072,23 +161170,26 @@ 3590312928,3590312943,UG 3590312944,3590312951,GB 3590312952,3590312959,NG -3590312960,3590314495,GB -3590314496,3590315007,US -3590315008,3590316031,GB -3590316032,3590316039,TZ -3590316040,3590316047,GB -3590316048,3590316055,GH -3590316056,3590316063,IQ -3590316064,3590316071,SO -3590316072,3590316079,GB -3590316080,3590316087,LB -3590316088,3590316127,GB -3590316128,3590316151,NG -3590316152,3590316287,US -3590316288,3590316351,GB -3590316352,3590316415,US -3590316416,3590316479,GB -3590316480,3590316543,SO +3590312960,3590313983,GB +3590313984,3590313991,KE +3590313992,3590314495,GB +3590314496,3590314751,US +3590314752,3590314803,GB +3590314804,3590314815,KE +3590314816,3590314847,GB +3590314848,3590314879,US +3590314880,3590314887,GB +3590314888,3590314895,NG +3590314896,3590314903,GB +3590314904,3590314911,KE +3590314912,3590314927,GB +3590314928,3590314943,NG +3590314944,3590314967,GB +3590314968,3590314975,AF +3590314976,3590314983,UG +3590314984,3590314991,CG +3590314992,3590316031,GB +3590316032,3590316543,US 3590316544,3590316559,GB 3590316560,3590316567,US 3590316568,3590316575,GA @@ -161236,25 +161337,11 @@ 3624357888,3624358143,KN 3624358144,3624359679,US 3624359680,3624360703,CW -3624360704,3624374431,US -3624374432,3624374439,GB -3624374440,3624376279,US -3624376280,3624376295,GB -3624376296,3624376335,US -3624376336,3624376343,AU -3624376344,3624376351,US -3624376352,3624376359,PT -3624376360,3624376567,US -3624376568,3624376575,NL -3624376576,3624376655,US -3624376656,3624376679,GB -3624376680,3624377879,US -3624377880,3624377887,GB -3624377888,3624377903,US -3624377904,3624377911,GB -3624377912,3624377919,US -3624377920,3624377935,ES -3624377936,3624380831,US +3624360704,3624376247,US +3624376248,3624376263,ES +3624376264,3624376279,US +3624376280,3624376303,GB +3624376304,3624380831,US 3624380832,3624380839,OM 3624380840,3624380935,US 3624380936,3624380943,SA @@ -161279,13 +161366,7 @@ 3624394752,3624435711,US 3624435712,3624443903,CA 3624443904,3624443919,US -3624443920,3624444303,CA -3624444304,3624444319,US -3624444320,3624444343,CA -3624444344,3624444351,US -3624444352,3624444359,CA -3624444360,3624444367,US -3624444368,3624452095,CA +3624443920,3624452095,CA 3624452096,3624480767,US 3624480768,3624484863,CA 3624484864,3624534015,US @@ -161329,7 +161410,13 @@ 3624549080,3624549087,A2 3624549088,3624549103,US 3624549104,3624549111,A2 -3624549112,3624549383,US +3624549112,3624549119,US +3624549120,3624549311,A2 +3624549312,3624549327,US +3624549328,3624549335,A2 +3624549336,3624549343,US +3624549344,3624549375,A2 +3624549376,3624549383,US 3624549384,3624549471,A2 3624549472,3624549479,US 3624549480,3624549583,A2 @@ -161348,9 +161435,7 @@ 3624720384,3624720895,US 3624720896,3624721919,SG 3624721920,3624730623,US -3624730624,3624781823,CA -3624781824,3624782079,SS -3624782080,3624796159,CA +3624730624,3624796159,CA 3624796160,3624820735,US 3624820736,3624820799,CY 3624820800,3624821695,US @@ -161420,9 +161505,9 @@ 3624904832,3624904895,CA 3624904896,3624905087,US 3624905088,3624905215,CA -3624905216,3624905471,US -3624905472,3624905727,CA -3624905728,3624906239,US +3624905216,3624905727,US +3624905728,3624905983,CN +3624905984,3624906239,US 3624906240,3624906495,CA 3624906496,3624906751,US 3624906752,3624906879,CA @@ -161588,12 +161673,8 @@ 3624927200,3624984575,US 3624984576,3624986367,CA 3624986368,3624986399,US -3624986400,3624991223,CA -3624991224,3624991231,US -3624991232,3624992767,CA -3624992768,3625042327,US -3625042328,3625042335,IT -3625042336,3625058303,US +3624986400,3624992767,CA +3624992768,3625058303,US 3625058304,3625091071,CA 3625091072,3625116671,US 3625116672,3625116767,CA @@ -161640,10 +161721,10 @@ 3625292672,3625292679,US 3625292680,3625292927,CA 3625292928,3625292935,US -3625292936,3625295871,CA -3625299968,3625314559,US -3625314560,3625314815,CA -3625314816,3625320447,US +3625292936,3625293607,CA +3625293608,3625293615,US +3625293616,3625295871,CA +3625295872,3625320447,US 3625320448,3625320467,CA 3625320468,3625325055,US 3625325056,3625325087,RU @@ -161784,9 +161865,7 @@ 3626213440,3626213471,GB 3626213472,3626222653,US 3626222654,3626222654,CA -3626222655,3626225407,US -3626225408,3626225663,HK -3626225664,3626227167,US +3626222655,3626227167,US 3626227168,3626227199,AR 3626227200,3626228463,US 3626228464,3626228479,AE @@ -162143,15 +162222,7 @@ 3626532288,3626532311,US 3626532312,3626532319,CA 3626532320,3626532327,US -3626532328,3626532399,CA -3626532400,3626532439,US -3626532440,3626532447,CA -3626532448,3626532519,US -3626532520,3626532535,CA -3626532536,3626532543,US -3626532544,3626532551,CA -3626532552,3626532591,US -3626532592,3626532607,CA +3626532328,3626532607,CA 3626532608,3626532615,US 3626532616,3626532623,CA 3626532624,3626532655,US @@ -162206,7 +162277,9 @@ 3627532288,3627544575,CA 3627544576,3627659263,US 3627659264,3627663359,CA -3627663360,3627679743,US +3627663360,3627669831,US +3627669832,3627669839,CA +3627669840,3627679743,US 3627679744,3627712511,CA 3627712512,3627741759,US 3627741760,3627741791,CA @@ -162398,22 +162471,8 @@ 3628963040,3629187071,US 3629187072,3629195263,CA 3629195264,3629199359,US -3629199360,3629201439,CA -3629201440,3629201447,US -3629201448,3629201463,CA -3629201464,3629201467,US -3629201468,3629201471,CA -3629201472,3629201511,US -3629201512,3629201543,CA -3629201544,3629201547,US -3629201548,3629201551,CA -3629201552,3629201559,US -3629201560,3629201563,CA -3629201564,3629201583,US -3629201584,3629201587,CA -3629201588,3629201595,US -3629201596,3629201627,CA -3629201628,3629202431,US +3629199360,3629201407,CA +3629201408,3629202431,US 3629202432,3629203199,CA 3629203200,3629318143,US 3629318144,3629326335,CA @@ -162578,8 +162637,10 @@ 3630060960,3630060975,US 3630060976,3630060983,CA 3630060984,3630060991,US -3630060992,3630061055,CA -3630061056,3630061311,US +3630060992,3630060999,CA +3630061000,3630061015,US +3630061016,3630061031,CA +3630061032,3630061311,US 3630061312,3630061359,CA 3630061360,3630061375,US 3630061376,3630062591,CA @@ -162616,9 +162677,7 @@ 3630071872,3630072063,US 3630072064,3630072223,CA 3630072224,3630072255,US -3630072256,3630074255,CA -3630074256,3630074287,US -3630074288,3630074375,CA +3630072256,3630074375,CA 3630074376,3630074383,US 3630074384,3630074415,CA 3630074416,3630074431,US @@ -162660,7 +162719,11 @@ 3630083328,3630083391,US 3630083392,3630083519,CA 3630083520,3630083583,US -3630083584,3630083839,CA +3630083584,3630083727,CA +3630083728,3630083743,US +3630083744,3630083807,CA +3630083808,3630083823,US +3630083824,3630083839,CA 3630083840,3630084159,US 3630084160,3630084351,CA 3630084352,3630084607,US @@ -162742,20 +162805,10 @@ 3630102016,3630102335,US 3630102336,3630103999,CA 3630104000,3630104063,US -3630104064,3630104575,CA -3630104576,3630104831,US -3630104832,3630105087,CA -3630105088,3630106015,US -3630106016,3630106031,CA -3630106032,3630106063,US -3630106064,3630106079,CA -3630106080,3630120959,US -3630120960,3630130175,CA -3630130176,3630136575,US -3630136576,3630136831,CA -3630136832,3630139391,US -3630139392,3630139647,CA -3630139648,3630141439,US +3630104064,3630108671,CA +3630108672,3630120959,US +3630120960,3630129151,CA +3630129152,3630141439,US 3630141440,3630144031,CA 3630144032,3630144063,US 3630144064,3630144223,CA @@ -162794,9 +162847,7 @@ 3630155584,3630155599,US 3630155600,3630155615,CA 3630155616,3630155631,US -3630155632,3630158135,CA -3630158136,3630158151,US -3630158152,3630158591,CA +3630155632,3630158591,CA 3630158592,3630158847,US 3630158848,3630158911,CA 3630158912,3630158943,US @@ -162864,7 +162915,9 @@ 3630168128,3630168191,US 3630168192,3630169087,CA 3630169088,3630169343,US -3630169344,3630170111,CA +3630169344,3630169407,CA +3630169408,3630169471,US +3630169472,3630170111,CA 3630170112,3630309375,US 3630309376,3630317567,CA 3630317568,3630328063,US @@ -162889,7 +162942,9 @@ 3630780416,3630784511,CA 3630784512,3630850047,US 3630850048,3630854143,CA -3630854144,3630897407,US +3630854144,3630866431,US +3630866432,3630870527,GT +3630870528,3630897407,US 3630897408,3630897919,CA 3630897920,3630923776,US 3630923777,3630923926,IN @@ -162967,7 +163022,9 @@ 3631663152,3631663159,CA 3631663160,3631665151,US 3631665152,3631667199,CA -3631667200,3631669247,US +3631667200,3631668479,US +3631668480,3631668991,CA +3631668992,3631669247,US 3631669248,3631677439,A2 3631677440,3631712287,US 3631712288,3631712295,AR @@ -163045,9 +163102,7 @@ 3632242944,3632243007,GB 3632243008,3632244223,US 3632244224,3632244479,CA -3632244480,3632278527,US -3632278528,3632279551,SA -3632279552,3632284879,US +3632244480,3632284879,US 3632284880,3632284895,CA 3632284896,3632289583,US 3632289584,3632289599,PH @@ -163084,9 +163139,7 @@ 3632861184,3632881663,US 3632881664,3632889855,CA 3632889856,3632898047,US -3632898048,3632898335,CA -3632898336,3632898351,US -3632898352,3632902143,CA +3632898048,3632902143,CA 3632902144,3632971775,US 3632971776,3632988159,CA 3632988160,3632994047,US @@ -163216,7 +163269,9 @@ 3633549568,3633549823,GA 3633549824,3633550335,US 3633550336,3633550431,A2 -3633550432,3633550847,US +3633550432,3633550591,US +3633550592,3633550695,A2 +3633550696,3633550847,US 3633550848,3633551359,GA 3633551360,3633552127,US 3633552128,3633552383,A2 @@ -163296,7 +163351,26 @@ 3633818800,3633818807,US 3633818808,3633818847,CA 3633818848,3633818855,US -3633818856,3633819135,CA +3633818856,3633818911,CA +3633818912,3633818919,US +3633818920,3633818939,CA +3633818940,3633818943,US +3633818944,3633818951,CA +3633818952,3633818959,US +3633818960,3633818967,CA +3633818968,3633818983,US +3633818984,3633818991,CA +3633818992,3633818999,US +3633819000,3633819071,CA +3633819072,3633819079,US +3633819080,3633819083,CA +3633819084,3633819103,US +3633819104,3633819107,CA +3633819108,3633819111,US +3633819112,3633819123,CA +3633819124,3633819127,US +3633819128,3633819131,CA +3633819132,3633819135,EG 3633819136,3633819199,IN 3633819200,3633819231,US 3633819232,3633819263,CA @@ -163430,7 +163504,9 @@ 3635186176,3635186431,US 3635186432,3635187199,US 3635187200,3635187455,US -3635187456,3635314687,US +3635187456,3635188479,US +3635188480,3635188735,US +3635188736,3635314687,US 3635314688,3635322879,CA 3635322880,3635425279,US 3635425280,3635429375,CA @@ -163438,9 +163514,7 @@ 3635466240,3635470335,CA 3635470336,3635532287,US 3635532288,3635532303,ES -3635532304,3635532543,US -3635532544,3635532799,PR -3635532800,3635533535,US +3635532304,3635533535,US 3635533536,3635533551,IN 3635533552,3635643391,US 3635643392,3635644415,JP @@ -163481,9 +163555,7 @@ 3635879936,3635892223,US 3635892224,3635895785,CA 3635895786,3635895786,US -3635895787,3635895807,CA -3635895808,3635895839,US -3635895840,3635896319,CA +3635895787,3635896319,CA 3635896320,3635904511,US 3635904512,3635912703,CA 3635912704,3635961855,US @@ -163646,19 +163718,7 @@ 3636206080,3636206335,AU 3636206336,3636266879,US 3636266880,3636266911,HK -3636266912,3636273663,US -3636273664,3636273919,CA -3636273920,3636274175,US -3636274176,3636274431,CA -3636274432,3636287487,US -3636287488,3636287743,CA -3636287744,3636291839,US -3636291840,3636292095,CA -3636292096,3636292863,US -3636292864,3636293119,CA -3636293120,3636294399,US -3636294400,3636294655,CA -3636294656,3636396031,US +3636266912,3636396031,US 3636396032,3636461567,CA 3636461568,3636609023,US 3636609024,3636610559,CA @@ -163671,8 +163731,7 @@ 3636627200,3636627455,BR 3636627456,3636628479,MX 3636628480,3636628991,PE -3636628992,3636633599,US -3636637696,3636822015,US +3636628992,3636822015,US 3636822016,3636854783,CA 3636854784,3636862975,US 3636862976,3636863231,CA @@ -163870,9 +163929,7 @@ 3637023424,3637023487,TW 3637023488,3637024767,US 3637024768,3637024895,CA -3637024896,3637025023,US -3637025024,3637025087,CA -3637025088,3637071887,US +3637024896,3637071887,US 3637071888,3637071903,AD 3637071904,3637071935,US 3637071936,3637071943,SK @@ -163918,9 +163975,7 @@ 3637520128,3637520191,US 3637520192,3637641215,CA 3637641216,3637665791,US -3637665792,3637667439,CA -3637667440,3637667518,US -3637667519,3637669887,CA +3637665792,3637669887,CA 3637669888,3637706751,US 3637706752,3637739519,CA 3637739520,3637740767,US @@ -163941,9 +163996,7 @@ 3638214872,3638214879,CK 3638214880,3638215663,US 3638215664,3638215679,GB -3638215680,3638215855,US -3638215856,3638215863,AU -3638215864,3638216735,US +3638215680,3638216735,US 3638216736,3638216743,LU 3638216744,3638219455,US 3638219456,3638219519,AU @@ -164031,16 +164084,19 @@ 3638400608,3638400639,US 3638400640,3638400767,CA 3638400768,3638401087,US -3638401088,3638401151,CA -3638401152,3638401279,CZ +3638401088,3638401279,CA 3638401280,3638509567,US -3638509568,3638528751,CA +3638509568,3638526911,CA +3638526912,3638526919,US +3638526920,3638528751,CA 3638528752,3638528759,US 3638528760,3638530047,CA 3638530048,3638530063,US 3638530064,3638530239,CA 3638530240,3638530255,US -3638530256,3638534143,CA +3638530256,3638533695,CA +3638533696,3638533703,US +3638533704,3638534143,CA 3638534144,3638697983,US 3638697984,3638706175,CA 3638706176,3638706687,A2 @@ -164048,7 +164104,9 @@ 3638706944,3638710271,A2 3638710272,3638874111,US 3638874112,3638878207,CA -3638878208,3638960383,US +3638878208,3638880511,US +3638880512,3638880767,CA +3638880768,3638960383,US 3638960384,3638960639,BR 3638960640,3638984703,US 3638984704,3638985983,GT @@ -164192,9 +164250,9 @@ 3639664640,3639668735,CA 3639668736,3639672831,US 3639672832,3639681023,CL -3639681024,3639684991,US -3639684992,3639685119,SA -3639685120,3639692032,US +3639681024,3639685055,US +3639685056,3639685063,SA +3639685064,3639692032,US 3639692033,3639692288,GB 3639692289,3639730175,US 3639730176,3639734271,CA @@ -164365,7 +164423,9 @@ 3640347648,3640347711,MX 3640347712,3640347839,US 3640347840,3640347902,MX -3640347903,3640360959,US +3640347903,3640348671,US +3640348672,3640351743,MX +3640351744,3640360959,US 3640360960,3640369151,CA 3640369152,3640410111,US 3640410112,3640418303,CA @@ -164380,7 +164440,9 @@ 3640449024,3640450047,A2 3640451072,3640459263,A2 3640459264,3640557567,US -3640557568,3640564455,CA +3640557568,3640559567,CA +3640559568,3640559575,US +3640559576,3640564455,CA 3640564456,3640564463,US 3640564464,3640565631,CA 3640565632,3640565647,US @@ -164396,14 +164458,15 @@ 3641029632,3641029695,US 3641029696,3641029711,DE 3641029712,3641029759,US -3641029760,3641061119,DE +3641029760,3641029887,AT +3641029888,3641061119,DE 3641061120,3641061199,US 3641061200,3641061207,DE -3641061208,3641061279,US -3641061280,3641061295,DE -3641061296,3641061375,US -3641061376,3641078271,DE -3641078272,3641078327,US +3641061208,3641061375,US +3641061376,3641078015,DE +3641078016,3641078079,US +3641078080,3641078143,DE +3641078144,3641078327,US 3641078328,3641078335,DE 3641078336,3641078351,US 3641078352,3641078359,DE @@ -164416,7 +164479,11 @@ 3641078520,3641078527,US 3641078528,3641085687,DE 3641085688,3641085695,CZ -3641085696,3641147519,DE +3641085696,3641115271,DE +3641115272,3641115279,US +3641115280,3641132351,DE +3641132352,3641132415,IT +3641132416,3641147519,DE 3641147520,3641147527,AT 3641147528,3641150719,DE 3641150720,3641150759,CN @@ -164462,7 +164529,7 @@ 3641242880,3641243135,ES 3641243136,3641245695,GB 3641245696,3641249791,UA -3641249792,3641262079,DE +3641253888,3641262079,DE 3641262080,3641266175,IT 3641266176,3641270271,RU 3641270272,3641278463,DE @@ -164476,9 +164543,7 @@ 3641311232,3641315327,DE 3641315328,3641319423,DK 3641319424,3641323519,RU -3641323520,3641324543,DE -3641324544,3641324799,AT -3641324800,3641331711,DE +3641323520,3641331711,DE 3641331712,3641335807,ES 3641335808,3641343999,SE 3641344000,3641352959,GB @@ -164525,7 +164590,9 @@ 3641356352,3641356415,NG 3641356416,3641356535,A2 3641356536,3641356543,CM -3641356544,3641357823,A2 +3641356544,3641356575,A2 +3641356576,3641356607,GB +3641356608,3641357823,A2 3641357824,3641357831,FR 3641357832,3641357855,A2 3641357856,3641357879,GB @@ -164533,8 +164600,7 @@ 3641357888,3641357927,GB 3641357928,3641357983,A2 3641357984,3641358015,SL -3641358016,3641358079,A2 -3641358080,3641359359,GB +3641358016,3641359359,GB 3641359360,3641359615,IQ 3641359616,3641359639,GB 3641359640,3641359871,A2 @@ -164630,8 +164696,7 @@ 3641671168,3641671423,ZW 3641671424,3641671679,GB 3641671680,3641679871,RU -3641679872,3641680127,DK -3641680128,3641681151,GB +3641679872,3641681151,EU 3641681152,3641681407,SE 3641681408,3641681663,FR 3641681664,3641683967,FR @@ -164722,7 +164787,9 @@ 3641917440,3641925631,GR 3641925632,3641933823,RU 3641933824,3641937919,GB -3641937920,3641941759,IT +3641937920,3641940415,IT +3641940416,3641940479,US +3641940480,3641941759,IT 3641941760,3641942015,EU 3641942016,3641950207,DE 3641950208,3641954303,FR @@ -164853,9 +164920,7 @@ 3642142720,3642146815,MT 3642146816,3642150911,DE 3642150912,3642163199,IT -3642163200,3642164046,NL -3642164047,3642164048,AF -3642164049,3642167295,NL +3642163200,3642167295,NL 3642167296,3642171391,RU 3642171392,3642175487,JO 3642175488,3642179583,DE @@ -164876,7 +164941,9 @@ 3642191744,3642191871,DK 3642191872,3642195967,BY 3642195968,3642204159,RU -3642204160,3642208255,GB +3642204160,3642206751,GB +3642206752,3642206975,IM +3642206976,3642208255,GB 3642208256,3642212351,RU 3642212352,3642216447,BA 3642216448,3642220543,HU @@ -164911,8 +164978,7 @@ 3642314752,3642318847,RU 3642318848,3642322943,FI 3642322944,3642327039,AT -3642327040,3642327295,PL -3642327296,3642331135,DE +3642327040,3642331135,DE 3642331136,3642335231,RU 3642335232,3642339327,DE 3642339328,3642343423,FR @@ -164989,21 +165055,28 @@ 3642552320,3642552639,UA 3642552640,3642552655,EE 3642552656,3642552663,HU -3642552664,3642552665,EE -3642552666,3642552671,UA +3642552664,3642552671,UA 3642552672,3642552687,SE 3642552688,3642552831,UA 3642552832,3642552847,EE 3642552848,3642553087,UA -3642553088,3642553101,LV -3642553102,3642553107,UA -3642553108,3642553175,LV +3642553088,3642553095,LV +3642553096,3642553107,UA +3642553108,3642553139,LV +3642553140,3642553143,UA +3642553144,3642553151,LV +3642553152,3642553155,UA +3642553156,3642553159,LV +3642553160,3642553167,UA +3642553168,3642553175,LV 3642553176,3642553183,UA -3642553184,3642553223,LV +3642553184,3642553199,LV +3642553200,3642553207,UA +3642553208,3642553223,LV 3642553224,3642553247,UA -3642553248,3642553285,LV -3642553286,3642553289,UA -3642553290,3642553303,LV +3642553248,3642553279,LV +3642553280,3642553291,UA +3642553292,3642553303,LV 3642553304,3642553311,UA 3642553312,3642553343,LV 3642553344,3642553359,RU @@ -165013,8 +165086,8 @@ 3642553380,3642553383,RU 3642553384,3642553407,UA 3642553408,3642553411,RU -3642553412,3642553415,UA -3642553416,3642553423,RU +3642553412,3642553419,UA +3642553420,3642553423,RU 3642553424,3642553431,UA 3642553432,3642553455,RU 3642553456,3642553503,UA @@ -165026,39 +165099,35 @@ 3642553552,3642553571,UA 3642553572,3642553575,RU 3642553576,3642553579,UA -3642553580,3642553589,RU -3642553590,3642553855,UA +3642553580,3642553587,RU +3642553588,3642553855,UA 3642553856,3642553923,RU 3642553924,3642553935,UA 3642553936,3642553959,RU 3642553960,3642553967,UA 3642553968,3642553983,RU 3642553984,3642554111,UA -3642554112,3642554121,RU -3642554122,3642554127,UA +3642554112,3642554119,RU +3642554120,3642554127,UA 3642554128,3642554163,RU -3642554164,3642554191,UA -3642554192,3642554193,RU -3642554194,3642554195,UA -3642554196,3642554199,RU -3642554200,3642554205,UA -3642554206,3642554207,RU -3642554208,3642554367,UA -3642554368,3642554377,LT -3642554378,3642554379,FI -3642554380,3642554383,LT -3642554384,3642554391,UA +3642554164,3642554367,UA +3642554368,3642554375,LT +3642554376,3642554391,UA 3642554392,3642554395,LT 3642554396,3642554415,UA 3642554416,3642554423,LT 3642554424,3642554427,UA 3642554428,3642554431,LT 3642554432,3642554559,UA -3642554560,3642554575,LT -3642554576,3642554623,UA -3642554624,3642554661,LV -3642554662,3642554679,UA -3642554680,3642554735,LV +3642554560,3642554571,LT +3642554572,3642554623,UA +3642554624,3642554659,LV +3642554660,3642554671,UA +3642554672,3642554675,LV +3642554676,3642554679,UA +3642554680,3642554683,LV +3642554684,3642554687,UA +3642554688,3642554735,LV 3642554736,3642554783,UA 3642554784,3642554787,LV 3642554788,3642554791,UA @@ -165078,37 +165147,34 @@ 3642554952,3642554967,DE 3642554968,3642554971,UA 3642554972,3642554975,DE -3642554976,3642554977,CZ -3642554978,3642554979,FR -3642554980,3642554983,BE +3642554976,3642554983,UA 3642554984,3642554987,EE -3642554988,3642554989,FR -3642554990,3642554991,UA +3642554988,3642554991,UA 3642554992,3642555007,DE -3642555008,3642555015,UA -3642555016,3642555017,NL -3642555018,3642555023,DE +3642555008,3642555019,UA +3642555020,3642555023,DE 3642555024,3642555039,NL -3642555040,3642555045,DE -3642555046,3642555047,UA +3642555040,3642555043,DE +3642555044,3642555047,UA 3642555048,3642555051,DE 3642555052,3642555055,UA 3642555056,3642555067,DE -3642555068,3642555069,NL -3642555070,3642555071,DE +3642555068,3642555071,UA 3642555072,3642555087,GE 3642555088,3642555103,DE 3642555104,3642555111,CZ 3642555112,3642555119,UA 3642555120,3642555135,DE 3642555136,3642555143,LT -3642555144,3642555151,UA -3642555152,3642555153,LT -3642555154,3642555199,UA +3642555144,3642555199,UA 3642555200,3642555215,LT 3642555216,3642555227,UA -3642555228,3642555289,LT -3642555290,3642555311,UA +3642555228,3642555251,LT +3642555252,3642555255,UA +3642555256,3642555259,LT +3642555260,3642555263,UA +3642555264,3642555287,LT +3642555288,3642555311,UA 3642555312,3642555359,LT 3642555360,3642555375,UA 3642555376,3642555391,LT @@ -165116,21 +165182,17 @@ 3642555424,3642555427,EE 3642555428,3642555431,PL 3642555432,3642555439,EE -3642555440,3642555445,PL -3642555446,3642555455,UA +3642555440,3642555455,UA 3642555456,3642555471,PL -3642555472,3642555483,UA -3642555484,3642555507,PL -3642555508,3642555519,UA +3642555472,3642555495,UA +3642555496,3642555503,PL +3642555504,3642555519,UA 3642555520,3642555583,PL 3642555584,3642555647,UA -3642555648,3642555683,SE -3642555684,3642555685,GB -3642555686,3642555687,EE -3642555688,3642555691,UA +3642555648,3642555679,SE +3642555680,3642555691,UA 3642555692,3642555695,SE -3642555696,3642555703,UA -3642555704,3642555707,FI +3642555696,3642555707,UA 3642555708,3642555711,SE 3642555712,3642555727,RU 3642555728,3642555735,SE @@ -165138,19 +165200,16 @@ 3642555744,3642555759,SE 3642555760,3642555783,UA 3642555784,3642555787,GB -3642555788,3642555789,UA -3642555790,3642555791,SE -3642555792,3642555795,CZ -3642555796,3642555807,UA -3642555808,3642555827,SE -3642555828,3642555839,UA +3642555788,3642555807,UA +3642555808,3642555823,SE +3642555824,3642555839,UA 3642555840,3642555903,EE 3642555904,3642556159,UA 3642556160,3642556415,LV 3642556416,3642560511,CZ -3642560512,3642561535,KG -3642561536,3642561791,US -3642561792,3642564607,KG +3642560512,3642561279,US +3642561280,3642561535,KG +3642561536,3642564607,US 3642564608,3642568703,DE 3642568704,3642572799,RU 3642572800,3642576895,IT @@ -165197,7 +165256,9 @@ 3642736640,3642740735,CZ 3642740736,3642744831,DE 3642744832,3642753023,TR -3642753024,3642858217,GB +3642753024,3642830671,GB +3642830672,3642830687,A2 +3642830688,3642858217,GB 3642858218,3642858218,EU 3642858219,3643801599,GB 3643801600,3644063743,DE @@ -165293,7 +165354,11 @@ 3645113944,3645114079,DE 3645114080,3645114095,IL 3645114096,3645116415,DE -3645116416,3645120511,GB +3645116416,3645118671,GB +3645118672,3645118695,NL +3645118696,3645118719,GB +3645118720,3645118975,NL +3645118976,3645120511,GB 3645120512,3645124607,SE 3645124608,3645128703,NL 3645128704,3645132799,GB @@ -165426,7 +165491,9 @@ 3645423616,3645431807,DE 3645431808,3645435903,BE 3645435904,3645439999,GB -3645440000,3645444095,SE +3645440000,3645441023,SE +3645441024,3645441279,GB +3645441280,3645444095,SE 3645444096,3645448191,SK 3645448192,3645454335,DE 3645454336,3645455359,RU @@ -165722,9 +165789,7 @@ 3647665408,3647722751,RU 3647722752,3647722879,BY 3647722880,3647733759,RU -3647733760,3647814855,FR -3647814856,3647814863,A2 -3647814864,3647864831,FR +3647733760,3647864831,FR 3647864832,3647875583,DE 3647875584,3647875839,CH 3647875840,3647886543,DE @@ -165739,7 +165804,9 @@ 3647916800,3647917055,SE 3647917056,3647917599,DE 3647917600,3647917615,US -3647917616,3647947263,DE +3647917616,3647922959,DE +3647922960,3647922975,GB +3647922976,3647947263,DE 3647947264,3647947519,US 3647947520,3647949567,DE 3647949568,3647949823,EU @@ -165757,19 +165824,21 @@ 3647963840,3647964159,DE 3647964160,3647964287,BE 3647964288,3647964415,DE -3647964416,3647964487,AU -3647964488,3647964495,ES -3647964496,3647964543,AU -3647964544,3647964551,ES -3647964552,3647964671,AU +3647964416,3647964487,ES +3647964488,3647964495,DE +3647964496,3647964567,ES +3647964568,3647964583,DE +3647964584,3647964599,ES +3647964600,3647964607,DE +3647964608,3647964615,ES +3647964616,3647964623,DE +3647964624,3647964671,ES 3647964672,3647964679,DE 3647964680,3647964703,ES 3647964704,3647965183,DE 3647965184,3647965695,ES 3647965696,3647966207,CH -3647966208,3647966231,GB -3647966232,3647966239,CH -3647966240,3647967231,GB +3647966208,3647967231,GB 3647967232,3647968255,BE 3647968256,3647969279,FR 3647969280,3647969791,IT @@ -165818,7 +165887,10 @@ 3647977472,3647978495,GB 3647978496,3647979007,NL 3647979008,3647979136,IT -3647979137,3647979519,DE +3647979137,3647979159,DE +3647979160,3647979167,IT +3647979168,3647979263,DE +3647979264,3647979519,IT 3647979520,3647980543,FR 3647980544,3647981055,GB 3647981056,3647981567,IE @@ -165828,25 +165900,15 @@ 3647983936,3647983999,DE 3647984000,3647984031,NL 3647984032,3647984047,DE -3647984048,3647984175,NL -3647984176,3647984191,DE -3647984192,3647984287,NL -3647984288,3647984639,DE +3647984048,3647984383,NL +3647984384,3647984639,DE 3647984640,3647985151,DK 3647985152,3647985663,BE 3647985664,3647985919,ES 3647985920,3647985935,BE 3647985936,3647986431,ES 3647986432,3647986687,FR -3647986688,3647986951,ES -3647986952,3647986959,DE -3647986960,3647987071,ES -3647987072,3647987087,DE -3647987088,3647987119,ES -3647987120,3647987127,DE -3647987128,3647987183,ES -3647987184,3647987191,DE -3647987192,3647987711,ES +3647986688,3647987711,ES 3647987712,3647988735,IT 3647988736,3647989759,BE 3647989760,3647990271,DE @@ -165854,9 +165916,7 @@ 3647990760,3647990767,IT 3647990768,3647991807,ES 3647991808,3647992831,DE -3647992832,3647993263,BE -3647993264,3647993279,FR -3647993280,3647993343,BE +3647992832,3647993343,BE 3647993344,3647993855,DE 3647993856,3647994255,BE 3647994256,3647994263,FR @@ -165884,23 +165944,15 @@ 3648033224,3648033535,EU 3648033536,3648033791,IE 3648033792,3648034047,EU -3648034048,3648034303,GB +3648034048,3648034303,IE 3648034304,3648034815,EU -3648034816,3648034847,DE -3648034848,3648034879,EU -3648034880,3648034895,IE -3648034896,3648034943,EU -3648034944,3648035007,IE -3648035008,3648035023,EU -3648035024,3648035039,IE +3648034816,3648035039,IE 3648035040,3648035071,NL -3648035072,3648036863,EU +3648035072,3648036095,EU +3648036096,3648036351,IE +3648036352,3648036863,EU 3648036864,3648040959,CZ -3648040960,3648041020,BE -3648041021,3648041022,NL -3648041023,3648041024,BE -3648041025,3648041026,FR -3648041027,3648041047,BE +3648040960,3648041047,BE 3648041048,3648041055,NL 3648041056,3648045055,BE 3648045056,3648049151,FI @@ -165915,12 +165967,13 @@ 3648077912,3648078047,BE 3648078048,3648078063,CG 3648078064,3648078079,BE -3648078080,3648078463,CG -3648078464,3648078591,BF +3648078080,3648078335,CG +3648078336,3648078591,BF 3648078592,3648079007,CG 3648079008,3648079023,BE 3648079024,3648079031,CG -3648079032,3648079071,BE +3648079032,3648079039,BE +3648079040,3648079071,TD 3648079072,3648079359,CG 3648079360,3648079615,CD 3648079616,3648079679,CG @@ -165934,7 +165987,9 @@ 3648081408,3648082175,MW 3648082176,3648082239,BE 3648082240,3648082311,NE -3648082312,3648082431,BE +3648082312,3648082367,BE +3648082368,3648082399,TD +3648082400,3648082431,BE 3648082432,3648082479,ZM 3648082480,3648084223,BE 3648084224,3648084479,CD @@ -165944,9 +165999,9 @@ 3648086016,3648090111,AT 3648090112,3648094207,RU 3648094208,3648102399,PL -3648102400,3648104703,GB -3648104704,3648104959,IE -3648104960,3648106495,GB +3648102400,3648104791,GB +3648104792,3648104799,IE +3648104800,3648106495,GB 3648106496,3648110591,DE 3648110592,3648114687,FR 3648114688,3648118783,IT @@ -165957,10 +166012,7 @@ 3648143360,3648147455,DE 3648147456,3648149503,SE 3648149504,3648150015,GB -3648150016,3648150271,SE -3648150272,3648150527,FI -3648150528,3648150783,DK -3648150784,3648151551,SE +3648150016,3648151551,SE 3648151552,3648152759,NL 3648152760,3648152767,IT 3648152768,3648155647,NL @@ -166046,7 +166098,8 @@ 3648282624,3648286719,PL 3648286720,3648290815,DE 3648290816,3648299007,RU -3648299008,3648303103,FI +3648299008,3648301055,FI +3648301056,3648303103,CZ 3648303104,3648307199,AT 3648307200,3648311295,TR 3648311296,3648315615,DK @@ -166215,9 +166268,7 @@ 3650155520,3650158591,NO 3650158592,3650162687,MT 3650162688,3650166783,RU -3650166784,3650167807,BE -3650167808,3650168063,LU -3650168064,3650170879,BE +3650166784,3650170879,BE 3650170880,3650174975,DK 3650174976,3650179071,GB 3650179072,3650183167,BG @@ -166229,7 +166280,9 @@ 3650207744,3650211839,SK 3650211840,3650215935,LV 3650220032,3650224127,SA -3650224128,3650232319,AT +3650224128,3650224895,AT +3650224896,3650225663,US +3650225664,3650232319,AT 3650232320,3650233343,RU 3650233344,3650233599,CY 3650233600,3650236415,RU @@ -166264,7 +166317,9 @@ 3650330624,3650334719,UA 3650334720,3650338815,GB 3650338816,3650342911,FR -3650342912,3650344423,CH +3650342912,3650344143,CH +3650344144,3650344151,GB +3650344152,3650344423,CH 3650344424,3650344427,GB 3650344428,3650344463,CH 3650344464,3650344479,AT @@ -166273,11 +166328,7 @@ 3650344576,3650344863,CH 3650344864,3650344879,AE 3650344880,3650344911,PT -3650344912,3650345935,CH -3650345936,3650345951,PT -3650345952,3650346207,CH -3650346208,3650346239,IM -3650346240,3650347007,CH +3650344912,3650347007,CH 3650347008,3650351103,GE 3650351104,3650351871,GB 3650351872,3650351879,NL @@ -166298,13 +166349,25 @@ 3650352000,3650352007,GB 3650352008,3650352015,IE 3650352016,3650352127,GB -3650352128,3650352279,DE +3650352128,3650352247,DE +3650352248,3650352255,CH +3650352256,3650352263,GB +3650352264,3650352271,DE +3650352272,3650352279,NL 3650352280,3650352287,IT -3650352288,3650352295,DE +3650352288,3650352295,FR 3650352296,3650352303,SE -3650352304,3650352319,DE +3650352304,3650352311,DK +3650352312,3650352319,DE 3650352320,3650352327,PL -3650352328,3650352895,DE +3650352328,3650352335,ES +3650352336,3650352343,BE +3650352344,3650352351,ZA +3650352352,3650352359,PT +3650352360,3650352367,FI +3650352368,3650352375,NL +3650352376,3650352383,HU +3650352384,3650352895,DE 3650352896,3650355199,GB 3650355200,3650359295,CH 3650359296,3650360703,NL @@ -166402,16 +166465,17 @@ 3650617344,3650682879,FI 3650682880,3650748415,PL 3650748416,3650789375,GB -3650789376,3650790143,NL -3650790144,3650879487,GB +3650789376,3650789631,NL +3650789632,3650879487,GB 3650879488,3650912255,RO 3650912256,3650912639,GB -3650912640,3650912767,FR -3650912768,3650915327,GB -3650915328,3650915337,FR -3650915338,3650915338,US -3650915339,3650915583,FR -3650915584,3650922495,GB +3650912640,3650912671,FR +3650912672,3650915327,GB +3650915328,3650915343,BE +3650915344,3650915839,FR +3650915840,3650916095,GB +3650916096,3650916351,FR +3650916352,3650922495,GB 3650922496,3650922751,US 3650922752,3650923103,GB 3650923104,3650923135,FR @@ -166421,19 +166485,12 @@ 3650930432,3650930687,DE 3650930688,3650931967,GB 3650931968,3650932223,ES -3650932224,3650935839,GB -3650935840,3650935855,FR -3650935856,3650935871,GB -3650935872,3650935903,FR -3650935904,3650935967,GB -3650935968,3650935983,FR -3650935984,3650935999,GB -3650936000,3650936063,NL -3650936064,3650939599,GB +3650932224,3650939599,GB 3650939600,3650939607,FR -3650939608,3650944511,GB -3650944512,3650944767,FR -3650944768,3650945023,GB +3650939608,3650939935,GB +3650939936,3650939967,FR +3650939968,3650944511,GB +3650944512,3650945023,FR 3650945024,3651010559,DK 3651010560,3651076095,GB 3651076096,3651077375,DE @@ -166566,7 +166623,9 @@ 3651217536,3651219455,EU 3651219456,3651219967,US 3651219968,3651220383,EU -3651220384,3651220479,GB +3651220384,3651220415,GB +3651220416,3651220431,EU +3651220432,3651220479,GB 3651220480,3651221503,EU 3651221504,3651221695,GB 3651221696,3651223551,EU @@ -166611,8 +166670,7 @@ 3651695360,3651695871,AO 3651695872,3651696127,PT 3651696128,3651696383,AO -3651696384,3651696639,PT -3651696640,3651698687,AO +3651696384,3651698687,PT 3651698688,3651702783,PL 3651702784,3651706879,GB 3651706880,3651709791,MT @@ -166710,7 +166768,9 @@ 3651919872,3651921919,NL 3651921920,3651923967,IT 3651923968,3651928063,DE -3651928064,3651932159,IT +3651928064,3651928575,IT +3651928576,3651928831,KZ +3651928832,3651932159,IT 3651932160,3651936255,RU 3651936256,3651936511,DE 3651936512,3651936767,EU @@ -166825,7 +166885,9 @@ 3652051712,3652051967,CH 3652051968,3652053631,LI 3652053632,3652053759,CH -3652053760,3652055039,LI +3652053760,3652053887,LI +3652053888,3652054015,CH +3652054016,3652055039,LI 3652055040,3652059135,NO 3652059136,3652063231,RU 3652063232,3652067327,IR @@ -166835,8 +166897,8 @@ 3652083712,3652087807,RU 3652087808,3652094463,IT 3652094464,3652094975,US -3652094976,3652095231,IT -3652095232,3652095999,US +3652094976,3652095743,IT +3652095744,3652095999,US 3652096000,3652100095,BG 3652100096,3652105471,RU 3652105472,3652105535,US @@ -166858,18 +166920,14 @@ 3652149248,3652153343,DE 3652153344,3652157439,SE 3652157440,3652165631,RU -3652165632,3652165887,MQ -3652165888,3652168703,FR -3652168704,3652168959,MQ -3652168960,3652169215,FR -3652169216,3652169471,GF -3652169472,3652169983,FR -3652169984,3652170239,MQ -3652170240,3652170495,FR +3652165632,3652169215,FR +3652169216,3652169727,GF +3652169728,3652170495,FR 3652170496,3652170751,MQ 3652170752,3652171263,FR 3652171264,3652171775,MQ -3652171776,3652173055,FR +3652171776,3652172799,RE +3652172800,3652173055,FR 3652173056,3652173311,RE 3652173312,3652173823,FR 3652173824,3652177919,AT @@ -166975,9 +167033,7 @@ 3653407400,3653407487,GB 3653407488,3653407743,US 3653407744,3653407999,AT -3653408000,3653408119,US -3653408120,3653408127,GB -3653408128,3653408255,US +3653408000,3653408255,US 3653408256,3653408271,GB 3653408272,3653408279,IQ 3653408280,3653408319,GB @@ -167026,9 +167082,7 @@ 3653410176,3653410183,KE 3653410184,3653410191,MZ 3653410192,3653410199,ZW -3653410200,3653410255,US -3653410256,3653410295,GB -3653410296,3653410303,MW +3653410200,3653410303,US 3653410304,3653410559,GB 3653410560,3653410815,IL 3653410816,3653414911,CZ @@ -167088,9 +167142,9 @@ 3653523200,3653523455,SK 3653523456,3653523615,AT 3653523616,3653523647,SK -3653523648,3653524415,AT -3653524416,3653524479,SK -3653524480,3653524551,AT +3653523648,3653523999,AT +3653524000,3653524031,SK +3653524032,3653524551,AT 3653524552,3653524559,GR 3653524560,3653524735,AT 3653524736,3653524863,SK @@ -167114,7 +167168,9 @@ 3653545984,3653550079,CH 3653550080,3653554175,MK 3653554176,3653558271,CZ -3653558272,3653566463,GB +3653558272,3653559671,GB +3653559672,3653559679,US +3653559680,3653566463,GB 3653566464,3653570559,RU 3653570560,3653574655,ES 3653574656,3653578751,CZ @@ -167200,7 +167256,9 @@ 3654607104,3654607359,DE 3654607360,3654607871,SE 3654607872,3654608127,NO -3654608128,3654608404,SE +3654608128,3654608255,SE +3654608256,3654608383,FR +3654608384,3654608404,SE 3654608405,3654608405,NO 3654608406,3654608895,SE 3654608896,3654609919,NO @@ -167250,7 +167308,9 @@ 3659628544,3659661311,JP 3659661312,3659792383,TW 3659792384,3660054527,KR -3660054528,3660578815,JP +3660054528,3660443903,JP +3660443904,3660444159,NC +3660444160,3660578815,JP 3660578816,3661103103,KR 3661103104,3663986687,CN 3663986688,3663987711,AU @@ -167279,7 +167339,6 @@ 3663998464,3663998975,TH 3663998976,3663999487,IN 3663999488,3663999743,AU -3663999744,3663999999,KH 3664000000,3664000767,AU 3664000768,3664001023,ID 3664001024,3664001279,NZ @@ -167293,7 +167352,6 @@ 3664003584,3664003839,TH 3664003840,3664004095,JP 3664004352,3664004607,MY -3664004608,3664004863,SG 3664004864,3664005119,KH 3664005120,3664005887,ID 3664005888,3664006143,MY @@ -167505,7 +167563,9 @@ 3735404544,3735420927,ID 3735420928,3735551999,HK 3735552000,3739222015,CN -3739222016,3739570175,JP +3739222016,3739555071,JP +3739555072,3739555327,US +3739555328,3739570175,JP 3739570176,3739572223,ID 3739572224,3739574271,AU 3739574272,3739680767,JP @@ -167521,9 +167581,7 @@ 3742629888,3742760959,CN 3742760960,3742892031,TW 3742892032,3742957567,TH -3742957568,3742959871,PH -3742959872,3742960127,US -3742960128,3742973951,PH +3742957568,3742973951,PH 3742973952,3742982143,SG 3742982144,3742986239,ID 3742986240,3742988287,AU @@ -167619,7 +167677,12 @@ 3755988992,3755990015,HK 3755990016,3755991039,SG 3755991040,3755999231,JP -3755999232,3756007423,LK +3755999232,3756000255,IN +3756000256,3756000767,LK +3756000768,3756002815,IN +3756002816,3756003071,LK +3756003072,3756003327,IN +3756003328,3756007423,LK 3756007424,3757047807,IN 3757047808,3757834239,CN 3757834240,3757867007,AU From 0bfaf86612eddbd586d648f3b642dac26f134fca Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Wed, 15 May 2013 03:34:37 -0400 Subject: [PATCH 39/43] Fix socks5 handshake for username/password auth The fix for bug 8117 exposed this bug, and it turns out real-world applications like Pidgin do care. Bugfix on 0.2.3.2-alpha; fixes bug 8879. --- changes/bug8879 | 5 +++++ src/or/buffers.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 changes/bug8879 diff --git a/changes/bug8879 b/changes/bug8879 new file mode 100644 index 000000000..0d2a70086 --- /dev/null +++ b/changes/bug8879 @@ -0,0 +1,5 @@ + o Major bugfixes: + - Follow the socks5 protocol when offering username/password + authentication. The fix for bug 8117 exposed this bug, and it + turns out real-world applications like Pidgin do care. Bugfix on + 0.2.3.2-alpha; fixes bug 8879. diff --git a/src/or/buffers.c b/src/or/buffers.c index d063d2313..c4c847ec8 100644 --- a/src/or/buffers.c +++ b/src/or/buffers.c @@ -1751,7 +1751,7 @@ parse_socks(const char *data, size_t datalen, socks_request_t *req, return 0; } req->replylen = 2; /* 2 bytes of response */ - req->reply[0] = 5; + req->reply[0] = 1; /* authversion == 1 */ req->reply[1] = 0; /* authentication successful */ log_debug(LD_APP, "socks5: Accepted username/password without checking."); From 31a6b4e11fd875addd1ae9f35677a3944cafb0d5 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 15 May 2013 14:34:59 -0400 Subject: [PATCH 40/43] Fix unit tests to pass after fix for #8879 --- src/test/test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/test.c b/src/test/test.c index 0e4853397..3ff39e629 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -468,7 +468,7 @@ test_socks_5_no_authenticate(void *ptr) get_options()->SafeSocks)); test_eq(5, socks->socks_version); test_eq(2, socks->replylen); - test_eq(5, socks->reply[0]); + test_eq(1, socks->reply[0]); test_eq(0, socks->reply[1]); test_eq(2, socks->usernamelen); @@ -507,7 +507,7 @@ test_socks_5_authenticate(void *ptr) get_options()->SafeSocks)); test_eq(5, socks->socks_version); test_eq(2, socks->replylen); - test_eq(5, socks->reply[0]); + test_eq(1, socks->reply[0]); test_eq(0, socks->reply[1]); test_eq(2, socks->usernamelen); @@ -547,7 +547,7 @@ test_socks_5_authenticate_with_data(void *ptr) get_options()->SafeSocks) == 1); test_eq(5, socks->socks_version); test_eq(2, socks->replylen); - test_eq(5, socks->reply[0]); + test_eq(1, socks->reply[0]); test_eq(0, socks->reply[1]); test_streq("2.2.2.2", socks->address); From bc56918e5abb48f67f31012838c689e9572eec69 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 17 May 2013 14:50:45 -0400 Subject: [PATCH 41/43] Fix bug 8846: better log message on IP version confusion --- changes/bug8846 | 4 ++++ src/or/connection_edge.c | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 changes/bug8846 diff --git a/changes/bug8846 b/changes/bug8846 new file mode 100644 index 000000000..377cc3708 --- /dev/null +++ b/changes/bug8846 @@ -0,0 +1,4 @@ + o Minor bugfixes: + - Give a less useless error message when the user asks for an IPv4 + address on an IPv6-only port, or vice versa. Fixes bug 8846; bugfix + on 0.2.4.7-alpha. diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 926fcab90..4d317d0bd 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -1769,9 +1769,10 @@ connection_ap_get_begincell_flags(entry_connection_t *ap_conn) } if (flags == BEGIN_FLAG_IPV4_NOT_OK) { - log_warn(LD_BUG, "Hey; I'm about to ask a node for a connection that I " + log_warn(LD_EDGE, "I'm about to ask a node for a connection that I " "am telling it to fulfil with neither IPv4 nor IPv6. That's " - "probably not going to work."); + "not going to work. Did you perhaps ask for an IPv6 address " + "on an IPv4Only port, or vice versa?"); } return flags; From a2e72ac04a5eabc17336fb55bd6b3a482448d3a8 Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Mon, 20 May 2013 12:46:00 -0700 Subject: [PATCH 42/43] Copy-paste description of PathBias params from man page to or.h comment --- changes/bug7982 | 3 +++ src/or/or.h | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 changes/bug7982 diff --git a/changes/bug7982 b/changes/bug7982 new file mode 100644 index 000000000..46aa53249 --- /dev/null +++ b/changes/bug7982 @@ -0,0 +1,3 @@ + o Minor bugfixes: + - Copy-paste description for PathBias params from man page into or.h + comment. Fixes bug 7982. diff --git a/src/or/or.h b/src/or/or.h index f2f27eea5..ab5e3aaad 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -4002,6 +4002,27 @@ typedef struct { /** * Parameters for path-bias detection. * @{ + * These options override the default behavior of Tor's (**currently + * experimental**) path bias detection algorithm. To try to find broken or + * misbehaving guard nodes, Tor looks for nodes where more than a certain + * fraction of circuits through that guard fail to get built. + * + * The PathBiasCircThreshold option controls how many circuits we need to + * build through a guard before we make these checks. The + * PathBiasNoticeRate, PathBiasWarnRate and PathBiasExtremeRate options + * control what fraction of circuits must succeed through a guard so we + * won't write log messages. If less than PathBiasExtremeRate circuits + * succeed *and* PathBiasDropGuards is set to 1, we disable use of that + * guard. + * + * When we have seen more than PathBiasScaleThreshold circuits through a + * guard, we scale our observations by 0.5 (governed by the consensus) so + * that new observations don't get swamped by old ones. + * + * By default, or if a negative value is provided for one of these options, + * Tor uses reasonable defaults from the networkstatus consensus document. + * If no defaults are available there, these options default to 150, .70, + * .50, .30, 0, and 300 respectively. */ int PathBiasCircThreshold; double PathBiasNoticeRate; @@ -4014,6 +4035,20 @@ typedef struct { /** * Parameters for path-bias use detection * @{ + * Similar to the above options, these options override the default behavior + * of Tor's (**currently experimental**) path use bias detection algorithm. + * + * Where as the path bias parameters govern thresholds for successfully + * building circuits, these four path use bias parameters govern thresholds + * only for circuit usage. Circuits which receive no stream usage are not + * counted by this detection algorithm. A used circuit is considered + * successful if it is capable of carrying streams or otherwise receiving + * well-formed responses to RELAY cells. + * + * By default, or if a negative value is provided for one of these options, + * Tor uses reasonable defaults from the networkstatus consensus document. + * If no defaults are available there, these options default to 20, .80, + * .60, and 100, respectively. */ int PathBiasUseThreshold; double PathBiasNoticeUseRate; From 30c06c187a0b649bd2d30edc0b16e2376f74ad9a Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 21 May 2013 13:45:21 -0400 Subject: [PATCH 43/43] Downgrade the unexpected sendme cell warnings for 0.2.4 See discussion on #8093 --- changes/bug8093.part1 | 3 +++ src/or/relay.c | 10 ++++------ 2 files changed, 7 insertions(+), 6 deletions(-) create mode 100644 changes/bug8093.part1 diff --git a/changes/bug8093.part1 b/changes/bug8093.part1 new file mode 100644 index 000000000..2450794dd --- /dev/null +++ b/changes/bug8093.part1 @@ -0,0 +1,3 @@ + o Minor features: + - Downgrade "unexpected SENDME" warnings to protocol-warn for 0.2.4, + for bug 8093. diff --git a/src/or/relay.c b/src/or/relay.c index 52ff32f0c..d57ceaacf 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -1494,9 +1494,8 @@ connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, if (layer_hint) { if (layer_hint->package_window + CIRCWINDOW_INCREMENT > CIRCWINDOW_START_MAX) { - /*XXXX024: Downgrade this back to LOG_PROTOCOL_WARN after a while*/ - log_fn(LOG_WARN, LD_PROTOCOL, - "Bug/attack: unexpected sendme cell from exit relay. " + log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, + "Unexpected sendme cell from exit relay. " "Closing circ."); return -END_CIRC_REASON_TORPROTOCOL; } @@ -1507,9 +1506,8 @@ connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, } else { if (circ->package_window + CIRCWINDOW_INCREMENT > CIRCWINDOW_START_MAX) { - /*XXXX024: Downgrade this back to LOG_PROTOCOL_WARN after a while*/ - log_fn(LOG_WARN, LD_PROTOCOL, - "Bug/attack: unexpected sendme cell from client. " + log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, + "Unexpected sendme cell from client. " "Closing circ (window %d).", circ->package_window); return -END_CIRC_REASON_TORPROTOCOL;