From 71862ed76325a97025339ea9348e2f527a4eb940 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 25 Jan 2011 17:15:22 -0500 Subject: [PATCH 01/37] Fix bug in verifying directory signatures with short digests If we got a signed digest that was shorter than the required digest length, but longer than 20 bytes, we would accept it as long enough.... and then immediately fail when we want to check it. Fixes bug 2409; bug in 0.2.2.20-alpha; found by piebeer. --- changes/bug2409 | 4 ++++ src/or/routerparse.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 changes/bug2409 diff --git a/changes/bug2409 b/changes/bug2409 new file mode 100644 index 000000000..5523458b6 --- /dev/null +++ b/changes/bug2409 @@ -0,0 +1,4 @@ + o Minor bugfixes + - Resolve a bug in verifying signatures of directory objects + with digests longer than SHA1. Bugfix on 0.2.2.20-alpha; + fixes bug 2409; found by "piebeer". diff --git a/src/or/routerparse.c b/src/or/routerparse.c index 5ceb298b8..db7161e3d 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -1088,7 +1088,7 @@ check_signature_token(const char *digest, signed_digest = tor_malloc(keysize); if (crypto_pk_public_checksig(pkey, signed_digest, keysize, tok->object_body, tok->object_size) - < DIGEST_LEN) { + < digest_len) { log_warn(LD_DIR, "Error reading %s: invalid signature.", doctype); tor_free(signed_digest); return -1; From 8b4a91c2b765325ab8d9c232a96e04a93968d63e Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Sun, 16 Jan 2011 02:14:15 +0000 Subject: [PATCH 02/37] Fix bug #2004 by demoting a log message. To quote arma: "So instead of stopping your CBT from screaming, you're just going to throw it in the closet and hope you can't hear it?" Yep. The log message can happen because at 95% point on the curve, we can be way beyond the max timeout we've seen, if the curve has few points and is shallow. Also applied Nick's rule of thumb for rewriting some other notice log messages to read like how you would explain them to a raving lunatic on #tor who was shouting at you demanding what they meant. Hopefully the changes live up to that standard. --- src/or/circuitbuild.c | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 378895955..22a831040 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -258,8 +258,9 @@ circuit_build_times_new_consensus_params(circuit_build_times_t *cbt, if (num > 0 && num != cbt->liveness.num_recent_circs) { int8_t *recent_circs; - log_notice(LD_CIRC, "Changing recent timeout size from %d to %d", - cbt->liveness.num_recent_circs, num); + log_notice(LD_CIRC, "The Tor Directory Consensus has changed how many " + "circuits we must track to detect network failures from %d " + "to %d.", cbt->liveness.num_recent_circs, num); tor_assert(cbt->liveness.timeouts_after_firsthop); @@ -592,8 +593,10 @@ circuit_build_times_shuffle_and_store_array(circuit_build_times_t *cbt, { int n = num_times; if (num_times > CBT_NCIRCUITS_TO_OBSERVE) { - log_notice(LD_CIRC, "Decreasing circuit_build_times size from %d to %d", - num_times, CBT_NCIRCUITS_TO_OBSERVE); + log_notice(LD_CIRC, "The number of circuit times that this Tor version " + "uses to calculate build times is less than the number stored " + "in your state file. Decreasing the circuit time history from " + "%d to %d.", num_times, CBT_NCIRCUITS_TO_OBSERVE); } /* This code can only be run on a compact array */ @@ -1074,7 +1077,7 @@ circuit_build_times_network_close(circuit_build_times_t *cbt, if (cbt->liveness.nonlive_timeouts == 1) { log_notice(LD_CIRC, "Tor has not observed any network activity for the past %d " - "seconds. Disabling circuit build timeout code.", + "seconds. Disabling circuit build timeout recording.", (int)(now - cbt->liveness.network_last_live)); } else { log_info(LD_CIRC, @@ -1158,7 +1161,7 @@ circuit_build_times_network_check_changed(circuit_build_times_t *cbt) control_event_buildtimeout_set(cbt, BUILDTIMEOUT_SET_EVENT_RESET); log_notice(LD_CIRC, - "Network connection speed appears to have changed. Resetting " + "Your network connection speed appears to have changed. Resetting " "timeout to %lds after %d timeouts and %d buildtimes.", tor_lround(cbt->timeout_ms/1000), timeout_count, total_build_times); @@ -1296,7 +1299,7 @@ circuit_build_times_set_timeout_worker(circuit_build_times_t *cbt) } if (max_time < INT32_MAX/2 && cbt->close_ms > 2*max_time) { - log_notice(LD_CIRC, + log_info(LD_CIRC, "Circuit build measurement period of %dms is more than twice " "the maximum build time we have ever observed. Capping it to " "%dms.", (int)cbt->close_ms, 2*max_time); From 3d1057c7124eafa91ebf054b66f94f437211ce30 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 25 Jan 2011 17:37:37 -0500 Subject: [PATCH 03/37] Add changes file for bug2004 --- changes/bug2004 | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 changes/bug2004 diff --git a/changes/bug2004 b/changes/bug2004 new file mode 100644 index 000000000..4fd6c91a0 --- /dev/null +++ b/changes/bug2004 @@ -0,0 +1,4 @@ + o Minor features + - Log less aggressively about circuit timeout changes, and improve some + other circuit timeout messages. Resolves bug 2004. + From ec2ab3800f9eb7f11c7908ec3783138b4fd21f87 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Mon, 24 Jan 2011 21:23:59 -0800 Subject: [PATCH 04/37] Fix client side of 2203: Do not count BadExits as Exits. --- src/or/routerlist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 47caebf8d..6d6386292 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -1722,7 +1722,7 @@ smartlist_choose_by_bandwidth_weights(smartlist_t *sl, double weight = 1; if (statuses) { routerstatus_t *status = smartlist_get(sl, i); - is_exit = status->is_exit; + is_exit = status->is_exit && !status->is_bad_exit; is_guard = status->is_possible_guard; is_dir = (status->dir_port != 0); if (!status->has_bandwidth) { @@ -1742,7 +1742,7 @@ smartlist_choose_by_bandwidth_weights(smartlist_t *sl, routerinfo_t *router = smartlist_get(sl, i); rs = router_get_consensus_status_by_id( router->cache_info.identity_digest); - is_exit = router->is_exit; + is_exit = router->is_exit && !router->is_bad_exit; is_guard = router->is_possible_guard; is_dir = (router->dir_port != 0); if (rs && rs->has_bandwidth) { From 7b24b8e37582470214dbb14f5f7b56954ed441f5 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Mon, 24 Jan 2011 21:35:10 -0800 Subject: [PATCH 05/37] Fix authority side of 2203. Do not add Exit bandwidth to E if BadExit is set. --- src/or/dirvote.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/or/dirvote.c b/src/or/dirvote.c index 41985d148..529b45c7d 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -50,7 +50,7 @@ static int dirvote_publish_consensus(void); static char *make_consensus_method_list(int low, int high, const char *sep); /** The highest consensus method that we currently support. */ -#define MAX_SUPPORTED_CONSENSUS_METHOD 10 +#define MAX_SUPPORTED_CONSENSUS_METHOD 11 /** Lowest consensus method that contains a 'directory-footer' marker */ #define MIN_METHOD_FOR_FOOTER 9 @@ -1693,7 +1693,7 @@ networkstatus_compute_consensus(smartlist_t *votes, const char *chosen_name = NULL; int exitsummary_disagreement = 0; int is_named = 0, is_unnamed = 0, is_running = 0; - int is_guard = 0, is_exit = 0; + int is_guard = 0, is_exit = 0, is_bad_exit = 0; int naming_conflict = 0; int n_listing = 0; int i; @@ -1819,6 +1819,8 @@ networkstatus_compute_consensus(smartlist_t *votes, is_guard = 1; else if (!strcmp(fl, "Running")) is_running = 1; + else if (!strcmp(fl, "BadExit")) + is_bad_exit = 1; } } }); @@ -1845,6 +1847,11 @@ networkstatus_compute_consensus(smartlist_t *votes, rs_out.bandwidth = median_uint32(bandwidths, num_bandwidths); } + /* Fix bug 2203: Do not count BadExit nodes as Exits for bw weights */ + if (consensus_method >= 11) { + is_exit = is_exit && !is_bad_exit; + } + if (consensus_method >= MIN_METHOD_FOR_BW_WEIGHTS) { if (rs_out.has_bandwidth) { T += rs_out.bandwidth; From 3ede94159e5e0f3aeceab225eb495051ed7b375e Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Mon, 24 Jan 2011 21:39:29 -0800 Subject: [PATCH 06/37] Add changelog entry for bug2203. --- changes/bug2203 | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 changes/bug2203 diff --git a/changes/bug2203 b/changes/bug2203 new file mode 100644 index 000000000..9cfbedf14 --- /dev/null +++ b/changes/bug2203 @@ -0,0 +1,6 @@ + o Minor bugfixes: + - Clients should not weight BadExit nodes as Exits in their node + selection. Similarly, directory authorities should not count + BadExit bandwidth as Exit bandwidth when computing bandwidth-weights. + Bugfix on 0.2.2.10-alpha; fixes bug 2203. + From ffc3caf8d57eb755cfd867d6c0d781c737e26aa1 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 25 Jan 2011 17:49:50 -0500 Subject: [PATCH 07/37] Describe consensus method 11 in dir-spec.txt --- doc/spec/dir-spec.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/spec/dir-spec.txt b/doc/spec/dir-spec.txt index eebceeafd..a883c8871 100644 --- a/doc/spec/dir-spec.txt +++ b/doc/spec/dir-spec.txt @@ -1618,6 +1618,11 @@ * If consensus-method 7 or later is in use, the params line is included in the output. + * If the conesensus method is under 11, bad exits are considered as + possible exits when computing bandwidth weights. Otherwise, if + method 11 or later is in use, any router that is determined to get + the BadExit flag doesn't count when we're calculating weights. + The signatures at the end of a consensus document are sorted in ascending order by identity digest. From 9e7691b05c77261290b10ef433bf377f02a98705 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Mon, 17 Jan 2011 06:07:31 +0000 Subject: [PATCH 08/37] Comment remaining CBT functions. Left circuit_build_times_get_bw_scale() uncommented because it is in the wrong place due to an improper bug2317 fix. It needs to be moved and renamed, as it is not a cbt parameter. --- src/or/circuitbuild.c | 71 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 22a831040..b49b7e08d 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -99,6 +99,15 @@ static int onion_append_hop(crypt_path_t **head_ptr, extend_info_t *choice); static void entry_guards_changed(void); +/** + * This function decides if CBT learning should be disabled. It returns + * true if one or more of the following four conditions are met: + * + * 1. If the cbtdisabled consensus parameter is set. + * 2. If the torrc option LearnCircuitBuildTimeout is false. + * 3. If we are a directory authority + * 4. If we fail to write circuit build time history to our state file. + */ static int circuit_build_times_disabled(void) { @@ -125,6 +134,13 @@ circuit_build_times_disabled(void) } } +/** + * Retrieve and bounds-check the cbtmaxtimeouts consensus paramter. + * + * Effect: When this many timeouts happen in the last 'cbtrecentcount' + * circuit attempts, the client should discard all of its history and + * begin learning a fresh timeout value. + */ static int32_t circuit_build_times_max_timeouts(void) { @@ -134,6 +150,15 @@ circuit_build_times_max_timeouts(void) CBT_MAX_MAX_RECENT_TIMEOUT_COUNT); } +/** + * Retrieve and bounds-check the cbtnummodes consensus paramter. + * + * Effect: This value governs how many modes to use in the weighted + * average calculation of Pareto parameter Xm. A value of 3 introduces + * some bias (2-5% of CDF) under ideal conditions, but allows for better + * performance in the event that a client chooses guard nodes of radically + * different performance characteristics. + */ static int32_t circuit_build_times_default_num_xm_modes(void) { @@ -144,6 +169,12 @@ circuit_build_times_default_num_xm_modes(void) return num; } +/** + * Retrieve and bounds-check the cbtmincircs consensus paramter. + * + * Effect: This is the minimum number of circuits to build before + * computing a timeout. + */ static int32_t circuit_build_times_min_circs_to_observe(void) { @@ -162,6 +193,12 @@ circuit_build_times_enough_to_compute(circuit_build_times_t *cbt) return cbt->total_build_times >= circuit_build_times_min_circs_to_observe(); } +/** + * Retrieve and bounds-check the cbtquantile consensus paramter. + * + * Effect: This is the position on the quantile curve to use to set the + * timeout value. It is a percent (10-99). + */ double circuit_build_times_quantile_cutoff(void) { @@ -181,6 +218,13 @@ circuit_build_times_get_bw_scale(networkstatus_t *ns) BW_MAX_WEIGHT_SCALE); } +/** + * Retrieve and bounds-check the cbtclosequantile consensus paramter. + * + * Effect: This is the position on the quantile curve to use to set the + * timeout value to use to actually close circuits. It is a percent + * (0-99). + */ static double circuit_build_times_close_quantile(void) { @@ -199,6 +243,13 @@ circuit_build_times_close_quantile(void) return param / 100.0; } +/** + * Retrieve and bounds-check the cbttestfreq consensus paramter. + * + * Effect: Describes how often in seconds to build a test circuit to + * gather timeout values. Only applies if less than 'cbtmincircs' + * have been recorded. + */ static int32_t circuit_build_times_test_frequency(void) { @@ -209,6 +260,13 @@ circuit_build_times_test_frequency(void) return num; } +/** + * Retrieve and bounds-check the cbtmintimeout consensus paramter. + * + * Effect: This is the minimum allowed timeout value in milliseconds. + * The minimum is to prevent rounding to 0 (we only check once + * per second). + */ static int32_t circuit_build_times_min_timeout(void) { @@ -219,6 +277,12 @@ circuit_build_times_min_timeout(void) return num; } +/** + * Retrieve and bounds-check the cbtinitialtimeout consensus paramter. + * + * Effect: This is the timeout value to use before computing a timeout, + * in milliseconds. + */ int32_t circuit_build_times_initial_timeout(void) { @@ -235,6 +299,13 @@ circuit_build_times_initial_timeout(void) return param; } +/** + * Retrieve and bounds-check the cbtrecentcount consensus paramter. + * + * Effect: This is the number of circuit build times to keep track of + * for deciding if we hit cbtmaxtimeouts and need to reset our state + * and learn a new timeout. + */ static int32_t circuit_build_times_recent_circuit_count(networkstatus_t *ns) { From c939c953aef7018f9581d934ef9713e50bd8df16 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 25 Jan 2011 18:07:02 -0500 Subject: [PATCH 09/37] Remove an unused function in crypto.c --- src/common/crypto.c | 11 ----------- src/common/crypto.h | 1 - 2 files changed, 12 deletions(-) diff --git a/src/common/crypto.c b/src/common/crypto.c index 5264fd808..4223b10a7 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -326,17 +326,6 @@ _crypto_new_pk_env_rsa(RSA *rsa) return env; } -/** used by tortls.c: wrap the RSA from an evp_pkey in a crypto_pk_env_t. - * returns NULL if this isn't an RSA key. */ -crypto_pk_env_t * -_crypto_new_pk_env_evp_pkey(EVP_PKEY *pkey) -{ - RSA *rsa; - if (!(rsa = EVP_PKEY_get1_RSA(pkey))) - return NULL; - return _crypto_new_pk_env_rsa(rsa); -} - /** Helper, used by tor-checkkey.c and tor-gencert.c. Return the RSA from a * crypto_pk_env_t. */ RSA * diff --git a/src/common/crypto.h b/src/common/crypto.h index 713495673..05185f3f1 100644 --- a/src/common/crypto.h +++ b/src/common/crypto.h @@ -249,7 +249,6 @@ struct evp_pkey_st; struct dh_st; struct rsa_st *_crypto_pk_env_get_rsa(crypto_pk_env_t *env); crypto_pk_env_t *_crypto_new_pk_env_rsa(struct rsa_st *rsa); -crypto_pk_env_t *_crypto_new_pk_env_evp_pkey(struct evp_pkey_st *pkey); struct evp_pkey_st *_crypto_pk_env_get_evp_pkey(crypto_pk_env_t *env, int private); struct dh_st *_crypto_dh_env_get_dh(crypto_dh_env_t *dh); From 76582442a8baefe1b469f86d35ce2d00f01a00ca Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 25 Jan 2011 18:09:38 -0500 Subject: [PATCH 10/37] Handle failing cases of DH allocation --- src/common/tortls.c | 1 + src/or/onion.c | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/src/common/tortls.c b/src/common/tortls.c index 8ad0f2f31..10f4440cb 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -808,6 +808,7 @@ tor_tls_context_new(crypto_pk_env_t *identity, unsigned int key_lifetime) goto error; { crypto_dh_env_t *dh = crypto_dh_new(DH_TYPE_TLS); + tor_assert(dh); SSL_CTX_set_tmp_dh(result->ctx, _crypto_dh_env_get_dh(dh)); crypto_dh_free(dh); } diff --git a/src/or/onion.c b/src/or/onion.c index 9aa16d274..e1d10a60b 100644 --- a/src/or/onion.c +++ b/src/or/onion.c @@ -259,6 +259,10 @@ onion_skin_server_handshake(const char *onion_skin, /*ONIONSKIN_CHALLENGE_LEN*/ } dh = crypto_dh_new(DH_TYPE_CIRCUIT); + if (!dh) { + log_warn(LD_BUG, "Couldn't allocate DH key"); + goto err; + } if (crypto_dh_get_public(dh, handshake_reply_out, DH_KEY_LEN)) { log_info(LD_GENERAL, "crypto_dh_get_public failed."); goto err; From bfde636aaddf22f68c090a76aa6387975a57c308 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 25 Jan 2011 18:19:09 -0500 Subject: [PATCH 11/37] Always treat failure to allocate an RSA key as an unrecoverable allocation error --- changes/bug2378 | 3 +++ src/common/crypto.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 changes/bug2378 diff --git a/changes/bug2378 b/changes/bug2378 new file mode 100644 index 000000000..a3ae196dc --- /dev/null +++ b/changes/bug2378 @@ -0,0 +1,3 @@ + o Minor code simplifications and refactorings + - Always treat failure to allocate an RSA key as an unrecoverable + allocation error. diff --git a/src/common/crypto.c b/src/common/crypto.c index 4223b10a7..09d7fc886 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -379,7 +379,7 @@ crypto_new_pk_env(void) RSA *rsa; rsa = RSA_new(); - if (!rsa) return NULL; + tor_assert(rsa); return _crypto_new_pk_env_rsa(rsa); } From e80bdfb4a02c6f8313baec6e9b00ec3baac3da87 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 25 Jan 2011 18:26:49 -0500 Subject: [PATCH 12/37] Correctly detect BIO_new failures This bug was noticed by cypherpunks; fixes bug 2378. Bugfix on svn commit r110. --- changes/bug2378 | 5 +++++ src/common/crypto.c | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/changes/bug2378 b/changes/bug2378 index a3ae196dc..227968869 100644 --- a/changes/bug2378 +++ b/changes/bug2378 @@ -1,3 +1,8 @@ + o Minor bugfixes + - Correctly detect failure to allocate an OpenSSL BIO. Fixes bug 2378; + found by "cypherpunks". This bug was introduced before the + first Tor release, in svn commit r110. + o Minor code simplifications and refactorings - Always treat failure to allocate an RSA key as an unrecoverable allocation error. diff --git a/src/common/crypto.c b/src/common/crypto.c index 09d7fc886..cfbc002dc 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -524,6 +524,8 @@ crypto_pk_read_private_key_from_string(crypto_pk_env_t *env, /* Create a read-only memory BIO, backed by the string 's' */ b = BIO_new_mem_buf((char*)s, (int)len); + if (!b) + return -1; if (env->key) RSA_free(env->key); @@ -584,6 +586,8 @@ crypto_pk_write_key_to_string_impl(crypto_pk_env_t *env, char **dest, tor_assert(dest); b = BIO_new(BIO_s_mem()); /* Create a memory BIO */ + if (!b) + return -1; /* Now you can treat b as if it were a file. Just use the * PEM_*_bio_* functions instead of the non-bio variants. @@ -651,6 +655,8 @@ crypto_pk_read_public_key_from_string(crypto_pk_env_t *env, const char *src, tor_assert(len Date: Tue, 25 Jan 2011 18:45:13 -0500 Subject: [PATCH 13/37] Log more about soft-hibernation --- changes/bug2181 | 4 ++++ src/or/hibernate.c | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 changes/bug2181 diff --git a/changes/bug2181 b/changes/bug2181 new file mode 100644 index 000000000..0a095488e --- /dev/null +++ b/changes/bug2181 @@ -0,0 +1,4 @@ + o Minor features + - Log a little more clearly about the times at which we're no longer + accepting new connections. Resolves bug 2181. + diff --git a/src/or/hibernate.c b/src/or/hibernate.c index 48a7ce75b..1878d5d52 100644 --- a/src/or/hibernate.c +++ b/src/or/hibernate.c @@ -783,7 +783,8 @@ hibernate_begin(hibernate_state_t new_state, time_t now) /* XXX upload rendezvous service descriptors with no intro points */ if (new_state == HIBERNATE_STATE_EXITING) { - log_notice(LD_GENERAL,"Interrupt: will shut down in %d seconds. Interrupt " + log_notice(LD_GENERAL,"Interrupt: we have stopped accepting new " + "connections, and will shut down in %d seconds. Interrupt " "again to exit now.", options->ShutdownWaitLength); shutdown_time = time(NULL) + options->ShutdownWaitLength; } else { /* soft limit reached */ @@ -940,7 +941,8 @@ consider_hibernation(time_t now) if (hibernate_state == HIBERNATE_STATE_LIVE) { if (hibernate_soft_limit_reached()) { log_notice(LD_ACCT, - "Bandwidth soft limit reached; commencing hibernation."); + "Bandwidth soft limit reached; commencing hibernation. " + "No new conncetions will be accepted"); hibernate_begin(HIBERNATE_STATE_LOWBANDWIDTH, now); } else if (accounting_enabled && now < interval_wakeup_time) { format_local_iso_time(buf,interval_wakeup_time); From 85da676108f0de765301f961bc58aebd139a5564 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 25 Jan 2011 19:07:03 -0500 Subject: [PATCH 14/37] Fix double-mark bug when failing to init transparent connection Fixes part of bug 2279. Bugfix on 0.1.2.1-alpha. --- changes/bug2279 | 5 +++++ src/or/connection.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 changes/bug2279 diff --git a/changes/bug2279 b/changes/bug2279 new file mode 100644 index 000000000..b796cda76 --- /dev/null +++ b/changes/bug2279 @@ -0,0 +1,5 @@ + o Minor bugfixes + - Avoid a double mark-for-free warning when failing to attach a + transparent proxy connection. Fixes bug 2279. Bugfix on + Tor 0.1.2.1 alpha. + diff --git a/src/or/connection.c b/src/or/connection.c index 8a21d81c5..55a9557ef 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -1178,7 +1178,8 @@ connection_handle_listener_read(connection_t *conn, int new_type) } if (connection_init_accepted_conn(newconn, conn->type) < 0) { - connection_mark_for_close(newconn); + if (! conn->marked_for_close) + connection_mark_for_close(newconn); return 0; } return 0; From 411ec3c0f8cd4786233a3bc274cb2b766d4bfe7c Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 25 Jan 2011 20:39:44 -0500 Subject: [PATCH 15/37] Add client code to detect attempts to connect to 127.0.0.1 etc We detect and reject said attempts if there is no chosen exit node or circuit: connecting to a private addr via a randomly chosen exit node will usually fail (if all exits reject private addresses), is always ill-defined (you're not asking for any particular host or service), and usually an error (you've configured all requests to go over Tor when you really wanted to configure all _remote_ requests to go over Tor). This can also help detect forwarding loop requests. Found as part of bug2279. --- changes/bug2279 | 8 ++++++++ doc/spec/control-spec.txt | 6 +++++- src/or/connection.c | 2 ++ src/or/connection_edge.c | 21 +++++++++++++++++++++ src/or/or.h | 7 +++++++ src/or/reasons.c | 5 +++++ 6 files changed, 48 insertions(+), 1 deletion(-) diff --git a/changes/bug2279 b/changes/bug2279 index b796cda76..e0c23b360 100644 --- a/changes/bug2279 +++ b/changes/bug2279 @@ -3,3 +3,11 @@ transparent proxy connection. Fixes bug 2279. Bugfix on Tor 0.1.2.1 alpha. + o Minor features + - Detect attempts at the client side to open connections to private + IP addresses (like 127.0.0.1, 10.0.0.1, and so on) with a randomly + chosen exit node. Attempts to do so are always ill-defined, generally + prevented by exit policies, and usually in error. This will also + help to detect loops in transparent proxy configurations. + + diff --git a/doc/spec/control-spec.txt b/doc/spec/control-spec.txt index 255adf00a..109624557 100644 --- a/doc/spec/control-spec.txt +++ b/doc/spec/control-spec.txt @@ -1070,7 +1070,8 @@ Reason = "MISC" / "RESOLVEFAILED" / "CONNECTREFUSED" / "EXITPOLICY" / "DESTROY" / "DONE" / "TIMEOUT" / "NOROUTE" / "HIBERNATING" / "INTERNAL"/ "RESOURCELIMIT" / - "CONNRESET" / "TORPROTOCOL" / "NOTDIRECTORY" / "END" + "CONNRESET" / "TORPROTOCOL" / "NOTDIRECTORY" / "END" / + "PRIVATE_ADDR" The "REASON" field is provided only for FAILED, CLOSED, and DETACHED events, and only if extended events are enabled (see 3.19). Clients MUST @@ -1079,7 +1080,10 @@ END (We received a RELAY_END cell from the other side of this stream.) + PRIVATE_ADDR (The client tried to connect to a private address like + 127.0.0.1 or 10.0.0.1 over Tor.) [XXXX document more. -NM] + The "REMOTE_REASON" field is provided only when we receive a RELAY_END cell, and only if extended events are enabled. It contains the actual diff --git a/src/or/connection.c b/src/or/connection.c index 55a9557ef..fd30ac8cb 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -1205,9 +1205,11 @@ connection_init_accepted_conn(connection_t *conn, uint8_t listener_type) conn->state = AP_CONN_STATE_SOCKS_WAIT; break; case CONN_TYPE_AP_TRANS_LISTENER: + TO_EDGE_CONN(conn)->is_transparent_ap = 1; conn->state = AP_CONN_STATE_CIRCUIT_WAIT; return connection_ap_process_transparent(TO_EDGE_CONN(conn)); case CONN_TYPE_AP_NATD_LISTENER: + TO_EDGE_CONN(conn)->is_transparent_ap = 1; conn->state = AP_CONN_STATE_NATD_WAIT; break; } diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 73ed9fb5c..a85943f69 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -1659,6 +1659,27 @@ connection_ap_handshake_rewrite_and_attach(edge_connection_t *conn, connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL); return -1; } + if (!conn->use_begindir && !conn->chosen_exit_name && !circ) { + tor_addr_t addr; + if (tor_addr_from_str(&addr, socks->address) >= 0 && + tor_addr_is_internal(&addr, 0)) { + /* If this is an explicit private address with no chosen exit node, + * then we really don't want to try to connect to it. That's + * probably an error. */ + if (conn->is_transparent_ap) { + log_warn(LD_NET, + "Rejecting request for anonymous connection to private " + "address %s on a TransPort or NatdPort. Possible loop " + "in your NAT rules?", safe_str_client(socks->address)); + } else { + log_warn(LD_NET, + "Rejecting SOCKS request for anonymous connection to " + "private address %s", safe_str_client(socks->address)); + } + connection_mark_unattached_ap(conn, END_STREAM_REASON_PRIVATE_ADDR); + return -1; + } + } if (!conn->use_begindir && !conn->chosen_exit_name && !circ) { /* see if we can find a suitable enclave exit */ diff --git a/src/or/or.h b/src/or/or.h index 22c8498b6..a3ec71a92 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -583,6 +583,9 @@ typedef enum { /** This is a connection on the NATD port, and the destination IP:Port was * either ill-formed or out-of-range. */ #define END_STREAM_REASON_INVALID_NATD_DEST 261 +/** The target address is in a private network (like 127.0.0.1 or 10.0.0.1); + * you don't want to do that over a randomly chosen exit */ +#define END_STREAM_REASON_PRIVATE_ADDR 262 /** Bitwise-and this value with endreason to mask out all flags. */ #define END_STREAM_REASON_MASK 511 @@ -1170,6 +1173,10 @@ typedef struct edge_connection_t { * zero, abandon the associated mapaddress. */ unsigned int chosen_exit_retries:3; + /** True iff this is an AP connection that came from a transparent or + * NATd connection */ + unsigned int is_transparent_ap:1; + /** If this is a DNSPort connection, this field holds the pending DNS * request that we're going to try to answer. */ struct evdns_server_request *dns_server_request; diff --git a/src/or/reasons.c b/src/or/reasons.c index 140155222..304ea9fcf 100644 --- a/src/or/reasons.c +++ b/src/or/reasons.c @@ -40,6 +40,8 @@ stream_end_reason_to_control_string(int reason) case END_STREAM_REASON_NET_UNREACHABLE: return "NET_UNREACHABLE"; case END_STREAM_REASON_SOCKSPROTOCOL: return "SOCKS_PROTOCOL"; + case END_STREAM_REASON_PRIVATE_ADDR: return "PRIVATE_ADDR"; + default: return NULL; } } @@ -125,6 +127,9 @@ stream_end_reason_to_socks5_response(int reason) return SOCKS5_NET_UNREACHABLE; case END_STREAM_REASON_SOCKSPROTOCOL: return SOCKS5_GENERAL_ERROR; + case END_STREAM_REASON_PRIVATE_ADDR: + return SOCKS5_GENERAL_ERROR; + default: log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Reason for ending (%d) not recognized; " From 9a4b2ec764de7ff49931a4ea561febada728d9b3 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 25 Jan 2011 17:27:25 -0500 Subject: [PATCH 16/37] Avoid sketchy integer cast in cbt code When calling circuit_build_times_shuffle_and_store_array, we were passing a uint32_t as an int. arma is pretty sure that this can't actually cause a bug, because of checks elsewhere in the code, but it's best not to pass a uint32_t as an int anyway. Found by doorss; fix on 0.2.2.4-alpha. --- 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 378895955..5c9c1acf2 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -588,9 +588,9 @@ circuit_build_times_update_state(circuit_build_times_t *cbt, static void circuit_build_times_shuffle_and_store_array(circuit_build_times_t *cbt, build_time_t *raw_times, - int num_times) + uint32_t num_times) { - int n = num_times; + uint32_t n = num_times; if (num_times > CBT_NCIRCUITS_TO_OBSERVE) { log_notice(LD_CIRC, "Decreasing circuit_build_times size from %d to %d", num_times, CBT_NCIRCUITS_TO_OBSERVE); From ebb287c75dc02689a6552ef1d5dc1358624b34dd Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 26 Jan 2011 11:13:57 -0500 Subject: [PATCH 17/37] Backport current tor-exit-notice to 0.2.1 --- contrib/tor-exit-notice.html | 80 +++++++++++++++++++----------------- 1 file changed, 42 insertions(+), 38 deletions(-) diff --git a/contrib/tor-exit-notice.html b/contrib/tor-exit-notice.html index 4ab028fc7..8b37edc3f 100644 --- a/contrib/tor-exit-notice.html +++ b/contrib/tor-exit-notice.html @@ -1,5 +1,9 @@ - + + + + This is a Tor Exit Router - + -

This is a Tor Exit Router

- -

Most likely you are accessing this website because you had some issue with -the traffic coming from this IP. This router is part of the Tor Anonymity Network, which is -dedicated to providing -privacy to people who need it most: average computer users. This -router IP should be generating no other traffic, unless it has been -compromised. +

This is a +Tor Exit Router

+Most likely you are accessing this website because you had some issue with +the traffic coming from this IP. This router is part of the Tor Anonymity Network, which is +dedicated to providing +privacy to people who need it most: average computer users. This +router IP should be generating no other traffic, unless it has been +compromised.

-
-
+ and serve it locally --> + +

+ +How Tor works +

- -Tor sees use by many +Tor sees use by many important segments of the population, including whistle blowers, journalists, Chinese dissidents skirting the Great Firewall and oppressive censorship, abuse victims, stalker targets, the US military, and law @@ -59,44 +65,41 @@ powerful networks than Tor on a daily basis. Thus, in the mind of this operator, the social need for easily accessible censorship-resistant private, anonymous communication trumps the risk of unskilled bad actors, who are almost always more easily uncovered by traditional police work than by -extensive monitoring and surveillance anyway. +extensive monitoring and surveillance anyway.

- In terms of applicable law, the best way to understand Tor is to consider it a network of routers operating as common carriers, much like the Internet backbone. However, unlike the Internet backbone routers, Tor routers explicitly do not contain identifiable routing information about the source of a packet, and no single Tor node can determine both the origin and destination -of a given transmission. +of a given transmission.

- As such, there is little the operator of this router can do to help you track the connection further. This router maintains no logs of any of the Tor traffic, so there is little that can be done to trace either legitimate or illegitimate traffic (or to filter one from the other). Attempts to -seize this router will accomplish nothing. +seize this router will accomplish nothing.

+ + +

- - - Furthermore, this machine also serves as a carrier of email, which means that its contents are further protected under the ECPA. 18 USC 2707 explicitly allows for civil remedies ($1000/account -plus legal fees) +plus legal fees) in the event of a seizure executed without good faith or probable cause (it should be clear at this point that traffic with an originating IP address of FIXME_DNS_NAME should not constitute probable cause to seize the machine). Similar considerations exist for 1st amendment content on this -machine. - -

+machine.

+ fact reported DMCA harassment... --> +

If you are a representative of a company who feels that this router is being used to violate the DMCA, please be aware that this machine does not host or contain any illegal content. Also be aware that network infrastructure @@ -106,35 +109,36 @@ href="http://www4.law.cornell.edu/uscode/html/uscode17/usc_sec_17_00000512----00 "safe harbor" provisions. In other words, you will have just as much luck sending a takedown notice to the Internet backbone providers. Please consult EFF's prepared -response for more information on this matter. +response for more information on this matter.

-

For more information, please consult the following documentation: +

For more information, please consult the following documentation:

  1. Tor Overview
  2. Tor Abuse FAQ
  3. Tor Legal FAQ
-

+

That being said, if you still have a complaint about the router, you may email the maintainer. If complaints are related to a particular service that is being abused, I will consider removing that service from my exit policy, which would prevent my router from allowing that traffic to exit through it. I can only do this on an IP+destination port basis, however. Common P2P ports are -already blocked. +already blocked.

-

You also have the option of blocking this IP address and others on +

+You also have the option of blocking this IP address and others on the Tor network if you so desire. The Tor project provides a python script to -extract all IP addresses of Tor exit nodes, and an official web service +to fetch a list of all IP addresses of Tor exit nodes that allow exiting to a +specified IP:port combination, and an official DNSRBL is also available to determine if a given IP address is actually a Tor exit server. Please be considerate when using these options. It would be unfortunate to deny all Tor users access -to your site indefinitely simply because of a few bad apples. +to your site indefinitely simply because of a few bad apples.

- From 741ef2a8cd9521d9de55afae0ebd4199aeda9eb7 Mon Sep 17 00:00:00 2001 From: Andrew Lewman Date: Wed, 26 Jan 2011 11:14:44 -0500 Subject: [PATCH 18/37] fix the links in the exit-list notice we give out to users. --- contrib/tor-exit-notice.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/contrib/tor-exit-notice.html b/contrib/tor-exit-notice.html index 8b37edc3f..de3be1744 100644 --- a/contrib/tor-exit-notice.html +++ b/contrib/tor-exit-notice.html @@ -32,7 +32,7 @@ Tor Exit Router

Most likely you are accessing this website because you had some issue with the traffic coming from this IP. This router is part of the Tor Anonymity Network, which is -dedicated to providing +dedicated to providing privacy to people who need it most: average computer users. This router IP should be generating no other traffic, unless it has been compromised.

@@ -42,19 +42,19 @@ compromised.

and serve it locally -->

- + How Tor works

-Tor sees use by many +Tor sees use by many important segments of the population, including whistle blowers, journalists, Chinese dissidents skirting the Great Firewall and oppressive censorship, abuse victims, stalker targets, the US military, and law enforcement, just to name a few. While Tor is not designed for malicious computer users, it is true that they can use the network for malicious ends. In reality however, the actual amount of abuse is quite low. This +href="https://www.torproject.org/docs/faq-abuse">abuse is quite low. This is largely because criminals and hackers have significantly better access to privacy and anonymity than do the regular users whom they prey upon. Criminals can and do DMCA "safe harbor" provisions. In other words, you will have just as much luck sending a takedown notice to the Internet backbone providers. Please consult -EFF's prepared +EFF's prepared response for more information on this matter.

For more information, please consult the following documentation:

    -
  1. Tor Overview
  2. -
  3. Tor Abuse FAQ
  4. -
  5. Tor Legal FAQ
  6. +
  7. Tor Overview
  8. +
  9. Tor Abuse FAQ
  10. +
  11. Tor Legal FAQ

@@ -134,7 +134,7 @@ the Tor network if you so desire. The Tor project provides a web service to fetch a list of all IP addresses of Tor exit nodes that allow exiting to a specified IP:port combination, and an official DNSRBL is also available to +href="https://www.torproject.org/tordnsel/dist/">DNSRBL is also available to determine if a given IP address is actually a Tor exit server. Please be considerate when using these options. It would be unfortunate to deny all Tor users access From d92a415bedd5220be05f3556007bf29ef18bd2f5 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 26 Jan 2011 11:35:24 -0500 Subject: [PATCH 19/37] Add an option to disable the block-private-addresses feature Suggested by rransom. Probably necessary for testing network mode. --- changes/bug2279 | 4 +++- src/or/config.c | 2 ++ src/or/connection_edge.c | 3 ++- src/or/or.h | 4 ++++ 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/changes/bug2279 b/changes/bug2279 index e0c23b360..d31300978 100644 --- a/changes/bug2279 +++ b/changes/bug2279 @@ -8,6 +8,8 @@ IP addresses (like 127.0.0.1, 10.0.0.1, and so on) with a randomly chosen exit node. Attempts to do so are always ill-defined, generally prevented by exit policies, and usually in error. This will also - help to detect loops in transparent proxy configurations. + help to detect loops in transparent proxy configurations. You can + disable this feature by setting "ClientRejectInternalAddresses 0" + in your torrc. diff --git a/src/or/config.c b/src/or/config.c index 8c1205de4..5aca2256f 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -195,6 +195,7 @@ static config_var_t _option_vars[] = { V(CircuitStreamTimeout, INTERVAL, "0"), V(CircuitPriorityHalflife, DOUBLE, "-100.0"), /*negative:'Use default'*/ V(ClientDNSRejectInternalAddresses, BOOL,"1"), + V(ClientRejectInternalAddresses, BOOL, "1"), V(ClientOnly, BOOL, "0"), V(ConsensusParams, STRING, NULL), V(ConnLimit, UINT, "1000"), @@ -405,6 +406,7 @@ static config_var_t testing_tor_network_defaults[] = { V(AuthDirMaxServersPerAddr, UINT, "0"), V(AuthDirMaxServersPerAuthAddr,UINT, "0"), V(ClientDNSRejectInternalAddresses, BOOL,"0"), + V(ClientRejectInternalAddresses, BOOL, "0"), V(ExitPolicyRejectPrivate, BOOL, "0"), V(V3AuthVotingInterval, INTERVAL, "5 minutes"), V(V3AuthVoteDelay, INTERVAL, "20 seconds"), diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index a85943f69..47e9035e9 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -1659,7 +1659,8 @@ connection_ap_handshake_rewrite_and_attach(edge_connection_t *conn, connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL); return -1; } - if (!conn->use_begindir && !conn->chosen_exit_name && !circ) { + if (options->ClientRejectInternalAddresses && + !conn->use_begindir && !conn->chosen_exit_name && !circ) { tor_addr_t addr; if (tor_addr_from_str(&addr, socks->address) >= 0 && tor_addr_is_internal(&addr, 0)) { diff --git a/src/or/or.h b/src/or/or.h index a3ec71a92..752de219e 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2756,6 +2756,10 @@ typedef struct { * Helps avoid some cross-site attacks. */ int ClientDNSRejectInternalAddresses; + /** If true, do not accept any requests to connect to internal addresses + * over randomly chosen exits. */ + int ClientRejectInternalAddresses; + /** The length of time that we think a consensus should be fresh. */ int V3AuthVotingInterval; /** The length of time we think it will take to distribute votes. */ From 5774ada5d29ec7abd5a258ff165755c946e97f5f Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 26 Jan 2011 11:41:33 -0500 Subject: [PATCH 20/37] Fix typo in dir-spec.txt [found by sebastian] --- doc/spec/dir-spec.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/spec/dir-spec.txt b/doc/spec/dir-spec.txt index a883c8871..c843a7c41 100644 --- a/doc/spec/dir-spec.txt +++ b/doc/spec/dir-spec.txt @@ -1618,7 +1618,7 @@ * If consensus-method 7 or later is in use, the params line is included in the output. - * If the conesensus method is under 11, bad exits are considered as + * If the consensus method is under 11, bad exits are considered as possible exits when computing bandwidth weights. Otherwise, if method 11 or later is in use, any router that is determined to get the BadExit flag doesn't count when we're calculating weights. From 1dd98891d74cbd7e4e64b0943254dc4a78fb658e Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 26 Jan 2011 11:45:37 -0500 Subject: [PATCH 21/37] Explain soft shutdown mode a little better in the accountingmax documentation --- doc/tor.1.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/tor.1.txt b/doc/tor.1.txt index c8608eb84..8fe73b026 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -900,7 +900,9 @@ is non-zero): period, or receive more than that number in the period. For example, with AccountingMax set to 1 GB, a server could send 900 MB and receive 800 MB and continue running. It will only hibernate once one of the two reaches 1 - GB. When the number of bytes is exhausted, Tor will hibernate until some + GB. When the number of bytes gets low, Tor will stop accepting new + connections and circuits. When the number of bytes + is exhausted, Tor will hibernate until some time in the next accounting period. To prevent all servers from waking at the same time, Tor will also wait until a random point in each period before waking up. If you have bandwidth cost issues, enabling hibernation From 30111a3a01993c7591eee1720b8434cb1b25c5b1 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 26 Jan 2011 12:08:52 -0500 Subject: [PATCH 22/37] add documentation for ClientRejectInternalAddresses --- doc/tor.1.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/tor.1.txt b/doc/tor.1.txt index c8608eb84..685e788d5 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -731,6 +731,12 @@ The following options are useful only for clients (that is, if 192.168.0.1). This option prevents certain browser-based attacks; don't turn it off unless you know what you're doing. (Default: 1). +**ClientRejectInternalAddresses** **0**|**1**:: + If true, Tor does not try to fulfil requests to connect to an internal + address (like 127.0.0.1 or 192.168.0.1) __unless a exit node is + specifically requested__ (for example, via a .exit hostname, a controller + request). (Default: 1). + **DownloadExtraInfo** **0**|**1**:: If true, Tor downloads and caches "extra-info" documents. These documents contain information about servers other than the information in their @@ -1267,6 +1273,7 @@ The following options are used for running a testing Tor network. AuthDirMaxServersPerAddr 0 AuthDirMaxServersPerAuthAddr 0 ClientDNSRejectInternalAddresses 0 + ClientRejectInternalAddresses 0 ExitPolicyRejectPrivate 0 V3AuthVotingInterval 5 minutes V3AuthVoteDelay 20 seconds From f2bb7b17d7453a14d2be931f3e21c51f623443e4 Mon Sep 17 00:00:00 2001 From: Sebastian Hahn Date: Fri, 28 Jan 2011 14:15:01 +0100 Subject: [PATCH 23/37] Remove country codes from EntryNodes manpage entry --- changes/bug2450 | 5 +++++ doc/tor.1.txt | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 changes/bug2450 diff --git a/changes/bug2450 b/changes/bug2450 new file mode 100644 index 000000000..b3b50ddb0 --- /dev/null +++ b/changes/bug2450 @@ -0,0 +1,5 @@ + o Minor bugfixes: + - Country codes aren't supported in EntryNodes until 0.2.3.x. + Don't mention them in the manpage. Fixes bug 2450, issue + spotted by keb and G-Lo. + diff --git a/doc/tor.1.txt b/doc/tor.1.txt index 8fe73b026..6c9636caf 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -471,7 +471,7 @@ The following options are useful only for clients (that is, if list. **EntryNodes** __node__,__node__,__...__:: - A list of identity fingerprints, nicknames, country codes and address + A list of identity fingerprints, nicknames and address patterns of nodes to use for the first hop in normal circuits. These are treated only as preferences unless StrictNodes (see below) is also set. From 895409011f20d6a08da75ac8dde44ad5e9ba1371 Mon Sep 17 00:00:00 2001 From: John Brooks Date: Thu, 6 Jan 2011 22:08:27 -0700 Subject: [PATCH 24/37] Enable ASLR and permanent DEP for Windows executables Fix for #2358 --- configure.in | 14 ++++++++++++++ src/or/main.c | 13 +++++++++++++ 2 files changed, 27 insertions(+) diff --git a/configure.in b/configure.in index 7c6a8a484..9cbfbb1ca 100644 --- a/configure.in +++ b/configure.in @@ -848,6 +848,20 @@ AC_SUBST(BINDIR) LOCALSTATEDIR=`eval echo $localstatedir` AC_SUBST(LOCALSTATEDIR) +if test "$bwin32" = true; then + # Test if the linker supports the --nxcompat and --dynamicbase options + # for Windows + save_LDFLAGS="$LDFLAGS" + LDFLAGS="-Wl,--nxcompat -Wl,--dynamicbase" + AC_MSG_CHECKING([whether the linker supports DllCharacteristics]) + AC_LINK_IFELSE([AC_LANG_PROGRAM([])], + [AC_MSG_RESULT([yes])] + [save_LDFLAGS="$save_LDFLAGS $LDFLAGS"], + [AC_MSG_RESULT([no])] + ) + LDFLAGS="$save_LDFLAGS" +fi + # Set CFLAGS _after_ all the above checks, since our warnings are stricter # than autoconf's macros like. if test "$GCC" = yes; then diff --git a/src/or/main.c b/src/or/main.c index 4b512905c..979a2bec5 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -2194,6 +2194,19 @@ tor_main(int argc, char *argv[]) } #endif +#ifdef MS_WINDOWS + /* Call SetProcessDEPPolicy to permanently enable DEP. + The function will not resolve on earlier versions of Windows, + and failure is not dangerous. */ + HMODULE hMod = GetModuleHandleA("Kernel32.dll"); + if (hMod) { + typedef BOOL (WINAPI *PSETDEP)(DWORD); + PSETDEP setdeppolicy = (PSETDEP)GetProcAddress(hMod, + "SetProcessDEPPolicy"); + if (setdeppolicy) setdeppolicy(1); /* PROCESS_DEP_ENABLE */ + } +#endif + update_approx_time(time(NULL)); tor_threads_init(); init_logging(); From f9e251ccf8c72dadf55b51ba9695d8dd5ef6d6f1 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 3 Feb 2011 14:20:08 -0500 Subject: [PATCH 25/37] changes file for ASLR/DEP build on windows --- changes/bug2358 | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 changes/bug2358 diff --git a/changes/bug2358 b/changes/bug2358 new file mode 100644 index 000000000..5e44bb9f8 --- /dev/null +++ b/changes/bug2358 @@ -0,0 +1,5 @@ + o Minor features + - Enable Address Space Layout Randomization (ASLR) and Data Execution + Prevention (DEP) by default on Windows to make it harder for + attackers to exploit vulnerabilities. Patch from John Brooks. + From e854e01d5713108cf28e99ef9bc15ea27cb30759 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 7 Feb 2011 12:40:43 -0500 Subject: [PATCH 26/37] Some cleanups to bug2279 messages/docs from rransom --- doc/tor.1.txt | 11 ++++++----- src/or/connection_edge.c | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/doc/tor.1.txt b/doc/tor.1.txt index 685e788d5..8909d8280 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -654,8 +654,9 @@ The following options are useful only for clients (that is, if can leak your location to attackers. (Default: 1) **VirtualAddrNetwork** __Address__/__bits__:: - When a controller asks for a virtual (unused) address with the MAPADDRESS - command, Tor picks an unassigned address from this range. (Default: + When Tor needs to assign a virtual (unused) address because of a MAPADDRESS + command from the controller or the AutpmapHostsOnResolve feature, Tor + picks an unassigned address from this range. (Default: 127.192.0.0/10) + + When providing proxy server service to a network of computers using a tool @@ -732,10 +733,10 @@ The following options are useful only for clients (that is, if turn it off unless you know what you're doing. (Default: 1). **ClientRejectInternalAddresses** **0**|**1**:: - If true, Tor does not try to fulfil requests to connect to an internal + If true, Tor does not try to fulfill requests to connect to an internal address (like 127.0.0.1 or 192.168.0.1) __unless a exit node is - specifically requested__ (for example, via a .exit hostname, a controller - request). (Default: 1). + specifically requested__ (for example, via a .exit hostname, or a + controller request). (Default: 1). **DownloadExtraInfo** **0**|**1**:: If true, Tor downloads and caches "extra-info" documents. These documents diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 47e9035e9..f02479fd5 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -1670,7 +1670,7 @@ connection_ap_handshake_rewrite_and_attach(edge_connection_t *conn, if (conn->is_transparent_ap) { log_warn(LD_NET, "Rejecting request for anonymous connection to private " - "address %s on a TransPort or NatdPort. Possible loop " + "address %s on a TransPort or NATDPort. Possible loop " "in your NAT rules?", safe_str_client(socks->address)); } else { log_warn(LD_NET, From fcf3eb03bd11421a799cc1793ddb0d5d3e33320b Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 7 Feb 2011 12:51:20 -0500 Subject: [PATCH 27/37] typo in manpage fix --- doc/tor.1.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tor.1.txt b/doc/tor.1.txt index 3e92ef65c..81f1ee626 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -655,7 +655,7 @@ The following options are useful only for clients (that is, if **VirtualAddrNetwork** __Address__/__bits__:: When Tor needs to assign a virtual (unused) address because of a MAPADDRESS - command from the controller or the AutpmapHostsOnResolve feature, Tor + command from the controller or the AutomapHostsOnResolve feature, Tor picks an unassigned address from this range. (Default: 127.192.0.0/10) + + From 9c2cb6fc8929cb02d500e8d276445205937ab01b Mon Sep 17 00:00:00 2001 From: Karsten Loesing Date: Thu, 3 Feb 2011 07:34:00 +0100 Subject: [PATCH 28/37] Update to the February 1 2011 Maxmind GeoLite Country database. --- changes/geoip-feb2011 | 3 + src/config/geoip | 5232 +++++++++++++++++++++++++++-------------- 2 files changed, 3413 insertions(+), 1822 deletions(-) create mode 100644 changes/geoip-feb2011 diff --git a/changes/geoip-feb2011 b/changes/geoip-feb2011 new file mode 100644 index 000000000..12eb0ac4b --- /dev/null +++ b/changes/geoip-feb2011 @@ -0,0 +1,3 @@ + o Minor features: + - Update to the February 1 2011 Maxmind GeoLite Country database. + diff --git a/src/config/geoip b/src/config/geoip index 78471a992..c06c27a32 100644 --- a/src/config/geoip +++ b/src/config/geoip @@ -1,4 +1,4 @@ -# Last updated based on January 1 2011 Maxmind GeoLite Country +# Last updated based on February 1 2011 Maxmind GeoLite Country # wget http://geolite.maxmind.com/download/geoip/database/GeoIPCountryCSV.zip # cut -d, -f3-5 < GeoIPCountryWhois.csv|sed 's/"//g' > geoip 16777216,17301503,AU @@ -43,11 +43,21 @@ 34603008,34620415,EU 34620416,34620927,SE 34620928,34621439,IT -34621440,34803711,EU +34621440,34646527,EU +34646528,34647551,DE +34647552,34664447,EU +34664448,34668543,DE +34668544,34673663,EU +34673664,34674687,DE +34674688,34803711,EU 34803712,34807807,IT -34807808,34866175,EU +34807808,34861055,EU +34861056,34865151,DE +34865152,34866175,EU 34866176,34867199,IT -34867200,35127295,EU +34867200,34880511,EU +34880512,34881535,DE +34881536,35127295,EU 35127296,35651583,GB 35651584,36700159,IT 36700160,36962303,AE @@ -291,8 +301,8 @@ 209845144,209845151,DE 209845152,209867103,US 209867104,209867111,CA -209867112,209868799,US -209868800,209869055,IR +209867112,209868927,US +209868928,209869055,IR 209869056,209965359,US 209965360,209965367,PR 209965368,209988527,US @@ -609,6 +619,7 @@ 234971136,234979327,IN 234979328,235012095,MY 235012096,235077631,AU +235077632,235143167,JP 235143168,235405311,KR 235405312,235929599,JP 235929600,236978175,CN @@ -685,7 +696,7 @@ 405831680,405843967,US 405843968,405848063,CA 405848064,405864447,PR -405864448,405917695,US +405864448,405921791,US 405921792,405929983,CA 405929984,405938175,US 405946368,405962751,CA @@ -720,9 +731,13 @@ 409862144,410124287,US 410124288,410177751,CA 410177752,410177755,US -410177756,410180643,CA +410177756,410178463,CA +410178464,410178467,US +410178468,410180643,CA 410180644,410180647,US -410180648,410180711,CA +410180648,410180695,CA +410180696,410180703,US +410180704,410180711,CA 410180712,410180715,US 410180716,410180771,CA 410180772,410180775,US @@ -730,7 +745,9 @@ 410185356,410185359,US 410185360,410185407,CA 410185408,410185411,US -410185412,410185539,CA +410185412,410185519,CA +410185520,410185523,US +410185524,410185539,CA 410185540,410185543,US 410185544,410185551,CA 410185552,410185559,US @@ -818,7 +835,7 @@ 418078720,418119679,CA 418119680,418316287,US 418316288,418320383,CA -418324480,418643967,US +418320384,418643967,US 418643968,418668543,CA 418668544,418672639,US 418672640,418676735,CA @@ -892,6 +909,7 @@ 459456512,459460607,HK 459460608,459472895,CN 459472896,459505663,AU +459505664,459538431,CN 459538432,459539455,AU 459540480,459541503,JP 459541504,459542527,IN @@ -1000,10 +1018,10 @@ 461049856,461050879,TH 461050880,461051903,NZ 461051904,461053951,AU -461053952,461062143,AP +461053952,461062143,HK 461062144,461078527,IN 461078528,461094911,FJ -461094912,461099007,AP +461094912,461099007,HK 461099008,461100031,JP 461100032,461101055,MN 461101056,461102079,IN @@ -1066,6 +1084,8 @@ 469712896,469729279,KR 469729280,469762047,IN 469762048,520093695,US +523239424,523763711,GB +523763712,524025855,IR 524288000,528482303,GB 536870912,539624567,US 539624568,539624575,IE @@ -1206,7 +1226,20 @@ 543691008,543844351,US 543844352,543844607,CH 543844608,603979775,US -603979776,620756991,AU +603980032,603980287,AU +603981824,603983871,CN +604045312,604110847,CN +604241920,604504063,CN +604504064,605028351,JP +605028352,607125503,CN +607256576,607257599,AU +607322112,607387647,CN +607649792,608174079,CN +608174080,610271231,ID +610271232,618659839,CN +618659840,619708415,TW +620625920,620691455,CN +620691456,620756991,AU 637534208,644067391,US 644067392,644067455,CA 644067456,644835071,US @@ -1278,6 +1311,9 @@ 692797440,692801535,CG 692801536,692805631,NG 692805632,692809727,ZA +692809728,692813823,MW +692817920,692822015,KE +692822016,692826111,UG 692826112,692830207,KE 692830208,692834303,NG 692834304,692838399,TZ @@ -1293,8 +1329,7 @@ 692860928,692862975,ZA 692862976,692869119,NG 692869120,692871167,TZ -692871168,692873215,ZA -692875264,692877311,ZA +692871168,692877311,ZA 692877312,692879359,GA 692879360,692881407,ZA 692881408,692883455,CG @@ -1310,6 +1345,10 @@ 692908032,692910079,BW 692910080,692912127,NG 692912128,692914175,ZM +692914176,692916223,MW +692916224,692918271,MG +692918272,692920319,ZA +692920320,692922367,MZ 692969472,692971519,TZ 692973568,692975615,MZ 692975616,692977663,EG @@ -1355,10 +1394,14 @@ 693021696,693022719,NG 693022720,693023743,KE 693023744,693026815,ZA -693026816,693027839,MU 693027840,693028863,CD 693028864,693029887,ZA 693029888,693030911,CM +693030912,693031935,NG +693031936,693032959,ZA +693032960,693033983,MW +693033984,693035007,ZA +693035008,693036031,NG 693101568,693102591,KE 693102592,693103615,CD 693103616,693104639,GN @@ -1372,7 +1415,10 @@ 693411840,693420031,NG 693420032,693428223,UG 693428224,693436415,SZ -693469184,693501951,ZA +693436416,693477375,ZA +693477376,693485567,BJ +693485568,693493759,ZW +693493760,693501951,ZA 693501952,693510143,LR 693510144,693518335,SC 693518336,693534719,ZA @@ -1765,7 +1811,12 @@ 703594496,704118783,ZA 704118784,704380927,MA 704380928,704643071,LY -704643072,721420287,AU +704643328,704643583,AU +705691648,707788799,KR +707919872,707920895,AU +707985408,708050943,CN +708771840,708837375,CN +721354752,721420287,AU 721420288,738197503,JP 738197504,771751935,US 771751936,771817471,RU @@ -1842,7 +1893,9 @@ 772888576,772890623,GB 772890624,772892671,RU 772892672,772892799,DE -772892800,772892959,GB +772892800,772892893,GB +772892894,772892927,DE +772892928,772892959,GB 772892960,772894719,DE 772894720,772896767,PL 772896768,772898815,RS @@ -1957,7 +2010,11 @@ 773156864,773165055,FR 773165056,773168127,NL 773168128,773168383,US -773168384,773169375,NL +773168384,773168511,NL +773168512,773168639,US +773168640,773169023,NL +773169024,773169151,US +773169152,773169375,NL 773169376,773169407,BE 773169408,773173247,NL 773173248,773177343,IT @@ -2160,7 +2217,13 @@ 774045696,774053887,FR 774053888,774055935,DE 774055936,774057983,US -774057984,774061567,DE +774057984,774058111,DE +774058112,774058239,BZ +774058240,774059215,DE +774059216,774059223,ZA +774059224,774061103,DE +774061104,774061111,GI +774061112,774061567,DE 774061568,774061695,BZ 774061696,774061823,DE 774061824,774061951,BZ @@ -2218,7 +2281,8 @@ 774161117,774161126,SA 774161127,774161136,SC 774161137,774161146,SG -774161147,774161151,VA +774161147,774161149,BY +774161150,774161151,VA 774161152,774161162,AQ 774161163,774161172,KR 774161173,774161182,TH @@ -2298,7 +2362,18 @@ 774161835,774161844,SB 774161845,774161854,VU 774161855,774161864,AN -774161865,774161940,VA +774161865,774161869,AR +774161870,774161874,ES +774161875,774161879,GE +774161880,774161884,RS +774161885,774161889,DE +774161890,774161894,IT +774161895,774161899,BE +774161900,774161904,FR +774161905,774161909,CZ +774161910,774161914,LT +774161915,774161917,PL +774161918,774161940,VA 774161941,774161950,LI 774161951,774168575,VA 774168576,774176767,PL @@ -2306,47 +2381,82 @@ 774184960,774193151,GB 774193152,774209535,ES 774209536,774217727,RU -774217728,774222847,GB +774217728,774217759,GB +774217760,774217791,RU +774217792,774217823,US +774217824,774217855,GB +774217856,774217919,US +774217920,774217927,CN +774217928,774217935,LK +774217936,774218239,CN +774218240,774218495,US +774218496,774218503,SG +774218504,774218519,CN +774218520,774218527,PK +774218528,774218535,CN +774218536,774218543,IN +774218544,774218551,HR +774218552,774218559,TW +774218560,774218567,GB +774218568,774218575,TW +774218576,774218591,GB +774218592,774218599,CN +774218600,774218607,PT +774218608,774219007,GB +774219008,774219263,US +774219264,774221823,GB +774221824,774222591,CN +774222592,774222847,GB 774222848,774222863,UA 774222864,774222879,TR 774222880,774222911,GB -774222912,774222975,CN -774222976,774223103,GB +774222912,774223039,CN +774223040,774223071,IT +774223072,774223103,CN 774223104,774223119,UA 774223120,774223135,TR -774223136,774223359,GB +774223136,774223151,GB +774223152,774223167,TR +774223168,774223231,CN +774223232,774223359,GB 774223360,774223375,UA -774223376,774223951,GB +774223376,774223391,GB +774223392,774223423,TR +774223424,774223951,GB 774223952,774223959,RU 774223960,774223967,CN 774223968,774223975,RU -774223976,774223983,PK +774223976,774223983,US 774223984,774223991,RU 774223992,774223999,PK 774224000,774224007,IT 774224008,774224039,CN -774224040,774224127,GB +774224040,774224047,CA +774224048,774224055,CN +774224056,774224079,IN +774224080,774224127,GB 774224128,774224159,BE 774224160,774224223,US 774224224,774224255,LT 774224256,774224383,GB 774224384,774224399,UA 774224400,774224407,LT -774224408,774224415,PK +774224408,774224415,GB 774224416,774224423,IT -774224424,774224431,GB -774224432,774224439,CN -774224440,774224447,GB +774224424,774224447,GB 774224448,774224511,CN 774224512,774224767,GB 774224768,774224831,CN 774224832,774224847,UA 774224848,774224863,RU -774224864,774225023,GB -774225024,774225055,CN +774224864,774224999,GB +774225000,774225007,CN +774225008,774225015,PK +774225016,774225023,CN +774225024,774225055,US 774225056,774225151,RU 774225152,774225343,GB -774225344,774225351,PK +774225344,774225351,CN 774225352,774225359,LT 774225360,774225375,UA 774225376,774225391,RU @@ -2355,20 +2465,19 @@ 774225536,774225567,CN 774225568,774225599,RU 774225600,774225615,PK -774225616,774225631,GB -774225632,774225647,CN +774225616,774225647,TR 774225648,774225663,UA 774225664,774225671,LK -774225672,774225679,US +774225672,774225679,IT 774225680,774225687,CN -774225688,774225695,CA +774225688,774225695,GB 774225696,774225703,RU -774225704,774225711,GB -774225712,774225719,PK -774225720,774225791,GB +774225704,774225711,LK +774225712,774225791,GB 774225792,774225807,UA 774225808,774225823,RU -774225824,774225919,US +774225824,774225855,US +774225856,774225919,IN 774225920,774234111,UA 774234112,774242303,IT 774242304,774258687,RU @@ -2459,8 +2568,7 @@ 778305536,778371071,IR 778371072,778436607,RU 778436608,778502143,RO -778502144,778534911,GR -778534912,778567679,CY +778502144,778567679,GR 778567680,778633215,TR 778633216,778698751,FR 778698752,778764287,TR @@ -2642,7 +2750,11 @@ 781545472,781549567,CZ 781549568,781553663,RU 781553664,781557759,PL -781557760,781561855,UA +781557760,781565951,UA +781565952,781570047,CH +781570048,781574143,PL +781574144,781578239,RU +781578240,781582335,PL 781582336,781590527,UA 781590528,781598719,SI 781598720,781615103,UA @@ -2708,7 +2820,7 @@ 782664192,782664447,DK 782664448,782664959,FR 782664960,782665471,NL -782665472,782680063,GB +782665472,782680063,LU 782680064,782696447,RU 782696448,782712831,DE 782712832,782729215,RU @@ -2718,7 +2830,11 @@ 783048704,783056895,RU 783056896,783065087,UA 783065088,783073279,RU -783073280,783081471,UA +783073280,783089663,UA +783089664,783106047,RU +783130624,783134719,UA +783134720,783138815,RU +783138816,783142911,CZ 783155200,783157247,PL 783157248,783159295,RU 783159296,783161343,CZ @@ -2734,6 +2850,20 @@ 783181824,783185919,RU 783185920,783187967,UA 783187968,783190015,NL +783190016,783194111,RO +783194112,783196159,CZ +783196160,783198207,UA +783198208,783202303,PL +783202304,783204351,VG +783204352,783206399,RU +783206400,783208447,RO +783208448,783210495,PL +783210496,783212543,UA +783212544,783216639,PL +783216640,783218687,UA +783218688,783220735,RU +783220736,783222783,SK +783222784,783226879,UA 783286272,783417343,GR 783417344,783548415,BE 783548416,783679487,RU @@ -2818,7 +2948,9 @@ 784334848,784465919,FR 784465920,784596991,SE 784596992,784728063,TR -784728064,784859135,CY +784728064,784760831,GR +784760832,784859135,CY +784859136,785121279,UA 785121280,785252351,PL 785252352,785383423,AT 785383424,785448959,GB @@ -2831,19 +2963,91 @@ 785842176,785907711,DE 785907712,785973247,BY 785973248,786038783,MK +786038784,786104319,FR +786104320,786169855,UA +786169856,786235391,AT +786235392,786300927,TR +786300928,786366463,ES +786366464,786431999,DE +786432000,786563071,IR +786563072,786565119,GB +786565120,786567167,NO +786567168,786569215,CZ +786569216,786571263,NO +786571264,786575359,ES +786575360,786577407,GB +786577408,786579455,NL +786579456,786581503,RU +786581504,786583551,GB +786583552,786585599,DE +786585600,786587647,NL +786587648,786589695,RU +786589696,786591743,FR +786591744,786593791,DE +786593792,786595839,GB +786595840,786597887,FR +786597888,786599935,EE +786599936,786601983,ES +786601984,786604031,SE +786604032,786606079,RU +786606080,786608127,GB +786608128,786610175,IT +786610176,786612223,IM +786612224,786614271,GR +786614272,786616319,IT +786616320,786618367,KG +786618368,786620415,GB +786620416,786622463,RU +786622464,786624511,NL +786624512,786626559,RU +786626560,786628607,GB +786628608,786630655,IT +786630656,786632703,CZ +786632704,786634751,FR +786634752,786636799,RU +786636800,786638847,PL +786638848,786640895,ES +786640896,786642943,GB +786642944,786644991,GR +786644992,786649087,SE +786649088,786651135,FR +786651136,786655231,DE +786655232,786657279,PL 787218432,787234815,GB 787234816,787251199,SE 787251200,787267583,RU 787267584,787283967,DE +787283968,787300351,RU +787300352,787316735,BG +787316736,787333119,GB +787333120,787349503,DE 787480576,787513343,SA 787513344,787546111,RS 787546112,787578879,RU 787578880,787611647,AM 787611648,787644415,RU 787644416,787677183,PL -787709952,787742719,RU +787677184,787679231,CZ +787679232,787681279,CY +787681280,787683327,IQ +787683328,787685375,NL +787685376,787687423,IT +787687424,787689471,NL +787689472,787691519,CZ +787691520,787693567,IT +787693568,787695615,SK +787695616,787697663,RU +787697664,787701759,DE +787701760,787703807,NL +787703808,787705855,AT +787707904,787709951,DE +787709952,787724287,RU +787724288,787726335,UA +787726336,787742719,RU 787742720,787775487,NL 787775488,787808255,DE +787808256,787841023,IR +787873792,787906559,SE 788004864,788013055,GB 788013056,788021247,IR 788021248,788029439,SI @@ -2855,6 +3059,14 @@ 788078592,788086783,NL 788086784,788094975,BG 788094976,788103167,IR +788103168,788111359,HU +788111360,788119551,LT +788119552,788127743,GB +788127744,788135935,NO +788135936,788144127,UA +788144128,788160511,RU +788160512,788168703,UA +788168704,788176895,RU 788267008,788271103,SE 788271104,788275199,DE 788275200,788279295,AL @@ -2871,7 +3083,22 @@ 788324352,788328447,CZ 788328448,788332543,RU 788332544,788336639,BG -788336640,788340735,DE +788336640,788337151,DE +788337152,788337407,GB +788337408,788340735,DE +788340736,788344831,ES +788344832,788353023,DE +788353024,788357119,PS +788357120,788361215,CZ +788361216,788365311,DE +788365312,788369407,IQ +788369408,788373503,DE +788373504,788377599,BE +788377600,788381695,CH +788381696,788385791,SE +788385792,788389887,PL +788389888,788393983,ES +788393984,788398079,DE 788398080,788400127,SI 788400128,788402175,SE 788402176,788406271,RU @@ -2886,7 +3113,8 @@ 788426752,788428799,GB 788428800,788430847,DE 788430848,788432895,BG -788432896,788434943,DE +788432896,788432927,FR +788432928,788434943,DE 788434944,788436991,SI 788436992,788439039,IT 788439040,788441087,RU @@ -2919,10 +3147,21 @@ 788498432,788500479,RU 788500480,788502527,AL 788502528,788504575,IE +788504576,788506623,FR +788506624,788508671,CH +788508672,788510719,AT +788510720,788512767,ES +788512768,788514815,FI +788514816,788516863,FR +788516864,788518911,LT +788518912,788520959,IR +788520960,788523007,CZ +788523008,788525055,KZ +788525056,788527103,IT +788527104,788529151,GB 788529152,805306367,CA 805306368,822083583,US -822083584,822083839,AP -822083840,822084095,AU +822083584,822084095,AU 822084608,822085631,ID 822085632,822087679,AU 822087680,822089727,JP @@ -3054,8 +3293,8 @@ 839061760,839062271,US 839062272,839064063,CA 839064064,843055103,US -843055104,844103679,CA -844103680,844627967,US +843055104,843644927,CA +843644928,844627967,US 847249408,855638015,US 855638016,872415231,GB 872415232,889192447,US @@ -3108,6 +3347,7 @@ 979410944,979419135,HK 979419136,979435519,AU 979435520,979468287,TH +979468288,979501055,BD 979501056,979566591,JP 979566592,979599359,TW 979599360,979763199,CN @@ -3139,6 +3379,7 @@ 982745088,982753279,AF 982753280,982755327,JP 982755328,982757375,BD +982757376,982759423,KR 982759424,982761471,ID 982761472,982777855,JP 982777856,983039999,KR @@ -3237,7 +3478,7 @@ 1022820352,1022885887,CN 1022885888,1023148031,TW 1023148032,1023213567,CN -1023229952,1023238143,KR +1023213568,1023238143,KR 1023238144,1023246335,ID 1023246336,1023279103,CN 1023279104,1023311871,IN @@ -3255,6 +3496,7 @@ 1023737856,1023770623,ID 1023770624,1023778815,PK 1023778816,1023787007,KR +1023787008,1023791103,AF 1023791104,1023795199,NC 1023795200,1023803391,JP 1023803392,1023852543,MY @@ -3479,8 +3721,7 @@ 1026408448,1026416639,JP 1026416640,1026420735,ID 1026420736,1026422783,JP -1026422784,1026423295,AU -1026423296,1026424831,AP +1026422784,1026424831,AU 1026424832,1026490367,JP 1026490368,1026523135,TH 1026523136,1026539519,CN @@ -3514,12 +3755,14 @@ 1039466496,1039499263,JP 1039499264,1039507455,AP 1039507456,1039511551,LK +1039511552,1039515647,KR 1039515648,1039523839,JP 1039523840,1039532031,KR 1039532032,1039597567,IN 1039597568,1039613951,ID 1039613952,1039638527,KR 1039638528,1039642623,TW +1039642624,1039646719,BD 1039646720,1039654911,KR 1039654912,1039663103,IN 1039663104,1040187391,KR @@ -3556,7 +3799,9 @@ 1040467824,1040467935,EU 1040467936,1040467951,FR 1040467952,1040467967,EU -1040467968,1040468223,FR +1040467968,1040468095,FR +1040468096,1040468159,EU +1040468160,1040468223,FR 1040468224,1040468231,EU 1040468232,1040468255,FR 1040468256,1040468263,EU @@ -3566,14 +3811,14 @@ 1040468480,1040468607,EU 1040468608,1040468735,DE 1040468736,1040468767,NL -1040468768,1040468799,EU -1040468800,1040468831,NL -1040468832,1040468863,EU -1040468864,1040468991,NL +1040468768,1040468815,EU +1040468816,1040468831,NL +1040468832,1040468927,EU +1040468928,1040468991,NL 1040468992,1040469055,EU 1040469056,1040469071,FR -1040469072,1040469087,EU -1040469088,1040469183,FR +1040469072,1040469119,EU +1040469120,1040469183,FR 1040469184,1040469247,EU 1040469248,1040469279,FR 1040469280,1040469311,EU @@ -3591,11 +3836,8 @@ 1040470336,1040470399,EU 1040470400,1040470431,DE 1040470432,1040471487,EU -1040471488,1040471551,NL -1040471552,1040472991,EU -1040472992,1040473087,NL -1040473088,1040473855,EU -1040473856,1040474111,NL +1040471488,1040471519,NL +1040471520,1040474111,EU 1040474112,1040482303,CZ 1040482304,1040515071,BE 1040515072,1040547839,GB @@ -3678,9 +3920,7 @@ 1041698264,1041698271,GB 1041698272,1041698711,FR 1041698712,1041698719,GB -1041698720,1041698807,FR -1041698808,1041698815,GB -1041698816,1041699287,FR +1041698720,1041699287,FR 1041699288,1041699295,GB 1041699296,1041699583,FR 1041699584,1041699591,IT @@ -3694,8 +3934,8 @@ 1041699768,1041699807,GB 1041699808,1041700423,FR 1041700424,1041700535,GB -1041700536,1041700543,FR -1041700544,1041700607,GB +1041700536,1041700551,FR +1041700552,1041700607,GB 1041700608,1041700983,FR 1041700984,1041700991,GB 1041700992,1041701175,FR @@ -3708,12 +3948,14 @@ 1041701568,1041701631,GB 1041701632,1041701647,FR 1041701648,1041701663,GB -1041701664,1041702167,FR +1041701664,1041701967,FR +1041701968,1041701975,GB +1041701976,1041702167,FR 1041702168,1041702175,GB 1041702176,1041702306,FR 1041702307,1041702311,GB -1041702312,1041702327,FR -1041702328,1041702335,GB +1041702312,1041702319,FR +1041702320,1041702335,GB 1041702336,1041702351,FR 1041702352,1041702399,GB 1041702400,1041703575,FR @@ -3784,9 +4026,9 @@ 1041706112,1041706143,GB 1041706144,1041706191,FR 1041706192,1041706239,GB -1041706240,1041706271,FR -1041706272,1041706287,GB -1041706288,1041706359,FR +1041706240,1041706263,FR +1041706264,1041706271,GB +1041706272,1041706359,FR 1041706360,1041706367,GB 1041706368,1041706447,FR 1041706448,1041706463,GB @@ -3818,7 +4060,9 @@ 1041707680,1041707687,GB 1041707688,1041707807,FR 1041707808,1041707815,GB -1041707816,1041707895,FR +1041707816,1041707871,FR +1041707872,1041707887,GB +1041707888,1041707895,FR 1041707896,1041707903,GB 1041707904,1041707999,FR 1041708000,1041708007,GB @@ -3918,9 +4162,9 @@ 1041714072,1041714079,GB 1041714080,1041714095,FR 1041714096,1041714103,GB -1041714104,1041714523,FR -1041714524,1041714527,GB -1041714528,1041714775,FR +1041714104,1041714631,FR +1041714632,1041714687,GB +1041714688,1041714775,FR 1041714776,1041714783,GB 1041714784,1041714831,FR 1041714832,1041714847,GB @@ -4082,7 +4326,9 @@ 1041722536,1041722551,GB 1041722552,1041722567,FR 1041722568,1041722623,GB -1041722624,1041722703,FR +1041722624,1041722639,FR +1041722640,1041722655,GB +1041722656,1041722703,FR 1041722704,1041722711,GB 1041722712,1041722743,FR 1041722744,1041722751,GB @@ -4167,9 +4413,7 @@ 1041727091,1041727091,GB 1041727092,1041727167,FR 1041727168,1041727231,GB -1041727232,1041727239,FR -1041727240,1041727247,GB -1041727248,1041727303,FR +1041727232,1041727303,FR 1041727304,1041727311,GB 1041727312,1041727999,FR 1041728000,1041728047,GB @@ -4201,9 +4445,7 @@ 1041730240,1041730247,GB 1041730248,1041730639,FR 1041730640,1041730655,GB -1041730656,1041731935,FR -1041731936,1041731967,GB -1041731968,1041731983,FR +1041730656,1041731983,FR 1041731984,1041732031,GB 1041732032,1041732055,FR 1041732056,1041732063,GB @@ -4271,7 +4513,9 @@ 1041737072,1041737119,GB 1041737120,1041737127,FR 1041737128,1041737151,GB -1041737152,1041737247,FR +1041737152,1041737167,FR +1041737168,1041737183,GB +1041737184,1041737247,FR 1041737248,1041737279,GB 1041737280,1041737295,FR 1041737296,1041737303,GB @@ -4282,8 +4526,8 @@ 1041737424,1041737455,FR 1041737456,1041737463,GB 1041737464,1041737487,FR -1041737488,1041737503,GB -1041737504,1041737583,FR +1041737488,1041737495,GB +1041737496,1041737583,FR 1041737584,1041737599,GB 1041737600,1041737607,FR 1041737608,1041737615,GB @@ -4318,8 +4562,8 @@ 1041738576,1041738583,FR 1041738584,1041738591,GB 1041738592,1041738599,FR -1041738600,1041738607,GB -1041738608,1041738703,FR +1041738600,1041738615,GB +1041738616,1041738703,FR 1041738704,1041738711,GB 1041738712,1041738735,FR 1041738736,1041738751,GB @@ -4362,8 +4606,8 @@ 1041740672,1041740687,GB 1041740688,1041740703,FR 1041740704,1041740719,GB -1041740720,1041741071,FR -1041741072,1041741087,GB +1041740720,1041741063,FR +1041741064,1041741087,GB 1041741088,1041741135,FR 1041741136,1041741151,GB 1041741152,1041741239,FR @@ -4451,8 +4695,8 @@ 1041745032,1041745063,FR 1041745064,1041745071,GB 1041745072,1041745127,FR -1041745128,1041745143,GB -1041745144,1041745167,FR +1041745128,1041745151,GB +1041745152,1041745167,FR 1041745168,1041745191,GB 1041745192,1041745247,FR 1041745248,1041745279,GB @@ -4596,7 +4840,9 @@ 1041758032,1041758039,GB 1041758040,1041758095,FR 1041758096,1041758111,GB -1041758112,1041758255,FR +1041758112,1041758159,FR +1041758160,1041758167,GB +1041758168,1041758255,FR 1041758256,1041758271,GB 1041758272,1041758319,FR 1041758320,1041758343,GB @@ -4758,7 +5004,11 @@ 1042893312,1042894079,NL 1042894080,1042894143,DE 1042894144,1042894175,SE -1042894176,1042894559,NL +1042894176,1042894335,NL +1042894336,1042894355,FR +1042894356,1042894431,NL +1042894432,1042894463,PT +1042894464,1042894559,NL 1042894560,1042894591,DE 1042894592,1042894655,FR 1042894656,1042894783,NL @@ -5786,9 +6036,7 @@ 1045018560,1045018623,GB 1045018624,1045018751,ES 1045018752,1045020159,GB -1045020160,1045020255,ES -1045020256,1045020287,GB -1045020288,1045020655,ES +1045020160,1045020655,ES 1045020656,1045020671,GB 1045020672,1045037055,NO 1045037056,1045119231,GR @@ -6081,8 +6329,7 @@ 1046331744,1046331775,DE 1046331776,1046331839,EU 1046331840,1046331871,DE -1046331872,1046331903,EU -1046331904,1046332159,NL +1046331872,1046332159,EU 1046332160,1046332415,FR 1046332416,1046333439,EU 1046333440,1046333695,DE @@ -6096,11 +6343,9 @@ 1046337536,1046338047,DE 1046338048,1046339839,EU 1046339840,1046340095,FR -1046340096,1046340607,EU -1046340608,1046340863,NL -1046340864,1046342143,EU -1046342144,1046342719,NL -1046342720,1046343423,EU +1046340096,1046342143,EU +1046342144,1046342655,NL +1046342656,1046343423,EU 1046343424,1046343935,NL 1046343936,1046344959,EU 1046344960,1046345215,DE @@ -6453,11 +6698,11 @@ 1046543616,1046544127,GB 1046544128,1046544383,DE 1046544384,1046560767,IT -1046560768,1046569831,ES -1046569832,1046569839,GB -1046569840,1046570591,ES +1046560768,1046570591,ES 1046570592,1046570607,CH -1046570608,1046585343,ES +1046570608,1046572007,ES +1046572008,1046572015,DK +1046572016,1046585343,ES 1046585344,1046609919,NO 1046609920,1046675455,IT 1046675456,1046708223,ES @@ -6660,8 +6905,8 @@ 1047566508,1047566511,CH 1047566512,1047566519,DE 1047566520,1047566527,CH -1047566528,1047566535,DE -1047566536,1047566539,CH +1047566528,1047566531,DE +1047566532,1047566539,CH 1047566540,1047566543,DE 1047566544,1047566547,CH 1047566548,1047566559,DE @@ -6673,15 +6918,19 @@ 1047566872,1047566879,CH 1047566880,1047566891,DE 1047566892,1047566903,CH -1047566904,1047566947,DE +1047566904,1047566911,DE +1047566912,1047566915,CH +1047566916,1047566947,DE 1047566948,1047566951,AT 1047566952,1047566963,DE 1047566964,1047566967,AT 1047566968,1047566971,CH 1047566972,1047566995,DE 1047566996,1047566999,CH -1047567000,1047567031,DE -1047567032,1047567035,CH +1047567000,1047567015,DE +1047567016,1047567019,CH +1047567020,1047567027,DE +1047567028,1047567035,CH 1047567036,1047567039,DE 1047567040,1047567043,AT 1047567044,1047567047,CH @@ -6693,7 +6942,8 @@ 1047567128,1047567143,DE 1047567144,1047567147,CH 1047567148,1047567151,BE -1047567152,1047567163,DE +1047567152,1047567159,CH +1047567160,1047567163,DE 1047567164,1047567167,AT 1047567168,1047567211,DE 1047567212,1047567227,CH @@ -7561,8 +7811,8 @@ 1048983168,1048983423,DE 1048983424,1048983487,EU 1048983488,1048983679,DE -1048983680,1048984831,EU -1048984832,1048985167,DE +1048983680,1048985087,EU +1048985088,1048985167,DE 1048985168,1048985183,EU 1048985184,1048985199,DE 1048985200,1048985215,EU @@ -7617,9 +7867,7 @@ 1049017984,1049018047,GE 1049018048,1049020127,DE 1049020128,1049020135,FR -1049020136,1049020479,DE -1049020480,1049020543,GE -1049020544,1049026559,DE +1049020136,1049026559,DE 1049026560,1049026815,EU 1049026816,1049031871,DE 1049031872,1049031903,EU @@ -9434,7 +9682,8 @@ 1053337128,1053337183,ZA 1053337184,1053337599,EU 1053337600,1053337631,CH -1053337632,1053338111,EU +1053337632,1053337855,EU +1053337856,1053338111,ZA 1053338112,1053338623,FI 1053338624,1053338943,NO 1053338944,1053338975,EU @@ -9673,12 +9922,11 @@ 1053894744,1053894751,GE 1053894752,1053894783,DE 1053894784,1053894815,IL -1053894816,1053894831,NL +1053894816,1053894831,DE 1053894832,1053894847,US 1053894848,1053895423,DE 1053895424,1053895679,GB -1053895680,1053895935,US -1053895936,1053896087,DE +1053895680,1053896087,DE 1053896088,1053896095,US 1053896096,1053896127,GB 1053896128,1053896159,DE @@ -9974,9 +10222,7 @@ 1055981568,1055989759,IT 1055989760,1055992310,DE 1055992311,1055992318,CH -1055992319,1055995135,DE -1055995136,1055995391,NL -1055995392,1055997951,DE +1055992319,1055997951,DE 1055997952,1056014335,FR 1056014336,1056022527,EG 1056022528,1056030719,GB @@ -10229,7 +10475,10 @@ 1065906176,1065908223,KY 1065908224,1065926815,US 1065926816,1065926831,CA -1065926832,1066404607,US +1065926832,1066303487,US +1066336256,1066344447,US +1066352640,1066369023,JM +1066401792,1066404607,US 1066404608,1066404863,A2 1066404864,1066475263,US 1066475264,1066475519,CA @@ -10512,7 +10761,8 @@ 1072928128,1072928255,US 1072928256,1072928263,CA 1072928264,1072928287,US -1072928288,1072928383,CA +1072928288,1072928319,CA +1072928320,1072928383,GA 1072928384,1072928447,US 1072928448,1072929535,CA 1072929536,1072929791,US @@ -10850,9 +11100,7 @@ 1075479568,1075479583,US 1075479584,1075479607,CA 1075479608,1075479615,US -1075479616,1075484047,CA -1075484048,1075484063,US -1075484064,1075484263,CA +1075479616,1075484263,CA 1075484264,1075484271,US 1075484272,1075494911,CA 1075494912,1075513151,US @@ -10988,8 +11236,8 @@ 1075972352,1075973887,US 1075973888,1075974143,CA 1075974144,1075975167,US -1075975168,1075975935,CA -1075975936,1075976191,US +1075975168,1075975999,CA +1075976000,1075976191,US 1075976192,1075976511,CA 1075976512,1075976543,US 1075976544,1075976647,CA @@ -11115,7 +11363,9 @@ 1076003072,1076003327,CA 1076003328,1076003359,US 1076003360,1076003375,CA -1076003376,1076003519,US +1076003376,1076003391,US +1076003392,1076003407,CA +1076003408,1076003519,US 1076003520,1076004383,CA 1076004384,1076004423,US 1076004424,1076004431,CA @@ -11198,7 +11448,9 @@ 1076027776,1076027791,US 1076027792,1076027911,CA 1076027912,1076027919,US -1076027920,1076028143,CA +1076027920,1076027927,CA +1076027928,1076027935,US +1076027936,1076028143,CA 1076028144,1076028151,US 1076028152,1076028479,CA 1076028480,1076028543,GB @@ -11300,8 +11552,7 @@ 1076183488,1076183807,US 1076183808,1076184063,CA 1076184064,1076184095,VE -1076184096,1076184127,US -1076184128,1076184159,VE +1076184096,1076184159,US 1076184160,1076184191,PK 1076184192,1076184223,IN 1076184224,1076184255,US @@ -11315,9 +11566,7 @@ 1076184896,1076184927,FR 1076184928,1076184959,US 1076184960,1076184991,VE -1076184992,1076185023,US -1076185024,1076185055,GB -1076185056,1076185215,US +1076184992,1076185215,US 1076185216,1076185343,CA 1076185344,1076185439,US 1076185440,1076185471,IT @@ -12278,7 +12527,7 @@ 1077936258,1077936261,AU 1077936262,1077936265,IN 1077936266,1077936273,US -1077936274,1077936277,BR +1077936274,1077936277,ES 1077936278,1077936295,US 1077936296,1077936296,CA 1077936297,1077936297,US @@ -12301,13 +12550,15 @@ 1077936382,1077936401,US 1077936402,1077936409,GB 1077936410,1077936413,CO -1077936414,1077936421,US +1077936414,1077936417,AU +1077936418,1077936421,US 1077936422,1077936422,CA 1077936423,1077936426,US 1077936427,1077936429,TH -1077936430,1077936437,US +1077936430,1077936433,US +1077936434,1077936437,CZ 1077936438,1077936441,NO -1077936442,1077936445,TH +1077936442,1077936445,US 1077936446,1077936449,TW 1077936450,1077936453,US 1077936454,1077936457,PT @@ -12322,8 +12573,7 @@ 1077936478,1077936485,US 1077936486,1077936489,TR 1077936490,1077936493,FR -1077936494,1077936497,CN -1077936498,1077936501,US +1077936494,1077936501,US 1077936502,1077936505,AR 1077936506,1077936513,US 1077936514,1077936517,BR @@ -12344,8 +12594,7 @@ 1077936606,1077936609,JO 1077936610,1077936621,US 1077936622,1077936622,AU -1077936623,1077936626,US -1077936627,1077936630,CH +1077936623,1077936630,US 1077936631,1077936634,PE 1077936635,1077936638,CA 1077936639,1077936645,US @@ -12386,11 +12635,114 @@ 1077936860,1077936879,US 1077936880,1077936883,IT 1077936884,1077936887,CO -1077936888,1077938949,US +1077936888,1077938702,US +1077938703,1077938706,ID +1077938707,1077938734,GB +1077938735,1077938735,PK +1077938736,1077938739,EG +1077938740,1077938749,NO +1077938750,1077938750,NL +1077938751,1077938765,US +1077938766,1077938769,CN +1077938770,1077938773,US +1077938774,1077938777,GB +1077938778,1077938781,RO +1077938782,1077938785,US +1077938786,1077938789,GR +1077938790,1077938793,CA +1077938794,1077938797,IE +1077938798,1077938801,AR +1077938802,1077938805,US +1077938806,1077938809,DK +1077938810,1077938813,HK +1077938814,1077938829,US +1077938830,1077938831,IN +1077938832,1077938835,CA +1077938836,1077938848,US +1077938849,1077938852,IT +1077938853,1077938856,ES +1077938857,1077938860,EE +1077938861,1077938867,IN +1077938868,1077938871,CA +1077938872,1077938887,US +1077938888,1077938891,VI +1077938892,1077938895,SA +1077938896,1077938927,CA +1077938928,1077938931,US +1077938932,1077938935,MY +1077938936,1077938949,US 1077938950,1077938969,CA -1077938970,1077939209,US +1077938970,1077938981,US +1077938982,1077938982,NL +1077938983,1077938983,US +1077938984,1077938988,CA +1077938989,1077938992,ZA +1077938993,1077939005,US +1077939006,1077939009,BE +1077939010,1077939013,ID +1077939014,1077939017,GB +1077939018,1077939021,TH +1077939022,1077939025,GB +1077939026,1077939028,TH +1077939029,1077939032,US +1077939033,1077939036,IE +1077939037,1077939044,US +1077939045,1077939048,IN +1077939049,1077939060,US +1077939061,1077939064,IE +1077939065,1077939065,TH +1077939066,1077939069,CA +1077939070,1077939074,TH +1077939075,1077939078,US +1077939079,1077939082,IN +1077939083,1077939086,CA +1077939087,1077939090,ES +1077939091,1077939099,US +1077939100,1077939103,ID +1077939104,1077939107,PS +1077939108,1077939111,GB +1077939112,1077939127,US +1077939128,1077939131,CA +1077939132,1077939135,US +1077939136,1077939139,IN +1077939140,1077939189,US +1077939190,1077939193,CA +1077939194,1077939209,US 1077939210,1077939210,BE -1077939211,1077939461,US +1077939211,1077939218,US +1077939219,1077939219,NL +1077939220,1077939223,CA +1077939224,1077939228,BR +1077939229,1077939236,US +1077939237,1077939240,IN +1077939241,1077939251,US +1077939252,1077939255,BR +1077939256,1077939259,FR +1077939260,1077939263,US +1077939264,1077939267,MY +1077939268,1077939292,US +1077939293,1077939296,IT +1077939297,1077939300,CA +1077939301,1077939304,US +1077939305,1077939308,GB +1077939309,1077939321,US +1077939322,1077939329,CA +1077939330,1077939342,US +1077939343,1077939346,ID +1077939347,1077939350,US +1077939351,1077939354,IN +1077939355,1077939358,GB +1077939359,1077939362,IN +1077939363,1077939375,US +1077939376,1077939379,AE +1077939380,1077939383,US +1077939384,1077939387,AU +1077939388,1077939391,PK +1077939392,1077939395,US +1077939396,1077939399,SE +1077939400,1077939415,US +1077939416,1077939423,BE +1077939424,1077939461,US 1077939462,1077939465,CA 1077939466,1077939725,US 1077939726,1077939727,DE @@ -12442,9 +12794,7 @@ 1077940214,1077940217,MX 1077940218,1077960751,US 1077960752,1077960759,CA -1077960760,1077960839,US -1077960840,1077960847,CA -1077960848,1077960943,US +1077960760,1077960943,US 1077960944,1077960951,CO 1077960952,1077965855,US 1077965856,1077965887,BA @@ -12480,9 +12830,7 @@ 1078280896,1078281087,US 1078281088,1078281279,CA 1078281280,1078281295,US -1078281296,1078281663,CA -1078281664,1078281679,US -1078281680,1078281711,CA +1078281296,1078281711,CA 1078281712,1078281719,US 1078281720,1078281735,CA 1078281736,1078281743,US @@ -12695,11 +13043,31 @@ 1078456320,1078460415,CA 1078460416,1078517759,US 1078517760,1078525951,CA -1078525952,1078576639,US +1078525952,1078575679,US +1078575680,1078575743,AU +1078575744,1078575807,US +1078575808,1078575871,IN +1078575872,1078576639,US 1078576640,1078576895,CA -1078576896,1078581311,US +1078576896,1078576911,US +1078576912,1078576943,IN +1078576944,1078577711,US +1078577712,1078577727,IN +1078577728,1078578751,US +1078578752,1078578815,CA +1078578816,1078578879,US +1078578880,1078578943,IN +1078578944,1078580511,US +1078580512,1078580543,CA +1078580544,1078580703,US +1078580704,1078580735,CA +1078580736,1078581263,US +1078581264,1078581279,IN +1078581280,1078581311,US 1078581312,1078581327,CR -1078581328,1078581503,US +1078581328,1078581359,US +1078581360,1078581391,IN +1078581392,1078581503,US 1078581504,1078581759,CA 1078581760,1078600639,US 1078600640,1078600647,GB @@ -12733,33 +13101,7 @@ 1078750232,1078750239,CA 1078750240,1078751231,PE 1078751232,1078753279,CO -1078753280,1078753535,AR -1078753536,1078753663,US -1078753664,1078753791,AR -1078753792,1078754047,US -1078754048,1078754207,AR -1078754208,1078754303,US -1078754304,1078754559,AR -1078754560,1078754623,US -1078754624,1078754655,AR -1078754656,1078754719,US -1078754720,1078754751,AR -1078754752,1078754815,US -1078754816,1078754823,AR -1078754824,1078754831,US -1078754832,1078754855,AR -1078754856,1078754863,US -1078754864,1078754927,AR -1078754928,1078754935,US -1078754936,1078754951,AR -1078754952,1078754959,US -1078754960,1078754975,AR -1078754976,1078754983,US -1078754984,1078754991,AR -1078754992,1078754999,US -1078755000,1078755055,AR -1078755056,1078755063,US -1078755064,1078755327,AR +1078753280,1078755327,AR 1078755328,1078757375,PE 1078757376,1078757423,CL 1078757424,1078757439,EC @@ -13106,11 +13448,9 @@ 1079861248,1079865343,CA 1079865344,1079944295,US 1079944296,1079944303,IL -1079944304,1079944383,US -1079944384,1079944415,IL -1079944416,1079946143,US -1079946144,1079946151,FR -1079946152,1079946431,US +1079944304,1079946271,US +1079946272,1079946303,IE +1079946304,1079946431,US 1079946432,1079946463,CA 1079946464,1079953567,US 1079953568,1079953599,GB @@ -13120,7 +13460,9 @@ 1079994368,1079996415,CA 1079996416,1080021999,US 1080022000,1080022007,GT -1080022008,1080033279,US +1080022008,1080030527,US +1080030528,1080030591,AR +1080030592,1080033279,US 1080033280,1080295423,CA 1080295424,1080722827,US 1080722828,1080722837,IT @@ -13428,8 +13770,8 @@ 1081463248,1081463255,US 1081463256,1081463263,BR 1081463264,1081463271,US -1081463272,1081463279,BR -1081463280,1081463295,US +1081463272,1081463287,BR +1081463288,1081463295,US 1081463296,1081463391,BR 1081463392,1081463423,US 1081463424,1081463487,BR @@ -13608,7 +13950,9 @@ 1082315472,1082318847,CA 1082318848,1082344080,US 1082344081,1082344084,GB -1082344085,1082345733,US +1082344085,1082344784,US +1082344785,1082344786,HN +1082344787,1082345733,US 1082345734,1082345737,CA 1082345738,1082348319,US 1082348320,1082348327,GB @@ -13636,7 +13980,8 @@ 1082349744,1082349767,US 1082349768,1082349775,GR 1082349776,1082349783,IT -1082349784,1082349815,US +1082349784,1082349807,US +1082349808,1082349815,GB 1082349816,1082349823,RU 1082349824,1082350655,US 1082350656,1082350671,IT @@ -13825,9 +14170,7 @@ 1086023288,1086023295,NZ 1086023296,1086023335,US 1086023336,1086023343,RO -1086023344,1086024031,US -1086024032,1086024047,CA -1086024048,1086027391,US +1086023344,1086027391,US 1086027392,1086027407,IT 1086027408,1086027423,US 1086027424,1086027455,VN @@ -13837,9 +14180,7 @@ 1086028664,1086028671,BR 1086028672,1086028751,US 1086028752,1086028759,BR -1086028760,1086029567,US -1086029568,1086029599,BO -1086029600,1086029727,US +1086028760,1086029727,US 1086029728,1086029743,CA 1086029744,1086309887,US 1086309888,1086310143,AU @@ -14188,8 +14529,8 @@ 1090215936,1090355199,US 1090355200,1090356327,CA 1090356328,1090356335,US -1090356336,1090356407,CA -1090356408,1090356415,US +1090356336,1090356399,CA +1090356400,1090356415,US 1090356416,1090357535,CA 1090357536,1090357567,US 1090357568,1090357663,CA @@ -14457,9 +14798,13 @@ 1093113128,1093113135,CA 1093113136,1093113151,US 1093113152,1093113183,CA -1093113184,1093113503,US +1093113184,1093113407,US +1093113408,1093113423,CA +1093113424,1093113503,US 1093113504,1093113519,CA -1093113520,1093113759,US +1093113520,1093113727,US +1093113728,1093113743,CA +1093113744,1093113759,US 1093113760,1093113775,CA 1093113776,1093114623,US 1093114624,1093114679,CA @@ -14560,7 +14905,9 @@ 1093125776,1093125871,US 1093125872,1093126015,CA 1093126016,1093126047,US -1093126048,1093126111,CA +1093126048,1093126063,CA +1093126064,1093126079,US +1093126080,1093126111,CA 1093126112,1093126134,US 1093126135,1093126142,CA 1093126143,1093126143,US @@ -15501,7 +15848,9 @@ 1102016256,1102016287,AR 1102016288,1102016351,US 1102016352,1102016383,MY -1102016384,1102019583,US +1102016384,1102018431,US +1102018432,1102018495,TZ +1102018496,1102019583,US 1102019584,1102019711,IN 1102019712,1102389247,US 1102389248,1102393343,CA @@ -15697,7 +16046,7 @@ 1107275776,1107279871,CA 1107279872,1107288063,US 1107288064,1107292159,CA -1107296256,1107701759,US +1107292160,1107701759,US 1107701760,1107705855,CA 1107705856,1107800063,US 1107800064,1107800319,CA @@ -15946,7 +16295,9 @@ 1110443328,1110443551,CA 1110443552,1110443711,US 1110443712,1110443719,CA -1110443720,1110444287,US +1110443720,1110443903,US +1110443904,1110444031,CA +1110444032,1110444287,US 1110444288,1110444799,CA 1110444800,1110445055,US 1110445056,1110446655,CA @@ -16627,7 +16978,9 @@ 1117814824,1117814831,CN 1117814832,1117815295,US 1117815296,1117815551,CN -1117815552,1117817919,US +1117815552,1117816831,US +1117816832,1117816959,CN +1117816960,1117817919,US 1117817920,1117817983,CA 1117817984,1117818495,US 1117818496,1117818623,IT @@ -16873,6 +17226,13 @@ 1118477536,1118477543,US 1118477544,1118478335,CA 1118478336,1118502911,US +1118507008,1118511103,US +1118511104,1118519295,CA +1118519296,1118527487,US +1118527488,1118531583,CA +1118531584,1118535679,US +1118535680,1118539775,CA +1118539776,1118543871,US 1118568448,1118789783,US 1118789784,1118789791,BB 1118789792,1118790351,US @@ -16883,7 +17243,11 @@ 1118791600,1118791615,ES 1118791616,1118792815,US 1118792816,1118792831,DO -1118792832,1118793471,US +1118792832,1118792975,US +1118792976,1118792991,BB +1118792992,1118793407,US +1118793408,1118793423,BB +1118793424,1118793471,US 1118793472,1118793727,CO 1118793728,1118793823,US 1118793824,1118793839,CA @@ -17293,7 +17657,8 @@ 1118992736,1118992743,SA 1118992744,1118992767,A2 1118992768,1118992839,US -1118992840,1118994431,A2 +1118992840,1118994175,A2 +1118994176,1118994431,LR 1118994432,1119023735,US 1119023736,1119023743,UY 1119023744,1119109119,US @@ -17313,11 +17678,11 @@ 1119167360,1119167367,CA 1119167368,1119167407,US 1119167408,1119167415,CA -1119167416,1119167839,US +1119167416,1119167495,US +1119167496,1119167503,CA +1119167504,1119167839,US 1119167840,1119167855,CA -1119167856,1119167895,US -1119167896,1119167903,CA -1119167904,1119168023,US +1119167856,1119168023,US 1119168024,1119168031,CA 1119168032,1119168183,US 1119168184,1119168191,CA @@ -17456,7 +17821,8 @@ 1120281104,1120281111,CA 1120281112,1120281119,US 1120281120,1120281135,ZA -1120281136,1120281375,CA +1120281136,1120281151,US +1120281152,1120281375,CA 1120281376,1120281383,AR 1120281384,1120281391,US 1120281392,1120281407,ZA @@ -17899,8 +18265,7 @@ 1121250816,1121250831,AG 1121250832,1121250839,BZ 1121250840,1121250879,AG -1121250880,1121250911,CA -1121250912,1121250927,VG +1121250880,1121250927,VG 1121250928,1121250935,CA 1121250936,1121251007,BZ 1121251008,1121251015,VG @@ -17949,7 +18314,8 @@ 1121251992,1121251999,AG 1121252000,1121252063,CA 1121252064,1121252359,AG -1121252360,1121252375,CA +1121252360,1121252367,ZA +1121252368,1121252375,CA 1121252376,1121252383,PA 1121252384,1121252391,CR 1121252392,1121252399,CA @@ -18283,8 +18649,8 @@ 1121717432,1121717439,JP 1121717440,1121717759,US 1121717760,1121718015,IT -1121718016,1121721711,US -1121721712,1121721727,CN +1121718016,1121721695,US +1121721696,1121721727,CN 1121721728,1121878015,US 1121878016,1121910783,CA 1121910784,1122074623,US @@ -18764,7 +19130,9 @@ 1125626624,1125626879,IN 1125626880,1125628671,US 1125628672,1125628703,NZ -1125628704,1126009343,US +1125628704,1125642674,US +1125642675,1125642694,BO +1125642695,1126009343,US 1126009344,1126009599,AR 1126009600,1126504223,US 1126504224,1126504231,PR @@ -18834,9 +19202,7 @@ 1127976192,1127976223,IL 1127976224,1127979111,US 1127979112,1127979119,CA -1127979120,1127985951,US -1127985952,1127985983,NG -1127985984,1127986087,US +1127979120,1127986087,US 1127986088,1127986095,RO 1127986096,1127986935,US 1127986936,1127986943,IN @@ -20058,8 +20424,9 @@ 1138212864,1138216959,CA 1138216960,1138271087,US 1138271088,1138271103,TN -1138271104,1138401279,US -1138409472,1138417663,US +1138271104,1138337167,US +1138337168,1138337183,GB +1138337184,1138417663,US 1138417664,1138417695,CA 1138417696,1138417727,DE 1138417728,1138421759,US @@ -20115,7 +20482,13 @@ 1138454592,1138454599,CA 1138454600,1138458111,US 1138458112,1138458127,BR -1138458128,1138480127,US +1138458128,1138458143,AU +1138458144,1138458159,IN +1138458160,1138458239,US +1138458240,1138458255,PK +1138458256,1138458271,AR +1138458272,1138458287,RU +1138458288,1138480127,US 1138480128,1138482687,AU 1138482688,1138499583,US 1138499584,1138503679,CA @@ -20335,7 +20708,9 @@ 1138662170,1138662233,EG 1138662234,1138662273,US 1138662274,1138662309,EG -1138662310,1138662409,US +1138662310,1138662333,US +1138662334,1138662353,GB +1138662354,1138662409,US 1138662410,1138662473,EG 1138662474,1138662505,GB 1138662506,1138662537,US @@ -20470,8 +20845,7 @@ 1145334056,1145334063,CN 1145334064,1145334143,US 1145334144,1145334167,CN -1145334168,1145334171,HK -1145334172,1145334175,US +1145334168,1145334175,US 1145334176,1145334223,CN 1145334224,1145334231,US 1145334232,1145334239,CN @@ -21188,10 +21562,15 @@ 1159254016,1159262471,US 1159262472,1159262475,TZ 1159262476,1159262479,SA -1159262480,1159262727,US +1159262480,1159262483,US +1159262484,1159262487,TZ +1159262488,1159262491,SA +1159262492,1159262727,US 1159262728,1159262731,DE 1159262732,1159262735,RU -1159262736,1159266935,US +1159262736,1159262743,US +1159262744,1159262747,RU +1159262748,1159266935,US 1159266936,1159266943,PR 1159266944,1159269119,US 1159269120,1159269375,AR @@ -21652,7 +22031,11 @@ 1160864000,1160864255,CA 1160864256,1160921087,US 1160921088,1160925183,AG -1160925184,1160941535,US +1160925184,1160938879,US +1160938880,1160938887,NL +1160938888,1160941463,US +1160941464,1160941471,RU +1160941472,1160941535,US 1160941536,1160941567,CA 1160941568,1160945663,US 1160953856,1160973439,US @@ -21675,8 +22058,8 @@ 1161293824,1161297919,CA 1161297920,1161298303,US 1161298304,1161298311,IL -1161298312,1161300511,US -1161300512,1161300519,CA +1161298312,1161300495,US +1161300496,1161300519,CA 1161300520,1161304591,US 1161304592,1161304599,AU 1161304600,1161311743,US @@ -21743,7 +22126,9 @@ 1161627728,1161627743,AR 1161627744,1161627759,US 1161627760,1161627775,GB -1161627776,1161627807,US +1161627776,1161627791,US +1161627792,1161627799,AZ +1161627800,1161627807,US 1161627808,1161627815,HR 1161627816,1161627823,US 1161627824,1161627831,AU @@ -21753,7 +22138,9 @@ 1161627872,1161627879,GB 1161627880,1161627895,US 1161627896,1161627903,AZ -1161627904,1161628479,US +1161627904,1161628447,US +1161628448,1161628455,NL +1161628456,1161628479,US 1161628480,1161628487,GB 1161628488,1161628607,US 1161628608,1161628639,AR @@ -21761,7 +22148,8 @@ 1161628648,1161628655,CA 1161628656,1161628663,US 1161628664,1161628671,AR -1161628672,1161629231,US +1161628672,1161629223,US +1161629224,1161629231,GB 1161629232,1161629239,AZ 1161629240,1161629327,US 1161629328,1161629335,RO @@ -21847,7 +22235,7 @@ 1161633056,1161633215,US 1161633216,1161633231,EE 1161633232,1161634063,US -1161634064,1161634071,RO +1161634064,1161634071,CA 1161634072,1161634127,US 1161634128,1161634135,AR 1161634136,1161634199,US @@ -21976,7 +22364,9 @@ 1161650368,1161650687,US 1161650688,1161650695,AR 1161650696,1161650703,BR -1161650704,1161650847,US +1161650704,1161650823,US +1161650824,1161650831,AU +1161650832,1161650847,US 1161650848,1161650863,AR 1161650864,1161650927,US 1161650928,1161650935,HR @@ -21988,13 +22378,13 @@ 1161651488,1161651503,GB 1161651504,1161651535,US 1161651536,1161651543,PL -1161651544,1161651551,US -1161651552,1161651559,CA -1161651560,1161651599,US +1161651544,1161651599,US 1161651600,1161651607,AR 1161651608,1161651647,US 1161651648,1161651711,PL -1161651712,1161651967,US +1161651712,1161651775,US +1161651776,1161651807,AR +1161651808,1161651967,US 1161651968,1161651975,CH 1161651976,1161652007,US 1161652008,1161652015,GB @@ -22002,7 +22392,9 @@ 1161652096,1161652103,CY 1161652104,1161652127,US 1161652128,1161652135,AR -1161652136,1161653023,US +1161652136,1161652143,US +1161652144,1161652151,GB +1161652152,1161653023,US 1161653024,1161653055,AR 1161653056,1161653503,US 1161653504,1161653759,CA @@ -22021,16 +22413,30 @@ 1161658160,1161764863,US 1161764864,1161773055,CA 1161773056,1161777151,SZ -1161777152,1161790407,US -1161790408,1161790416,PA -1161790417,1161790839,US +1161777152,1161789981,US +1161789982,1161789983,CA +1161789984,1161789984,US +1161789985,1161789985,CA +1161789986,1161790165,US +1161790166,1161790171,CA +1161790172,1161790196,US +1161790197,1161790205,DE +1161790206,1161790839,US 1161790840,1161790848,CA -1161790849,1161818111,US +1161790849,1161791321,US +1161791322,1161791330,CA +1161791331,1161791381,US +1161791382,1161791386,CA +1161791387,1161795979,US +1161795980,1161795983,CA +1161795984,1161818111,US 1161818112,1161822207,CA 1161822208,1161832799,US 1161832800,1161832831,ZA 1161832832,1161832863,DE -1161832864,1161833919,US +1161832864,1161833855,US +1161833856,1161833887,FR +1161833888,1161833919,US 1161833920,1161833951,UA 1161833952,1161833967,US 1161833968,1161833975,DE @@ -22191,7 +22597,7 @@ 1162880000,1162882559,DM 1162882560,1162883839,GD 1162883840,1162887167,BB -1162903552,1162925983,US +1162887168,1162925983,US 1162925984,1162926015,AU 1162926016,1162926071,US 1162926072,1162926079,AU @@ -22539,9 +22945,7 @@ 1163571984,1163571999,US 1163572000,1163572031,CA 1163572032,1163572063,BE -1163572064,1163572079,CA -1163572080,1163572087,US -1163572088,1163572175,CA +1163572064,1163572175,CA 1163572176,1163572183,US 1163572184,1163572687,CA 1163572688,1163572703,US @@ -22551,7 +22955,7 @@ 1163573200,1163573215,US 1163573216,1163573263,CA 1163573264,1163573439,US -1163573440,1163573503,EG +1163573440,1163573503,IN 1163573504,1163575295,US 1163575296,1163576703,CA 1163576704,1163576799,US @@ -22589,8 +22993,8 @@ 1163581184,1163581439,US 1163581440,1163581503,CA 1163581504,1163581567,US -1163581568,1163581591,CA -1163581592,1163581615,US +1163581568,1163581583,CA +1163581584,1163581615,US 1163581616,1163581631,CA 1163581632,1163581695,US 1163581696,1163581983,CA @@ -22662,7 +23066,9 @@ 1167693200,1167693215,UA 1167693216,1167851519,US 1167851520,1168113663,CA -1168113664,1168138239,US +1168113664,1168134271,US +1168134272,1168134303,CA +1168134304,1168138239,US 1168138240,1168146431,JM 1168146432,1168211967,US 1168211968,1168220159,CA @@ -22676,14 +23082,12 @@ 1168394280,1168394375,CA 1168394376,1168394383,US 1168394384,1168394423,CA -1168394424,1168394463,US -1168394464,1168394471,CA +1168394424,1168394431,US +1168394432,1168394471,CA 1168394472,1168394479,US 1168394480,1168394503,CA 1168394504,1168394511,US -1168394512,1168394527,CA -1168394528,1168394559,US -1168394560,1168394751,CA +1168394512,1168394751,CA 1168394752,1168420863,US 1168420864,1168424959,CA 1168424960,1168474111,US @@ -22702,13 +23106,16 @@ 1168887808,1168891903,CA 1168891904,1168916479,US 1168916480,1168932863,CA -1168932864,1168936959,US +1168932864,1168935807,US +1168935808,1168935935,RU +1168935936,1168936959,US 1168936960,1168949247,CA 1168949248,1168949503,US 1168949504,1168949759,CA 1168949760,1168949791,US 1168949792,1168949823,BB -1168949824,1168950271,US +1168949824,1168949855,CA +1168949856,1168950271,US 1168950272,1168951823,CA 1168951824,1168952063,US 1168952064,1168952095,CA @@ -22722,8 +23129,8 @@ 1168952960,1168953343,CA 1168953344,1168954075,US 1168954076,1168954079,CA -1168954080,1168955903,US -1168955904,1168956159,CA +1168954080,1168955647,US +1168955648,1168956159,CA 1168956160,1168957439,US 1168957440,1168958047,CA 1168958048,1168958055,DE @@ -22900,16 +23307,16 @@ 1170554488,1170554495,CN 1170554496,1170554559,US 1170554560,1170554623,CN -1170554624,1175977983,US +1170554624,1170573375,US +1170573376,1170573439,RU +1170573440,1175977983,US 1175977984,1176068167,CA 1176068168,1176068175,US 1176068176,1176068191,CA 1176068192,1176068207,US 1176068208,1176069007,CA 1176069008,1176069023,US -1176069024,1176100903,CA -1176100904,1176100911,US -1176100912,1176101023,CA +1176069024,1176101023,CA 1176101024,1176101039,US 1176101040,1176101063,CA 1176101064,1176101071,US @@ -22949,9 +23356,7 @@ 1176620968,1176620975,US 1176620976,1176620991,CA 1176620992,1176620999,US -1176621000,1176621023,CA -1176621024,1176621055,US -1176621056,1176623359,CA +1176621000,1176623359,CA 1176623360,1176623487,US 1176623488,1176623567,CA 1176623568,1176623583,US @@ -22982,9 +23387,11 @@ 1176682544,1176682559,TR 1176682560,1176682623,US 1176682624,1176682631,JM -1176682632,1176682639,US +1176682632,1176682639,GB 1176682640,1176682687,TR -1176682688,1176686591,US +1176682688,1176684383,US +1176684384,1176684399,DE +1176684400,1176686591,US 1176686592,1176686599,PK 1176686600,1176686623,US 1176686624,1176686631,IL @@ -22992,19 +23399,142 @@ 1176686720,1176686751,CA 1176686752,1176686847,US 1176686848,1176687103,AN -1176687104,1176689407,US +1176687104,1176687887,US +1176687888,1176687895,AU +1176687896,1176687903,US +1176687904,1176687911,MX +1176687912,1176689023,US +1176689024,1176689055,CA +1176689056,1176689087,MY +1176689088,1176689183,US +1176689184,1176689215,BR +1176689216,1176689407,US 1176689408,1176689439,DE -1176689440,1176690175,US +1176689440,1176689503,US +1176689504,1176689535,IL +1176689536,1176689567,BR +1176689568,1176689599,FI +1176689600,1176689823,US +1176689824,1176689839,AU +1176689840,1176689847,US +1176689848,1176689855,FR +1176689856,1176689983,US +1176689984,1176690015,DE +1176690016,1176690047,JM +1176690048,1176690055,US +1176690056,1176690063,GB +1176690064,1176690071,US +1176690072,1176690079,GB +1176690080,1176690111,AU +1176690112,1176690175,US 1176690176,1176690207,FR -1176690208,1176691199,US +1176690208,1176690271,US +1176690272,1176690303,EG +1176690304,1176690335,US +1176690336,1176690367,CA +1176690368,1176690399,PK +1176690400,1176690431,CA +1176690432,1176690463,US +1176690464,1176690495,DO +1176690496,1176690527,CA +1176690528,1176690559,US +1176690560,1176690591,IN +1176690592,1176690815,US +1176690816,1176690847,BR +1176690848,1176691007,US +1176691008,1176691039,ES +1176691040,1176691071,US +1176691072,1176691103,ID +1176691104,1176691135,DE +1176691136,1176691167,GB +1176691168,1176691199,US 1176691200,1176691231,GB -1176691232,1176692735,US +1176691232,1176691263,US +1176691264,1176691295,RU +1176691296,1176691327,TR +1176691328,1176691375,US +1176691376,1176691391,AU +1176691392,1176691519,US +1176691520,1176691551,GB +1176691552,1176691583,US +1176691584,1176691615,BE +1176691616,1176691647,LT +1176691648,1176691743,US +1176691744,1176691775,CA +1176691776,1176691807,US +1176691808,1176691839,GB +1176691840,1176691871,HK +1176691872,1176691999,US +1176692000,1176692031,PK +1176692032,1176692127,US +1176692128,1176692143,FR +1176692144,1176692151,NO +1176692152,1176692159,BR +1176692160,1176692287,US +1176692288,1176692319,GB +1176692320,1176692351,US +1176692352,1176692383,CA +1176692384,1176692415,US +1176692416,1176692447,ID +1176692448,1176692583,US +1176692584,1176692591,RO +1176692592,1176692639,US +1176692640,1176692671,GR +1176692672,1176692703,DE +1176692704,1176692735,GB 1176692736,1176692767,BR -1176692768,1176692991,US +1176692768,1176692799,US +1176692800,1176692831,AT +1176692832,1176692927,US +1176692928,1176692959,GB +1176692960,1176692991,US 1176692992,1176693023,CN -1176693024,1176695295,US +1176693024,1176693215,US +1176693216,1176693247,FI +1176693248,1176693567,US +1176693568,1176693599,GB +1176693600,1176693631,LT +1176693632,1176693663,TR +1176693664,1176693695,MY +1176693696,1176693727,US +1176693728,1176693759,TR +1176693760,1176693791,US +1176693792,1176693823,TR +1176693824,1176693887,US +1176693888,1176693919,CA +1176693920,1176694047,US +1176694048,1176694079,IT +1176694080,1176694111,PA +1176694112,1176694143,FR +1176694144,1176694175,ES +1176694176,1176694303,US +1176694304,1176694335,RU +1176694336,1176694367,CN +1176694368,1176694399,UY +1176694400,1176694431,GR +1176694432,1176694463,HR +1176694464,1176694559,US +1176694560,1176694591,IE +1176694592,1176694623,US +1176694624,1176694655,TH +1176694656,1176694943,US +1176694944,1176694975,GB +1176694976,1176695007,CA +1176695008,1176695295,US 1176695296,1176695303,TR -1176695304,1176702975,US +1176695304,1176695327,US +1176695328,1176695335,CA +1176695336,1176696447,US +1176696448,1176696463,CA +1176696464,1176697223,US +1176697224,1176697231,FR +1176697232,1176697239,US +1176697240,1176697247,IL +1176697248,1176698615,US +1176698616,1176698623,DZ +1176698624,1176698727,US +1176698728,1176698735,NL +1176698736,1176702975,US 1176702976,1176707071,CA 1176707072,1176731647,US 1176731648,1176735743,PR @@ -23223,13 +23753,16 @@ 1208198040,1208198047,BS 1208198048,1208198135,US 1208198136,1208198143,AU -1208198144,1208198279,US +1208198144,1208198159,US +1208198160,1208198167,ID +1208198168,1208198279,US 1208198280,1208198287,ZA 1208198288,1208198303,US 1208198304,1208198319,FR 1208198320,1208198343,US 1208198344,1208198347,GB -1208198348,1208198463,US +1208198348,1208198349,CA +1208198350,1208198463,US 1208198464,1208198471,CA 1208198472,1208198559,US 1208198560,1208198575,IN @@ -23773,7 +24306,9 @@ 1208832392,1208832407,CN 1208832408,1208832455,US 1208832456,1208832463,CN -1208832464,1208832567,US +1208832464,1208832543,US +1208832544,1208832551,RS +1208832552,1208832567,US 1208832568,1208832575,CN 1208832576,1208832583,US 1208832584,1208832591,CN @@ -23781,15 +24316,19 @@ 1208832600,1208832607,CN 1208832608,1208832623,IT 1208832624,1208832631,NZ -1208832632,1208832639,HK +1208832632,1208832639,CN 1208832640,1208832703,IN -1208832704,1208832775,US +1208832704,1208832711,US +1208832712,1208832719,CN +1208832720,1208832775,US 1208832776,1208832783,CA 1208832784,1208833023,US 1208833024,1208833031,PR 1208833032,1208833439,US 1208833440,1208833471,GB -1208833472,1208834967,US +1208833472,1208834415,US +1208834416,1208834423,TK +1208834424,1208834967,US 1208834968,1208834975,ID 1208834976,1208834991,US 1208834992,1208834999,NP @@ -25066,7 +25605,13 @@ 1246875930,1246902783,US 1246902784,1246903039,NL 1246903040,1246937087,US -1246937088,1246945279,CA +1246937088,1246938111,CA +1246938112,1246938127,US +1246938128,1246940159,CA +1246940160,1246940415,GB +1246940416,1246943287,CA +1246943288,1246943295,DE +1246943296,1246945279,CA 1246945280,1247027199,US 1247027200,1247034559,A2 1247034560,1247034575,US @@ -25146,29 +25691,19 @@ 1249103952,1249103967,TW 1249103968,1249104095,US 1249104096,1249104111,TW -1249104112,1249104127,US -1249104128,1249104191,GB -1249104192,1249104255,US -1249104256,1249104319,GB -1249104320,1249104351,US +1249104112,1249104351,US 1249104352,1249104367,AU -1249104368,1249104383,US -1249104384,1249104447,GB -1249104448,1249104511,US -1249104512,1249104543,GB +1249104368,1249104543,US 1249104544,1249104551,ES 1249104552,1249104575,US 1249104576,1249104607,ES -1249104608,1249104895,US -1249104896,1249104959,GB -1249104960,1249105119,US +1249104608,1249105119,US 1249105120,1249105127,AR 1249105128,1249105135,US 1249105136,1249105143,CH 1249105144,1249105183,US 1249105184,1249105191,ZA -1249105192,1249105215,US -1249105216,1249105279,GB +1249105192,1249105279,US 1249105280,1249105295,CA 1249105296,1249105367,US 1249105368,1249105375,ES @@ -25304,9 +25839,7 @@ 1249847872,1249847903,US 1249847904,1249847935,NO 1249847936,1249847967,GB -1249847968,1249848479,US -1249848480,1249848511,PH -1249848512,1249848927,US +1249847968,1249848927,US 1249848928,1249848959,AU 1249848960,1249850367,US 1249850368,1249850383,IN @@ -25329,7 +25862,9 @@ 1249886208,1249902591,CA 1249902592,1254490111,US 1254490112,1254555647,CA -1254555648,1254604159,US +1254555648,1254604047,US +1254604048,1254604063,ES +1254604064,1254604159,US 1254604160,1254604175,GB 1254604176,1254604191,US 1254604192,1254604199,IE @@ -26407,7 +26942,8 @@ 1279954840,1279954879,CA 1279954880,1279954911,US 1279954912,1279954943,CA -1279954944,1279955103,US +1279954944,1279955095,US +1279955096,1279955103,BB 1279955104,1279955119,CA 1279955120,1279955151,US 1279955152,1279955159,AU @@ -26458,7 +26994,8 @@ 1279960416,1279960527,CA 1279960528,1279960535,US 1279960536,1279960559,CA -1279960560,1279962175,US +1279960560,1279960567,MX +1279960568,1279962175,US 1279962176,1279962207,CA 1279962208,1279962223,US 1279962224,1279962239,CA @@ -26806,7 +27343,8 @@ 1296250272,1296250303,DE 1296250304,1296250335,FR 1296250336,1296250367,ES -1296250368,1296251135,FR +1296250368,1296251103,FR +1296251104,1296251135,ES 1296251136,1296251167,GB 1296251168,1296251199,HR 1296251200,1296251295,DE @@ -26814,7 +27352,9 @@ 1296251328,1296251359,IE 1296251360,1296251391,DE 1296251392,1296251775,NL -1296251776,1296252063,FR +1296251776,1296252047,FR +1296252048,1296252055,DE +1296252056,1296252063,BE 1296252064,1296252079,IT 1296252080,1296252087,IE 1296252088,1296252095,FR @@ -26927,7 +27467,9 @@ 1296466400,1296466415,AO 1296466416,1296466431,NG 1296466432,1296466439,TZ -1296466440,1296466559,NO +1296466440,1296466495,NO +1296466496,1296466543,GN +1296466544,1296466559,NO 1296466560,1296466583,NG 1296466584,1296466639,NO 1296466640,1296466655,NG @@ -26977,7 +27519,9 @@ 1296606272,1296606335,DE 1296606336,1296606367,AT 1296606368,1296606399,CH -1296606400,1296607231,AT +1296606400,1296607103,AT +1296607104,1296607135,CH +1296607136,1296607231,AT 1296607232,1296607743,CH 1296607744,1296607999,NL 1296608000,1296609023,CH @@ -27063,7 +27607,9 @@ 1296689152,1296691199,RU 1296691200,1296693247,CH 1296693248,1296695295,DE -1296695296,1296697343,CH +1296695296,1296696831,CH +1296696832,1296697087,DE +1296697088,1296697343,CH 1296697344,1296699391,RU 1296699392,1296701439,IT 1296701440,1296703487,RU @@ -27095,9 +27641,7 @@ 1296748544,1296750591,FR 1296750592,1296752639,NO 1296752640,1296754687,BA -1296754688,1296754911,DE -1296754912,1296754927,AT -1296754928,1296756735,DE +1296754688,1296756735,DE 1296756736,1296758783,FR 1296758784,1296760831,RS 1296760832,1296762879,GB @@ -27146,12 +27690,12 @@ 1297022464,1297022975,BA 1297022976,1297026815,LT 1297026816,1297026847,FR -1297026848,1297039359,LT +1297026848,1297026879,LT +1297026880,1297026888,CY +1297026889,1297039359,LT 1297039360,1297055743,TR 1297055744,1297072127,RU -1297072128,1297074743,PL -1297074744,1297074751,SE -1297074752,1297083375,PL +1297072128,1297083375,PL 1297083376,1297083391,SE 1297083392,1297088511,PL 1297088512,1297121279,AT @@ -27323,8 +27867,8 @@ 1298956288,1298972671,GB 1298972672,1298989055,RU 1298989056,1299005439,UA -1299005440,1299005695,RU -1299005696,1299005951,BE +1299005440,1299005695,BE +1299005696,1299005951,RU 1299005952,1299008511,NL 1299008512,1299009791,BE 1299009792,1299010047,NL @@ -27574,7 +28118,9 @@ 1307819792,1307820031,EU 1307820032,1307824127,ES 1307824128,1307828223,HU -1307828224,1307832319,NL +1307828224,1307830128,NL +1307830129,1307830129,SE +1307830130,1307832319,NL 1307832320,1307836415,RU 1307836416,1307840511,SE 1307840512,1307844607,RU @@ -27625,19 +28171,7 @@ 1307907328,1307910143,CH 1307910144,1307914239,DE 1307914240,1307918335,NL -1307918336,1307919439,GB -1307919440,1307919447,ES -1307919448,1307919503,GB -1307919504,1307919511,ES -1307919512,1307919699,GB -1307919700,1307919703,ZA -1307919704,1307920575,GB -1307920576,1307920583,AU -1307920584,1307921431,GB -1307921432,1307921439,BD -1307921440,1307921471,GB -1307921472,1307921535,ES -1307921536,1307922431,GB +1307918336,1307922431,GB 1307922432,1307926527,NL 1307926528,1307930623,KZ 1307930624,1307934719,RU @@ -28038,10 +28572,23 @@ 1311367808,1311367839,US 1311367840,1311367871,DK 1311367872,1311367887,LR -1311367888,1311367895,A2 -1311367896,1311367935,DK +1311367888,1311367895,DE +1311367896,1311367903,NG +1311367904,1311367927,A2 +1311367928,1311367935,IR 1311367936,1311367967,BJ -1311367968,1311368191,A2 +1311367968,1311367999,ET +1311368000,1311368015,A2 +1311368016,1311368023,DE +1311368024,1311368031,A2 +1311368032,1311368063,PG +1311368064,1311368071,A2 +1311368072,1311368103,NG +1311368104,1311368111,AF +1311368112,1311368143,NG +1311368144,1311368159,ET +1311368160,1311368175,NG +1311368176,1311368191,A2 1311368192,1311368319,BD 1311368320,1311368447,CF 1311368448,1311368575,TZ @@ -28059,7 +28606,13 @@ 1311506432,1311637503,CZ 1311637504,1311707655,DE 1311707656,1311707663,NL -1311707664,1312292863,DE +1311707664,1311756823,DE +1311756824,1311756831,ES +1311756832,1311757439,DE +1311757440,1311757447,ES +1311757448,1311757463,DE +1311757464,1311757471,ES +1311757472,1312292863,DE 1312292864,1312817151,LT 1312817152,1313865727,SE 1313865728,1313931263,CZ @@ -28295,11 +28848,15 @@ 1317129280,1317129343,CA 1317129344,1317129471,GB 1317129472,1317129727,IT -1317129728,1317137663,GB +1317129728,1317135615,GB +1317135616,1317135871,DE +1317135872,1317137663,GB 1317137664,1317137919,SE 1317137920,1317140095,GB 1317140096,1317140223,US -1317140224,1317142143,GB +1317140224,1317140559,GB +1317140560,1317140575,FR +1317140576,1317142143,GB 1317142144,1317142271,CA 1317142272,1317142527,GB 1317142528,1317175295,PT @@ -28384,8 +28941,8 @@ 1317667264,1317667271,GB 1317667272,1317667279,A2 1317667280,1317667295,NG -1317667296,1317667303,A2 -1317667304,1317667335,NG +1317667296,1317667311,A2 +1317667312,1317667335,NG 1317667336,1317667343,A2 1317667344,1317667351,NG 1317667352,1317667359,AO @@ -28411,7 +28968,9 @@ 1317667760,1317667767,FR 1317667768,1317667775,ZA 1317667776,1317667783,US -1317667784,1317667823,NG +1317667784,1317667799,NG +1317667800,1317667807,A2 +1317667808,1317667823,NG 1317667824,1317668095,A2 1317668096,1317668103,GH 1317668104,1317668111,ZM @@ -28503,11 +29062,17 @@ 1317669944,1317669959,NG 1317669960,1317669983,A2 1317669984,1317669991,LR -1317669992,1317670015,NG -1317670016,1317670063,A2 -1317670064,1317670103,NG +1317669992,1317669999,NG +1317670000,1317670007,A2 +1317670008,1317670015,NG +1317670016,1317670071,A2 +1317670072,1317670079,NG +1317670080,1317670087,A2 +1317670088,1317670103,NG 1317670104,1317670111,A2 -1317670112,1317670143,NG +1317670112,1317670119,NG +1317670120,1317670127,A2 +1317670128,1317670143,NG 1317670144,1317670175,SL 1317670176,1317670215,A2 1317670216,1317670223,NG @@ -28516,9 +29081,7 @@ 1317670240,1317670247,NG 1317670248,1317670255,A2 1317670256,1317670263,NG -1317670264,1317670423,A2 -1317670424,1317670431,NG -1317670432,1317670447,A2 +1317670264,1317670447,A2 1317670448,1317670455,IQ 1317670456,1317670463,A2 1317670464,1317670471,NG @@ -28564,9 +29127,9 @@ 1317671240,1317671247,CI 1317671248,1317671255,NG 1317671256,1317671263,CI -1317671264,1317671279,A2 -1317671280,1317671311,NG -1317671312,1317671319,A2 +1317671264,1317671287,A2 +1317671288,1317671303,NG +1317671304,1317671319,A2 1317671320,1317671327,NG 1317671328,1317671335,A2 1317671336,1317671343,BW @@ -28579,7 +29142,9 @@ 1317671400,1317671407,IQ 1317671408,1317671415,UG 1317671416,1317671439,A2 -1317671440,1317671487,NG +1317671440,1317671463,NG +1317671464,1317671471,A2 +1317671472,1317671487,NG 1317671488,1317671527,A2 1317671528,1317671543,NG 1317671544,1317671551,GH @@ -28591,8 +29156,8 @@ 1317671616,1317671647,A2 1317671648,1317671679,NG 1317671680,1317671687,LR -1317671688,1317671711,A2 -1317671712,1317671727,NG +1317671688,1317671719,A2 +1317671720,1317671727,NG 1317671728,1317671759,A2 1317671760,1317671767,IQ 1317671768,1317671783,A2 @@ -28697,13 +29262,11 @@ 1317673920,1317673927,CI 1317673928,1317673943,NG 1317673944,1317673951,AO -1317673952,1317673967,NG -1317673968,1317673975,A2 -1317673976,1317674239,NG -1317674240,1317674247,A2 -1317674248,1317674255,NG -1317674256,1317674263,CM -1317674264,1317674271,A2 +1317673952,1317673959,A2 +1317673960,1317673967,NG +1317673968,1317673983,A2 +1317673984,1317674239,NG +1317674240,1317674271,A2 1317674272,1317674279,NG 1317674280,1317674287,A2 1317674288,1317674295,GH @@ -28726,16 +29289,16 @@ 1317674496,1317674527,A2 1317674528,1317674535,NG 1317674536,1317674543,IQ -1317674544,1317674575,NG -1317674576,1317674607,A2 +1317674544,1317674567,NG +1317674568,1317674607,A2 1317674608,1317674615,NG 1317674616,1317674623,IQ 1317674624,1317674631,NG 1317674632,1317674639,A2 1317674640,1317674647,NG 1317674648,1317674655,A2 -1317674656,1317674679,NG -1317674680,1317674687,A2 +1317674656,1317674671,NG +1317674672,1317674687,A2 1317674688,1317674703,NG 1317674704,1317674711,A2 1317674712,1317674735,NG @@ -28747,8 +29310,8 @@ 1317674792,1317674799,A2 1317674800,1317674807,NG 1317674808,1317674823,A2 -1317674824,1317674839,NG -1317674840,1317674847,A2 +1317674824,1317674831,NG +1317674832,1317674847,A2 1317674848,1317674863,NG 1317674864,1317674879,A2 1317674880,1317674887,NG @@ -28819,9 +29382,7 @@ 1317675696,1317675703,NG 1317675704,1317675711,A2 1317675712,1317675719,CM -1317675720,1317675727,A2 -1317675728,1317675735,NG -1317675736,1317675743,A2 +1317675720,1317675743,A2 1317675744,1317675751,GH 1317675752,1317675759,NG 1317675760,1317675775,GH @@ -28835,9 +29396,10 @@ 1317675864,1317675887,A2 1317675888,1317675895,CD 1317675896,1317675911,A2 -1317675912,1317675935,NG -1317675936,1317675943,A2 -1317675944,1317675975,NG +1317675912,1317675927,NG +1317675928,1317675943,A2 +1317675944,1317675951,GB +1317675952,1317675975,NG 1317675976,1317675983,A2 1317675984,1317675991,LR 1317675992,1317675999,NG @@ -28871,8 +29433,7 @@ 1317676248,1317676255,NG 1317676256,1317676263,CD 1317676264,1317676271,NG -1317676272,1317676279,A2 -1317676280,1317676287,NG +1317676272,1317676287,A2 1317676288,1317676551,LR 1317676552,1317676559,AO 1317676560,1317676567,NG @@ -28882,9 +29443,7 @@ 1317676592,1317676599,AO 1317676600,1317676607,UG 1317676608,1317676615,NG -1317676616,1317676623,A2 -1317676624,1317676631,CM -1317676632,1317676639,A2 +1317676616,1317676639,A2 1317676640,1317676647,LR 1317676648,1317676655,A2 1317676656,1317676671,NG @@ -28906,10 +29465,9 @@ 1317676848,1317676855,NG 1317676856,1317676863,A2 1317676864,1317676871,TG -1317676872,1317676879,NG -1317676880,1317676911,A2 -1317676912,1317676927,NG -1317676928,1317676943,A2 +1317676872,1317676911,A2 +1317676912,1317676919,NG +1317676920,1317676943,A2 1317676944,1317676951,CM 1317676952,1317676983,A2 1317676984,1317676991,NG @@ -28922,7 +29480,9 @@ 1317677064,1317677071,A2 1317677072,1317677079,NG 1317677080,1317677087,SD -1317677088,1317677143,A2 +1317677088,1317677095,A2 +1317677096,1317677103,BF +1317677104,1317677143,A2 1317677144,1317677151,SD 1317677152,1317677191,A2 1317677192,1317677199,SD @@ -28931,8 +29491,8 @@ 1317677232,1317677239,UG 1317677240,1317677247,A2 1317677248,1317677271,NG -1317677272,1317677295,A2 -1317677296,1317677311,NG +1317677272,1317677303,A2 +1317677304,1317677311,NG 1317677312,1317677319,CD 1317677320,1317677327,AO 1317677328,1317677335,CD @@ -28946,7 +29506,8 @@ 1317677416,1317677423,A2 1317677424,1317677431,CD 1317677432,1317677439,LR -1317677440,1317677455,CD +1317677440,1317677447,NG +1317677448,1317677455,CD 1317677456,1317677463,AO 1317677464,1317677471,A2 1317677472,1317677479,NG @@ -28978,26 +29539,30 @@ 1317678056,1317678079,A2 1317678080,1317678095,NG 1317678096,1317678103,GQ -1317678104,1317678111,CD +1317678104,1317678111,BE 1317678112,1317678143,A2 1317678144,1317678151,CD 1317678152,1317678159,NG 1317678160,1317678167,GQ 1317678168,1317678175,NG -1317678176,1317678207,A2 +1317678176,1317678199,A2 +1317678200,1317678207,CD 1317678208,1317678215,NG 1317678216,1317678231,A2 1317678232,1317678239,BF -1317678240,1317678319,A2 +1317678240,1317678279,A2 +1317678280,1317678287,NG +1317678288,1317678319,A2 1317678320,1317678327,NG 1317678328,1317678335,A2 1317678336,1317678343,NG 1317678344,1317678351,A2 1317678352,1317678359,CD 1317678360,1317678367,NG -1317678368,1317678375,A2 +1317678368,1317678375,CD 1317678376,1317678383,NG -1317678384,1317678423,A2 +1317678384,1317678391,GL +1317678392,1317678423,A2 1317678424,1317678431,NG 1317678432,1317678439,A2 1317678440,1317678447,CD @@ -29017,8 +29582,9 @@ 1317679640,1317679647,ZW 1317679648,1317679663,A2 1317679664,1317679671,AO -1317679672,1317679679,NG -1317679680,1317679695,A2 +1317679672,1317679679,A2 +1317679680,1317679687,NG +1317679688,1317679695,A2 1317679696,1317679703,LU 1317679704,1317679711,A2 1317679712,1317679719,NG @@ -29027,8 +29593,8 @@ 1317679736,1317679743,A2 1317679744,1317679751,AO 1317679752,1317679767,NG -1317679768,1317679783,A2 -1317679784,1317679799,NG +1317679768,1317679775,A2 +1317679776,1317679799,NG 1317679800,1317679831,A2 1317679832,1317679839,CD 1317679840,1317679847,NG @@ -29047,7 +29613,8 @@ 1317695744,1317695999,CH 1317696000,1317698559,DE 1317698560,1317698687,NL -1317698688,1317699583,DE +1317698688,1317699071,DE +1317699072,1317699583,CN 1317699584,1317715967,RU 1317715968,1317732351,SA 1317732352,1317748735,HU @@ -29130,9 +29697,7 @@ 1318006272,1318006783,NL 1318006784,1318007999,DE 1318008000,1318008031,NL -1318008032,1318008703,DE -1318008704,1318008767,NL -1318008768,1318009423,DE +1318008032,1318009423,DE 1318009424,1318009471,NL 1318009472,1318010495,DE 1318010496,1318010879,NL @@ -29304,6 +29869,7 @@ 1331881984,1331883007,GB 1331883008,1331883263,SE 1331883264,1331886079,GB +1331886080,1331888127,RU 1331888128,1331890175,SE 1331890176,1331892223,IT 1331892224,1331894271,RU @@ -29420,7 +29986,9 @@ 1334181888,1334190079,RU 1334190080,1334198271,BG 1334198272,1334206463,RU -1334206464,1334214655,FI +1334206464,1334214551,FI +1334214552,1334214559,AX +1334214560,1334214655,FI 1334214656,1334222847,JO 1334222848,1334231039,BG 1334231040,1334239231,EE @@ -29709,8 +30277,8 @@ 1343218688,1343219711,FR 1343219712,1343219967,KR 1343219968,1343220479,FR -1343220480,1343220639,DE -1343220640,1343220735,FR +1343220480,1343220671,DE +1343220672,1343220735,FR 1343220736,1343220863,GB 1343220864,1343221023,FR 1343221024,1343221027,DE @@ -29783,9 +30351,7 @@ 1346486272,1346490367,SE 1346490368,1346494463,GB 1346494464,1346498559,FR -1346498560,1346499967,IM -1346499968,1346499983,GB -1346499984,1346500607,IM +1346498560,1346500607,IM 1346500608,1346500639,GB 1346500640,1346500735,IM 1346500736,1346500767,GB @@ -29874,12 +30440,12 @@ 1346695168,1346699263,RU 1346699264,1346700575,GB 1346700576,1346700591,VG -1346700592,1346700608,GB -1346700609,1346700623,US +1346700592,1346700607,GB +1346700608,1346700623,US 1346700624,1346700847,GB 1346700848,1346700855,US -1346700856,1346701184,GB -1346701185,1346701215,GR +1346700856,1346701183,GB +1346701184,1346701215,GR 1346701216,1346703871,GB 1346703872,1346704127,LI 1346704128,1346704479,GB @@ -29994,14 +30560,16 @@ 1347133440,1347141631,EG 1347141632,1347145727,CH 1347145728,1347146239,GB -1347146240,1347147007,FR +1347146240,1347146495,IN +1347146496,1347146751,FR +1347146752,1347147007,IN 1347147008,1347147263,DE 1347147264,1347147775,GB 1347147776,1347148287,DE 1347148288,1347148543,GB -1347148544,1347148799,FR +1347148544,1347148799,IN 1347148800,1347149055,NO -1347149056,1347149823,FR +1347149056,1347149823,IN 1347149824,1347153919,HU 1347153920,1347158015,AT 1347158016,1347162111,CH @@ -30049,7 +30617,9 @@ 1347239936,1347240943,DK 1347240944,1347240959,GB 1347240960,1347244031,DK -1347244032,1347247359,GB +1347244032,1347245311,GB +1347245312,1347245567,US +1347245568,1347247359,GB 1347247360,1347247871,RU 1347247872,1347248127,US 1347248128,1347248863,SE @@ -30163,9 +30733,7 @@ 1347313664,1347321855,RU 1347321856,1347323775,KW 1347323776,1347323903,IR -1347323904,1347325183,KW -1347325184,1347325439,SA -1347325440,1347325951,KW +1347323904,1347325951,KW 1347325952,1347327231,CZ 1347327232,1347327487,SK 1347327488,1347327743,CZ @@ -30187,7 +30755,9 @@ 1347379200,1347383295,NL 1347383296,1347386751,EE 1347386752,1347386815,MY -1347386816,1347387391,EE +1347386816,1347387215,EE +1347387216,1347387219,DE +1347387220,1347387391,EE 1347387392,1347391487,GB 1347391488,1347395583,LB 1347395584,1347399679,SE @@ -30290,9 +30860,7 @@ 1347655176,1347655183,EG 1347655184,1347657727,GB 1347657728,1347661823,IT -1347661824,1347663119,DE -1347663120,1347663127,GB -1347663128,1347665919,DE +1347661824,1347665919,DE 1347665920,1347670015,RU 1347670016,1347674111,SE 1347674112,1347682303,RU @@ -30482,9 +31050,7 @@ 1347978376,1347978407,NG 1347978408,1347978447,A2 1347978448,1347978463,NG -1347978464,1347978575,A2 -1347978576,1347978591,NG -1347978592,1347978631,A2 +1347978464,1347978631,A2 1347978632,1347978647,NG 1347978648,1347978727,A2 1347978728,1347978735,NG @@ -30500,9 +31066,7 @@ 1347979136,1347979143,NG 1347979144,1347979159,A2 1347979160,1347979167,NG -1347979168,1347979215,A2 -1347979216,1347979223,NG -1347979224,1347979231,A2 +1347979168,1347979231,A2 1347979232,1347979247,NG 1347979248,1347979375,A2 1347979376,1347979399,NG @@ -30519,9 +31083,7 @@ 1347980176,1347980223,A2 1347980224,1347980271,NG 1347980272,1347980279,DK -1347980280,1347980415,A2 -1347980416,1347980479,NG -1347980480,1347980543,A2 +1347980280,1347980543,A2 1347980544,1347980559,DK 1347980560,1347981007,A2 1347981008,1347981015,NG @@ -30535,9 +31097,7 @@ 1347981928,1347981935,NG 1347981936,1347982031,A2 1347982032,1347982055,NG -1347982056,1347982223,A2 -1347982224,1347982231,NG -1347982232,1347982279,A2 +1347982056,1347982279,A2 1347982280,1347982287,NG 1347982288,1347982927,A2 1347982928,1347982943,NG @@ -30547,9 +31107,7 @@ 1347983248,1347983263,DK 1347983264,1347983303,A2 1347983304,1347983311,NG -1347983312,1347983423,A2 -1347983424,1347983487,NG -1347983488,1347983903,A2 +1347983312,1347983903,A2 1347983904,1347983911,NG 1347983912,1347983919,A2 1347983920,1347983927,NG @@ -30984,8 +31542,8 @@ 1353298882,1353298887,GB 1353298888,1353299647,SE 1353299648,1353299839,GB -1353299840,1353299855,SE -1353299856,1353299863,GB +1353299840,1353299847,SE +1353299848,1353299863,GB 1353299864,1353300079,SE 1353300080,1353300095,PT 1353300096,1353300103,GB @@ -31305,8 +31863,7 @@ 1357366816,1357366847,FR 1357366848,1357366863,GB 1357366864,1357366879,ES -1357366880,1357366911,GB -1357366912,1357367039,EU +1357366880,1357367039,EU 1357367040,1357367295,GB 1357367296,1357367551,FR 1357367552,1357367807,EU @@ -31317,13 +31874,12 @@ 1357369600,1357369855,GB 1357369856,1357370111,KE 1357370112,1357370367,DE -1357370368,1357370879,EU +1357370368,1357370879,GB 1357370880,1357371391,LY 1357371392,1357371647,GB 1357371648,1357371903,FR 1357371904,1357372159,RU -1357372160,1357372415,GB -1357372416,1357372927,EU +1357372160,1357372927,GB 1357372928,1357373183,AM 1357373184,1357373439,GB 1357373440,1357381631,EU @@ -31372,7 +31928,8 @@ 1357876224,1357876239,NO 1357876240,1357876287,EU 1357876288,1357876303,PL -1357876304,1357876335,EU +1357876304,1357876319,GB +1357876320,1357876335,EU 1357876336,1357876339,PL 1357876340,1357876343,RU 1357876344,1357876383,EU @@ -31410,8 +31967,8 @@ 1357883584,1357883727,FR 1357883728,1357883759,EU 1357883760,1357883775,FR -1357883776,1357883807,EU -1357883808,1357883903,FR +1357883776,1357883839,EU +1357883840,1357883903,FR 1357883904,1357883999,EU 1357884000,1357884031,FR 1357884032,1357884095,RU @@ -31422,8 +31979,9 @@ 1357884432,1357884439,US 1357884440,1357884447,FR 1357884448,1357884511,EU -1357884512,1357884935,FR -1357884936,1357884943,EU +1357884512,1357884927,FR +1357884928,1357884935,EU +1357884936,1357884943,GB 1357884944,1357884959,FR 1357884960,1357884991,RU 1357884992,1357885183,FR @@ -31467,8 +32025,8 @@ 1357893632,1357897855,EU 1357897856,1357898495,DE 1357898496,1357898751,EU -1357898752,1357899015,DE -1357899016,1357899023,EU +1357898752,1357899019,DE +1357899020,1357899023,EU 1357899024,1357899039,DE 1357899040,1357899047,EU 1357899048,1357899063,DE @@ -31663,7 +32221,9 @@ 1358242592,1358242623,BE 1358242624,1358244351,FR 1358244352,1358244607,IT -1358244608,1358245695,FR +1358244608,1358245503,FR +1358245504,1358245631,BE +1358245632,1358245695,FR 1358245696,1358245759,BE 1358245760,1358249215,FR 1358249216,1358249471,IT @@ -31864,13 +32424,9 @@ 1358669544,1358669551,GB 1358669552,1358669975,PT 1358669976,1358669983,GB -1358669984,1358669991,PT -1358669992,1358669999,GB -1358670000,1358670015,PT +1358669984,1358670015,PT 1358670016,1358670023,GB -1358670024,1358670071,PT -1358670072,1358670079,GB -1358670080,1358670183,PT +1358670024,1358670183,PT 1358670184,1358670191,GB 1358670192,1358671415,PT 1358671416,1358671423,GB @@ -32228,8 +32784,8 @@ 1359467648,1359467775,DE 1359467776,1359467815,US 1359467816,1359467903,DE -1359467904,1359468031,US -1359468032,1359468575,DE +1359467904,1359468063,US +1359468064,1359468575,DE 1359468576,1359468583,SG 1359468584,1359468639,DE 1359468640,1359468655,SG @@ -32405,6 +32961,7 @@ 1360355328,1360359423,EG 1360359424,1360363519,AT 1360363520,1360365567,IT +1360365568,1360367615,NL 1360367616,1360371711,IE 1360371712,1360375807,TR 1360375808,1360379903,NL @@ -32554,27 +33111,23 @@ 1360892480,1360892487,FR 1360892488,1360892495,CH 1360892496,1360892502,GB -1360892503,1360892671,CH -1360892672,1360892703,IT -1360892704,1360892763,CH +1360892503,1360892763,CH 1360892764,1360892767,IT 1360892768,1360892795,CH 1360892796,1360892799,IT 1360892800,1360892807,CH 1360892808,1360892823,IT 1360892824,1360892927,CH -1360892928,1360893055,IT -1360893056,1360893191,CH +1360892928,1360893183,IT +1360893184,1360893191,CH 1360893192,1360893199,IT -1360893200,1360894079,CH -1360894080,1360894151,IT -1360894152,1360894975,CH +1360893200,1360894071,CH +1360894072,1360894075,IT +1360894076,1360894079,CH +1360894080,1360894083,IT +1360894084,1360894975,CH 1360894976,1360894983,IT -1360894984,1360894991,CH -1360894992,1360895007,IT -1360895008,1360895751,CH -1360895752,1360895755,IT -1360895756,1360895999,CH +1360894984,1360895999,CH 1360896000,1360900095,QA 1360900096,1360904335,IT 1360904336,1360904343,GB @@ -32605,10 +33158,10 @@ 1360957440,1360961535,DE 1360961536,1360965631,UA 1360965632,1360977919,RU -1360977920,1360987535,CZ -1360987536,1360987903,GB -1360987904,1360987919,CZ -1360987920,1360987927,GB +1360977920,1360987391,CZ +1360987392,1360987455,GB +1360987456,1360987535,CZ +1360987536,1360987927,GB 1360987928,1360987935,CZ 1360987936,1360987983,SK 1360987984,1360987999,CZ @@ -32617,24 +33170,17 @@ 1360988048,1360988055,GB 1360988056,1360988063,SK 1360988064,1360988079,CZ -1360988080,1360988159,GB -1360988160,1360988415,SK -1360988416,1360988927,CZ -1360988928,1360989183,GB -1360989184,1360989439,SK -1360989440,1360989695,GB -1360989696,1360990079,CZ +1360988080,1360989951,GB +1360989952,1360990079,CZ 1360990080,1360990207,GB 1360990208,1360990463,CZ 1360990464,1360990719,GB 1360990720,1360990975,CZ -1360990976,1360991231,GB -1360991232,1360991743,CZ +1360990976,1360991487,GB +1360991488,1360991743,CZ 1360991744,1360991999,GB 1360992000,1360992255,SK -1360992256,1360992511,GB -1360992512,1360992767,CZ -1360992768,1360994303,GB +1360992256,1360994303,GB 1360994304,1360998399,CZ 1360998400,1361002495,FI 1361002496,1361006591,GB @@ -33292,11 +33838,7 @@ 1365147648,1365155839,RU 1365155840,1365159935,SE 1365159936,1365164031,HU -1365164032,1365166255,GB -1365166256,1365166271,IE -1365166272,1365166303,GB -1365166304,1365166311,BD -1365166312,1365172223,GB +1365164032,1365172223,GB 1365172224,1365176319,LV 1365176320,1365180415,HU 1365180416,1365183231,DE @@ -33314,25 +33856,32 @@ 1365217576,1365217591,GB 1365217592,1365217599,EG 1365217600,1365217631,GB -1365217632,1365217671,US +1365217632,1365217663,US +1365217664,1365217671,PH 1365217672,1365217687,IL 1365217688,1365217695,KW 1365217696,1365217703,GB 1365217704,1365217711,AU -1365217712,1365217791,GB +1365217712,1365217791,US 1365217792,1365217807,BD 1365217808,1365217815,US 1365217816,1365217823,DK 1365217824,1365217831,GB 1365217832,1365217839,TR -1365217840,1365217879,GB +1365217840,1365217847,GB +1365217848,1365217855,BD +1365217856,1365217871,GB +1365217872,1365217879,BD 1365217880,1365217919,US 1365217920,1365217927,DK -1365217928,1365217975,GB -1365217976,1365218031,US +1365217928,1365217967,BD +1365217968,1365217975,GB +1365217976,1365217983,US +1365217984,1365217991,DK +1365217992,1365218023,US +1365218024,1365218031,DK 1365218032,1365218039,CA -1365218040,1365218047,GB -1365218048,1365218303,US +1365218040,1365218303,US 1365218304,1365218311,CA 1365218312,1365218319,AR 1365218320,1365218327,ZA @@ -33526,7 +34075,6 @@ 1369559040,1369563135,RU 1369563136,1369567231,PL 1369567232,1369571327,BG -1369636864,1369702399,DE 1369702400,1369833471,BE 1369833472,1369964543,NO 1369964544,1369997311,GB @@ -33919,21 +34467,15 @@ 1382209536,1382209791,DE 1382209792,1382211071,EU 1382211072,1382211199,DE -1382211200,1382211327,EU -1382211328,1382211583,NL +1382211200,1382211583,EU 1382211584,1382211711,FR 1382211712,1382211839,EU 1382211840,1382212095,FR 1382212096,1382212223,EU 1382212224,1382212239,FR -1382212240,1382212287,EU -1382212288,1382212351,NL -1382212352,1382212607,EU +1382212240,1382212607,EU 1382212608,1382212863,FR -1382212864,1382213183,NL -1382213184,1382213199,EU -1382213200,1382213375,NL -1382213376,1382213631,EU +1382212864,1382213631,EU 1382213632,1382214079,NL 1382214080,1382214111,GB 1382214112,1382214879,NL @@ -34023,9 +34565,7 @@ 1383098112,1383098367,DE 1383098368,1383099391,GB 1383099392,1383099903,DE -1383099904,1383099983,FR -1383099984,1383099999,GB -1383100000,1383100095,FR +1383099904,1383100095,FR 1383100096,1383100159,GB 1383100160,1383100415,FR 1383100416,1383100831,GB @@ -34042,9 +34582,7 @@ 1383104256,1383104511,FR 1383104512,1383112703,JE 1383112704,1383120895,GE -1383120896,1383122943,IT -1383122944,1383122951,GB -1383122952,1383129031,IT +1383120896,1383129031,IT 1383129032,1383129039,ES 1383129040,1383129087,IT 1383129088,1383137279,GB @@ -34367,8 +34905,8 @@ 1385259008,1385267199,IT 1385267200,1385275391,SE 1385275392,1385283583,IT -1385283584,1385286143,DE -1385286144,1385287679,GB +1385283584,1385285631,DE +1385285632,1385287679,GB 1385287680,1385289727,IS 1385289728,1385291775,NO 1385291776,1385299967,TR @@ -34530,11 +35068,15 @@ 1388347392,1388363775,DK 1388363776,1388371967,DE 1388371968,1388380159,CH -1388380160,1388388895,IT -1388388896,1388388927,NG +1388380160,1388388911,IT +1388388912,1388388927,NG 1388388928,1388388943,IT -1388388944,1388388991,NG -1388388992,1388389447,IT +1388388944,1388388951,NG +1388388952,1388388959,IT +1388388960,1388388967,NG +1388388968,1388389151,IT +1388389152,1388389167,NG +1388389168,1388389447,IT 1388389448,1388389455,NG 1388389456,1388389567,IT 1388389568,1388389631,NG @@ -34563,8 +35105,8 @@ 1388544000,1388546191,IE 1388546192,1388546201,GB 1388546202,1388547583,IE -1388547584,1388547775,GB -1388547776,1388547871,IE +1388547584,1388547839,GB +1388547840,1388547871,IE 1388547872,1388547903,GB 1388547904,1388547935,IE 1388547936,1388547951,GB @@ -34628,8 +35170,7 @@ 1388658688,1388666879,GB 1388666880,1388675071,FR 1388675072,1388675327,NL -1388675328,1388675583,EU -1388675584,1388676863,DE +1388675328,1388676863,DE 1388676864,1388677119,EU 1388677120,1388677375,GB 1388677376,1388677631,EU @@ -34717,11 +35258,21 @@ 1388742656,1388742719,GB 1388742720,1388742731,IE 1388742732,1388742735,IR -1388742736,1388743043,IE +1388742736,1388742783,IE +1388742784,1388742847,GB +1388742848,1388743023,IE +1388743024,1388743035,GB +1388743036,1388743043,IE 1388743044,1388743055,GB -1388743056,1388743443,IE +1388743056,1388743087,IE +1388743088,1388743099,GB +1388743100,1388743343,IE +1388743344,1388743351,GB +1388743352,1388743443,IE 1388743444,1388743451,GB -1388743452,1388743919,IE +1388743452,1388743555,IE +1388743556,1388743567,GB +1388743568,1388743919,IE 1388743920,1388743935,GB 1388743936,1388744087,IE 1388744088,1388744095,GB @@ -34733,9 +35284,7 @@ 1388744912,1388744915,GB 1388744916,1388745155,IE 1388745156,1388745159,GB -1388745160,1388745215,IE -1388745216,1388745343,GB -1388745344,1388745499,IE +1388745160,1388745499,IE 1388745500,1388745503,GB 1388745504,1388745559,IE 1388745560,1388745563,GB @@ -34766,8 +35315,8 @@ 1388747088,1388747551,IE 1388747552,1388747555,GB 1388747556,1388747575,IE -1388747576,1388747583,GB -1388747584,1388747671,IE +1388747576,1388747647,GB +1388747648,1388747671,IE 1388747672,1388747675,GB 1388747676,1388747783,IE 1388747784,1388747791,GB @@ -34793,7 +35342,9 @@ 1388765184,1388773375,GB 1388773376,1388781567,NO 1388781568,1388789759,ES -1388789760,1388797951,NL +1388789760,1388791519,NL +1388791520,1388791527,GB +1388791528,1388797951,NL 1388797952,1388806143,RU 1388806144,1388807679,DE 1388807680,1388807711,BZ @@ -35239,14 +35790,16 @@ 1389707264,1389723647,IT 1389723648,1389756415,ES 1389756416,1389772799,SE -1389772800,1389779967,SI -1389779968,1389780991,RS +1389772800,1389779455,SI +1389779456,1389780991,RS 1389780992,1389782527,HR 1389782528,1389782543,SI 1389782544,1389782559,HR 1389782560,1389783039,SI 1389783040,1389784063,BA -1389784064,1389788671,SI +1389784064,1389785087,SI +1389785088,1389785855,MK +1389785856,1389788671,SI 1389788672,1389789183,RS 1389789184,1389805567,PL 1389805568,1389821951,US @@ -35307,7 +35860,6 @@ 1398886400,1398888447,CH 1398888448,1398890495,GB 1398890496,1398892543,DK -1398892544,1398894591,UA 1398894592,1398896639,DE 1398896640,1398898687,CH 1398898688,1398931455,ES @@ -35359,9 +35911,7 @@ 1399717888,1399848959,AE 1399848960,1400111103,FR 1400111104,1400373247,NL -1400373248,1400635391,DE -1400635392,1400700927,EU -1400700928,1400705279,DE +1400373248,1400705279,DE 1400705280,1400706047,EU 1400706048,1400707071,DE 1400707072,1400709119,EU @@ -35615,7 +36165,9 @@ 1401747136,1401747151,DE 1401747152,1401747199,SE 1401747200,1401747215,IT -1401747216,1401747279,SE +1401747216,1401747235,SE +1401747236,1401747239,US +1401747240,1401747279,SE 1401747280,1401747295,ES 1401747296,1401747391,SE 1401747392,1401747407,DE @@ -35884,7 +36436,8 @@ 1404010496,1404026879,PL 1404026880,1404043263,ES 1404043264,1404045311,EE -1404045312,1404059647,SE +1404045312,1404051455,SE +1404051456,1404059647,KZ 1404059648,1404076031,NO 1404076032,1404084223,DE 1404084224,1404092415,NO @@ -35927,15 +36480,19 @@ 1404232704,1404233215,CH 1404233216,1404234239,SE 1404234240,1404235775,HR -1404235776,1404305407,SE +1404235776,1404256255,SE +1404256256,1404305407,RU 1404305408,1404321791,NL -1404321792,1404379135,SE +1404321792,1404338175,RU +1404338176,1404379135,SE 1404379136,1404383231,AT 1404383232,1404387327,SE 1404387328,1404395519,DE 1404395520,1404403711,SE 1404403712,1404411903,NL -1404411904,1404575743,SE +1404411904,1404420095,SE +1404420096,1404436479,RU +1404436480,1404575743,SE 1404575744,1404583935,HR 1404583936,1404645375,SE 1404645376,1404645887,HR @@ -35968,7 +36525,8 @@ 1405059072,1405063167,SE 1405063168,1405067263,NO 1405067264,1405075455,DE -1405075456,1405091839,SE +1405075456,1405083647,NL +1405083648,1405091839,SE 1405091840,1406140415,FR 1406140416,1406205951,CZ 1406205952,1406271487,SE @@ -36179,9 +36737,7 @@ 1407518376,1407518383,CD 1407518384,1407518391,A2 1407518392,1407518399,CD -1407518400,1407518783,A2 -1407518784,1407518815,CD -1407518816,1407518831,A2 +1407518400,1407518831,A2 1407518832,1407518847,NG 1407518848,1407518911,FR 1407518912,1407518943,NG @@ -36220,9 +36776,10 @@ 1407519760,1407519767,CD 1407519768,1407519775,GN 1407519776,1407519783,A2 -1407519784,1407519799,NG -1407519800,1407519807,A2 -1407519808,1407519823,NG +1407519784,1407519791,IQ +1407519792,1407519799,NG +1407519800,1407519815,A2 +1407519816,1407519823,NG 1407519824,1407519831,A2 1407519832,1407519839,SD 1407519840,1407519847,A2 @@ -36234,9 +36791,7 @@ 1407519896,1407519903,GN 1407519904,1407519911,NG 1407519912,1407519919,GN -1407519920,1407519943,A2 -1407519944,1407519951,NG -1407519952,1407519959,A2 +1407519920,1407519959,A2 1407519960,1407519983,NG 1407519984,1407519991,A2 1407519992,1407519999,NG @@ -36244,9 +36799,7 @@ 1407520008,1407520023,NG 1407520024,1407520031,A2 1407520032,1407520039,GN -1407520040,1407520047,A2 -1407520048,1407520063,ZW -1407520064,1407520071,A2 +1407520040,1407520071,A2 1407520072,1407520079,CM 1407520080,1407520087,NG 1407520088,1407520103,GN @@ -36310,14 +36863,13 @@ 1407520808,1407520815,CI 1407520816,1407520823,GQ 1407520824,1407520831,CI -1407520832,1407520839,NG +1407520832,1407520839,SO 1407520840,1407520847,A2 1407520848,1407520855,ZM 1407520856,1407520863,A2 1407520864,1407520871,TZ 1407520872,1407520879,CD -1407520880,1407520887,ZM -1407520888,1407520895,CD +1407520880,1407520895,A2 1407520896,1407520903,AO 1407520904,1407520911,NG 1407520912,1407520919,ZW @@ -36326,8 +36878,7 @@ 1407520936,1407520943,CD 1407520944,1407520951,A2 1407520952,1407520959,ZM -1407520960,1407520967,TZ -1407520968,1407520975,A2 +1407520960,1407520975,A2 1407520976,1407520991,ZM 1407520992,1407520999,IQ 1407521000,1407521023,CD @@ -36335,7 +36886,8 @@ 1407521032,1407521047,A2 1407521048,1407521055,NG 1407521056,1407521063,KE -1407521064,1407521079,NG +1407521064,1407521071,NG +1407521072,1407521079,A2 1407521080,1407521087,UG 1407521088,1407521095,NG 1407521096,1407521103,A2 @@ -36352,7 +36904,7 @@ 1407521184,1407521199,CD 1407521200,1407521207,A2 1407521208,1407521215,IQ -1407521216,1407521223,NG +1407521216,1407521223,A2 1407521224,1407521231,TZ 1407521232,1407521239,LR 1407521240,1407521247,A2 @@ -36362,14 +36914,12 @@ 1407521424,1407521543,A2 1407521544,1407521567,NG 1407521568,1407521575,A2 -1407521576,1407521591,NG -1407521592,1407521599,A2 -1407521600,1407521709,NG +1407521576,1407521709,NG 1407521710,1407522319,A2 1407522320,1407522327,TG 1407522328,1407522335,A2 1407522336,1407522351,SO -1407522352,1407522359,A2 +1407522352,1407522359,CD 1407522360,1407522367,FR 1407522368,1407522383,GQ 1407522384,1407522391,A2 @@ -36387,14 +36937,15 @@ 1407522480,1407522487,TZ 1407522488,1407522495,ZW 1407522496,1407522503,LR -1407522504,1407522527,A2 +1407522504,1407522511,ZW +1407522512,1407522527,A2 1407522528,1407522535,ZM 1407522536,1407522551,NG 1407522552,1407522559,UG 1407522560,1407522567,MZ 1407522568,1407522575,NG 1407522576,1407522583,A2 -1407522584,1407522591,NG +1407522584,1407522591,GL 1407522592,1407522599,A2 1407522600,1407522607,ZM 1407522608,1407522615,A2 @@ -36406,18 +36957,20 @@ 1407522664,1407522671,A2 1407522672,1407522679,ZM 1407522680,1407522687,IQ -1407522688,1407522711,NG +1407522688,1407522695,NG +1407522696,1407522703,GL +1407522704,1407522711,NG 1407522712,1407522719,BJ 1407522720,1407522727,A2 1407522728,1407522735,ZW -1407522736,1407522743,A2 +1407522736,1407522743,LR 1407522744,1407522751,NG 1407522752,1407522767,ZM 1407522768,1407522775,A2 1407522776,1407522791,NG 1407522792,1407522799,A2 1407522800,1407522807,ZM -1407522808,1407522815,NG +1407522808,1407522815,A2 1407522816,1407522823,CD 1407522824,1407522831,NG 1407522832,1407522839,MZ @@ -36431,10 +36984,9 @@ 1407523000,1407523007,A2 1407523008,1407523015,NG 1407523016,1407523023,KE -1407523024,1407523071,A2 -1407523072,1407523088,NG -1407523089,1407523095,A2 -1407523096,1407523103,NG +1407523024,1407523079,A2 +1407523080,1407523088,NG +1407523089,1407523103,A2 1407523104,1407523111,UG 1407523112,1407523119,ZW 1407523120,1407523127,CD @@ -36473,16 +37025,17 @@ 1407524608,1407524615,ZW 1407524616,1407524623,CM 1407524624,1407524631,A2 -1407524632,1407524647,NG +1407524632,1407524639,NG +1407524640,1407524647,A2 1407524648,1407524655,CD -1407524656,1407524671,NG -1407524672,1407524679,A2 +1407524656,1407524663,NG +1407524664,1407524679,A2 1407524680,1407524687,LR 1407524688,1407524703,MZ -1407524704,1407524711,A2 -1407524712,1407524719,CD -1407524720,1407524727,A2 -1407524728,1407524751,NG +1407524704,1407524727,A2 +1407524728,1407524735,NG +1407524736,1407524743,A2 +1407524744,1407524751,NG 1407524752,1407524759,A2 1407524760,1407524767,CM 1407524768,1407524775,BW @@ -36513,7 +37066,8 @@ 1407525040,1407525047,ZA 1407525048,1407525055,NG 1407525056,1407525063,ZA -1407525064,1407525079,NG +1407525064,1407525071,A2 +1407525072,1407525079,NG 1407525080,1407525087,A2 1407525088,1407525095,MW 1407525096,1407525103,A2 @@ -36611,8 +37165,7 @@ 1407533568,1407533583,NG 1407533584,1407533607,A2 1407533608,1407533631,NG -1407533632,1407533663,IQ -1407533664,1407533679,A2 +1407533632,1407533679,A2 1407533680,1407533695,NG 1407533696,1407533711,A2 1407533712,1407533719,ZW @@ -36652,7 +37205,7 @@ 1407534848,1407535103,CM 1407535104,1407535615,GA 1407535616,1407535623,CD -1407535624,1407535631,IQ +1407535624,1407535631,A2 1407535632,1407535639,SD 1407535640,1407535647,A2 1407535648,1407535655,NG @@ -36660,7 +37213,9 @@ 1407535664,1407535671,A2 1407535672,1407535679,SD 1407535680,1407535687,GN -1407535688,1407535711,A2 +1407535688,1407535695,A2 +1407535696,1407535703,GN +1407535704,1407535711,A2 1407535712,1407535719,GB 1407535720,1407535735,A2 1407535736,1407535743,NG @@ -36764,30 +37319,27 @@ 1407538040,1407538047,CD 1407538048,1407538055,NG 1407538056,1407538071,LU -1407538072,1407538079,NG +1407538072,1407538079,A2 1407538080,1407538087,LR 1407538088,1407538095,AO 1407538096,1407538103,CD 1407538104,1407538111,A2 1407538112,1407538119,LR -1407538120,1407538135,NG -1407538136,1407538143,A2 +1407538120,1407538127,NG +1407538128,1407538143,A2 1407538144,1407538151,GN 1407538152,1407538167,A2 1407538168,1407538175,IQ -1407538176,1407538183,A2 -1407538184,1407538191,NG -1407538192,1407538199,A2 -1407538200,1407538207,NG -1407538208,1407538208,A2 -1407538209,1407538271,NG +1407538176,1407538207,A2 +1407538208,1407538223,NG +1407538224,1407538263,A2 +1407538264,1407538271,NG 1407538272,1407538279,CO -1407538280,1407538287,A2 -1407538288,1407538295,NG +1407538280,1407538295,A2 1407538296,1407538303,AO -1407538304,1407538311,NG +1407538304,1407538311,A2 1407538312,1407538319,CD -1407538320,1407538327,NG +1407538320,1407538327,A2 1407538328,1407538335,CD 1407538336,1407538343,A2 1407538344,1407538351,CD @@ -36795,9 +37347,7 @@ 1407538384,1407538391,CM 1407538392,1407538407,A2 1407538408,1407538415,NG -1407538416,1407538423,A2 -1407538424,1407538431,NG -1407538432,1407538439,A2 +1407538416,1407538439,A2 1407538440,1407538447,NG 1407538448,1407538463,A2 1407538464,1407538471,ZM @@ -36832,15 +37382,17 @@ 1407539184,1407539191,A2 1407539192,1407539199,NG 1407539200,1407539455,GE -1407539456,1407539751,A2 +1407539456,1407539711,A2 +1407539712,1407539719,BE +1407539720,1407539751,A2 1407539752,1407539759,NG 1407539760,1407539831,A2 1407539832,1407539839,NG -1407539840,1407539967,A2 +1407539840,1407539935,A2 +1407539936,1407539943,CM +1407539944,1407539967,A2 1407539968,1407539975,CD -1407539976,1407540007,A2 -1407540008,1407540015,NG -1407540016,1407540055,A2 +1407539976,1407540055,A2 1407540056,1407540063,NG 1407540064,1407540071,A2 1407540072,1407540079,NG @@ -36850,9 +37402,7 @@ 1407540136,1407540143,NG 1407540144,1407540159,A2 1407540160,1407540167,CD -1407540168,1407540183,A2 -1407540184,1407540191,NG -1407540192,1407540199,A2 +1407540168,1407540199,A2 1407540200,1407540215,CD 1407540216,1407541471,A2 1407541472,1407541495,NG @@ -36988,8 +37538,8 @@ 1407704448,1407705207,GB 1407705208,1407705215,ES 1407705216,1407705247,GB -1407705248,1407705295,ES -1407705296,1407705599,GB +1407705248,1407705279,ES +1407705280,1407705599,GB 1407705600,1407705727,FR 1407705728,1407705759,GB 1407705760,1407705791,FR @@ -37291,15 +37841,15 @@ 1410221664,1410221671,GB 1410221672,1410234839,FR 1410234840,1410234847,A2 -1410234848,1410244863,FR -1410244864,1410244871,GB -1410244872,1410250551,FR +1410234848,1410250551,FR 1410250552,1410250559,GB 1410250560,1410261007,FR 1410261008,1410261015,GB 1410261016,1410261663,FR 1410261664,1410261671,GB -1410261672,1410262799,FR +1410261672,1410262023,FR +1410262024,1410262031,BE +1410262032,1410262799,FR 1410262800,1410262815,DE 1410262816,1410266303,FR 1410266304,1410266311,IE @@ -37369,8 +37919,8 @@ 1410573696,1410573711,RU 1410573712,1410573759,DE 1410573760,1410573775,BA -1410573776,1410573807,DE -1410573808,1410573815,IT +1410573776,1410573799,DE +1410573800,1410573815,IT 1410573816,1410573823,RU 1410573824,1410574527,DE 1410574528,1410574543,IT @@ -37380,8 +37930,7 @@ 1410574584,1410574591,RU 1410574592,1410574719,DE 1410574720,1410574727,RU -1410574728,1410574847,DE -1410574848,1410575103,GB +1410574728,1410575103,DE 1410575104,1410575111,US 1410575112,1410575119,IT 1410575120,1410575135,DE @@ -37414,7 +37963,9 @@ 1410621440,1410629631,NO 1410629632,1410637823,FI 1410637824,1410646015,AT -1410646016,1410654207,GB +1410646016,1410647807,GB +1410647808,1410648319,IE +1410648320,1410654207,GB 1410654208,1410662399,SI 1410662400,1410670591,HU 1410670592,1410678783,DE @@ -37471,9 +38022,7 @@ 1410756736,1410756863,DE 1410756864,1410757119,AQ 1410757120,1410758655,DE -1410758656,1410759423,AQ -1410759424,1410759679,GB -1410759680,1410760191,AQ +1410758656,1410760191,AQ 1410760192,1410760455,DE 1410760456,1410760471,AQ 1410760472,1410760479,SC @@ -37550,7 +38099,8 @@ 1411837952,1411842047,BG 1411842048,1411907583,PT 1411907584,1411907839,EU -1411907840,1411908351,GB +1411907840,1411908095,GB +1411908096,1411908351,DE 1411908352,1411908399,EU 1411908400,1411908479,GB 1411908480,1411908535,EU @@ -37612,8 +38162,8 @@ 1412000912,1412000943,SI 1412000944,1412000951,BA 1412000952,1412000959,SI -1412000960,1412000975,BA -1412000976,1412001311,SI +1412000960,1412000991,BA +1412000992,1412001311,SI 1412001312,1412001319,DE 1412001320,1412001807,SI 1412001808,1412001855,RO @@ -37752,7 +38302,9 @@ 1422400512,1422400767,BR 1422400768,1422406399,DE 1422406400,1422406463,GB -1422406464,1422462207,DE +1422406464,1422452495,DE +1422452496,1422452503,CA +1422452504,1422462207,DE 1422462208,1422462463,TR 1422462464,1422468671,DE 1422468672,1422468735,IT @@ -37779,12 +38331,12 @@ 1422853632,1422853919,FR 1422853920,1422854143,EU 1422854144,1422854151,FR -1422854152,1422856319,EU -1422856320,1422856447,FR -1422856448,1422856511,EU -1422856512,1422856575,FR -1422856576,1422856703,EU -1422856704,1422857855,FR +1422854152,1422856383,EU +1422856384,1422856447,FR +1422856448,1422856703,EU +1422856704,1422857151,FR +1422857152,1422857183,EU +1422857184,1422857855,FR 1422857856,1422857919,EU 1422857920,1422858143,FR 1422858144,1422858239,EU @@ -37913,7 +38465,7 @@ 1424605136,1424605183,NL 1424605184,1424605439,GB 1424605440,1424605567,BG -1424605568,1424605583,GB +1424605568,1424605583,GR 1424605584,1424605599,BE 1424605600,1424605607,GB 1424605608,1424605623,BG @@ -37957,9 +38509,7 @@ 1424610304,1424610559,TZ 1424610560,1424610815,PL 1424610816,1424611071,FR -1424611072,1424611095,BE -1424611096,1424611103,GB -1424611104,1424611135,BE +1424611072,1424611135,BE 1424611136,1424611151,GB 1424611152,1424611327,BE 1424611328,1424611583,PL @@ -38035,6 +38585,7 @@ 1424633856,1424637951,MD 1424637952,1424642047,FI 1424642048,1424646143,DK +1424646144,1424650239,UA 1424650240,1424654335,PL 1424654336,1424687103,NO 1424687104,1424711679,SA @@ -38098,7 +38649,6 @@ 1424850944,1424883711,LV 1424883712,1424916479,DK 1424916480,1424949247,BG -1424949248,1424982015,GB 1424982016,1425014783,FI 1425014784,1425031167,LT 1425031168,1425047551,FI @@ -38580,7 +39130,11 @@ 1427729312,1427729343,GR 1427729344,1427742719,DE 1427742720,1427742751,IO -1427742752,1427743231,DE +1427742752,1427742879,DE +1427742880,1427742911,TR +1427742912,1427743039,DE +1427743040,1427743071,BG +1427743072,1427743231,DE 1427743232,1427743263,GR 1427743264,1427743327,DE 1427743328,1427743359,NL @@ -38614,7 +39168,9 @@ 1427744864,1427744927,TR 1427744928,1427744991,DE 1427744992,1427745023,DK -1427745024,1427745151,DE +1427745024,1427745087,DE +1427745088,1427745119,RU +1427745120,1427745151,DE 1427745152,1427745183,RO 1427745184,1427745215,CH 1427745216,1427745247,DE @@ -38632,33 +39188,37 @@ 1427745824,1427745855,US 1427745856,1427746079,DE 1427746080,1427746111,GB -1427746112,1427746239,DE +1427746112,1427746143,DE +1427746144,1427746175,GR +1427746176,1427746239,DE 1427746240,1427746271,NL 1427746272,1427746367,DE 1427746368,1427746399,SE 1427746400,1427747839,DE 1427747840,1427747871,FI -1427747872,1427748063,DE +1427747872,1427747967,DE +1427747968,1427747999,BG +1427748000,1427748063,DE 1427748064,1427748095,NL -1427748096,1427748287,DE -1427748288,1427748319,PK -1427748320,1427748479,DE +1427748096,1427748479,DE 1427748480,1427748511,TR 1427748512,1427748543,DE 1427748544,1427748575,MX 1427748576,1427748799,DE -1427748800,1427748831,PK +1427748800,1427748831,US 1427748832,1427749503,DE 1427749504,1427749535,UA 1427749536,1427749567,DE 1427749568,1427749599,CY -1427749600,1427749631,DE +1427749600,1427749631,NL 1427749632,1427749663,US 1427749664,1427749887,DE 1427749888,1427749919,BR 1427749920,1427749951,DE 1427749952,1427749983,RU -1427749984,1427750239,DE +1427749984,1427750079,DE +1427750080,1427750111,BG +1427750112,1427750239,DE 1427750240,1427750271,NL 1427750272,1427750303,DE 1427750304,1427750335,GB @@ -38670,7 +39230,7 @@ 1427760192,1427760223,TR 1427760224,1427760255,US 1427760256,1427760319,BR -1427760320,1427760351,DE +1427760320,1427760351,TR 1427760352,1427760383,RU 1427760384,1427760415,TR 1427760416,1427760575,DE @@ -38679,7 +39239,7 @@ 1427760800,1427760831,NL 1427760832,1427760959,DE 1427760960,1427760991,CZ -1427760992,1427761023,DE +1427760992,1427761023,BG 1427761024,1427761055,HR 1427761056,1427761087,CL 1427761088,1427761119,CH @@ -38687,7 +39247,8 @@ 1427761184,1427761215,IT 1427761216,1427761247,DE 1427761248,1427761279,BR -1427761280,1427761375,DE +1427761280,1427761311,RU +1427761312,1427761375,DE 1427761376,1427761407,TW 1427761408,1427761503,DE 1427761504,1427761535,PL @@ -38698,8 +39259,7 @@ 1427767296,1427800063,BE 1427800064,1427823615,RU 1427823616,1427824639,KG -1427824640,1427831807,RU -1427831808,1427832831,MD +1427824640,1427832831,RU 1427832832,1427865599,BE 1427865600,1427898367,DK 1427898368,1427914751,RU @@ -38773,7 +39333,11 @@ 1431839040,1431846911,BE 1431846912,1431855103,NO 1431855104,1431863295,NL -1431863296,1431864935,PT +1431863296,1431864391,PT +1431864392,1431864399,ES +1431864400,1431864879,PT +1431864880,1431864887,ES +1431864888,1431864935,PT 1431864936,1431864943,ES 1431864944,1431865335,PT 1431865336,1431865343,ES @@ -38831,9 +39395,7 @@ 1432131584,1432133631,PH 1432133632,1432150015,GB 1432150016,1432158207,BA -1432158208,1432159042,DE -1432159043,1432159046,US -1432159047,1432159311,DE +1432158208,1432159311,DE 1432159312,1432159321,US 1432159322,1432159743,DE 1432159744,1432159871,PL @@ -39027,8 +39589,10 @@ 1434683120,1434683135,NL 1434683136,1434683327,DE 1434683328,1434683391,MY -1434683392,1434685439,DE -1434685440,1434687231,NL +1434683392,1434685759,DE +1434685760,1434685951,NL +1434685952,1434686207,DE +1434686208,1434687231,NL 1434687232,1434687359,DE 1434687360,1434687487,NL 1434687488,1434688207,DE @@ -39406,9 +39970,7 @@ 1441300480,1441308671,LT 1441308672,1441316863,SE 1441316864,1441325055,MT -1441325056,1441327519,PL -1441327520,1441327551,SE -1441327552,1441333247,PL +1441325056,1441333247,PL 1441333248,1441349631,DE 1441349632,1441357823,RU 1441357824,1441366015,AT @@ -40220,8 +40782,8 @@ 1446909364,1446909367,IQ 1446909368,1446909391,A2 1446909392,1446909395,ZM -1446909396,1446909401,NG -1446909402,1446909423,A2 +1446909396,1446909399,NG +1446909400,1446909423,A2 1446909424,1446909435,AF 1446909436,1446909443,A2 1446909444,1446909447,NG @@ -40813,7 +41375,9 @@ 1466590208,1466592255,GB 1466592256,1466592511,FR 1466592512,1466592767,GB -1466592768,1466593279,FR +1466592768,1466592895,FR +1466592896,1466593023,DE +1466593024,1466593279,GB 1466593280,1466604799,DE 1466604800,1466605055,ES 1466605056,1466606847,DE @@ -41012,9 +41576,10 @@ 1475181472,1475181519,DE 1475181520,1475181535,GB 1475181536,1475181551,NL -1475181552,1475184639,DE +1475181552,1475181855,DE +1475181856,1475181887,LU +1475181888,1475184639,DE 1475184640,1475186687,RU -1475186688,1475188735,ES 1475188736,1475190783,SE 1475190784,1475192831,GB 1475192832,1475194879,CH @@ -41067,8 +41632,8 @@ 1475223552,1475229695,NO 1475229696,1475229759,SE 1475229760,1475229951,NO -1475229952,1475230079,SE -1475230080,1475233791,NO +1475229952,1475230111,SE +1475230112,1475233791,NO 1475233792,1475234303,GB 1475234304,1475234559,IE 1475234560,1475235839,GB @@ -41128,7 +41693,7 @@ 1475287040,1475291135,RU 1475291136,1475293183,PL 1475293184,1475295231,GB -1475295232,1475299327,DK +1475297280,1475299327,DK 1475299328,1475301375,PL 1475301376,1475303423,LT 1475303424,1475305471,PL @@ -41561,7 +42126,13 @@ 1489338368,1489371135,BE 1489371136,1489402239,DE 1489402240,1489402367,TR -1489402368,1489436671,DE +1489402368,1489404767,DE +1489404768,1489404775,IT +1489404776,1489404839,DE +1489404840,1489404847,ES +1489404848,1489404855,DE +1489404856,1489404863,ES +1489404864,1489436671,DE 1489436672,1489502207,PL 1489502208,1489534975,SI 1489534976,1489567743,RU @@ -41613,8 +42184,8 @@ 1489993728,1490026495,LU 1490026496,1490028543,US 1490028544,1490029055,UA -1490029056,1490040839,NL -1490040840,1490041855,UA +1490029056,1490040847,NL +1490040848,1490041855,UA 1490041856,1490042879,NL 1490042880,1490049879,CZ 1490049880,1490049887,AT @@ -41647,9 +42218,7 @@ 1490196960,1490197247,IE 1490197248,1490206719,GB 1490206720,1490223103,GE -1490223104,1490230719,GB -1490230720,1490230751,FR -1490230752,1490255871,GB +1490223104,1490255871,GB 1490255872,1490272255,NL 1490272256,1490288639,GB 1490288640,1490305023,SK @@ -41667,8 +42236,8 @@ 1490472704,1490473983,GB 1490473984,1490474239,US 1490474240,1490478591,GB -1490478592,1490478847,RU -1490478848,1490484223,GB +1490478592,1490479103,RU +1490479104,1490484223,GB 1490484224,1490484479,US 1490484480,1490501631,GB 1490501632,1490518015,DE @@ -41839,8 +42408,8 @@ 1495170160,1495170175,FR 1495170176,1495170303,EU 1495170304,1495170335,FR -1495170336,1495170559,EU -1495170560,1495170815,FR +1495170336,1495170431,EU +1495170432,1495170815,FR 1495170816,1495171071,GB 1495171072,1495174399,NL 1495174400,1495174655,US @@ -41880,7 +42449,15 @@ 1495240704,1495240751,FR 1495240752,1495240759,BE 1495240760,1495240767,CH -1495240768,1495242751,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,1495242751,FR 1495242752,1495244799,MK 1495244800,1495246847,CZ 1495246848,1495248895,IE @@ -41901,31 +42478,51 @@ 1495334912,1495335935,MD 1495335936,1495339007,RO 1495339008,1495343103,MD -1495343104,1495399935,RO +1495343104,1495345151,GB +1495345152,1495347199,RO +1495347200,1495349247,GB +1495349248,1495399935,RO 1495399936,1495400191,MD -1495400192,1495623679,RO +1495400192,1495513087,RO +1495513088,1495515135,GB +1495515136,1495615487,RO +1495615488,1495616511,GB +1495616512,1495623679,RO 1495623680,1495623935,MD 1495623936,1495647743,RO 1495647744,1495648255,MD -1495648256,1495752703,RO +1495648256,1495669759,RO +1495669760,1495670783,GB +1495670784,1495752703,RO 1495752704,1495754751,ES 1495754752,1495801855,RO 1495801856,1495802879,GB 1495802880,1495875583,RO 1495875584,1495891967,MD -1495891968,1495927295,RO +1495891968,1495896063,RO +1495896064,1495898111,GB +1495898112,1495927295,RO 1495927296,1495927551,AE 1495927552,1495937023,RO 1495937024,1495937535,ES 1495937536,1495986175,RO 1495986176,1495988223,GB -1495988224,1496078335,RO +1495988224,1495992319,RO +1495992320,1495994367,GB +1495994368,1496074239,RO +1496074240,1496075263,GB +1496075264,1496078335,RO 1496078336,1496079359,MD -1496079360,1496121343,RO +1496079360,1496080383,RO +1496080384,1496081407,GB +1496081408,1496119295,RO +1496119296,1496121343,GB 1496121344,1496122367,MD 1496122368,1496178943,RO 1496178944,1496179199,AE -1496179200,1496317951,RO +1496179200,1496195071,RO +1496195072,1496197119,GB +1496197120,1496317951,RO 1496317952,1497366527,DE 1497366528,1498415103,PL 1498415104,1499463679,FR @@ -41957,9 +42554,13 @@ 1500107776,1500107903,DE 1500107904,1500107943,NL 1500107944,1500107951,DE -1500107952,1500108159,NL +1500107952,1500107999,NL +1500108000,1500108007,BE +1500108008,1500108159,NL 1500108160,1500108287,DE -1500108288,1500110847,NL +1500108288,1500108319,NL +1500108320,1500108351,DE +1500108352,1500110847,NL 1500110848,1500119039,UA 1500119040,1500127231,TR 1500127232,1500135423,FI @@ -42271,7 +42872,13 @@ 1503898616,1503898623,SE 1503898624,1503898631,DE 1503898632,1503898647,GR -1503898648,1503908351,DE +1503898648,1503898679,DE +1503898680,1503898687,IT +1503898688,1503898791,DE +1503898792,1503898799,US +1503898800,1503898815,DE +1503898816,1503898831,GB +1503898832,1503908351,DE 1503908352,1503909375,IT 1503909376,1503920127,DE 1503920128,1503985663,HR @@ -42414,7 +43021,9 @@ 1505435648,1505443839,MD 1505443840,1505452327,GB 1505452328,1505452335,NO -1505452336,1505454367,GB +1505452336,1505453439,GB +1505453440,1505453567,US +1505453568,1505454367,GB 1505454368,1505454375,US 1505454376,1505454383,GB 1505454384,1505454391,US @@ -42440,11 +43049,17 @@ 1505456936,1505456983,GB 1505456984,1505456987,IL 1505456988,1505456991,US -1505456992,1505458175,GB +1505456992,1505457011,GB +1505457012,1505457015,US +1505457016,1505458175,GB 1505458176,1505458431,US -1505458432,1505458463,GB -1505458464,1505458495,US -1505458496,1505460223,GB +1505458432,1505458451,GB +1505458452,1505458495,US +1505458496,1505458511,GB +1505458512,1505458519,US +1505458520,1505458543,GB +1505458544,1505458559,US +1505458560,1505460223,GB 1505460224,1505476607,CZ 1505476608,1505484799,RU 1505484800,1505492991,PL @@ -42462,7 +43077,9 @@ 1505607680,1505615871,SE 1505615872,1505624063,SA 1505624064,1505632255,FI -1505632256,1505648639,CZ +1505632256,1505646847,CZ +1505646848,1505647103,PL +1505647104,1505648639,CZ 1505648640,1505656831,LT 1505656832,1505665023,BH 1505665024,1505668263,IT @@ -42504,12 +43121,13 @@ 1506377728,1506410495,HR 1506410496,1506418687,DE 1506418688,1506418695,CY -1506418696,1506418703,DE +1506418696,1506418703,GB 1506418704,1506418719,CA 1506418720,1506422655,DE 1506422656,1506422687,CY 1506422688,1506422703,CA -1506422704,1506422719,DE +1506422704,1506422711,GB +1506422712,1506422719,DE 1506422720,1506422751,US 1506422752,1506427663,DE 1506427664,1506427679,GB @@ -42625,7 +43243,9 @@ 1506445768,1506445815,FR 1506445816,1506445823,GB 1506445824,1506446335,FR -1506446336,1506447359,NL +1506446336,1506446719,NL +1506446720,1506446727,GB +1506446728,1506447359,NL 1506447360,1506447423,IT 1506447424,1506447455,GB 1506447456,1506448255,IT @@ -42653,7 +43273,10 @@ 1506450864,1506450879,GB 1506450880,1506450943,CZ 1506450944,1506451023,DK -1506451024,1506451199,GB +1506451024,1506451031,FI +1506451032,1506451039,DK +1506451040,1506451055,NO +1506451056,1506451199,GB 1506451200,1506451895,ES 1506451896,1506451903,GB 1506451904,1506452223,ES @@ -42689,7 +43312,9 @@ 1506456960,1506456991,GB 1506456992,1506457087,IT 1506457088,1506458239,GB -1506458240,1506458623,CH +1506458240,1506458287,CH +1506458288,1506458303,GB +1506458304,1506458623,CH 1506458624,1506459135,GB 1506459136,1506459647,BE 1506459648,1506460047,FR @@ -42731,7 +43356,8 @@ 1506467584,1506468351,IT 1506468352,1506468607,GB 1506468608,1506468863,TZ -1506468864,1506469119,GB +1506468864,1506469015,IT +1506469016,1506469119,GB 1506469120,1506470143,IT 1506470144,1506470399,GB 1506470400,1506470655,DE @@ -42778,8 +43404,8 @@ 1506758656,1506760703,IT 1506760704,1506764799,RU 1506764800,1506766847,IT -1506766848,1506766903,NO -1506766904,1506768895,GE +1506766848,1506767103,NO +1506767104,1506768895,GE 1506768896,1506770943,AT 1506770944,1506772991,NL 1506772992,1506775039,GB @@ -42897,8 +43523,8 @@ 1508647040,1508648447,SE 1508648448,1508648703,DK 1508648704,1508650751,SE -1508650752,1508650831,DK -1508650832,1508650879,SE +1508650752,1508650839,DK +1508650840,1508650879,SE 1508650880,1508651263,DK 1508651264,1508652543,SE 1508652544,1508654079,DK @@ -42954,7 +43580,9 @@ 1509467520,1509467583,BE 1509467584,1509467839,NL 1509467840,1509467871,PL -1509467872,1509469439,NL +1509467872,1509469055,NL +1509469056,1509469183,PL +1509469184,1509469439,NL 1509469440,1509469567,SE 1509469568,1509469887,NL 1509469888,1509469919,MY @@ -43075,9 +43703,7 @@ 1518962688,1518964735,NO 1518964736,1518966783,HR 1518966784,1518967807,SE -1518967808,1518970879,HR -1518970880,1518972927,SE -1518972928,1518977023,HR +1518967808,1518977023,HR 1518977024,1518993407,SE 1518993408,1519190015,RU 1519190016,1519321087,SE @@ -43517,8 +44143,8 @@ 1534715776,1534715783,PL 1534715784,1534715791,BE 1534715792,1534715807,ES -1534715808,1534715871,FR -1534715872,1534715879,FI +1534715808,1534715875,FR +1534715876,1534715879,NL 1534715880,1534715883,CH 1534715884,1534715887,PL 1534715888,1534715919,FR @@ -43594,7 +44220,7 @@ 1534717504,1534717535,DE 1534717536,1534717551,PL 1534717552,1534717567,CZ -1534717568,1534717583,PL +1534717568,1534717583,IE 1534717584,1534717647,FR 1534717648,1534717655,BE 1534717656,1534717659,ES @@ -43608,7 +44234,9 @@ 1534717740,1534717743,DE 1534717744,1534717751,FR 1534717752,1534717759,BE -1534717760,1534717823,ES +1534717760,1534717775,FR +1534717776,1534717791,NL +1534717792,1534717823,FR 1534717824,1534717855,BE 1534717856,1534717871,NL 1534717872,1534717903,FR @@ -43631,7 +44259,7 @@ 1534718088,1534718091,DE 1534718092,1534718095,ES 1534718096,1534718111,PL -1534718112,1534718127,IT +1534718112,1534718127,GB 1534718128,1534718143,ES 1534718144,1534718159,FR 1534718160,1534718175,DE @@ -43644,7 +44272,10 @@ 1534718448,1534718463,FR 1534718464,1534718467,DE 1534718468,1534718471,PT -1534718472,1534718531,FR +1534718472,1534718479,FR +1534718480,1534718487,PL +1534718488,1534718495,DE +1534718496,1534718531,FR 1534718532,1534718535,PL 1534718536,1534718539,DE 1534718540,1534718543,ES @@ -43721,7 +44352,8 @@ 1534720216,1534720223,FR 1534720224,1534720239,DE 1534720240,1534720255,BE -1534720256,1534720287,PL +1534720256,1534720271,NL +1534720272,1534720287,PL 1534720288,1534720351,FR 1534720352,1534720367,ES 1534720368,1534720383,PL @@ -43764,7 +44396,9 @@ 1534720880,1534720895,FR 1534720896,1534720899,ES 1534720900,1534720903,GB -1534720904,1534720959,FR +1534720904,1534720943,FR +1534720944,1534720951,ES +1534720952,1534720959,PL 1534720960,1534720967,IT 1534720968,1534720971,DE 1534720972,1534720975,FR @@ -43802,7 +44436,9 @@ 1534721320,1534721327,PT 1534721328,1534721343,NL 1534721344,1534721359,PL -1534721360,1534721375,FR +1534721360,1534721367,CH +1534721368,1534721371,GB +1534721372,1534721375,DE 1534721376,1534721391,ES 1534721392,1534721407,PL 1534721408,1534721439,DE @@ -43820,9 +44456,7 @@ 1534721628,1534721631,NL 1534721632,1534721663,FR 1534721664,1534721679,ES -1534721680,1534721711,FR -1534721712,1534721727,ES -1534721728,1534721743,FR +1534721680,1534721743,FR 1534721744,1534721747,PL 1534721748,1534721751,GB 1534721752,1534721755,DE @@ -44025,8 +44659,7 @@ 1536659944,1536659951,SD 1536659952,1536659991,DE 1536659992,1536659999,EG -1536660000,1536660003,DE -1536660004,1536660007,SO +1536660000,1536660007,SO 1536660008,1536660015,DE 1536660016,1536660019,CG 1536660020,1536660023,DE @@ -44043,7 +44676,9 @@ 1536662320,1536662335,LB 1536662336,1536662351,DE 1536662352,1536662359,TD -1536662360,1536662415,DE +1536662360,1536662367,DE +1536662368,1536662399,SO +1536662400,1536662415,DE 1536662416,1536662431,GN 1536662432,1536662463,IQ 1536662464,1536662527,SO @@ -44066,10 +44701,8 @@ 1537212416,1538260991,FR 1538260992,1538785279,BE 1538785280,1538793471,NL -1538793472,1538797567,DE -1538797568,1538799551,NL -1538799552,1538799615,DE -1538799616,1538801663,NL +1538793472,1538797055,DE +1538797056,1538801663,NL 1538801664,1538809855,IR 1538809856,1538818047,GE 1538818048,1538826239,NO @@ -44666,7 +45299,7 @@ 1539680256,1539681279,UA 1539681280,1539684351,RU 1539684352,1539685375,UA -1539686400,1539688447,RU +1539685376,1539688447,RU 1539688448,1539689471,SA 1539689472,1539690495,RU 1539690496,1539691519,FI @@ -45184,6 +45817,7 @@ 1539860480,1539861503,UA 1539861504,1539862527,DE 1539862528,1539863551,UA +1539863552,1539864575,ES 1539864576,1539865599,RO 1539865600,1539866623,UA 1539866624,1539867647,IT @@ -45200,6 +45834,7 @@ 1539879936,1539880959,UA 1539880960,1539881983,PL 1539881984,1539883007,UA +1539883008,1539884031,RS 1539884032,1539885055,MT 1539885056,1539886079,UA 1539886080,1539887103,FR @@ -45628,6 +46263,7 @@ 1540318720,1540319231,RO 1540319232,1540320255,UA 1540320256,1540320767,RU +1540320768,1540321279,GB 1540321280,1540321791,SE 1540321792,1540322303,RU 1540322304,1540322815,UA @@ -46140,7 +46776,6 @@ 1540483840,1540484095,UA 1540484096,1540484351,DK 1540484352,1540484607,SI -1540484608,1540484863,EU 1540484864,1540485119,UA 1540485120,1540485375,SE 1540485376,1540485631,RO @@ -47080,6 +47715,7 @@ 1540960256,1540960767,PL 1540960768,1540961279,RU 1540961280,1540961791,CZ +1540961792,1540962303,AT 1540962304,1540962815,NL 1540962816,1540963839,UA 1540963840,1540964351,RU @@ -47261,6 +47897,7 @@ 1541052416,1541053439,RO 1541053440,1541054463,PL 1541054464,1541055487,RU +1541055488,1541056511,PL 1541056512,1541057535,TJ 1541057536,1541058559,RS 1541058560,1541059583,RU @@ -47312,11 +47949,12 @@ 1541110784,1541111807,RU 1541111808,1541112831,PL 1541112832,1541113855,SK -1541113856,1541115903,RU -1541115904,1541116927,UA +1541113856,1541114879,RU +1541114880,1541116927,UA 1541116928,1541117951,RU 1541117952,1541118975,DK 1541118976,1541122047,RU +1541122048,1541123071,UA 1541123072,1541124095,FI 1541124096,1541126143,RU 1541126144,1541127167,PL @@ -47500,7 +48138,7 @@ 1541188864,1541189119,RU 1541189120,1541189375,UA 1541189376,1541189631,GB -1541189632,1541189887,BG +1541189632,1541189887,SC 1541189888,1541190143,PL 1541190144,1541190399,GB 1541190400,1541190655,AT @@ -47575,7 +48213,7 @@ 1541210112,1541210623,RU 1541210624,1541211135,CZ 1541211136,1541211647,SK -1541211648,1541212159,RU +1541211648,1541212159,UA 1541212160,1541212671,DE 1541212672,1541213183,MT 1541213184,1541213695,DE @@ -47684,6 +48322,12 @@ 1541270016,1541270527,UA 1541270528,1541271039,IT 1541271040,1541271551,FI +1541271552,1541272063,RO +1541272576,1541273087,FR +1541273088,1541274111,RU +1541274112,1541274623,DE +1541274624,1541275135,UA +1541275136,1541275647,FR 1541275648,1541276671,UA 1541276672,1541277695,RS 1541277696,1541278719,ES @@ -47720,8 +48364,123 @@ 1541317632,1541318655,RU 1541318656,1541320703,UA 1541320704,1541321727,DE +1541321728,1541322751,UA +1541322752,1541323775,PL +1541323776,1541324799,FI +1541324800,1541325823,PL +1541325824,1541326847,IR +1541326848,1541327871,SA +1541327872,1541328895,CZ +1541328896,1541329919,RU +1541329920,1541330943,PL +1541330944,1541331967,RU +1541331968,1541332991,UA +1541332992,1541334015,PL +1541334016,1541335039,RU +1541335040,1541336063,DE +1541336064,1541338111,RU +1541338112,1541341183,UA +1541341184,1541341439,TR +1541341440,1541341695,RU +1541341696,1541341951,DE +1541341952,1541342463,PL +1541342464,1541342719,FR +1541342720,1541342975,PL +1541342976,1541343231,RU +1541343232,1541343487,TR +1541343488,1541343743,IE +1541343744,1541343999,GB +1541344000,1541344255,IL +1541344256,1541344511,IT +1541344512,1541345023,PL +1541345024,1541345279,RU +1541345280,1541345535,GB +1541345536,1541345791,CH +1541345792,1541346047,DE +1541346048,1541346303,UA +1541346304,1541346559,DE +1541346560,1541346815,BE +1541346816,1541347071,FR +1541347072,1541347327,PL +1541347328,1541347583,HR +1541347584,1541347839,RU +1541347840,1541348095,SI +1541348096,1541348351,UA +1541348352,1541348607,RU +1541348608,1541348863,HR +1541348864,1541349119,UA +1541349120,1541349375,PL +1541349376,1541349631,ES +1541349632,1541349887,PL +1541349888,1541350143,RU +1541350144,1541350399,FR +1541350400,1541350655,NO +1541350656,1541350911,RU +1541350912,1541351167,AT +1541351168,1541351423,SI +1541351424,1541351679,FR +1541351680,1541351935,DE +1541351936,1541352191,GR +1541352192,1541352447,SI +1541352448,1541352703,RU +1541352704,1541352959,RO +1541352960,1541353215,GB +1541353216,1541353471,SE +1541353472,1541353727,UA +1541353728,1541353983,SI +1541353984,1541354239,RO +1541354240,1541354495,SE +1541354496,1541354751,PL +1541354752,1541355007,UA +1541355008,1541355263,IL +1541355264,1541355519,PL +1541355520,1541355775,NL +1541355776,1541356031,PL +1541356032,1541356287,GB +1541356288,1541356543,UA +1541356544,1541356799,RU +1541356800,1541357055,ES +1541357056,1541357311,FR +1541357312,1541357567,RU +1541357568,1541357823,PL +1541357824,1541358079,HR +1541358080,1541358335,BG +1541406720,1541407231,LV +1541407232,1541407743,UA +1541407744,1541408255,FI +1541408256,1541408767,FR +1541408768,1541409791,UA +1541409792,1541410303,LV +1541410304,1541410815,RU +1541410816,1541411327,UA +1541411328,1541412863,RU +1541412864,1541413375,UA +1541413376,1541413887,GB +1541413888,1541414399,PL +1541414400,1541414911,UA +1541414912,1541415935,RU +1541415936,1541416447,SE +1541416448,1541416959,PL +1541416960,1541417471,RO +1541417472,1541417983,SK +1541417984,1541418495,UA +1541472256,1541473279,GB +1541473280,1541474303,UA +1541474304,1541475327,PL +1541475328,1541476351,RO +1541476352,1541477375,GB +1541477376,1541479423,RU +1541479424,1541480447,PL +1541480448,1541481471,RO +1541481472,1541485567,UA 1543503872,1545601023,GB -1545601024,1545863167,SE +1545601024,1545673167,SE +1545673168,1545673175,FI +1545673176,1545673183,SE +1545673184,1545673215,FI +1545673216,1545674495,SE +1545674496,1545674751,FI +1545674752,1545863167,SE 1545863168,1545895935,RU 1545895936,1545928703,BA 1545928704,1545961471,SI @@ -47805,8 +48564,9 @@ 1546317824,1546319871,CH 1546319872,1546321919,RS 1546321920,1546323967,RU -1546323968,1546324479,GE -1546324480,1546326015,NO +1546323968,1546325503,GE +1546325504,1546325759,SE +1546325760,1546326015,NO 1546326016,1546327295,ES 1546327296,1546327551,FR 1546327552,1546328063,ES @@ -48243,7 +49003,7 @@ 1566314496,1566316543,BE 1566316544,1566318591,NO 1566318592,1566320639,RU -1566320640,1566321151,GB +1566320640,1566321151,DE 1566321152,1566321407,NL 1566321408,1566321663,UA 1566321664,1566321919,BZ @@ -48351,17 +49111,23 @@ 1566470344,1566470351,IE 1566470352,1566470367,GB 1566470368,1566470511,IE -1566470512,1566470655,GB +1566470512,1566470527,GB +1566470528,1566470559,IE +1566470560,1566470563,GB +1566470564,1566470623,IE +1566470624,1566470655,GB 1566470656,1566470719,IE 1566470720,1566470727,GB 1566470728,1566470739,IE 1566470740,1566470743,GB 1566470744,1566470847,IE 1566470848,1566470879,GB -1566470880,1566470895,IR +1566470880,1566470895,IE 1566470896,1566470911,GB -1566470912,1566472191,IE -1566472192,1566474239,GB +1566470912,1566471051,IE +1566471052,1566471191,GB +1566471192,1566471229,IE +1566471230,1566474239,GB 1566474240,1566476287,DE 1566476288,1566478335,BG 1566478336,1566482431,RU @@ -48512,8 +49278,8 @@ 1570625536,1570627583,GB 1570627584,1570635775,RU 1570635776,1570644991,FR -1570644992,1570645039,GB -1570645040,1570652159,FR +1570644992,1570645055,GB +1570645056,1570652159,FR 1570652160,1570652287,SE 1570652288,1570652291,MY 1570652292,1570652543,SE @@ -48654,15 +49420,17 @@ 1571430400,1571432447,UA 1571432448,1571434495,CZ 1571434496,1571435519,UA -1571435520,1571440639,CZ -1571440640,1571441663,UA +1571435520,1571438591,CZ +1571438592,1571441663,UA 1571441664,1571442175,KZ 1571442176,1571442687,NL 1571442688,1571446783,CZ 1571446784,1571448831,KZ 1571448832,1571450879,US 1571450880,1571451903,UA -1571451904,1571553279,CZ +1571451904,1571487743,CZ +1571487744,1571495935,SK +1571495936,1571553279,CZ 1571553280,1571684351,IL 1571684352,1571686399,ES 1571686400,1571688447,GB @@ -48814,7 +49582,10 @@ 1572532224,1572536319,IT 1572536320,1572538367,GB 1572538368,1572540415,NL -1572540416,1572541439,GB +1572540416,1572540479,DE +1572540480,1572540511,GB +1572540512,1572540519,DE +1572540520,1572541439,GB 1572541440,1572541447,FR 1572541448,1572541455,GB 1572541456,1572541463,FR @@ -48891,14 +49662,16 @@ 1572663296,1572665343,DE 1572665344,1572667391,NL 1572667392,1572667903,GB -1572667904,1572667919,SA -1572667920,1572668303,GB +1572667904,1572667927,SA +1572667928,1572668303,GB 1572668304,1572668311,SA 1572668312,1572668415,GB 1572668416,1572668431,SA 1572668432,1572668463,GB 1572668464,1572668471,SA -1572668472,1572669439,GB +1572668472,1572668639,GB +1572668640,1572668647,SA +1572668648,1572669439,GB 1572669440,1572673535,RU 1572673536,1572675583,AT 1572675584,1572677631,ES @@ -48941,7 +49714,9 @@ 1572741120,1572743167,FI 1572743168,1572745215,UA 1572745216,1572749311,CZ -1572749312,1572751359,DE +1572749312,1572751111,DE +1572751112,1572751119,GB +1572751120,1572751359,DE 1572751360,1572753407,CH 1572753408,1572755455,NO 1572755456,1572757503,DE @@ -48998,11 +49773,20 @@ 1572847616,1572849663,GI 1572849664,1572851711,GB 1572851712,1572853759,DE -1572853760,1572854015,BE +1572853760,1572853769,BE +1572853770,1572853770,DK +1572853771,1572854015,BE 1572854016,1572854271,LU -1572854272,1572854527,BE -1572854528,1572855551,EU -1572855552,1572855807,BE +1572854272,1572854284,BE +1572854285,1572854285,NL +1572854286,1572854286,CH +1572854287,1572854287,LU +1572854288,1572854527,BE +1572854528,1572855295,EU +1572855296,1572855551,CH +1572855552,1572855561,BE +1572855562,1572855562,DK +1572855563,1572855807,BE 1572855808,1572857855,KZ 1572857856,1572859903,SE 1572859904,1572861951,IT @@ -49021,7 +49805,9 @@ 1578584576,1578586111,PT 1578586112,1578588159,ES 1578588160,1578590207,PL -1578590208,1578590271,FR +1578590208,1578590223,FR +1578590224,1578590231,ES +1578590232,1578590271,FR 1578590272,1578590275,NL 1578590276,1578590279,PT 1578590280,1578590283,PL @@ -49081,8 +49867,9 @@ 1578591136,1578591143,FR 1578591144,1578591151,GB 1578591152,1578591183,FR -1578591184,1578591199,ES -1578591200,1578591247,FR +1578591184,1578591187,CH +1578591188,1578591195,GB +1578591196,1578591247,FR 1578591248,1578591263,PL 1578591264,1578591279,FR 1578591280,1578591287,ES @@ -49097,7 +49884,9 @@ 1578591416,1578591423,ES 1578591424,1578591431,PL 1578591432,1578591439,ES -1578591440,1578591463,FR +1578591440,1578591455,FR +1578591456,1578591459,GB +1578591460,1578591463,FR 1578591464,1578591487,PL 1578591488,1578591503,FR 1578591504,1578591519,CH @@ -49109,8 +49898,8 @@ 1578591576,1578591579,DE 1578591580,1578591583,ES 1578591584,1578591599,IT -1578591600,1578591663,FR -1578591664,1578591695,PL +1578591600,1578591679,FR +1578591680,1578591695,PL 1578591696,1578591699,DE 1578591700,1578591707,FR 1578591708,1578591711,CZ @@ -49150,7 +49939,8 @@ 1578592276,1578592279,FI 1578592280,1578592283,BE 1578592284,1578592287,NL -1578592288,1578592303,DE +1578592288,1578592295,PL +1578592296,1578592303,PT 1578592304,1578592319,FR 1578592320,1578592335,ES 1578592336,1578592351,FR @@ -49206,8 +49996,15 @@ 1578593456,1578593487,FR 1578593488,1578593495,ES 1578593496,1578593503,FR -1578593504,1578593535,PL -1578593536,1578593599,GB +1578593504,1578593519,PL +1578593520,1578593543,FR +1578593544,1578593547,ES +1578593548,1578593551,FI +1578593552,1578593559,PL +1578593560,1578593567,FR +1578593568,1578593583,CZ +1578593584,1578593587,FR +1578593588,1578593599,DE 1578593600,1578593631,FR 1578593632,1578593647,NL 1578593648,1578593659,PL @@ -49356,7 +50153,7 @@ 1578595908,1578595911,BE 1578595912,1578595935,FR 1578595936,1578595967,DE -1578595968,1578595983,FR +1578595968,1578595983,IE 1578595984,1578595991,NL 1578595992,1578595995,IT 1578595996,1578596095,FR @@ -49391,7 +50188,15 @@ 1578604544,1578606591,GB 1578606592,1578608639,DE 1578608640,1578610687,CZ -1578610688,1578610943,FR +1578610688,1578610767,FR +1578610768,1578610771,CH +1578610772,1578610775,GB +1578610776,1578610779,DE +1578610780,1578610783,FR +1578610784,1578610799,NL +1578610800,1578610803,PL +1578610804,1578610807,GB +1578610808,1578610943,FR 1578610944,1578610975,ES 1578610976,1578611039,PL 1578611040,1578611043,ES @@ -49426,20 +50231,36 @@ 1578611404,1578611407,ES 1578611408,1578611423,IT 1578611424,1578611439,GB -1578611440,1578611455,IT +1578611440,1578611443,ES +1578611444,1578611447,FR +1578611448,1578611455,ES 1578611456,1578611711,FR 1578611712,1578611775,CH 1578611776,1578611783,DE 1578611784,1578611807,FR 1578611808,1578611839,CH -1578611840,1578611919,FR +1578611840,1578611855,ES +1578611856,1578611919,FR 1578611920,1578611935,BE 1578611936,1578611943,PL 1578611944,1578611947,FR 1578611948,1578611951,GB 1578611952,1578611967,FR -1578611968,1578612159,GB -1578612160,1578612223,PL +1578611968,1578612031,GB +1578612032,1578612039,DE +1578612040,1578612047,CH +1578612048,1578612051,NL +1578612052,1578612055,DE +1578612056,1578612059,PL +1578612060,1578612063,ES +1578612064,1578612115,FR +1578612116,1578612119,PL +1578612120,1578612123,IE +1578612124,1578612127,DE +1578612128,1578612135,ES +1578612136,1578612139,NL +1578612140,1578612143,ES +1578612144,1578612223,PL 1578612224,1578612239,GB 1578612240,1578612255,FR 1578612256,1578612259,PL @@ -49520,7 +50341,9 @@ 1579094016,1579104511,GB 1579104512,1579104767,NL 1579104768,1579105023,GB -1579105024,1579105151,NL +1579105024,1579105087,NL +1579105088,1579105119,DE +1579105120,1579105151,NL 1579105152,1579105279,GB 1579105280,1579105343,NL 1579105344,1579105535,GB @@ -49741,7 +50564,8 @@ 1585265776,1585265919,FR 1585265920,1585265935,IM 1585265936,1585266111,FR -1585266112,1585266687,IM +1585266112,1585266175,IM +1585266176,1585266687,MT 1585266688,1585270783,DE 1585270784,1585272831,IT 1585272832,1585274879,RU @@ -49799,8 +50623,8 @@ 1585375232,1585377279,GB 1585377280,1585379327,ES 1585379328,1585381375,CH -1585381376,1585381887,RS -1585381888,1585383423,GB +1585381376,1585382399,RS +1585382400,1585383423,GB 1585383424,1585385471,FR 1585385472,1585387519,DE 1585387520,1585389567,SI @@ -49862,7 +50686,8 @@ 1586012160,1586020351,DE 1586020352,1586028543,RU 1586028544,1586036735,GB -1586036736,1586069503,RU +1586036736,1586061311,RU +1586061312,1586069503,SE 1586069504,1586077695,DE 1586077696,1586085887,GE 1586085888,1586110463,RU @@ -49976,7 +50801,9 @@ 1588621312,1588625407,MD 1588625408,1588670463,RO 1588670464,1588674559,MD -1588674560,1588723711,RO +1588674560,1588689407,RO +1588689408,1588689919,DE +1588689920,1588723711,RO 1588723712,1588854783,UA 1588854784,1588985855,RU 1588985856,1589182463,IR @@ -50095,11 +50922,12 @@ 1592061952,1592066047,RU 1592066048,1592067583,US 1592067584,1592067711,NO -1592067712,1592069375,CY +1592067712,1592069295,CY +1592069296,1592069375,RU 1592069376,1592069407,US 1592069408,1592069631,CY -1592069632,1592069695,NL -1592069696,1592069855,CY +1592069632,1592069759,NL +1592069760,1592069855,CY 1592069856,1592069887,NL 1592069888,1592074239,RU 1592074240,1592078335,SK @@ -50108,8 +50936,8 @@ 1592085024,1592085039,ES 1592085040,1592086527,GB 1592086528,1592087295,CZ -1592087296,1592088063,PL -1592088064,1592090623,CZ +1592087296,1592088191,PL +1592088192,1592090623,CZ 1592090624,1592094719,RU 1592094720,1592098815,RS 1592098816,1592102911,GB @@ -50208,7 +51036,9 @@ 1593202688,1593202815,NO 1593202816,1593203455,SE 1593203456,1593203487,NO -1593203488,1593204159,SE +1593203488,1593204087,SE +1593204088,1593204095,FI +1593204096,1593204159,SE 1593204160,1593204223,DK 1593204224,1593205567,SE 1593205568,1593205631,DK @@ -50265,9 +51095,7 @@ 1593311232,1593343999,UA 1593344000,1593376767,HU 1593376768,1593409535,JO -1593409536,1593416231,DE -1593416232,1593416239,CH -1593416240,1593442303,DE +1593409536,1593442303,DE 1593442304,1593475071,BA 1593475072,1593540607,RU 1593540608,1593573375,PL @@ -50417,10 +51245,12 @@ 1602273536,1602273791,GB 1602273792,1602274559,IN 1602274560,1602274815,IE -1602274816,1602275327,FR +1602274816,1602275327,IN 1602275328,1602275615,DE 1602275616,1602275647,CY -1602275648,1602279423,DE +1602275648,1602275679,DE +1602275680,1602275695,CA +1602275696,1602279423,DE 1602279424,1602281471,GB 1602281472,1602283519,RU 1602283520,1602285567,HR @@ -50434,7 +51264,7 @@ 1602298368,1602298431,MT 1602298432,1602298879,IL 1602298880,1602299391,MT -1602299392,1602299903,IL +1602299392,1602299903,GG 1602299904,1602301951,DK 1602301952,1602303999,DE 1602304000,1602306047,RU @@ -50586,7 +51416,15 @@ 1603149568,1603149823,US 1603149824,1603153919,RU 1603153920,1603158015,NL -1603158016,1603162111,DE +1603158016,1603159167,DE +1603159168,1603159183,NL +1603159184,1603159535,DE +1603159536,1603159551,GB +1603159552,1603161007,DE +1603161008,1603161023,GB +1603161024,1603161103,DE +1603161104,1603161119,GB +1603161120,1603162111,DE 1603162112,1603166207,TJ 1603166208,1603166751,NL 1603166752,1603166767,MT @@ -50664,7 +51502,9 @@ 1603895296,1603928063,RU 1603928064,1603944447,DK 1603944448,1603977215,RU -1603977216,1603980463,GB +1603977216,1603979295,GB +1603979296,1603979327,ID +1603979328,1603980463,GB 1603980464,1603980479,CH 1603980480,1603981823,GB 1603981824,1603982079,IE @@ -50739,7 +51579,9 @@ 1604900352,1604900383,SC 1604900384,1604901631,CZ 1604901632,1604901887,SK -1604901888,1604902399,CZ +1604901888,1604902015,CZ +1604902016,1604902142,SK +1604902143,1604902399,CZ 1604902400,1604902911,SK 1604902912,1604911103,BG 1604911104,1604919295,UA @@ -50771,18 +51613,18 @@ 1605124608,1605124671,GB 1605124672,1605124735,US 1605124736,1605125263,GB -1605125264,1605125287,US -1605125288,1605125311,GB -1605125312,1605125319,US -1605125320,1605125327,GB -1605125328,1605125343,US -1605125344,1605125375,GB -1605125376,1605125631,US -1605125632,1605126143,DE +1605125264,1605125279,US +1605125280,1605125335,GB +1605125336,1605125343,US +1605125344,1605125439,GB +1605125440,1605125887,US +1605125888,1605126143,GB 1605126144,1605127679,US 1605127680,1605130239,GB 1605130240,1605130271,US -1605130272,1605132287,GB +1605130272,1605130495,GB +1605130496,1605130751,US +1605130752,1605132287,GB 1605132288,1605148671,RU 1605148672,1605156863,PT 1605156864,1605165055,JO @@ -51731,10 +52573,8 @@ 1673569904,1673569967,US 1673569968,1673569983,GB 1673569984,1673570559,US -1673570560,1673570831,LT -1673570832,1673571071,US -1673571072,1673571263,LT -1673571264,1673571679,US +1673570560,1673570815,LT +1673570816,1673571679,US 1673571680,1673571711,CA 1673571712,1673572095,US 1673572096,1673572351,LT @@ -51771,6 +52611,7 @@ 1694568448,1694572543,HK 1694572544,1694580735,KR 1694580736,1694629887,JP +1694629888,1694662655,IN 1694662656,1694670847,JP 1694670848,1694672895,BD 1694672896,1694673919,AU @@ -51795,6 +52636,7 @@ 1699612672,1699614719,LA 1699614720,1699618815,PH 1699676160,1699741695,KR +1699741696,1700790271,CN 1700793344,1700794367,VN 1700855808,1700921343,AU 1700921344,1700986879,NZ @@ -51812,11 +52654,18 @@ 1702952960,1703411711,CN 1703411712,1703673855,TW 1703673856,1703935999,JP +1703936000,1704984575,CN 1704984576,1707081727,AU -1707081728,1707343871,CN +1707081728,1707737087,CN +1707737088,1707802623,KR 1707845632,1707846655,ID 1707868160,1708130303,CN -1709965312,1710227455,CN +1708130304,1709178879,IN +1709178880,1709834239,CN +1709899776,1709965311,KR +1709965312,1710882815,CN +1710882816,1710948351,KR +1711013888,1711210495,CN 1711210496,1711276031,AU 1795162112,1815822335,US 1815822336,1815826431,CA @@ -51828,7 +52677,7 @@ 1815928832,1815937023,BS 1815937024,1816068095,US 1816068096,1816133631,CA -1816133632,1822425087,US +1816133632,1828716543,US 1828716544,1830813695,FR 1830813696,1831337983,NL 1831337984,1831862271,DE @@ -52195,8 +53044,8 @@ 1836056576,1836580863,IT 1836580864,1836597247,RU 1836597248,1836598015,LU -1836598016,1836604159,DE -1836604160,1836613631,LU +1836598016,1836606463,DE +1836606464,1836613631,LU 1836613632,1836630015,RU 1836630016,1836646399,BG 1836646400,1836679167,RS @@ -52275,8 +53124,8 @@ 1839801856,1839802111,GB 1839802112,1839802239,RO 1839802240,1839806463,GB -1839806464,1839809535,US -1839809536,1839816703,GB +1839806464,1839811071,US +1839811072,1839816703,GB 1839816704,1839824895,NO 1839824896,1839890431,RU 1839890432,1839923199,GB @@ -52351,19 +53200,7 @@ 1841799168,1841807359,DE 1841807360,1841815551,NO 1841815552,1841823743,BG -1841823744,1841827079,GB -1841827080,1841827087,ES -1841827088,1841827231,GB -1841827232,1841827263,BR -1841827264,1841827279,BD -1841827280,1841827463,GB -1841827464,1841827471,BD -1841827472,1841827479,ES -1841827480,1841827695,GB -1841827696,1841827703,ES -1841827704,1841828879,GB -1841828880,1841828895,MT -1841828896,1841831935,GB +1841823744,1841831935,GB 1841831936,1841840127,MT 1841840128,1841848319,PL 1841848320,1841856511,RU @@ -52529,8 +53366,8 @@ 1843990528,1843992575,LB 1843992576,1843994623,AT 1843994624,1844000767,GB -1844000768,1844002303,NL -1844002304,1844002815,NO +1844000768,1844002559,NL +1844002560,1844002815,NO 1844002816,1844006911,CZ 1844006912,1844008959,SM 1844008960,1844011007,PL @@ -52587,7 +53424,8 @@ 1844123648,1844125695,RU 1844125696,1844127743,NL 1844127744,1844129791,DE -1844129792,1844131839,NL +1844129792,1844131583,NL +1844131584,1844131839,SC 1844131840,1844133887,DE 1844133888,1844135935,LT 1844135936,1844137983,NL @@ -52612,7 +53450,9 @@ 1844168704,1844169471,SE 1844169472,1844169487,AF 1844169488,1844169519,US -1844169520,1844169983,SE +1844169520,1844169599,SE +1844169600,1844169647,US +1844169648,1844169983,SE 1844169984,1844170387,DE 1844170388,1844170751,SE 1844170752,1844174847,RU @@ -52652,10 +53492,15 @@ 1844207616,1844211711,RU 1844211712,1844215807,SK 1844215808,1844219903,BE -1844219904,1844220159,KE -1844220160,1844223999,DE +1844219904,1844220159,DE +1844220160,1844220191,IQ +1844220192,1844223999,DE 1844224000,1844228095,GB -1844228096,1844232191,DK +1844228096,1844228479,DK +1844228480,1844228511,SE +1844228512,1844230159,DK +1844230160,1844230175,SE +1844230176,1844232191,DK 1844232192,1844235775,ES 1844235776,1844236031,GB 1844236032,1844236287,FR @@ -52755,9 +53600,10 @@ 1847721984,1847730175,NP 1847730176,1847732223,PK 1847734272,1847735295,NZ -1847736320,1847738367,AP +1847735296,1847736319,AU +1847736320,1847738367,HK 1847738368,1847754751,KR -1847754752,1847787519,AP +1847754752,1847787519,TH 1847787520,1847803903,KR 1847803904,1847807999,VN 1847808000,1847810047,ID @@ -52765,6 +53611,7 @@ 1847853056,1848115199,PK 1848115200,1848377343,CN 1848381440,1848382463,NZ +1848382464,1848383487,JP 1848383488,1848385535,AU 1848385536,1848393727,KR 1848393728,1848401919,JP @@ -52801,11 +53648,13 @@ 1850400768,1850408959,JP 1850408960,1850490879,CN 1850490880,1850507263,KR -1850507264,1850511359,AU +1850507264,1850510335,AU +1850510336,1850511359,KR 1850511360,1850513407,ID 1850513408,1850514431,TH 1850515456,1850519551,IN 1850519552,1850520575,AU +1850520576,1850521599,JP 1850522624,1850523647,HK 1850523648,1850572799,CN 1850572800,1850671103,TH @@ -52813,6 +53662,7 @@ 1850736640,1851523071,CN 1851523072,1851527167,JP 1851527168,1851528191,NZ +1851528192,1851529215,KR 1851529216,1851531263,PH 1851531264,1851539455,JP 1851541504,1851542527,ID @@ -52822,6 +53672,7 @@ 1851555840,1851588607,KR 1851588608,1851590655,JP 1851590656,1851591679,AU +1851591680,1851592703,ID 1851592704,1851594751,AU 1851594752,1851596799,KR 1851604992,1851613183,PH @@ -52866,12 +53717,17 @@ 1860706304,1860714495,CN 1860714496,1860722687,ID 1860722688,1860726783,KR -1860726784,1860727807,AU -1860728832,1860734975,JP +1860726784,1860728831,AU +1860728832,1860733951,JP +1860733952,1860734975,AU 1860734976,1860735999,NZ +1860736000,1860737023,AU 1860737024,1860739071,JP 1860739072,1860743167,PH -1860743168,1860747263,AU +1860743168,1860744191,AU +1860744192,1860745215,IN +1860745216,1860746239,AU +1860746240,1860747263,PK 1860747264,1860759551,JP 1860759552,1860761599,AU 1860763648,1860829183,JP @@ -52926,7 +53782,9 @@ 1868333056,1868341247,PK 1868341248,1868345343,ID 1868345344,1868346367,GU +1868346368,1868347391,TH 1868347392,1868348415,AU +1868348416,1868349439,KR 1868349440,1868357631,SG 1868357632,1868361727,HK 1868361728,1868362751,KH @@ -52940,8 +53798,11 @@ 1870036992,1870045183,KH 1870045184,1870049279,AU 1870049280,1870053375,IN -1870053376,1870069759,AU -1870069760,1870077951,AP +1870053376,1870055423,AU +1870057472,1870058495,AU +1870058496,1870059519,IN +1870059520,1870065663,AU +1870069760,1870077951,JP 1870086144,1870110719,CN 1870110720,1870118911,PK 1870118912,1870135295,IN @@ -52996,8 +53857,10 @@ 1877692416,1877696511,PH 1877696512,1877704703,CN 1877704704,1877705727,AU +1877705728,1877706751,MY 1877706752,1877707775,SG 1877707776,1877709823,AU +1877709824,1877710847,IN 1877710848,1877711871,HK 1877712896,1877721087,CN 1877721088,1877737471,TW @@ -53110,6 +53973,7 @@ 1897140224,1897141247,IN 1897141248,1897142271,HK 1897142272,1897143295,AU +1897143296,1897144319,ID 1897144320,1897152511,NC 1897152512,1897160703,FJ 1897168896,1897169919,AU @@ -53202,7 +54066,8 @@ 1908760576,1908761599,NZ 1908761600,1908762623,CN 1908762624,1908763647,IN -1908764672,1908768767,AP +1908763648,1908764671,ID +1908764672,1908768767,AU 1908768768,1908801535,JP 1908801536,1908899839,KR 1908899840,1908932607,NP @@ -53233,7 +54098,8 @@ 1910112256,1912340479,CN 1912340480,1912602623,HK 1912602624,1913651199,ID -1913651200,1914175487,JP +1913651200,1914109951,JP +1914109952,1914175487,NZ 1914175488,1914437631,TW 1914437632,1914503167,CN 1914503168,1914552319,KR @@ -53256,7 +54122,7 @@ 1914662912,1914667007,KR 1914667008,1914683391,IN 1914683392,1914687487,AU -1914687488,1914688511,NZ +1914687488,1914689535,NZ 1914689536,1914691583,JP 1914691584,1914695679,IN 1914695680,1914697727,ID @@ -53284,6 +54150,7 @@ 1919819776,1919821823,NZ 1919823872,1919827967,JP 1919827968,1919844351,CN +1919844352,1919877119,KR 1919877120,1919885311,CN 1919885312,1919893503,KR 1919893504,1919909887,JP @@ -53303,6 +54170,7 @@ 1921089536,1921105919,AU 1921105920,1921122303,KR 1921122304,1921187839,BD +1921187840,1921253375,TH 1921253376,1921318911,CN 1921318912,1921384447,MY 1921384448,1921388543,NZ @@ -53530,6 +54398,7 @@ 1946951680,1946953727,BD 1946953728,1946955775,ID 1946955776,1946957823,SG +1946957824,1946959871,NZ 1946959872,1946976255,LK 1946976256,1947009023,SG 1947009024,1947074559,CN @@ -53568,9 +54437,11 @@ 1950533632,1950535679,ID 1950535680,1950539775,HK 1950539776,1950541823,AU +1950541824,1950543871,HK 1950543872,1950545919,NZ 1950545920,1950547967,PH 1950547968,1950580735,KR +1950580736,1950613503,JP 1950613504,1950621695,GU 1950621696,1950629887,KR 1950629888,1950646271,IN @@ -53579,7 +54450,7 @@ 1950650368,1950654463,TH 1950654464,1950658559,ID 1950658560,1950660607,PH -1950660608,1950662655,AP +1950660608,1950662655,HK 1950662656,1950666751,BD 1950666752,1950668799,NP 1950668800,1950670847,JP @@ -53588,12 +54459,13 @@ 1950674944,1950676991,IN 1950676992,1950679039,ID 1950679040,1950777343,CN -1950777344,1950793727,JP +1950777344,1950810111,JP 1950810112,1950875647,PK 1950875648,1951137791,IN 1951137792,1951399935,CN 1951399936,1951662079,JP 1951662080,1951727615,KR +1951727616,1951793151,CN 1951793152,1952022527,SG 1952022528,1952026623,TW 1952026624,1952030719,CN @@ -53619,7 +54491,7 @@ 1952186368,1952251903,HK 1952251904,1952284671,PH 1952284672,1952288767,NZ -1952301056,1952317439,KR +1952292864,1952317439,KR 1952317440,1952382975,JP 1952382976,1952448511,CN 1952448512,1953497087,VN @@ -53639,9 +54511,13 @@ 1958830080,1958838271,JP 1958838272,1958842367,IN 1958842368,1958844415,NZ +1958844416,1958846463,HK 1958846464,1958848511,IN 1958848512,1958850559,BD -1958850560,1958862847,AU +1958850560,1958853631,AU +1958853632,1958854655,ID +1958854656,1958862847,AU +1958862848,1958871039,JP 1958871040,1959067647,CN 1959067648,1959100415,MY 1959100416,1959102463,ID @@ -53659,10 +54535,12 @@ 1959251968,1959256063,NZ 1959256064,1959260159,AU 1959264256,1959395327,KR +1959395328,1959526399,IN 1959526400,1959657471,CN 1959657472,1959723007,MY 1959723008,1960050687,CN 1960050688,1960058879,KR +1960058880,1960067071,VN 1960067072,1960069119,AU 1960069120,1960071167,ID 1960071168,1960075263,TW @@ -53675,7 +54553,9 @@ 1960091648,1960095743,CN 1960095744,1960097791,IN 1960097792,1960099839,BD -1960099840,1960128511,AU +1960099840,1960121343,AU +1960121344,1960122367,JP +1960124416,1960128511,AU 1960128512,1960132607,ID 1960132608,1960181759,CN 1960181760,1960185855,TW @@ -53697,8 +54577,10 @@ 1961951232,1962016767,TW 1962016768,1962541055,CN 1962541056,1962622975,AU +1962622976,1962639359,CN 1962639360,1962658815,NZ 1962658816,1962659839,HK +1962663936,1962672127,HK 1962672128,1962803199,CN 1962803200,1962827775,JP 1962827776,1962829823,ID @@ -53741,6 +54623,7 @@ 1965948928,1966014463,JP 1966014464,1966079999,TH 1966080000,1966342143,CN +1966342144,1966407679,KR 1966407680,1966417919,JP 1966419968,1966424063,CN 1966424064,1966440447,KR @@ -53906,6 +54789,7 @@ 1988362240,1988624383,CN 1988624384,1988755455,ID 1988755456,1988861951,AU +1988861952,1988870143,SG 1988870144,1988886527,KR 1988886528,1989148671,HK 1989148672,1989410815,CN @@ -54019,6 +54903,7 @@ 1999601664,1999634431,JP 1999634432,2000158719,CN 2000158720,2000191487,SG +2000191488,2000224255,KR 2000224256,2000355327,CN 2000355328,2000371711,KR 2000371712,2000373759,JP @@ -54126,7 +55011,6 @@ 2012741632,2013003775,CN 2013003776,2013011967,AU 2013020160,2013028351,AU -2013028352,2013030399,TH 2013030400,2013032447,ID 2013032448,2013036543,FM 2013036544,2013038591,ID @@ -54141,6 +55025,7 @@ 2014838784,2015100927,CN 2015100928,2015166463,PH 2015166464,2015182847,AU +2015182848,2015199231,PH 2015199232,2015203327,KR 2015203328,2015205375,JP 2015205376,2015207423,ID @@ -54183,6 +55068,7 @@ 2019037184,2019041279,JP 2019041280,2019045375,IN 2019049472,2019082239,AU +2019082240,2019098623,HK 2019098624,2019115007,PH 2019115008,2019117055,US 2019117056,2019119103,IN @@ -54300,6 +55186,7 @@ 2036600832,2036604927,ID 2036604928,2036609023,SG 2036609024,2036611071,AF +2036611072,2036613119,JP 2036613120,2036629503,KR 2036629504,2036662271,CN 2036662272,2036678655,AU @@ -54334,6 +55221,7 @@ 2043203584,2043205631,AU 2043205632,2043207679,JP 2043207680,2043211775,AU +2043211776,2043215871,SG 2043215872,2043281407,CN 2043281408,2043412479,HK 2043412480,2043674623,CN @@ -54380,7 +55268,7 @@ 2053340160,2053341183,IN 2053341184,2053373951,KR 2053373952,2053378047,AU -2053378048,2053380095,JP +2053378048,2053382143,JP 2053382144,2053390335,KR 2053390336,2053406719,TW 2053406720,2053439487,MO @@ -54389,7 +55277,7 @@ 2053509120,2053511167,AU 2053511168,2053513215,IN 2053513216,2053515263,BD -2053517312,2053519359,ID +2053515264,2053519359,ID 2053519360,2053521407,BD 2053521408,2053529599,CN 2053529600,2053533695,AU @@ -54419,6 +55307,7 @@ 2055315456,2055323647,JP 2055323648,2055327743,ID 2055327744,2055329791,KR +2055329792,2055331839,AU 2055331840,2055335935,JP 2055335936,2055340031,KR 2055340032,2055733247,JP @@ -54435,7 +55324,7 @@ 2056519680,2056781823,AU 2056781824,2056794111,JP 2056794112,2056796159,BD -2056798208,2056806399,JP +2056796160,2056806399,JP 2056806400,2056814591,KR 2056814592,2056815167,JP 2056815168,2056815195,HK @@ -54483,8 +55372,8 @@ 2056847360,2056912895,KR 2056912896,2057043967,TH 2057043968,2057306111,CN -2057306112,2059403263,IN -2059403264,2059665407,CN +2057306112,2059141119,IN +2059141120,2059665407,CN 2059665408,2059796479,JP 2059796480,2059862015,CN 2059862016,2059878399,AU @@ -54500,16 +55389,18 @@ 2059960320,2059964415,AU 2059964416,2059966463,ID 2059966464,2059968511,TW -2059968512,2059972607,AU +2059968512,2059976703,AU 2059976704,2059995135,JP 2059995136,2059997183,VN 2059997184,2060001279,MN 2060001280,2060005375,HK +2060005376,2060009471,CN 2060009472,2060025855,AU 2060025856,2060058623,TW +2060058624,2060062719,AU 2060062720,2060066815,JP 2060066816,2060075007,KR -2060075008,2060079103,AU +2060075008,2060083199,AU 2060083200,2060091391,PH 2060091392,2060189695,KR 2060189696,2060451839,CN @@ -54560,6 +55451,7 @@ 2063374336,2063376383,NZ 2063376384,2063380479,TW 2063380480,2063382527,KH +2063382528,2063384575,NZ 2063384576,2063392767,KR 2063392768,2063400959,IN 2063400960,2063466495,JP @@ -54573,11 +55465,13 @@ 2063556608,2063564799,MY 2063564800,2063597567,JP 2063597568,2063601663,KR +2063601664,2063605759,BD 2063605760,2063613951,TW 2063613952,2063630335,JP 2063630336,2063646719,CN 2063646720,2063663103,TW 2063663104,2063695871,JP +2063695872,2063728639,HK 2063728640,2063859711,AU 2063859712,2064646143,CN 2064646144,2065694719,VN @@ -54604,6 +55498,7 @@ 2070159360,2070167551,AU 2070167552,2070183935,NZ 2070183936,2070192127,AU +2070192128,2070200319,KR 2070200320,2070208511,JP 2070208512,2070209023,MY 2070209024,2070209535,SG @@ -54618,7 +55513,11 @@ 2070216704,2070282239,CN 2070282240,2070347775,AU 2070347776,2070380543,CN -2070380544,2070677503,JP +2070380544,2070396927,JP +2070396928,2070405119,AU +2070405120,2070409215,JP +2070409216,2070413311,HK +2070413312,2070677503,JP 2070677504,2070679551,ID 2070679552,2070683647,KR 2070683648,2070691839,IN @@ -54658,6 +55557,7 @@ 2075140096,2075144191,IN 2075144192,2075146239,JP 2075146240,2075147263,BD +2075147264,2075148287,CN 2075148288,2075150335,PH 2075150336,2075152383,WS 2075152384,2075156479,CN @@ -54708,6 +55608,7 @@ 2080243712,2080260095,JP 2080260096,2080268287,KR 2080268288,2080270335,AP +2080270336,2080272383,HK 2080276480,2080309247,KR 2080309248,2080325631,NZ 2080325632,2080342015,HK @@ -54726,6 +55627,7 @@ 2080800768,2080817151,PH 2080817152,2080825343,NZ 2080825344,2080829439,BD +2080829440,2080833535,LK 2080833536,2080899071,IN 2080899072,2081226751,TW 2081226752,2081292287,MY @@ -54764,7 +55666,9 @@ 2084741120,2084743167,ID 2084743168,2084745215,JP 2084745216,2084749311,KR -2084749312,2084765695,JP +2084749312,2084753407,JP +2084753408,2084757503,KR +2084757504,2084765695,JP 2084765696,2085617663,CN 2085617664,2085683199,KR 2085683200,2085748735,ID @@ -54823,7 +55727,7 @@ 2090242048,2090246143,JP 2090246144,2090250239,NZ 2090250240,2090270719,JP -2090270720,2090336255,CN +2090270720,2090401791,CN 2090401792,2090418175,ID 2090418176,2090434559,IN 2090434560,2090467327,KR @@ -54926,11 +55830,13 @@ 2101149696,2101182463,KR 2101182464,2101231615,CN 2101231616,2101239807,AU -2101239808,2101272575,IN +2101239808,2101270527,IN +2101270528,2101272575,KR 2101272576,2101276671,TW 2101276672,2101280767,JP 2101280768,2101288959,AU 2101288960,2101293055,JP +2101293056,2101297151,AU 2101297152,2101313535,IN 2101313536,2101346303,AU 2101346304,2103640063,CN @@ -55039,6 +55945,7 @@ 2113761280,2113765375,VN 2113765376,2113798143,HK 2113798144,2113811455,AU +2113811456,2113812479,HK 2113812480,2113813503,JP 2113813504,2113830911,AU 2113830912,2113863679,CN @@ -55085,9 +55992,7 @@ 2159869952,2159935487,CA 2159935488,2160525311,US 2160525312,2160590847,GB -2160590848,2160656383,US -2160656384,2160721919,FR -2160721920,2161508351,US +2160590848,2161508351,US 2161508352,2161573887,FI 2161573888,2162687999,US 2162688000,2162753535,GB @@ -55097,8 +56002,8 @@ 2163277824,2163288063,US 2163288064,2163290111,A1 2163290112,2163304447,US -2163304448,2163305983,A1 -2163305984,2163408895,US +2163304448,2163306495,A1 +2163306496,2163408895,US 2163408896,2163474431,GB 2163474432,2163605503,US 2163605504,2163671039,CH @@ -55249,7 +56154,9 @@ 2187229472,2187229479,A1 2187229480,2187229607,US 2187229608,2187229615,A1 -2187229616,2187230111,US +2187229616,2187229679,US +2187229680,2187229687,A1 +2187229688,2187230111,US 2187230112,2187230143,A1 2187230144,2187232511,US 2187232512,2187232639,A1 @@ -55426,7 +56333,9 @@ 2212495360,2212560895,NL 2212560896,2212691967,US 2212691968,2212757503,GB -2212757504,2212823039,FI +2212757504,2212811263,FI +2212811264,2212811519,US +2212811520,2212823039,FI 2212823040,2212954111,US 2212954112,2213019647,GB 2213019648,2213085183,CA @@ -58195,7 +59104,6 @@ 2760245248,2760310783,GB 2760310784,2760376319,SE 2760376320,2760507391,GB -2760507392,2760572927,FR 2760572928,2760638463,DE 2760638464,2760703999,NL 2760704000,2760769535,FI @@ -58775,7 +59683,9 @@ 2905378304,2905378815,CA 2905378816,2905379071,US 2905379072,2905379583,CA -2905379584,2905381887,US +2905379584,2905380607,US +2905380608,2905380863,CA +2905380864,2905381887,US 2905381888,2905382016,CA 2905382017,2905384959,US 2905384960,2905385471,CA @@ -59102,14 +60012,14 @@ 2916335616,2916368383,US 2916368384,2916401151,CA 2916401152,2916433919,US -2916433920,2916434431,CA -2916434432,2916434559,US +2916433920,2916434175,CA +2916434176,2916434559,US 2916434560,2916434591,CA -2916434592,2916437503,US +2916434592,2916434623,US +2916434624,2916434655,CA +2916434656,2916437503,US 2916437504,2916437567,CA -2916437568,2916440063,US -2916440064,2916440095,CA -2916440096,2916440143,US +2916437568,2916440143,US 2916440144,2916440159,CA 2916440160,2916440175,US 2916440176,2916440191,CA @@ -59125,9 +60035,7 @@ 2916442624,2916442879,CA 2916442880,2916443614,US 2916443615,2916443647,CA -2916443648,2916443903,US -2916443904,2916444159,CA -2916444160,2916444927,US +2916443648,2916444927,US 2916444928,2916445951,CA 2916445952,2916449279,US 2916449280,2916450303,CA @@ -59136,24 +60044,43 @@ 2916581376,2916614143,PR 2916614144,2917167679,US 2917167680,2917167743,BR -2917167744,2917167775,US -2917167776,2917167807,IR -2917167808,2917167967,US +2917167744,2917167807,US +2917167808,2917167839,RS +2917167840,2917167871,TR +2917167872,2917167903,US +2917167904,2917167935,TR +2917167936,2917167967,US 2917167968,2917167999,GB 2917168000,2917168095,US 2917168096,2917168127,NZ 2917168128,2917168223,US 2917168224,2917168255,BR -2917168256,2917168287,US -2917168288,2917168319,TR +2917168256,2917168319,US 2917168320,2917168351,AR -2917168352,2917168383,US +2917168352,2917168383,DE 2917168384,2917168415,BR -2917168416,2917168607,US +2917168416,2917168447,US +2917168448,2917168479,BR +2917168480,2917168607,US 2917168608,2917168639,BR 2917168640,2917169663,US 2917169664,2917169695,DE -2917169696,2917195775,US +2917169696,2917170015,US +2917170016,2917170047,UA +2917170048,2917170079,BR +2917170080,2917170111,US +2917170112,2917170143,RU +2917170144,2917170207,US +2917170208,2917170239,NL +2917170240,2917170271,RU +2917170272,2917170303,BR +2917170304,2917193025,US +2917193026,2917193087,SG +2917193088,2917194145,US +2917194146,2917194158,SG +2917194159,2917194201,US +2917194202,2917194206,SG +2917194207,2917195775,US 2917195776,2917196031,CA 2917196032,2917199871,A2 2917199872,2917203967,CA @@ -59208,8 +60135,10 @@ 2917722368,2917722623,CA 2917722624,2917842175,US 2917842176,2917842431,CA -2917842432,2918055935,US -2918055936,2918121471,CA +2917842432,2918043647,US +2918043648,2918047743,CA +2918047744,2918051839,US +2918051840,2918121471,CA 2918121472,2918154239,US 2918154240,2918170623,CA 2918170624,2918199679,US @@ -59251,9 +60180,11 @@ 2918580224,2918588415,CA 2918588416,2918596607,US 2918596608,2918604799,CA -2918604800,2918760447,US +2918604800,2918699007,US +2918699008,2918703103,CA +2918703104,2918760447,US 2918760448,2918776831,CA -2918776832,2918813695,US +2918776832,2918817791,US 2918825984,2918828031,US 2918828032,2918828543,UA 2918828544,2918829055,ES @@ -59266,7 +60197,9 @@ 2918829824,2918830079,CN 2918830080,2918834175,CA 2918834176,2918838271,US -2918838272,2918875135,CA +2918838272,2918840319,AU +2918840320,2918842367,US +2918842368,2918875135,CA 2918875136,2918973439,US 2918973440,2918989823,CA 2919006208,2919174143,US @@ -59285,11 +60218,15 @@ 2921497416,2921497423,IN 2921497424,2921497471,US 2921497472,2921497599,IN -2921497600,2921503607,US +2921497600,2921498383,US +2921498384,2921498391,ID +2921498392,2921503607,US 2921503608,2921503615,GB 2921503616,2921503695,US 2921503696,2921503703,ID -2921503704,2921508719,US +2921503704,2921504431,US +2921504432,2921504439,GB +2921504440,2921508719,US 2921508720,2921508727,SE 2921508728,2921512703,US 2921512704,2921512959,CA @@ -59325,7 +60262,9 @@ 2928174096,2928174103,CA 2928174104,2928174223,US 2928174224,2928174231,CA -2928174232,2928174575,US +2928174232,2928174479,US +2928174480,2928174487,SE +2928174488,2928174575,US 2928174576,2928174583,AU 2928174584,2928174911,US 2928174912,2928174919,AU @@ -59341,7 +60280,9 @@ 2928176224,2928176231,JP 2928176232,2928176383,US 2928176384,2928176391,ES -2928176392,2928176575,US +2928176392,2928176527,US +2928176528,2928176543,CN +2928176544,2928176575,US 2928176576,2928176591,MQ 2928176592,2928176783,US 2928176784,2928176799,MX @@ -59358,7 +60299,9 @@ 2928226400,2928226407,US 2928226408,2928226415,CA 2928226416,2928226423,US -2928226424,2928227583,CA +2928226424,2928226551,CA +2928226552,2928226559,US +2928226560,2928227583,CA 2928227584,2928227783,US 2928227784,2928228087,CA 2928228088,2928228095,RU @@ -60281,7 +61224,7 @@ 2948135936,2948136959,IN 2948136960,2948595711,CN 2948595712,2952790015,KR -2969567232,2971664383,BR +2969567232,2973761535,BR 2986344448,2987393023,DE 2987393024,2987397119,IM 2987397120,2987401215,LV @@ -60299,7 +61242,9 @@ 2987433292,2987433331,KZ 2987433332,2987433335,RU 2987433336,2987433339,KZ -2987433340,2987433407,RU +2987433340,2987433347,RU +2987433348,2987433351,KZ +2987433352,2987433407,RU 2987433408,2987433471,KZ 2987433472,2987433983,RU 2987433984,2987438079,FR @@ -60438,7 +61383,8 @@ 2987786240,2987788287,FR 2987788288,2987788543,GB 2987788544,2987788799,DE -2987788800,2987790335,TR +2987788800,2987789055,US +2987789056,2987790335,TR 2987790336,2987792383,GB 2987792384,2987794431,CH 2987794432,2987796479,IQ @@ -60515,7 +61461,11 @@ 2988441912,2988441915,DE 2988441916,2988441919,ES 2988441920,2988441951,FR -2988441952,2988441983,IT +2988441952,2988441967,PL +2988441968,2988441971,NL +2988441972,2988441975,CH +2988441976,2988441979,DE +2988441980,2988441983,IT 2988441984,2988441991,FR 2988441992,2988441995,ES 2988441996,2988442003,FR @@ -60550,7 +61500,7 @@ 2988442928,2988442975,FR 2988442976,2988443007,GB 2988443008,2988443023,PT -2988443024,2988443027,FR +2988443024,2988443027,NL 2988443028,2988443031,BE 2988443032,2988443035,GB 2988443036,2988443039,BE @@ -60587,7 +61537,8 @@ 2988444208,2988444415,FR 2988444416,2988444679,ES 2988444680,2988444695,PL -2988444696,2988444719,FR +2988444696,2988444703,FR +2988444704,2988444719,GB 2988444720,2988444735,ES 2988444736,2988444739,GB 2988444740,2988444755,BE @@ -60610,9 +61561,7 @@ 2988445036,2988445039,PL 2988445040,2988445119,FR 2988445120,2988445127,ES -2988445128,2988445135,FR -2988445136,2988445143,GB -2988445144,2988445151,FR +2988445128,2988445151,FR 2988445152,2988445183,IT 2988445184,2988445951,DE 2988445952,2988445967,FR @@ -60744,13 +61693,20 @@ 2988459136,2988459167,IT 2988459168,2988459171,IE 2988459172,2988459183,FR -2988459184,2988459199,ES +2988459184,2988459199,PL 2988459200,2988459215,FR 2988459216,2988459219,DE 2988459220,2988459223,FR 2988459224,2988459227,DE 2988459228,2988459231,ES -2988459232,2988459263,PL +2988459232,2988459235,IT +2988459236,2988459239,PL +2988459240,2988459243,FR +2988459244,2988459247,ES +2988459248,2988459251,FR +2988459252,2988459255,BE +2988459256,2988459259,FR +2988459260,2988459263,NL 2988459264,2988459519,ES 2988459520,2988459583,DE 2988459584,2988459599,FR @@ -60787,7 +61743,8 @@ 2988459888,2988459895,PL 2988459896,2988459967,FR 2988459968,2988459999,ES -2988460000,2988460031,FR +2988460000,2988460015,NL +2988460016,2988460031,FR 2988460032,2988460063,DE 2988460064,2988460095,FR 2988460096,2988460103,ES @@ -60818,7 +61775,8 @@ 2988460288,2988460323,FR 2988460324,2988460335,PL 2988460336,2988460351,DE -2988460352,2988460375,GB +2988460352,2988460367,GB +2988460368,2988460375,PL 2988460376,2988460543,FR 2988460544,2988460547,GB 2988460548,2988460551,DE @@ -60826,7 +61784,8 @@ 2988460576,2988460591,PT 2988460592,2988460607,GB 2988460608,2988460615,IT -2988460616,2988460623,PL +2988460616,2988460619,CZ +2988460620,2988460623,IT 2988460624,2988460679,FR 2988460680,2988460687,DE 2988460688,2988460719,FR @@ -60847,7 +61806,8 @@ 2988461120,2988461151,NL 2988461152,2988461247,GB 2988461248,2988461255,FR -2988461256,2988461263,GB +2988461256,2988461259,IT +2988461260,2988461263,PT 2988461264,2988461279,PL 2988461280,2988461295,IT 2988461296,2988461299,PL @@ -60887,7 +61847,7 @@ 2988461704,2988461707,NL 2988461708,2988461711,BE 2988461712,2988461719,FR -2988461720,2988461723,GB +2988461720,2988461723,DE 2988461724,2988461735,FR 2988461736,2988461743,DE 2988461744,2988461747,ES @@ -60900,11 +61860,13 @@ 2988461812,2988461815,FR 2988461816,2988461819,PL 2988461820,2988461823,GB -2988461824,2988461855,NL -2988461856,2988461859,PL +2988461824,2988461839,PL +2988461840,2988461851,FR +2988461852,2988461855,PL +2988461856,2988461859,FI 2988461860,2988461871,DE 2988461872,2988461879,FR -2988461880,2988461883,CZ +2988461880,2988461883,ES 2988461884,2988461887,IT 2988461888,2988461903,FR 2988461904,2988461911,ES @@ -60995,7 +61957,7 @@ 2988463744,2988463747,BE 2988463748,2988463759,FR 2988463760,2988463775,DE -2988463776,2988463791,PL +2988463776,2988463791,FR 2988463792,2988463803,GB 2988463804,2988463823,FR 2988463824,2988463827,DE @@ -61031,7 +61993,8 @@ 2988464528,2988464543,DE 2988464544,2988464551,FR 2988464552,2988464575,ES -2988464576,2988464607,FR +2988464576,2988464591,GB +2988464592,2988464607,FR 2988464608,2988464611,DE 2988464612,2988464615,PL 2988464616,2988464619,FR @@ -61168,7 +62131,8 @@ 2988483952,2988483963,IT 2988483964,2988483967,FR 2988483968,2988483983,IE -2988483984,2988483991,NL +2988483984,2988483987,DE +2988483988,2988483991,NL 2988483992,2988483999,FR 2988484000,2988484003,GB 2988484004,2988484007,DE @@ -61193,8 +62157,7 @@ 2988484240,2988484243,DE 2988484244,2988484287,FR 2988484288,2988484351,PL -2988484352,2988485883,FR -2988485884,2988485887,GB +2988484352,2988485887,FR 2988485888,2988485903,PL 2988485904,2988485911,GB 2988485912,2988485951,FR @@ -61202,8 +62165,149 @@ 2988485956,2988485959,CZ 2988485960,2988485967,FR 2988485968,2988485983,IE -2988485984,2988507135,FR -2988507136,2988507183,DE +2988485984,2988485999,FR +2988486000,2988486015,PL +2988486016,2988486031,FR +2988486032,2988486047,ES +2988486048,2988486063,GB +2988486064,2988486067,FR +2988486068,2988486071,ES +2988486072,2988486075,FR +2988486076,2988486079,ES +2988486080,2988486083,BE +2988486084,2988486087,CZ +2988486088,2988486111,FR +2988486112,2988486127,PL +2988486128,2988486159,NL +2988486160,2988486175,IE +2988486176,2988486191,GB +2988486192,2988486195,IT +2988486196,2988486199,DE +2988486200,2988486207,PT +2988486208,2988486211,ES +2988486212,2988486215,DE +2988486216,2988486219,ES +2988486220,2988486223,IT +2988486224,2988486239,NL +2988486240,2988486287,PL +2988486288,2988486291,FR +2988486292,2988486295,DE +2988486296,2988486299,GB +2988486300,2988486303,PL +2988486304,2988486319,DE +2988486320,2988486323,IT +2988486324,2988486327,PT +2988486328,2988486343,ES +2988486344,2988486347,FR +2988486348,2988486351,ES +2988486352,2988486399,FR +2988486400,2988486783,GB +2988486784,2988486795,FR +2988486796,2988486799,GB +2988486800,2988486807,FR +2988486808,2988486811,DE +2988486812,2988486815,FR +2988486816,2988486847,DE +2988486848,2988486863,FR +2988486864,2988486879,BE +2988486880,2988486883,PL +2988486884,2988486887,FR +2988486888,2988486891,PT +2988486892,2988486903,GB +2988486904,2988486907,DE +2988486908,2988486911,LT +2988486912,2988487167,PL +2988487168,2988487423,FR +2988487424,2988487679,IE +2988487680,2988487935,DE +2988487936,2988487939,BE +2988487940,2988487979,FR +2988487980,2988487983,ES +2988487984,2988488007,FR +2988488008,2988488011,GB +2988488012,2988488015,CZ +2988488016,2988488031,FR +2988488032,2988488047,IE +2988488048,2988488051,IT +2988488052,2988488055,FR +2988488056,2988488063,DE +2988488064,2988488095,FR +2988488096,2988488099,DE +2988488100,2988488103,PT +2988488104,2988488111,FR +2988488112,2988488127,PL +2988488128,2988488159,FR +2988488160,2988488175,ES +2988488176,2988488179,GB +2988488180,2988488183,DE +2988488184,2988488187,IT +2988488188,2988488191,DE +2988488192,2988488479,FR +2988488480,2988488487,PL +2988488488,2988488491,FR +2988488492,2988488495,ES +2988488496,2988488511,FR +2988488512,2988488543,ES +2988488544,2988488575,FR +2988488576,2988488607,NL +2988488608,2988488639,IT +2988488640,2988488647,ES +2988488648,2988488655,IT +2988488656,2988488663,PL +2988488664,2988488959,FR +2988488960,2988488963,NL +2988488964,2988488967,FR +2988488968,2988488975,LT +2988488976,2988488983,ES +2988488984,2988488987,FR +2988488988,2988488991,NL +2988488992,2988489023,ES +2988489024,2988489055,FR +2988489056,2988489071,DE +2988489072,2988489087,FR +2988489088,2988489103,GB +2988489104,2988489119,FI +2988489120,2988489123,ES +2988489124,2988489127,NL +2988489128,2988489131,DE +2988489132,2988489167,FR +2988489168,2988489175,PT +2988489176,2988489179,PL +2988489180,2988489183,GB +2988489184,2988489255,FR +2988489256,2988489259,GB +2988489260,2988489263,FR +2988489264,2988489279,IT +2988489280,2988489283,FI +2988489284,2988489287,FR +2988489288,2988489295,PL +2988489296,2988489343,FR +2988489344,2988489471,DE +2988489472,2988489475,ES +2988489476,2988489479,GB +2988489480,2988489483,IT +2988489484,2988489487,GB +2988489488,2988489503,FR +2988489504,2988489519,GB +2988489520,2988489535,ES +2988489536,2988489543,PT +2988489544,2988489663,FR +2988489664,2988489667,DE +2988489668,2988489671,GB +2988489672,2988489675,ES +2988489676,2988489679,IE +2988489680,2988489695,FR +2988489696,2988489711,FI +2988489712,2988489719,FR +2988489720,2988489723,IT +2988489724,2988489727,ES +2988489728,2988507143,FR +2988507144,2988507147,BE +2988507148,2988507151,IT +2988507152,2988507159,DE +2988507160,2988507163,CH +2988507164,2988507167,PL +2988507168,2988507183,DE 2988507184,2988507199,FR 2988507200,2988507203,GB 2988507204,2988507207,PL @@ -61418,7 +62522,7 @@ 2988509928,2988509951,PL 2988509952,2988509955,IT 2988509956,2988509959,PL -2988509960,2988509963,FR +2988509960,2988509963,IT 2988509964,2988509967,GB 2988509968,2988509983,ES 2988509984,2988509995,FR @@ -61589,8 +62693,7 @@ 2988512896,2988512899,PL 2988512900,2988512903,GB 2988512904,2988512907,ES -2988512908,2988512911,LT -2988512912,2988512943,FR +2988512908,2988512943,FR 2988512944,2988512951,GB 2988512952,2988512955,FR 2988512956,2988512959,LT @@ -61887,7 +62990,8 @@ 2988541820,2988541823,CZ 2988541824,2988541855,FR 2988541856,2988541859,PL -2988541860,2988541867,GB +2988541860,2988541863,GB +2988541864,2988541867,PL 2988541868,2988541887,FR 2988541888,2988541895,DE 2988541896,2988541899,PL @@ -61899,7 +63003,8 @@ 2988541940,2988541943,FI 2988541944,2988541947,FR 2988541948,2988541951,ES -2988541952,2988541959,DE +2988541952,2988541955,GB +2988541956,2988541959,DE 2988541960,2988541963,CH 2988541964,2988541967,DE 2988541968,2988541983,FR @@ -61952,9 +63057,13 @@ 2988542964,2988542967,CH 2988542968,2988542971,NL 2988542972,2988542975,DE -2988542976,2988543007,FR +2988542976,2988542991,FR +2988542992,2988542995,FI +2988542996,2988542999,IE +2988543000,2988543003,IT +2988543004,2988543007,LT 2988543008,2988543011,PL -2988543012,2988543015,GB +2988543012,2988543015,FR 2988543016,2988543023,CH 2988543024,2988543039,DE 2988543040,2988543043,CZ @@ -62019,9 +63128,31 @@ 2988544180,2988544183,IT 2988544184,2988544191,DE 2988544192,2988544227,ES -2988544228,2988544255,FR -2988544256,2988544383,LT -2988544384,2988544511,NL +2988544228,2988544271,FR +2988544272,2988544279,BE +2988544280,2988544283,GB +2988544284,2988544287,DE +2988544288,2988544291,PL +2988544292,2988544295,GB +2988544296,2988544303,FR +2988544304,2988544307,PL +2988544308,2988544311,IT +2988544312,2988544315,DE +2988544316,2988544323,FR +2988544324,2988544327,GB +2988544328,2988544331,NL +2988544332,2988544351,FR +2988544352,2988544355,PL +2988544356,2988544359,DE +2988544360,2988544367,FR +2988544368,2988544371,ES +2988544372,2988544375,FR +2988544376,2988544383,ES +2988544384,2988544447,GB +2988544448,2988544463,FR +2988544464,2988544479,ES +2988544480,2988544495,PL +2988544496,2988544511,IE 2988544512,2988544527,FR 2988544528,2988544535,ES 2988544536,2988544539,PL @@ -62069,9 +63200,14 @@ 2988545292,2988545295,DE 2988545296,2988545311,FR 2988545312,2988545327,CH -2988545328,2988545335,IT -2988545336,2988545343,DE -2988545344,2988545407,FR +2988545328,2988545331,FR +2988545332,2988545343,DE +2988545344,2988545367,FR +2988545368,2988545371,DE +2988545372,2988545375,GB +2988545376,2988545383,DE +2988545384,2988545387,ES +2988545388,2988545407,FR 2988545408,2988545439,IE 2988545440,2988545471,FR 2988545472,2988545503,ES @@ -62081,7 +63217,11 @@ 2988545516,2988545531,PL 2988545532,2988545535,FR 2988545536,2988545567,BE -2988545568,2988545663,FR +2988545568,2988545571,NL +2988545572,2988545575,DE +2988545576,2988545579,FR +2988545580,2988545583,ES +2988545584,2988545663,FR 2988545664,2988545695,ES 2988545696,2988545727,DE 2988545728,2988545791,FR @@ -62161,7 +63301,9 @@ 2988546728,2988546735,ES 2988546736,2988546751,FR 2988546752,2988546783,ES -2988546784,2988546831,FR +2988546784,2988546819,FR +2988546820,2988546823,NL +2988546824,2988546831,FR 2988546832,2988546835,DE 2988546836,2988546839,ES 2988546840,2988546847,IE @@ -62221,7 +63363,8 @@ 2988547432,2988547435,ES 2988547436,2988547443,PL 2988547444,2988547447,DE -2988547448,2988547455,FR +2988547448,2988547451,FR +2988547452,2988547455,PT 2988547456,2988547471,DE 2988547472,2988547475,NL 2988547476,2988547479,GB @@ -62241,7 +63384,7 @@ 2988547616,2988547647,PL 2988547648,2988547655,FR 2988547656,2988547663,PL -2988547664,2988547679,IE +2988547664,2988547679,FR 2988547680,2988547711,CH 2988547712,2988547727,PL 2988547728,2988547751,FR @@ -62289,11 +63432,14 @@ 2988556964,2988556967,FR 2988556968,2988556975,BE 2988556976,2988556979,FI -2988556980,2988557023,FR +2988556980,2988557003,FR +2988557004,2988557007,ES +2988557008,2988557023,FR 2988557024,2988557039,IE 2988557040,2988557047,FR 2988557048,2988557055,PL -2988557056,2988557071,FR +2988557056,2988557059,ES +2988557060,2988557071,FR 2988557072,2988557075,PL 2988557076,2988557079,FR 2988557080,2988557087,FI @@ -62303,7 +63449,8 @@ 2988557216,2988557247,BE 2988557248,2988557251,FR 2988557252,2988557255,ES -2988557256,2988557279,GB +2988557256,2988557263,FR +2988557264,2988557279,GB 2988557280,2988557295,ES 2988557296,2988557299,BE 2988557300,2988557303,PL @@ -62337,7 +63484,7 @@ 2988557696,2988557727,FR 2988557728,2988557759,PL 2988557760,2988557763,FR -2988557764,2988557767,GB +2988557764,2988557767,ES 2988557768,2988557771,PL 2988557772,2988557823,FR 2988557824,2988557951,DE @@ -62353,7 +63500,9 @@ 2988558084,2988558087,PL 2988558088,2988558099,FR 2988558100,2988558103,PL -2988558104,2988558127,FR +2988558104,2988558119,FR +2988558120,2988558123,GB +2988558124,2988558127,FR 2988558128,2988558135,PL 2988558136,2988558139,GB 2988558140,2988558143,DE @@ -62385,10 +63534,12 @@ 2988558976,2988559007,GB 2988559008,2988559011,BE 2988559012,2988559015,PL -2988559016,2988559071,FR +2988559016,2988559039,FR +2988559040,2988559055,GB +2988559056,2988559071,LT 2988559072,2988559103,ES 2988559104,2988559135,PL -2988559136,2988559139,FR +2988559136,2988559139,DE 2988559140,2988559151,PL 2988559152,2988559231,FR 2988559232,2988559247,DE @@ -62470,8 +63621,17 @@ 2988561200,2988561203,PL 2988561204,2988561207,GB 2988561208,2988561215,PL -2988561216,2988561279,FR -2988561280,2988561407,NL +2988561216,2988561283,FR +2988561284,2988561287,NL +2988561288,2988561291,ES +2988561292,2988561295,PT +2988561296,2988561303,PL +2988561304,2988561311,FR +2988561312,2988561343,IE +2988561344,2988561375,PL +2988561376,2988561391,FR +2988561392,2988561403,ES +2988561404,2988561407,LT 2988561408,2988561667,GB 2988561668,2988561671,PL 2988561672,2988561675,NL @@ -62533,8 +63693,11 @@ 2988563056,2988563059,NL 2988563060,2988563063,CH 2988563064,2988563067,FI -2988563068,2988563071,PT -2988563072,2988563103,DE +2988563068,2988563075,PT +2988563076,2988563079,GB +2988563080,2988563083,DE +2988563084,2988563087,FR +2988563088,2988563103,NL 2988563104,2988563135,FR 2988563136,2988563151,PL 2988563152,2988563199,FR @@ -62549,15 +63712,14 @@ 2988563568,2988563571,NL 2988563572,2988563575,GB 2988563576,2988563583,IE -2988563584,2988563587,DE -2988563588,2988563591,PT +2988563584,2988563591,PT 2988563592,2988563599,GB 2988563600,2988563607,ES 2988563608,2988563615,DE 2988563616,2988563647,FR 2988563648,2988563663,LT 2988563664,2988563667,FR -2988563668,2988563671,GB +2988563668,2988563671,PL 2988563672,2988563675,FR 2988563676,2988563679,PL 2988563680,2988563967,FR @@ -62792,9 +63954,7 @@ 2991981688,2991981695,NA 2991981696,2991981839,UA 2991981840,2991981847,RU -2991981848,2991981911,UA -2991981912,2991981919,RU -2991981920,2991982535,UA +2991981848,2991982535,UA 2991982536,2991982543,GL 2991982544,2991982592,UA 2991982593,2991982599,JP @@ -62838,7 +63998,7 @@ 2996649984,2996666367,RO 2996666368,2996682751,RU 2996682752,2996699135,DK -2996731904,2996748287,UA +2996699136,2996764671,UA 2996764672,2996768767,NL 2996768768,2996772863,RU 2996772864,2996776959,UA @@ -62895,9 +64055,7 @@ 2996999968,2996999999,AU 2997000000,2997000447,DE 2997000448,2997000703,RU -2997000704,2997000735,DE -2997000736,2997000767,US -2997000768,2997000831,SC +2997000704,2997000831,DE 2997000832,2997000959,CA 2997000960,2997000991,DE 2997000992,2997001119,RO @@ -62916,8 +64074,7 @@ 2997003584,2997003647,UA 2997003648,2997004031,DE 2997004032,2997004287,BZ -2997004288,2997004543,US -2997004544,2997004607,DE +2997004288,2997004607,DE 2997004608,2997004671,RU 2997004672,2997004799,DE 2997004800,2997005055,BZ @@ -62940,8 +64097,7 @@ 2997008512,2997008639,LT 2997008640,2997008959,DE 2997008960,2997009023,RU -2997009024,2997010431,DE -2997010432,2997018623,US +2997009024,2997018623,DE 2997018624,2997019135,GB 2997019136,2997019391,TR 2997019392,2997019647,GB @@ -62952,20 +64108,18 @@ 2997020416,2997020671,CA 2997020672,2997021183,DE 2997021184,2997021695,GB -2997021696,2997021951,NL -2997021952,2997022015,DE +2997021696,2997022015,DE 2997022016,2997022143,GB 2997022144,2997022207,IN -2997022208,2997022239,DE +2997022208,2997022223,DE +2997022224,2997022239,IR 2997022240,2997022303,NL 2997022304,2997022367,SG 2997022368,2997022751,DE 2997022752,2997022783,TR 2997022784,2997022847,IN 2997022848,2997023231,BZ -2997023232,2997023295,DE -2997023296,2997023423,IN -2997023424,2997024255,DE +2997023232,2997024255,DE 2997024256,2997024511,TR 2997024512,2997026815,DE 2997026816,2997059583,RU @@ -62986,9 +64140,7 @@ 2997486912,2997518335,FR 2997518336,2997528063,RU 2997528064,2997528319,UA -2997528320,2997549567,RU -2997549568,2997550079,NL -2997550080,2997583871,RU +2997528320,2997583871,RU 2997583872,2997616639,SY 2997616640,2997649407,SI 2997649408,2997682175,BY @@ -63011,8 +64163,8 @@ 2999985712,2999985727,BE 2999985728,2999985743,CZ 2999985744,2999985759,NL -2999985760,2999987967,BE -2999987968,2999992319,NL +2999985760,2999988479,BE +2999988480,2999992319,NL 2999992320,3000000511,RU 3000000512,3000008703,DE 3000008704,3000016895,RU @@ -63242,7 +64394,7 @@ 3001975592,3001975599,TW 3001975600,3001975607,CN 3001975608,3001975615,RU -3001975616,3001975623,US +3001975616,3001975623,UA 3001975624,3001975631,RU 3001975632,3001975655,GB 3001975656,3001975663,RU @@ -63257,25 +64409,21 @@ 3001975728,3001975735,GB 3001975736,3001975743,MY 3001975744,3001975759,GB -3001975760,3001975799,US -3001975800,3001975815,GB +3001975760,3001975807,US +3001975808,3001975815,GB 3001975816,3001975823,US 3001975824,3001975839,GB 3001975840,3001975847,CN 3001975848,3001975855,US 3001975856,3001975863,MY 3001975864,3001975871,AU -3001975872,3001975879,US -3001975880,3001975895,GB +3001975872,3001975887,US +3001975888,3001975895,GB 3001975896,3001975903,RU 3001975904,3001975919,GB 3001975920,3001975927,US 3001975928,3001975935,CN -3001975936,3001976415,GB -3001976416,3001976447,IL -3001976448,3001976575,GB -3001976576,3001976607,US -3001976608,3001976623,GB +3001975936,3001976623,GB 3001976624,3001976639,CN 3001976640,3001976655,RU 3001976656,3001976671,GB @@ -63283,47 +64431,46 @@ 3001976680,3001976687,US 3001976688,3001976831,GB 3001976832,3001976895,CN -3001976896,3001976927,IL +3001976896,3001976927,GB 3001976928,3001976959,RU -3001976960,3001977087,GB -3001977088,3001977103,IN +3001976960,3001977103,GB 3001977104,3001977119,RU 3001977120,3001977135,GB 3001977136,3001977143,CN 3001977144,3001977151,TW -3001977152,3001977167,GB +3001977152,3001977167,IN 3001977168,3001977183,LK -3001977184,3001977199,GB -3001977200,3001977215,SI +3001977184,3001977215,GB 3001977216,3001977247,RU 3001977248,3001977311,GB 3001977312,3001977343,CN -3001977344,3001977375,IL +3001977344,3001977375,GB 3001977376,3001977407,CA -3001977408,3001977439,IL -3001977440,3001977447,GB +3001977408,3001977447,GB 3001977448,3001977455,IT 3001977456,3001977463,US -3001977464,3001977487,GB +3001977464,3001977471,GB +3001977472,3001977487,IN 3001977488,3001977503,LK 3001977504,3001977519,GB 3001977520,3001977535,CN -3001977536,3001977575,GB -3001977576,3001977583,AU -3001977584,3001977599,GB +3001977536,3001977591,GB +3001977592,3001977599,GR 3001977600,3001977855,DK -3001977856,3001978047,GB +3001977856,3001977983,GB +3001977984,3001978015,CN +3001978016,3001978031,RU +3001978032,3001978047,GB 3001978048,3001978111,US -3001978112,3001978303,GB -3001978304,3001978367,IL +3001978112,3001978367,GB 3001978368,3001978495,US 3001978496,3001978527,RU 3001978528,3001978559,UA 3001978560,3001978591,US -3001978592,3001978607,AU +3001978592,3001978607,RU 3001978608,3001978615,IE 3001978616,3001978623,CN -3001978624,3001978687,CA +3001978624,3001978687,US 3001978688,3001978751,EE 3001978752,3001978783,RU 3001978784,3001978815,US @@ -63344,8 +64491,7 @@ 3002020160,3002020223,NL 3002020224,3002020287,IL 3002020288,3002020303,US -3002020304,3002020319,BZ -3002020320,3002021695,NL +3002020304,3002021695,NL 3002021696,3002021759,SG 3002021760,3002022527,NL 3002022528,3002022655,BZ @@ -63553,8 +64699,7 @@ 3024879616,3025141759,CN 3025141760,3025403903,KR 3025403904,3025600511,CN -3025600512,3025649663,AP -3025649664,3025666047,IN +3025600512,3025666047,IN 3025666048,3025928191,CN 3025928192,3025932287,TW 3025932288,3025944575,JP @@ -63562,17 +64707,20 @@ 3025960960,3025969151,PK 3025969152,3025973247,IN 3025973248,3025974271,AU +3025974272,3025975295,HK 3025975296,3025977343,SG 3025977344,3025979391,AU 3025979392,3025981439,IN -3025981440,3025985535,AU +3025981440,3025982463,AU +3025982464,3025983487,ID +3025983488,3025985535,AU 3025985536,3025989631,BD 3025989632,3025993727,KR 3025993728,3026059263,VN 3026059264,3026067455,PH 3026068480,3026069503,PH 3026069504,3026071551,JP -3026071552,3026073599,AP +3026071552,3026073599,HK 3026073600,3026075647,CN 3026075648,3026083839,AF 3026083840,3026087935,CN @@ -63603,6 +64751,7 @@ 3029336064,3029598207,JP 3029598208,3029600255,VN 3029600256,3029601279,AU +3029601280,3029602303,IN 3029604352,3029605375,AU 3029606400,3029614591,IN 3029614592,3029622783,AU @@ -63621,8 +64770,7 @@ 3029712896,3029713919,AU 3029714944,3029715199,JP 3029715200,3029715455,AU -3029715456,3029715967,AP -3029715968,3029716991,JP +3029715456,3029716991,JP 3029716992,3029721087,PK 3029721088,3029725183,AU 3029725184,3029727231,IN @@ -63733,7 +64881,7 @@ 3035103232,3035168767,PH 3035168768,3035193343,CN 3035193344,3035197439,JP -3035197440,3035199487,AP +3035197440,3035199487,HK 3035199488,3035200511,IN 3035201536,3035202559,AU 3035202560,3035205631,JP @@ -63756,8 +64904,12 @@ 3035340800,3035348991,MN 3035348992,3035357183,AU 3035365376,3035627519,KR -3035627520,3036676095,ID -3036676096,3037724671,AR +3035627520,3036610559,ID +3036610560,3036676095,SG +3036676096,3037790207,AR +3037790208,3037855743,VE +3037986816,3038248959,AR +3038511104,3038773247,AR 3053453312,3054501887,ID 3054501888,3054534655,HK 3054534656,3054537727,PH @@ -63776,6 +64928,7 @@ 3054665728,3054682111,IN 3054682112,3054698495,PH 3054698496,3054731263,IN +3054731264,3054764031,SG 3054764032,3054960639,JP 3054960640,3054993407,ID 3054993408,3054997503,IN @@ -63786,7 +64939,8 @@ 3055013888,3055014911,JP 3055014912,3055015935,AU 3055015936,3055026175,JP -3055026176,3055550463,ID +3055026176,3055484927,ID +3055484928,3055550463,KR 3055550464,3056599039,CN 3056599040,3056615423,JP 3056615424,3056623615,BD @@ -63831,6 +64985,7 @@ 3059744768,3063414783,CN 3063414784,3063545855,HK 3063545856,3063611391,NZ +3063611392,3063676927,TW 3063676928,3063742463,IN 3063742464,3063807999,CN 3063808000,3063939071,JP @@ -63943,7 +65098,6 @@ 3076210688,3076218879,ID 3076227072,3076228095,CN 3076228096,3076229119,NP -3076229120,3076231167,TH 3076231168,3076235263,CN 3076235264,3076243455,VN 3076243456,3076259839,KR @@ -63953,7 +65107,7 @@ 3081437184,3081502719,MY 3081502720,3081764863,CN 3081764864,3081846783,JP -3081846784,3081854975,AP +3081846784,3081854975,HK 3081854976,3081859071,MN 3081859072,3081861119,PH 3081861120,3081862143,AU @@ -63964,7 +65118,7 @@ 3082158080,3082166271,CN 3082166272,3082174463,JP 3082174464,3082178559,PH -3082178560,3082179583,AP +3082178560,3082179583,HK 3082179584,3082181631,IN 3082181632,3082182655,ID 3082182656,3082190847,LA @@ -63975,6 +65129,7 @@ 3091726336,3093168127,US 3093168128,3093200895,CA 3093233664,3093237759,PR +3093237760,3093241855,US 3093299200,3093939167,US 3093939168,3093939175,CN 3093939176,3093941111,US @@ -64077,7 +65232,19 @@ 3093965880,3093965881,CA 3093965882,3093965885,US 3093965886,3093965887,MX -3093965888,3093986367,US +3093965888,3093967191,US +3093967192,3093967199,CA +3093967200,3093968911,US +3093968912,3093968927,CA +3093968928,3093968943,US +3093968944,3093968951,MX +3093968952,3093969007,US +3093969008,3093969015,IE +3093969016,3093969031,US +3093969032,3093969035,CA +3093969036,3093969131,US +3093969132,3093969135,MX +3093969136,3093986367,US 3093986368,3093986431,DE 3093986432,3093986463,US 3093986464,3093986495,GB @@ -64087,7 +65254,8 @@ 3096444928,3096969215,CA 3096969216,3097493503,US 3097493504,3097755647,CA -3097755648,3098148863,US +3097755648,3098095615,US +3098095616,3098099711,CA 3098148864,3098165247,JM 3098214400,3098263551,US 3098263552,3098271743,CA @@ -64130,12 +65298,12 @@ 3122397184,3122659327,CO 3122659328,3122724863,GT 3122790400,3122987007,CL -3123052544,3123118079,AR +3123052544,3123183615,AR 3123183616,3123314687,CL 3123314688,3123380223,EC 3123380224,3123412991,CO 3123445760,3123576831,TT -3123576832,3123609599,EC +3123576832,3123642367,EC 3123707904,3123970047,UY 3124232192,3124772863,AR 3124887552,3124953087,EC @@ -64158,23 +65326,22 @@ 3129999360,3130261503,CO 3130523648,3130654719,AR 3131047936,3131310079,PE -3132096512,3132129279,CR +3132096512,3132162047,CR 3132227584,3132293119,EC 3132358656,3132424191,CO 3132489728,3132555263,AR -3132620800,3132751871,VE -3132882944,3132915711,VE +3132620800,3132915711,VE 3132915712,3132948479,PA 3132948480,3133014015,AR 3133014016,3133046783,HT -3133046784,3133054975,AR -3133063168,3133067263,AR +3133046784,3133067263,AR 3133067264,3133073407,PA +3133073408,3133074431,AN +3133074432,3133075455,CL 3133075456,3133079551,AN 3133079552,3133145087,AR 3133145088,3145727999,BR 3145728000,3154116607,MX -3154116608,3154182143,EU 3154182144,3154247679,DE 3154247680,3154313215,RS 3154313216,3154378751,TR @@ -64196,6 +65363,7 @@ 3156475904,3156539391,HU 3156539392,3156539647,RO 3156539648,3156541439,HU +3156541440,3156606975,PT 3156606976,3156672511,TR 3156672512,3156738047,GB 3156738048,3156791439,DE @@ -64290,8 +65458,13 @@ 3158446080,3158448127,NL 3158448128,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 3158835200,3158851583,IQ 3158851584,3158867967,RU 3158867968,3158884351,AZ @@ -64320,7 +65493,8 @@ 3158891648,3158891711,DE 3158891712,3158891775,RU 3158891776,3158892031,PL -3158892032,3158892415,DE +3158892032,3158892351,DE +3158892352,3158892415,IR 3158892416,3158892543,GB 3158892544,3158892671,DE 3158892672,3158892799,RU @@ -64329,7 +65503,8 @@ 3158893824,3158894079,TR 3158894080,3158895167,DE 3158895168,3158895231,RU -3158895232,3158895423,DE +3158895232,3158895359,TR +3158895360,3158895423,DE 3158895424,3158895487,RU 3158895488,3158895551,MK 3158895552,3158895615,AE @@ -64348,7 +65523,8 @@ 3158898272,3158898335,RU 3158898336,3158898431,DE 3158898432,3158898687,US -3158898688,3158898943,DE +3158898688,3158898815,DE +3158898816,3158898943,BZ 3158898944,3158899199,ES 3158899200,3158899455,DE 3158899456,3158899711,CA @@ -64357,12 +65533,14 @@ 3158917120,3158933503,DE 3158933504,3158949887,RU 3158949888,3158966271,GR +3158966272,3158982655,DE 3158982656,3158999039,GB 3158999040,3159031807,RO 3159031808,3159048191,RU 3159048192,3159064575,IR 3159064576,3159080959,CZ 3159080960,3159097343,RU +3159097344,3159359487,ES 3159359488,3159621631,PT 3159621632,3159883775,ES 3159883776,3160145919,NL @@ -64371,6 +65549,8 @@ 3160150016,3160152063,LV 3160152064,3160154111,IT 3160154112,3160156159,DE +3160156160,3160158207,CZ +3160158208,3160160255,CH 3160160256,3160162303,NL 3160162304,3160164351,FR 3160164352,3160166399,LV @@ -64442,6 +65622,7 @@ 3160271952,3160272895,ES 3160272896,3160274943,RU 3160274944,3160276991,AT +3160276992,3160279039,FR 3160279040,3160281087,ES 3160281088,3160283135,GB 3160283136,3160285183,DE @@ -64490,6 +65671,7 @@ 3160377344,3160379391,NL 3160379392,3160381439,TR 3160381440,3160383487,UA +3160383488,3160385535,SA 3160385536,3160387583,NL 3160387584,3160389631,RS 3160389632,3160391679,RU @@ -64498,6 +65680,7 @@ 3160397824,3160399871,ES 3160399872,3160401919,SE 3160403968,3160406015,NO +3160406016,3160408063,ES 3160408064,3161456639,DE 3161456640,3161473023,PL 3161473024,3161489407,SK @@ -64528,6 +65711,7 @@ 3161866240,3161882623,IR 3161882624,3161899007,DE 3161899008,3161915391,AT +3161915392,3161931775,TR 3161931776,3161948159,SA 3161948160,3161964543,RO 3161964544,3161980927,ES @@ -64556,6 +65740,7 @@ 3162128384,3162129407,NL 3162129408,3162129919,DE 3162129920,3162136575,NL +3162136576,3162144767,ES 3162144768,3162152959,SE 3162152960,3162161151,RU 3162161152,3162169343,CZ @@ -64628,6 +65813,7 @@ 3163029504,3163062271,DE 3163062272,3163095039,IR 3163095040,3163127807,PL +3163127808,3163160575,BH 3163160576,3163161631,DE 3163161632,3163161663,DK 3163161664,3163161695,DE @@ -64647,9 +65833,14 @@ 3163163872,3163163903,RU 3163163904,3163163935,GR 3163163936,3163163967,VG -3163163968,3163164127,DE -3163164128,3163164159,PK -3163164160,3163164543,DE +3163163968,3163164063,DE +3163164064,3163164095,AM +3163164096,3163164127,DE +3163164128,3163164159,US +3163164160,3163164351,DE +3163164352,3163164383,BG +3163164384,3163164511,DE +3163164512,3163164543,HU 3163164544,3163164575,RU 3163164576,3163165759,DE 3163165760,3163165791,PL @@ -64665,7 +65856,9 @@ 3163166592,3163167775,DE 3163167776,3163167807,GR 3163167808,3163167839,NL -3163167840,3163167967,DE +3163167840,3163167871,DE +3163167872,3163167903,PT +3163167904,3163167967,DE 3163167968,3163167999,TR 3163168000,3163168031,DE 3163168032,3163168095,RU @@ -64673,7 +65866,11 @@ 3163168128,3163168159,SA 3163168160,3163168319,DE 3163168320,3163168351,DK -3163168352,3163168575,DE +3163168352,3163168383,DE +3163168384,3163168415,TR +3163168416,3163168511,DE +3163168512,3163168543,TR +3163168544,3163168575,DE 3163168576,3163168607,NL 3163168608,3163168671,DE 3163168672,3163168703,US @@ -64695,19 +65892,21 @@ 3163170592,3163170623,BR 3163170624,3163170655,GR 3163170656,3163170783,DE -3163170784,3163170815,PK +3163170784,3163170815,US 3163170816,3163171871,DE 3163171872,3163171903,RO -3163171904,3163172127,DE +3163171904,3163171935,DE +3163171936,3163171967,BR +3163171968,3163172127,DE 3163172128,3163172159,NL -3163172160,3163172255,DE -3163172256,3163172287,PL -3163172288,3163172319,DE +3163172160,3163172319,DE 3163172320,3163172351,NL 3163172352,3163172383,GB 3163172384,3163172447,DE 3163172448,3163172479,TR -3163172480,3163172607,DE +3163172480,3163172511,DE +3163172512,3163172543,RU +3163172544,3163172607,DE 3163172608,3163172639,DK 3163172640,3163172735,DE 3163172736,3163172767,GR @@ -64717,12 +65916,11 @@ 3163174304,3163174335,IL 3163174336,3163174367,RU 3163174368,3163174399,DE -3163174400,3163174431,PK +3163174400,3163174431,US 3163174432,3163174591,DE 3163174592,3163174623,SE 3163174624,3163174655,GB -3163174656,3163174687,NL -3163174688,3163174719,DE +3163174656,3163174719,DE 3163174720,3163174751,NL 3163174752,3163174783,US 3163174784,3163176127,DE @@ -64738,6 +65936,7 @@ 3163176800,3163176895,DE 3163176896,3163176927,SE 3163176928,3163193343,DE +3163193344,3163226111,MD 3163226112,3163258879,SA 3163258880,3163291647,SY 3163291648,3163324415,PT @@ -64745,7 +65944,7 @@ 3163357184,3163389951,IE 3163389952,3163422719,FR 3163422720,3163455487,NL -3163455488,3163488255,HU +3163455488,3163521023,HU 3163521024,3163553791,RU 3163553792,3163684863,DE 3163684864,3163815935,PL @@ -64810,7 +66009,7 @@ 3164948736,3164949087,GB 3164949088,3164949095,FR 3164949096,3164949103,IT -3164949104,3164949119,BE +3164949104,3164949119,PL 3164949120,3164949123,PT 3164949124,3164949131,DE 3164949132,3164949151,FR @@ -64863,8 +66062,10 @@ 3164950624,3164950655,GB 3164950656,3164950687,FR 3164950688,3164950703,ES -3164950704,3164950719,FR -3164950720,3164950723,GB +3164950704,3164950707,DE +3164950708,3164950711,PL +3164950712,3164950715,FI +3164950716,3164950723,GB 3164950724,3164950735,FR 3164950736,3164950751,ES 3164950752,3164950759,GB @@ -64897,7 +66098,8 @@ 3164951688,3164951691,FR 3164951692,3164951695,CH 3164951696,3164951711,PL -3164951712,3164951807,FR +3164951712,3164951775,FR +3164951776,3164951807,DE 3164951808,3164951823,NL 3164951824,3164951831,CH 3164951832,3164951839,FR @@ -64919,7 +66121,10 @@ 3164952064,3164952191,FR 3164952192,3164952207,ES 3164952208,3164952219,NL -3164952220,3164952255,FR +3164952220,3164952239,FR +3164952240,3164952243,DE +3164952244,3164952247,BE +3164952248,3164952255,FR 3164952256,3164952319,DE 3164952320,3164952575,ES 3164952576,3164952831,FR @@ -65036,7 +66241,10 @@ 3164960912,3164960915,PL 3164960916,3164960919,LT 3164960920,3164960927,FR -3164960928,3164960959,GB +3164960928,3164960935,ES +3164960936,3164960939,GB +3164960940,3164960943,DE +3164960944,3164960959,FR 3164960960,3164961023,CH 3164961024,3164961151,FR 3164961152,3164961167,DE @@ -65085,7 +66293,8 @@ 3164961972,3164961975,ES 3164961976,3164961979,GB 3164961980,3164961999,DE -3164962000,3164962031,FR +3164962000,3164962007,BE +3164962008,3164962031,FR 3164962032,3164962047,NL 3164962048,3164962079,FR 3164962080,3164962095,ES @@ -65167,10 +66376,11 @@ 3164968960,3164968991,DE 3164968992,3164969007,FR 3164969008,3164969015,PT -3164969016,3164969023,FR +3164969016,3164969019,NL +3164969020,3164969023,BE 3164969024,3164969055,PL 3164969056,3164969071,CZ -3164969072,3164969087,FR +3164969072,3164969087,GB 3164969088,3164969095,ES 3164969096,3164969099,PL 3164969100,3164969103,DE @@ -65218,7 +66428,8 @@ 3164970464,3164970495,GB 3164970496,3164970559,PL 3164970560,3164970567,FR -3164970568,3164970575,ES +3164970568,3164970571,GB +3164970572,3164970575,ES 3164970576,3164970607,FR 3164970608,3164970615,ES 3164970616,3164970623,CH @@ -65309,8 +66520,7 @@ 3164974664,3164974667,GB 3164974668,3164974671,DE 3164974672,3164974675,FR -3164974676,3164974679,PT -3164974680,3164974719,PL +3164974676,3164974719,PL 3164974720,3164974727,FR 3164974728,3164974731,PL 3164974732,3164974735,IT @@ -65330,7 +66540,41 @@ 3164975356,3164975359,FR 3164975360,3164975615,ES 3164975616,3164976127,GB -3164976128,3164976767,FR +3164976128,3164976131,NL +3164976132,3164976135,GB +3164976136,3164976139,FR +3164976140,3164976143,GB +3164976144,3164976159,FR +3164976160,3164976191,GB +3164976192,3164976215,FR +3164976216,3164976223,PL +3164976224,3164976231,NL +3164976232,3164976239,ES +3164976240,3164976255,IE +3164976256,3164976259,GB +3164976260,3164976263,NL +3164976264,3164976271,PT +3164976272,3164976279,FI +3164976280,3164976287,PL +3164976288,3164976295,ES +3164976296,3164976303,IT +3164976304,3164976307,FR +3164976308,3164976311,DE +3164976312,3164976315,GB +3164976316,3164976319,FR +3164976320,3164976335,DE +3164976336,3164976343,FR +3164976344,3164976347,PL +3164976348,3164976351,ES +3164976352,3164976367,DE +3164976368,3164976383,PL +3164976384,3164976407,FR +3164976408,3164976415,DE +3164976416,3164976431,IT +3164976432,3164976459,FR +3164976460,3164976479,DE +3164976480,3164976511,PL +3164976512,3164976767,FR 3164976768,3164976783,DE 3164976784,3164976799,ES 3164976800,3164976815,DE @@ -65371,9 +66615,7 @@ 3164978156,3164978159,DE 3164978160,3164978175,FR 3164978176,3164978431,IT -3164978432,3164978447,FR -3164978448,3164978463,PT -3164978464,3164978495,DE +3164978432,3164978495,FR 3164978496,3164978511,IT 3164978512,3164978527,ES 3164978528,3164978543,FR @@ -65418,12 +66660,15 @@ 3166306304,3166437375,RU 3166437376,3166568447,BE 3166699520,3166961663,DE +3166961664,3167223807,SI 3167223808,3167594831,NL 3167594832,3167594839,A2 3167594840,3167748095,NL 3167748096,3167940095,RO 3167940096,3167940351,CY -3167940352,3168092159,RO +3167940352,3168069631,RO +3168069632,3168075775,GB +3168075776,3168092159,RO 3168092160,3168096255,GB 3168096256,3168100351,MD 3168100352,3168104447,RO @@ -65453,6 +66698,7 @@ 3169058816,3169091583,DK 3169091584,3169124351,IT 3169124352,3169157119,RO +3169157120,3169189887,SY 3169189888,3169222655,UA 3169222656,3169255423,SI 3169255424,3169264895,KW @@ -65483,6 +66729,7 @@ 3169281024,3169281279,US 3169281280,3169288191,KW 3169288192,3169320959,UA +3169320960,3169583103,RU 3169845248,3169965823,RO 3169965824,3169966079,GB 3169966080,3169976319,RO @@ -65493,16 +66740,22 @@ 3170123776,3170127871,DK 3170127872,3170131967,ES 3170131968,3170136063,JO +3170136064,3170140159,GB +3170140160,3170172927,RU +3170172928,3170238463,IR 3170238464,3170246655,DE 3170246656,3170254847,RS 3170254848,3170263039,BA 3170263040,3170271231,CZ 3170271232,3170279423,PL 3170279424,3170287615,RU +3170287616,3170295807,GB 3170295808,3170303999,RU 3170304000,3170312191,SY 3170312192,3170320383,RU 3170320384,3170328575,JO +3170328576,3170336767,UA +3170336768,3170369535,RO 3170369536,3170500607,SA 3170893824,3179282431,BR 3179282432,3179282943,UY @@ -65540,6 +66793,8 @@ 3187936724,3187936727,HN 3187936728,3187949567,GT 3187949568,3187953663,AN +3187953664,3187955711,CL +3187955712,3187957759,CR 3187957760,3187961855,CL 3187965952,3187982335,AN 3187982336,3187998719,CL @@ -65601,6 +66856,7 @@ 3188612096,3188612351,CL 3188612352,3188621311,AR 3188621312,3188625407,GT +3188625408,3188627455,AR 3188629504,3188637695,AR 3188637696,3188645887,PA 3188645888,3188662271,CO @@ -65619,6 +66875,7 @@ 3190554624,3190816767,CL 3190816768,3191078911,AR 3191078912,3191087103,CO +3191087104,3191089151,AR 3191095296,3191099391,EC 3191103488,3191107583,CO 3191111680,3191128063,PY @@ -65641,6 +66898,7 @@ 3191435776,3191436287,SV 3191436288,3191438335,GT 3191438336,3191439359,SV +3191439360,3191455743,EC 3191472128,3191603199,TT 3191603200,3191608319,MX 3191608320,3191608831,CO @@ -65656,6 +66914,7 @@ 3191639040,3191672063,CO 3191672064,3191672319,AR 3191672320,3191734271,CO +3191734272,3191799807,SV 3191865344,3191930879,UY 3191930880,3192389631,CO 3192389632,3192913919,VE @@ -65664,6 +66923,7 @@ 3192979456,3193044991,PE 3193044992,3193110527,CL 3193110528,3193143295,CO +3193143296,3193176063,TT 3193176064,3193307135,CO 3193307136,3193438207,SV 3193438208,3193569279,AN @@ -68627,7 +69887,9 @@ 3231907840,3231916031,US 3231916032,3231948799,FI 3231973376,3232038911,AT -3232038912,3232092671,SE +3232038912,3232079871,SE +3232079872,3232080895,GB +3232080896,3232092671,SE 3232092672,3232093183,GB 3232093184,3232093439,US 3232093440,3232094207,GB @@ -69064,7 +70326,9 @@ 3234589440,3234589695,AU 3234589696,3234592511,US 3234592512,3234592767,TH -3234592768,3234725887,US +3234592768,3234611199,US +3234611200,3234615295,A1 +3234615296,3234725887,US 3234726144,3234726399,CA 3234726400,3234726911,US 3234727936,3234733055,US @@ -70135,6 +71399,7 @@ 3239834624,3239835135,AT 3239835136,3239836159,RU 3239836160,3239836671,DK +3239836672,3239837183,DE 3239837184,3239837695,SE 3239837696,3239837951,PL 3239837952,3239839231,DE @@ -70365,7 +71630,6 @@ 3240189952,3240190463,DE 3240190464,3240190975,IT 3240190976,3240191487,RU -3240191488,3240191999,SE 3240192000,3240192511,UA 3240192512,3240193023,RO 3240193024,3240193535,GB @@ -70382,7 +71646,7 @@ 3240199168,3240199679,HU 3240199680,3240200191,NL 3240200192,3240200703,RO -3240200704,3240201215,SE +3240200704,3240201215,GB 3240201216,3240201727,RO 3240201728,3240202239,CH 3240202240,3240202751,RU @@ -70840,21 +72104,15 @@ 3240952080,3240952087,GB 3240952088,3240952095,SE 3240952096,3240952127,US -3240952128,3240953471,SE -3240953472,3240953599,DE -3240953600,3240954495,SE +3240952128,3240954495,SE 3240954496,3240954623,DE 3240954624,3240955647,SE 3240955648,3240955903,GB 3240955904,3240961791,SE 3240961792,3240961799,FI -3240961800,3240968191,SE -3240968192,3240968447,DE -3240968448,3240968703,SE +3240961800,3240968703,SE 3240968704,3240968959,GB -3240968960,3240969215,SE -3240969216,3240969231,GB -3240969232,3240988159,SE +3240968960,3240988159,SE 3240988160,3240988167,PL 3240988168,3241017343,SE 3241017344,3241017855,AT @@ -71756,6 +73014,7 @@ 3244951552,3244952575,FI 3244952576,3244953599,GB 3244953600,3244954623,DE +3244954624,3244955647,PL 3244955648,3244957695,UA 3244957696,3244958719,EU 3244958720,3244959743,FR @@ -72846,6 +74105,7 @@ 3247901696,3247902719,UA 3247902720,3247903743,GB 3247903744,3247904767,BG +3247904768,3247905791,RU 3247905792,3247906815,RO 3247906816,3247907839,DE 3247907840,3247908863,PL @@ -73104,6 +74364,7 @@ 3249136128,3249137151,RU 3249137152,3249137663,FR 3249137664,3249138175,PL +3249138688,3249139199,GB 3249139200,3249139711,RU 3249139712,3249140223,UA 3249140224,3249140735,IT @@ -73224,7 +74485,11 @@ 3249731584,3249732607,UA 3249732608,3249733631,IT 3249733632,3249799167,CZ -3249799168,3249931007,SE +3249799168,3249865727,SE +3249865728,3249866751,GB +3249866752,3249910783,SE +3249910784,3249912319,GB +3249912320,3249931007,SE 3249931008,3249931263,GB 3249931264,3249932031,SE 3249932032,3249934335,GB @@ -74012,6 +75277,7 @@ 3252342208,3252342239,GB 3252342240,3252342271,CH 3252342528,3252342543,NO +3252342544,3252342591,CH 3252342784,3252346367,DE 3252346368,3252346623,GB 3252346624,3252355071,GR @@ -74074,7 +75340,9 @@ 3252408192,3252408319,NO 3252408320,3252408327,MW 3252408328,3252408335,LT -3252408336,3252408367,GN +3252408336,3252408343,GN +3252408344,3252408351,LT +3252408352,3252408367,GN 3252408368,3252408375,NG 3252408376,3252408383,LT 3252408384,3252408391,BI @@ -74118,7 +75386,9 @@ 3252409344,3252409375,TD 3252409376,3252409407,LT 3252409408,3252409471,BI -3252409472,3252409519,LT +3252409472,3252409503,LT +3252409504,3252409511,GH +3252409512,3252409519,LT 3252409520,3252409527,NG 3252409528,3252409535,LT 3252409536,3252409543,BI @@ -74135,9 +75405,7 @@ 3252410464,3252410495,LT 3252410496,3252410623,BI 3252410624,3252410751,ZW -3252410752,3252411135,LT -3252411136,3252411167,IQ -3252411168,3252411327,LT +3252410752,3252411327,LT 3252411328,3252411367,CD 3252411368,3252411375,LT 3252411376,3252411391,CD @@ -74166,14 +75434,15 @@ 3252414624,3252414639,TZ 3252414640,3252414647,GH 3252414648,3252414655,NE -3252414656,3252414719,ER -3252414720,3252414983,LT -3252414984,3252415007,IQ -3252415008,3252415015,LT +3252414656,3252414687,LT +3252414688,3252414719,ER +3252414720,3252414991,LT +3252414992,3252414999,IQ +3252415000,3252415015,LT 3252415016,3252415127,IQ 3252415128,3252415135,LT -3252415136,3252415183,IQ -3252415184,3252415487,LT +3252415136,3252415191,IQ +3252415192,3252415487,LT 3252415488,3252415743,IQ 3252415744,3252415775,GB 3252415776,3252415967,LT @@ -74184,8 +75453,8 @@ 3252416960,3252417023,GN 3252417024,3252417279,LT 3252417280,3252417287,IQ -3252417288,3252417391,AF -3252417392,3252417791,LT +3252417288,3252417423,AF +3252417424,3252417791,LT 3252417792,3252417855,NG 3252417856,3252417919,LT 3252417920,3252417935,MW @@ -74216,9 +75485,7 @@ 3252419360,3252419423,GH 3252419424,3252419839,LT 3252419840,3252419879,IQ -3252419880,3252419887,LT -3252419888,3252419895,IQ -3252419896,3252419903,LT +3252419880,3252419903,LT 3252419904,3252419911,IQ 3252419912,3252419919,LT 3252419920,3252419927,IQ @@ -74239,10 +75506,11 @@ 3252420240,3252420247,IQ 3252420248,3252420263,LT 3252420264,3252420271,IQ -3252420272,3252420367,LT -3252420368,3252420415,IQ +3252420272,3252420351,LT +3252420352,3252420415,IQ 3252420416,3252420431,GB -3252420432,3252420463,IQ +3252420432,3252420447,LT +3252420448,3252420463,IQ 3252420464,3252420471,AF 3252420472,3252420583,LT 3252420584,3252420591,IQ @@ -74304,11 +75572,11 @@ 3252435200,3252435247,TZ 3252435248,3252435295,LT 3252435296,3252435311,TZ -3252435312,3252435319,LT +3252435312,3252435319,ML 3252435320,3252435327,MZ 3252435328,3252435343,CD 3252435344,3252435359,BF -3252435360,3252435375,CD +3252435360,3252435375,LT 3252435376,3252435415,GN 3252435416,3252435423,CD 3252435424,3252435455,LT @@ -74415,7 +75683,7 @@ 3252453248,3252453271,NG 3252453272,3252454655,LT 3252454656,3252454911,IQ -3252454912,3252455167,GB +3252454912,3252455167,LT 3252455168,3252455295,NG 3252455296,3252455679,LT 3252455680,3252455807,BI @@ -74637,9 +75905,7 @@ 3253230848,3253247999,RU 3253248000,3253248255,DE 3253248256,3253248511,UZ -3253248512,3253264383,RU -3253264384,3253264895,KZ -3253264896,3253265407,RU +3253248512,3253265407,RU 3253265408,3253265919,AM 3253265920,3253270527,RU 3253270528,3253271551,BY @@ -74928,11 +76194,7 @@ 3254490368,3254490623,CF 3254490624,3254491135,FR 3254491136,3254491391,DZ -3254491392,3254491531,GQ -3254491532,3254491603,FR -3254491604,3254491607,GQ -3254491608,3254491615,FR -3254491616,3254491647,GQ +3254491392,3254491647,GQ 3254491648,3254491903,FR 3254491904,3254492031,CM 3254492032,3254492159,FR @@ -75630,6 +76892,7 @@ 3255378944,3255379455,UA 3255379456,3255379967,RU 3255379968,3255380479,GB +3255380480,3255380991,NL 3255380992,3255381503,CH 3255381504,3255382015,PL 3255382016,3255382527,NL @@ -76136,20 +77399,17 @@ 3257546688,3257546719,DE 3257546720,3257546751,DK 3257546752,3257548799,IE -3257548800,3257549055,DE -3257549056,3257549343,GB +3257548800,3257549343,GB 3257549344,3257549359,DE -3257549360,3257549375,GB -3257549376,3257549423,DE -3257549424,3257549567,GB -3257549568,3257549695,DE +3257549360,3257549407,GB +3257549408,3257549423,DE +3257549424,3257549631,GB +3257549632,3257549695,DE 3257549696,3257549823,GB 3257549824,3257549871,DE -3257549872,3257549951,GB -3257549952,3257550095,DE -3257550096,3257550847,GB -3257550848,3257551103,DE -3257551104,3257551631,GB +3257549872,3257550079,GB +3257550080,3257550095,DE +3257550096,3257551631,GB 3257551632,3257551647,DE 3257551648,3257551711,GB 3257551712,3257551807,DE @@ -76160,8 +77420,8 @@ 3257552656,3257552703,GB 3257552704,3257552719,DE 3257552720,3257552895,GB -3257552896,3257552959,DE -3257552960,3257553023,GB +3257552896,3257552927,DE +3257552928,3257553023,GB 3257553024,3257553039,DE 3257553040,3257553407,GB 3257553408,3257553727,DE @@ -77253,7 +78513,9 @@ 3258504192,3258504703,CH 3258504704,3258504959,DE 3258504960,3258505215,IL -3258505216,3258515455,CH +3258505216,3258506495,CH +3258506496,3258506751,DE +3258506752,3258515455,CH 3258515456,3258580991,FR 3258580992,3258625791,RU 3258625792,3258626047,UA @@ -77897,7 +79159,9 @@ 3262034048,3262034119,AX 3262034120,3262034123,FI 3262034124,3262034127,AX -3262034128,3262034431,FI +3262034128,3262034175,FI +3262034176,3262034191,AX +3262034192,3262034431,FI 3262034432,3262034447,AX 3262034448,3262034455,FI 3262034456,3262034463,AX @@ -79224,7 +80488,7 @@ 3262478135,3262478135,TR 3262478136,3262478137,HU 3262478138,3262478138,TR -3262478139,3262478139,MZ +3262478139,3262478139,DE 3262478140,3262478140,FR 3262478141,3262478143,TR 3262478144,3262478145,DE @@ -79236,7 +80500,7 @@ 3262478151,3262478151,DE 3262478152,3262478152,PL 3262478153,3262478153,TR -3262478154,3262478154,FR +3262478154,3262478154,DE 3262478155,3262478155,CU 3262478156,3262478156,TR 3262478157,3262478157,DE @@ -81232,9 +82496,7 @@ 3264340992,3264341503,PL 3264341504,3264341759,DE 3264341760,3264342015,IT -3264342016,3264342783,DE -3264342784,3264343039,ES -3264343040,3264343295,DE +3264342016,3264343295,DE 3264343296,3264343551,GB 3264343552,3264343807,RO 3264343808,3264344063,DE @@ -81510,6 +82772,7 @@ 3264845312,3264845951,DE 3264845952,3264846079,GB 3264846080,3264846207,UG +3264846208,3264846335,AE 3264846336,3264846463,GB 3264846464,3264846591,NO 3264846592,3264846719,US @@ -81562,10 +82825,10 @@ 3264906333,3264906335,GR 3264906336,3264906339,CY 3264906340,3264906351,GR -3264906352,3264906355,CY -3264906356,3264906359,GR -3264906360,3264906367,CY -3264906368,3264906411,GR +3264906352,3264906367,CY +3264906368,3264906383,GR +3264906384,3264906399,CY +3264906400,3264906411,GR 3264906412,3264906423,CY 3264906424,3264906435,GR 3264906436,3264906495,CY @@ -81640,8 +82903,8 @@ 3264910656,3264910671,GR 3264910672,3264910696,CY 3264910697,3264910699,GR -3264910700,3264910707,CY -3264910708,3264910719,GR +3264910700,3264910703,CY +3264910704,3264910719,GR 3264910720,3264910815,CY 3264910816,3264911103,GR 3264911104,3264911651,CY @@ -81989,7 +83252,9 @@ 3266445312,3266510847,NL 3266510848,3266543615,ES 3266543616,3266576383,IT -3266576384,3266634391,DE +3266576384,3266617327,DE +3266617328,3266617343,GB +3266617344,3266634391,DE 3266634392,3266634399,EE 3266634400,3266641919,DE 3266641920,3266707455,PL @@ -82006,8 +83271,8 @@ 3266799616,3266800127,GB 3266800128,3266800319,NL 3266800320,3266800639,GB -3266800640,3266800703,NL -3266800704,3266800727,GB +3266800640,3266800695,NL +3266800696,3266800727,GB 3266800728,3266800735,NL 3266800736,3266800895,GB 3266800896,3266801215,NL @@ -82021,10 +83286,10 @@ 3266801616,3266801647,NL 3266801648,3266801663,GB 3266801664,3266801919,NL -3266801920,3266802943,GB -3266802944,3266803199,NL -3266803200,3266803727,GB -3266803728,3266803831,NL +3266801920,3266803727,GB +3266803728,3266803751,NL +3266803752,3266803759,GB +3266803760,3266803831,NL 3266803832,3266804223,GB 3266804224,3266804479,NL 3266804480,3266804735,GB @@ -82314,7 +83579,9 @@ 3267647488,3267647743,GB 3267647744,3267647999,SI 3267648000,3267648255,DE -3267648256,3267648431,EU +3267648256,3267648383,EU +3267648384,3267648399,BG +3267648400,3267648431,EU 3267648432,3267648447,BE 3267648448,3267648479,FR 3267648480,3267648511,GB @@ -82355,8 +83622,8 @@ 3267657488,3267657503,EU 3267657504,3267657567,RO 3267657568,3267657663,EU -3267657664,3267657679,RO -3267657680,3267657983,EU +3267657664,3267657687,RO +3267657688,3267657983,EU 3267657984,3267658239,GB 3267658240,3267658495,IT 3267658496,3267658751,EU @@ -82512,15 +83779,15 @@ 3267683536,3267683551,PL 3267683552,3267683567,EU 3267683568,3267683575,PL -3267683576,3267684383,EU +3267683576,3267683919,EU +3267683920,3267683935,PL +3267683936,3267684383,EU 3267684384,3267684399,GB 3267684400,3267684407,EU -3267684408,3267684783,GB -3267684784,3267684791,EU -3267684792,3267685119,GB +3267684408,3267685119,GB 3267685120,3267685375,DE 3267685376,3267685887,NL -3267685888,3267686399,GB +3267685888,3267686399,CH 3267686400,3267687935,EU 3267687936,3267688191,IE 3267688192,3267688703,DE @@ -82616,8 +83883,8 @@ 3268223232,3268224767,EU 3268224768,3268225023,US 3268225024,3268226367,EU -3268226368,3268226655,GB -3268226656,3268226687,EU +3268226368,3268226663,GB +3268226664,3268226687,EU 3268226688,3268226815,GB 3268226816,3268227327,EU 3268227328,3268227391,GB @@ -83416,7 +84683,6 @@ 3270980608,3270980863,MD 3270980864,3270981631,RU 3270981632,3270981887,IT -3270981888,3270982143,DE 3270982144,3270982399,RU 3270982400,3270982655,TR 3270982656,3270982911,UA @@ -83637,6 +84903,7 @@ 3271744512,3271745023,AT 3271745024,3271745535,PL 3271745536,3271746047,GB +3271746048,3271746559,RU 3271746560,3271747071,CH 3271747072,3271747583,KZ 3271747584,3271748095,RU @@ -83749,14 +85016,11 @@ 3272040448,3272048639,FR 3272048640,3272056831,NL 3272056832,3272065023,RU -3272065024,3272065087,NL -3272065088,3272065151,GB -3272065152,3272065183,NL -3272065184,3272065215,GB +3272065024,3272065215,GB 3272065216,3272065279,NL 3272065280,3272065343,GB -3272065344,3272065503,NL -3272065504,3272065535,GB +3272065344,3272065439,NL +3272065440,3272065535,GB 3272065536,3272065551,NL 3272065552,3272065559,GB 3272065560,3272065575,NL @@ -83769,14 +85033,12 @@ 3272065824,3272066335,GB 3272066336,3272066431,NL 3272066432,3272066815,GB -3272066816,3272066879,NL -3272066880,3272066911,GB +3272066816,3272066847,NL +3272066848,3272066911,GB 3272066912,3272066943,NL 3272066944,3272067063,GB 3272067064,3272067071,NL -3272067072,3272067327,GB -3272067328,3272067583,NL -3272067584,3272067615,GB +3272067072,3272067615,GB 3272067616,3272067647,NL 3272067648,3272067711,GB 3272067712,3272067775,NL @@ -83786,16 +85048,9 @@ 3272067872,3272067887,NL 3272067888,3272067927,GB 3272067928,3272067967,NL -3272067968,3272068095,GB -3272068096,3272068351,NL -3272068352,3272068607,GB -3272068608,3272068863,NL -3272068864,3272069119,GB -3272069120,3272069247,NL -3272069248,3272069343,GB +3272067968,3272069343,GB 3272069344,3272069375,IT -3272069376,3272069439,NL -3272069440,3272069503,GB +3272069376,3272069503,GB 3272069504,3272069567,NL 3272069568,3272069599,GB 3272069600,3272069603,NL @@ -83815,21 +85070,17 @@ 3272070624,3272070639,NL 3272070640,3272070647,GB 3272070648,3272070655,NL -3272070656,3272070911,GB -3272070912,3272071167,NL -3272071168,3272071247,GB +3272070656,3272071247,GB 3272071248,3272071283,NL 3272071284,3272071287,GB 3272071288,3272071295,NL -3272071296,3272071327,GB -3272071328,3272071551,NL -3272071552,3272071615,GB +3272071296,3272071359,GB +3272071360,3272071423,NL +3272071424,3272071615,GB 3272071616,3272071647,NL -3272071648,3272071935,GB -3272071936,3272072063,NL -3272072064,3272072191,GB -3272072192,3272073215,NL -3272073216,3272081407,GB +3272071648,3272072319,GB +3272072320,3272072959,NL +3272072960,3272081407,GB 3272081408,3272081919,PT 3272081920,3272082687,CV 3272082688,3272083455,PT @@ -84018,7 +85269,9 @@ 3272216912,3272216927,DE 3272216928,3272216959,EU 3272216960,3272217007,GB -3272217008,3272217215,EU +3272217008,3272217087,EU +3272217088,3272217151,GB +3272217152,3272217215,EU 3272217216,3272217279,BE 3272217280,3272217303,DE 3272217304,3272217311,BE @@ -84396,6 +85649,29 @@ 3272901888,3272902143,DE 3272902144,3272902399,PL 3272902400,3272902655,RU +3272902656,3272902911,IR +3272902912,3272903167,RU +3272903168,3272903423,PL +3272903424,3272903679,AT +3272903680,3272903935,RU +3272903936,3272904191,GB +3272904192,3272904447,SI +3272904448,3272904703,BE +3272904704,3272904959,NL +3272904960,3272905215,RO +3272905216,3272905727,CH +3272905728,3272905983,UA +3272905984,3272906239,FI +3272906240,3272906495,PL +3272906496,3272906751,EE +3272906752,3272907007,HU +3272907008,3272907263,HR +3272907264,3272907519,UA +3272907520,3272907775,GB +3272907776,3272908031,RO +3272908032,3272908287,CH +3272908288,3272908543,AT +3272908544,3272908799,DE 3272908800,3272910847,SK 3272910848,3272911359,NL 3272911360,3272911871,SK @@ -84435,9 +85711,7 @@ 3272936960,3272937087,DE 3272937088,3272937471,GB 3272937472,3272937535,DE -3272937536,3272937599,GB -3272937600,3272937631,DE -3272937632,3272937791,GB +3272937536,3272937791,GB 3272937792,3272937903,DE 3272937904,3272937919,GB 3272937920,3272937983,DE @@ -84522,7 +85796,9 @@ 3272966976,3272967103,GB 3272967104,3272967167,DE 3272967168,3272967423,GB -3272967424,3272968703,DE +3272967424,3272968191,DE +3272968192,3272968447,GB +3272968448,3272968703,DE 3272968704,3272968735,GB 3272968736,3272968879,DE 3272968880,3272968927,GB @@ -84751,8 +86027,8 @@ 3273328512,3273328639,DE 3273328640,3273329199,GB 3273329200,3273329215,DE -3273329216,3273329311,GB -3273329312,3273329407,EU +3273329216,3273329327,GB +3273329328,3273329407,EU 3273329408,3273329423,GB 3273329424,3273329439,DE 3273329440,3273330175,GB @@ -84990,15 +86266,12 @@ 3273439232,3273439743,RO 3273440256,3273440767,RO 3273440768,3273441279,AT -3273441280,3273441463,FR -3273441464,3273441535,GB -3273441536,3273441607,FR -3273441608,3273441615,GB -3273441616,3273441631,FR -3273441632,3273441647,GB +3273441280,3273441599,GB +3273441600,3273441607,FR +3273441608,3273441647,GB 3273441648,3273441759,FR -3273441760,3273441791,GB -3273441792,3273442127,FR +3273441760,3273442111,GB +3273442112,3273442127,FR 3273442128,3273442143,GB 3273442144,3273442151,FR 3273442152,3273442303,GB @@ -85006,14 +86279,12 @@ 3273442332,3273442335,GB 3273442336,3273442367,FR 3273442368,3273442431,GB -3273442432,3273442815,FR -3273442816,3273443071,GB +3273442432,3273442559,FR +3273442560,3273443071,GB 3273443072,3273443080,FR 3273443081,3273443327,GB 3273443328,3273443839,FR -3273443840,3273444095,GB -3273444096,3273444351,FR -3273444352,3273449471,GB +3273443840,3273449471,GB 3273449472,3273457663,CH 3273457664,3273523199,HR 3273523200,3273588735,DE @@ -85763,7 +87034,8 @@ 3275141632,3275142143,GE 3275142144,3275142655,KG 3275142656,3275143167,SE -3275143168,3275145215,PL +3275143168,3275144703,PL +3275144704,3275145215,HR 3275145216,3275153407,RU 3275153408,3275161599,GB 3275161600,3275227135,ES @@ -85784,10 +87056,12 @@ 3275423752,3275423775,EU 3275423776,3275423807,GB 3275423808,3275423871,EU -3275423872,3275424271,GB -3275424272,3275424319,EU +3275423872,3275424295,GB +3275424296,3275424319,EU 3275424320,3275424447,GB -3275424448,3275425791,EU +3275424448,3275424511,EU +3275424512,3275424639,GB +3275424640,3275425791,EU 3275425792,3275427271,GB 3275427272,3275427279,EU 3275427280,3275427583,GB @@ -85806,16 +87080,16 @@ 3275432704,3275433983,EU 3275433984,3275437567,GB 3275437568,3275438079,EU -3275438080,3275438607,GB -3275438608,3275440127,EU +3275438080,3275438615,GB +3275438616,3275440127,EU 3275440128,3275440639,GB 3275440640,3275442175,EU 3275442176,3275442719,GB 3275442720,3275444223,EU 3275444224,3275444735,GB 3275444736,3275446271,EU -3275446272,3275447039,GB -3275447040,3275448319,EU +3275446272,3275447063,GB +3275447064,3275448319,EU 3275448320,3275449519,GB 3275449520,3275449527,FR 3275449528,3275450879,GB @@ -85824,9 +87098,7 @@ 3275451264,3275452415,EU 3275452416,3275454127,GB 3275454128,3275454143,EU -3275454144,3275454263,GB -3275454264,3275454271,EU -3275454272,3275454383,GB +3275454144,3275454383,GB 3275454384,3275454463,EU 3275454464,3275456447,GB 3275456448,3275456511,EU @@ -85837,8 +87109,8 @@ 3275460096,3275460607,EU 3275460608,3275460863,HK 3275460864,3275463523,GB -3275463524,3275463535,EU -3275463536,3275463551,GB +3275463524,3275463527,EU +3275463528,3275463551,GB 3275463552,3275463679,EU 3275463680,3275464031,GB 3275464032,3275464047,IE @@ -85853,7 +87125,9 @@ 3275469088,3275469695,GB 3275469696,3275469951,EU 3275469952,3275469983,GB -3275469984,3275489279,EU +3275469984,3275470847,EU +3275470848,3275471359,GB +3275471360,3275489279,EU 3275489280,3275497471,GB 3275497472,3275505663,DE 3275505664,3275506175,PL @@ -85869,6 +87143,7 @@ 3275509984,3275510015,PT 3275510016,3275510079,SE 3275510080,3275510143,ES +3275510144,3275510207,FI 3275510208,3275510271,SE 3275510336,3275510399,IE 3275510400,3275510463,NL @@ -85877,6 +87152,7 @@ 3275510560,3275510591,DE 3275510624,3275510655,EE 3275510656,3275510687,FR +3275510720,3275510751,GB 3275510784,3275510911,RU 3275510912,3275511167,GB 3275511168,3275511295,LV @@ -86122,7 +87398,9 @@ 3275633152,3275633663,FR 3275633664,3275634687,RU 3275634688,3275635199,RO -3275635200,3275636735,RU +3275635200,3275635711,RU +3275635712,3275636223,CZ +3275636224,3275636735,RU 3275636736,3275637247,PL 3275637248,3275637759,SE 3275637760,3275638271,BE @@ -86297,9 +87575,7 @@ 3275930296,3275931647,ME 3275931648,3275939839,UA 3275939840,3275948031,GB -3275948032,3275965267,SE -3275965268,3275965271,FI -3275965272,3276013567,SE +3275948032,3276013567,SE 3276013568,3276014087,FR 3276014088,3276014095,GB 3276014096,3276014151,FR @@ -86406,17 +87682,11 @@ 3276019864,3276019887,GB 3276019888,3276019919,FR 3276019920,3276019927,GB -3276019928,3276020367,FR -3276020368,3276020383,GB -3276020384,3276020399,FR -3276020400,3276020415,GB -3276020416,3276020431,FR -3276020432,3276020439,GB -3276020440,3276020503,FR +3276019928,3276020407,FR +3276020408,3276020415,GB +3276020416,3276020503,FR 3276020504,3276020511,GB -3276020512,3276020559,FR -3276020560,3276020567,GB -3276020568,3276020623,FR +3276020512,3276020623,FR 3276020624,3276020631,GB 3276020632,3276020679,FR 3276020680,3276020687,GB @@ -86438,9 +87708,7 @@ 3276022216,3276022223,GB 3276022224,3276022255,FR 3276022256,3276022271,GB -3276022272,3276022343,FR -3276022344,3276022351,GB -3276022352,3276022455,FR +3276022272,3276022455,FR 3276022456,3276022463,GB 3276022464,3276022479,FR 3276022480,3276022495,GB @@ -86616,15 +87884,19 @@ 3276032008,3276032015,GB 3276032016,3276032023,FR 3276032024,3276032031,GB -3276032032,3276032103,FR +3276032032,3276032055,FR +3276032056,3276032063,GB +3276032064,3276032103,FR 3276032104,3276032111,GB -3276032112,3276032271,FR +3276032112,3276032223,FR +3276032224,3276032255,GB +3276032256,3276032271,FR 3276032272,3276032303,GB 3276032304,3276032319,FR 3276032320,3276032343,GB 3276032344,3276032367,FR -3276032368,3276032383,GB -3276032384,3276032431,FR +3276032368,3276032415,GB +3276032416,3276032431,FR 3276032432,3276032479,GB 3276032480,3276032543,FR 3276032544,3276032559,GB @@ -86759,9 +88031,7 @@ 3276041984,3276041999,FR 3276042000,3276042007,GB 3276042008,3276042015,FR -3276042016,3276042047,GB -3276042048,3276042111,FR -3276042112,3276042143,GB +3276042016,3276042143,GB 3276042144,3276042175,FR 3276042176,3276042191,GB 3276042192,3276042207,FR @@ -89079,9 +90349,7 @@ 3276480096,3276480111,EU 3276480112,3276480159,FR 3276480160,3276480191,EU -3276480192,3276480271,FR -3276480272,3276480287,EU -3276480288,3276480295,FR +3276480192,3276480295,FR 3276480296,3276480303,EU 3276480304,3276480319,FR 3276480320,3276480351,EU @@ -89133,9 +90401,7 @@ 3276493216,3276493247,EU 3276493248,3276494383,GB 3276494384,3276494415,EU -3276494416,3276494591,GB -3276494592,3276494847,EU -3276494848,3276495503,GB +3276494416,3276495503,GB 3276495504,3276495519,EU 3276495520,3276495679,GB 3276495680,3276495775,EU @@ -89490,12 +90756,12 @@ 3276697088,3276697599,GB 3276697600,3276698111,UA 3276698112,3276699647,RU +3276699648,3276700159,NL 3276700672,3276701183,RO 3276701184,3276701695,RU 3276701696,3276709887,SE 3276709888,3276718079,DE 3276718080,3276726271,IT -3276726272,3276727295,PK 3276727296,3276728319,ES 3276728320,3276729343,UA 3276729344,3276730367,PL @@ -89921,15 +91187,14 @@ 3276872480,3276872511,GB 3276872512,3276872703,DE 3276872704,3276873727,GB -3276873728,3276874351,ES -3276874352,3276874367,GB -3276874368,3276874751,ES +3276873728,3276874751,ES 3276874752,3276875007,NL 3276875008,3276875263,CH 3276875264,3276875775,NL 3276875776,3276876031,GB 3276876032,3276876287,DK -3276876288,3276876799,GB +3276876288,3276876367,NL +3276876368,3276876799,GB 3276876800,3276876823,AT 3276876824,3276877303,GB 3276877304,3276877311,AT @@ -89959,7 +91224,9 @@ 3276884736,3276884991,PL 3276884992,3276886015,GB 3276886016,3276886271,RO -3276886272,3276887167,GB +3276886272,3276886527,GB +3276886528,3276886911,DE +3276886912,3276887167,GB 3276887168,3276888063,DE 3276888064,3276888575,GB 3276888576,3276888831,AT @@ -89974,8 +91241,8 @@ 3276891136,3276891391,GB 3276891392,3276892159,US 3276892160,3276893695,IT -3276893696,3276894463,GB -3276894464,3276895999,IT +3276893696,3276894207,GB +3276894208,3276895999,IT 3276896000,3276896255,CZ 3276896256,3276896831,BE 3276896832,3276896847,SE @@ -89991,22 +91258,24 @@ 3276900040,3276900047,GB 3276900048,3276900351,CH 3276900352,3276900607,GB -3276900608,3276900815,CH -3276900816,3276900863,GB +3276900608,3276900831,CH +3276900832,3276900863,GB 3276900864,3276901119,CH 3276901120,3276901375,GB 3276901376,3276901391,CH -3276901392,3276902143,GB -3276902144,3276902151,CH +3276901392,3276901887,GB +3276901888,3276902151,CH 3276902152,3276902159,GB 3276902160,3276902175,CH 3276902176,3276902207,GB 3276902208,3276902271,CH 3276902272,3276902399,GB 3276902400,3276902583,SE -3276902584,3276902655,GB -3276902656,3276903422,SE -3276903423,3276903423,GB +3276902584,3276902615,GB +3276902616,3276902639,SE +3276902640,3276902655,GB +3276902656,3276903311,SE +3276903312,3276903423,GB 3276903424,3276903935,SE 3276903936,3276905311,GB 3276905312,3276905319,ES @@ -90017,8 +91286,12 @@ 3276906000,3276906003,BE 3276906004,3276906239,GB 3276906240,3276906279,SE -3276906280,3276906495,GB -3276906496,3276907551,NL +3276906280,3276906287,GB +3276906288,3276906295,SE +3276906296,3276906495,GB +3276906496,3276906823,NL +3276906824,3276906831,CH +3276906832,3276907551,NL 3276907552,3276907775,GB 3276907776,3276908159,NL 3276908160,3276908287,GB @@ -90035,40 +91308,42 @@ 3276913184,3276913215,GB 3276913216,3276913919,IT 3276913920,3276913983,US -3276913984,3276914687,IT -3276914688,3276916175,ES +3276913984,3276914143,IT +3276914144,3276914159,GB +3276914160,3276914687,IT +3276914688,3276915567,ES +3276915568,3276915583,GB +3276915584,3276916175,ES 3276916176,3276916183,GB 3276916184,3276917231,ES 3276917232,3276917247,GB 3276917248,3276917279,ES 3276917280,3276917287,GB -3276917288,3276917311,ES -3276917312,3276917343,GB +3276917288,3276917327,ES +3276917328,3276917343,GB 3276917344,3276917887,ES 3276917888,3276918015,GB 3276918016,3276918783,ES 3276918784,3276920551,DE 3276920552,3276920559,GB 3276920560,3276921183,DE -3276921184,3276921191,GB -3276921192,3276921239,DE +3276921184,3276921187,GB +3276921188,3276921239,DE 3276921240,3276921247,GB 3276921248,3276921279,DE 3276921280,3276921295,GB -3276921296,3276921335,DE -3276921336,3276921399,GB +3276921296,3276921343,DE +3276921344,3276921399,GB 3276921400,3276921403,DK 3276921404,3276921599,GB 3276921600,3276921607,DE -3276921608,3276921727,GB -3276921728,3276922623,DE +3276921608,3276921615,GB +3276921616,3276922623,DE 3276922624,3276923431,FR 3276923432,3276923439,GB 3276923440,3276924071,FR 3276924072,3276924079,GB -3276924080,3276924351,FR -3276924352,3276924415,GB -3276924416,3276926735,FR +3276924080,3276926735,FR 3276926736,3276931071,GB 3276931072,3276939263,KZ 3276939264,3276955647,DE @@ -90238,6 +91513,7 @@ 3277370880,3277371391,RO 3277371392,3277371903,RU 3277371904,3277372415,PL +3277372416,3277372927,IR 3277372928,3277373951,RU 3277373952,3277374463,FR 3277374464,3277375999,RU @@ -90361,6 +91637,7 @@ 3277710848,3277711359,PL 3277711360,3277711871,NO 3277711872,3277712383,IL +3277712384,3277712895,PL 3277712896,3277713407,NL 3277713408,3277713919,RU 3277713920,3277714943,DE @@ -90466,8 +91743,9 @@ 3277881344,3277884175,IT 3277884176,3277884191,IR 3277884192,3277885439,IT -3277885440,3277885951,LB -3277885952,3277886207,IT +3277885440,3277885727,LB +3277885728,3277885951,IT +3277885952,3277886207,LB 3277886208,3277886975,IR 3277886976,3277888255,IT 3277888256,3277888319,LB @@ -92295,8 +93573,7 @@ 3278943889,3278943889,BE 3278943890,3278943890,NL 3278943891,3278943891,ES -3278943892,3278943892,BE -3278943893,3278943893,DE +3278943892,3278943893,DE 3278943894,3278943894,IT 3278943895,3278943895,DE 3278943896,3278943896,PL @@ -93057,13 +94334,7 @@ 3279077376,3279078399,ES 3279078400,3279078655,IT 3279078656,3279078911,FR -3279078912,3279081215,ES -3279081216,3279081231,DE -3279081232,3279083583,ES -3279083584,3279083599,NL -3279083600,3279083807,ES -3279083808,3279083839,NL -3279083840,3279084543,ES +3279078912,3279084543,ES 3279084544,3279085567,IT 3279085568,3279090687,NL 3279090688,3279090943,DE @@ -93444,23 +94715,19 @@ 3280347136,3280355327,NO 3280355328,3280371711,GR 3280371712,3280379903,CH -3280379904,3280388127,FR -3280388128,3280388159,GB +3280379904,3280388095,FR +3280388096,3280388159,GB 3280388160,3280388191,FR -3280388192,3280388223,GB -3280388224,3280388759,FR -3280388760,3280388767,GB -3280388768,3280388799,FR -3280388800,3280388831,GB -3280388832,3280390655,FR -3280390656,3280390719,GB +3280388192,3280388735,GB +3280388736,3280388759,FR +3280388760,3280390719,GB 3280390720,3280390751,FR 3280390752,3280390783,GB 3280390784,3280390815,FR 3280390816,3280390879,GB 3280390880,3280390911,FR -3280390912,3280391167,GB -3280391168,3280391551,FR +3280390912,3280391423,GB +3280391424,3280391551,FR 3280391552,3280391583,GB 3280391584,3280391743,FR 3280391744,3280391775,GB @@ -93488,8 +94755,8 @@ 3280393152,3280393343,GB 3280393344,3280393375,FR 3280393376,3280393407,GB -3280393408,3280393535,FR -3280393536,3280393599,GB +3280393408,3280393503,FR +3280393504,3280393599,GB 3280393600,3280393631,FR 3280393632,3280393695,GB 3280393696,3280393727,FR @@ -93500,7 +94767,9 @@ 3280394496,3280394527,GB 3280394528,3280394559,FR 3280394560,3280394623,GB -3280394624,3280395519,FR +3280394624,3280394751,FR +3280394752,3280395263,GB +3280395264,3280395519,FR 3280395520,3280395647,GB 3280395648,3280395839,FR 3280395840,3280396031,GB @@ -93732,8 +95001,8 @@ 3280929552,3280929583,DE 3280929584,3280929599,GB 3280929600,3280929615,DE -3280929616,3280929631,GB -3280929632,3280929641,DE +3280929616,3280929639,GB +3280929640,3280929641,DE 3280929642,3280929642,GB 3280929643,3280929645,DE 3280929646,3280929647,GB @@ -94203,8 +95472,8 @@ 3280948640,3280948719,GB 3280948720,3280948735,DE 3280948736,3280949503,GB -3280949504,3280950015,DE -3280950016,3280950655,GB +3280949504,3280949759,DE +3280949760,3280950655,GB 3280950656,3280950687,DE 3280950688,3280951039,GB 3280951040,3280951807,DE @@ -94642,8 +95911,8 @@ 3280981001,3280981001,DE 3280981002,3280981039,GB 3280981040,3280981055,DE -3280981056,3280981087,GB -3280981088,3280981111,DE +3280981056,3280981095,GB +3280981096,3280981111,DE 3280981112,3280981135,GB 3280981136,3280981151,DE 3280981152,3280981179,GB @@ -95046,8 +96315,8 @@ 3280993200,3280993215,DE 3280993216,3280993247,GB 3280993248,3280993263,DE -3280993264,3280993791,GB -3280993792,3280994303,DE +3280993264,3280993535,GB +3280993536,3280994303,DE 3280994304,3280994559,GB 3280994560,3280994815,RU 3280994816,3280995071,NL @@ -95175,7 +96444,6 @@ 3281351168,3281351423,UA 3281351424,3281351679,AT 3281351680,3281351935,TR -3281351936,3281352191,DE 3281352192,3281352447,PL 3281352448,3281352703,RO 3281352704,3281352959,DE @@ -95289,9 +96557,7 @@ 3282119424,3282119679,KZ 3282119680,3282149455,RU 3282149456,3282149471,KG -3282149472,3282149599,RU -3282149600,3282149631,GB -3282149632,3282173951,RU +3282149472,3282173951,RU 3282173952,3282174463,UA 3282174464,3282174975,GB 3282174976,3282177023,RU @@ -95881,8 +97147,7 @@ 3283588480,3283588543,AT 3283588544,3283588607,GB 3283588608,3283589119,BE -3283589120,3283589151,EU -3283589152,3283589791,DK +3283589120,3283589791,DK 3283589792,3283589823,DE 3283589824,3283589839,EU 3283589840,3283589887,DE @@ -96004,7 +97269,7 @@ 3283635200,3283635711,GB 3283635712,3283636223,RU 3283636224,3283636735,UA -3283636736,3283637247,PL +3283636736,3283637759,PL 3283637760,3283638271,UA 3283638272,3283638783,PL 3283638784,3283639295,RU @@ -96122,6 +97387,7 @@ 3283960832,3283961855,KZ 3283961856,3283962879,RU 3283962880,3283963903,PL +3283963904,3283964927,BG 3283964928,3283966975,PL 3283966976,3283967999,DE 3283968000,3283969023,UA @@ -96221,11 +97487,11 @@ 3284025440,3284025471,DE 3284025472,3284025535,GB 3284025536,3284025567,DE -3284025568,3284026111,GB -3284026112,3284026479,DE +3284025568,3284026399,GB +3284026400,3284026479,DE 3284026480,3284026495,GB -3284026496,3284026623,DE -3284026624,3284026815,GB +3284026496,3284026559,DE +3284026560,3284026815,GB 3284026816,3284026879,DE 3284026880,3284027231,GB 3284027232,3284027359,DE @@ -96241,15 +97507,15 @@ 3284028912,3284028927,DE 3284028928,3284029215,GB 3284029216,3284029311,DE -3284029312,3284029695,GB -3284029696,3284029791,DE -3284029792,3284029951,GB -3284029952,3284030463,DE +3284029312,3284029759,GB +3284029760,3284029791,DE +3284029792,3284030207,GB +3284030208,3284030463,DE 3284030464,3284030655,GB 3284030656,3284030687,DE -3284030688,3284030975,GB -3284030976,3284031167,DE -3284031168,3284031551,GB +3284030688,3284031039,GB +3284031040,3284031103,DE +3284031104,3284031551,GB 3284031552,3284031615,DE 3284031616,3284031743,GB 3284031744,3284032031,DE @@ -96330,7 +97596,7 @@ 3284092416,3284092927,GB 3284092928,3284093439,UA 3284093440,3284093951,IR -3284093952,3284094463,RU +3284093952,3284094975,RU 3284094976,3284095487,UA 3284095488,3284095999,RU 3284096000,3284096511,IT @@ -96496,9 +97762,7 @@ 3284811776,3284819967,KE 3284819968,3284820479,GB 3284820480,3284820495,DE -3284820496,3284822527,GB -3284822528,3284822783,DE -3284822784,3284823519,GB +3284820496,3284823519,GB 3284823520,3284823527,DE 3284823528,3284825343,GB 3284825344,3284825359,DE @@ -96700,8 +97964,8 @@ 3285458176,3285458943,GB 3285458944,3285458975,DK 3285458976,3285459007,EU -3285459008,3285459071,DK -3285459072,3285459119,EU +3285459008,3285459103,DK +3285459104,3285459119,EU 3285459120,3285459327,DK 3285459328,3285459391,EU 3285459392,3285459535,DK @@ -96766,8 +98030,7 @@ 3285463456,3285463519,EU 3285463520,3285463615,BE 3285463616,3285463647,FR -3285463648,3285463663,EU -3285463664,3285463743,BE +3285463648,3285463743,BE 3285463744,3285463775,EU 3285463776,3285463839,BE 3285463840,3285463855,EU @@ -96792,8 +98055,8 @@ 3285465216,3285465231,DK 3285465232,3285465247,EU 3285465248,3285465343,DK -3285465344,3285465663,EU -3285465664,3285465727,DE +3285465344,3285465631,EU +3285465632,3285465727,DE 3285465728,3285465855,EU 3285465856,3285465903,DE 3285465904,3285465911,EU @@ -96818,7 +98081,9 @@ 3285467136,3285467391,DE 3285467392,3285467663,EU 3285467664,3285467679,DE -3285467680,3285467831,EU +3285467680,3285467775,EU +3285467776,3285467807,DE +3285467808,3285467831,EU 3285467832,3285467839,DE 3285467840,3285467935,EU 3285467936,3285467951,DE @@ -96973,8 +98238,7 @@ 3285490320,3285490335,EU 3285490336,3285490463,RU 3285490464,3285490495,EU -3285490496,3285490511,RU -3285490512,3285490519,EU +3285490496,3285490519,RU 3285490520,3285490527,LT 3285490528,3285490535,LV 3285490536,3285490543,RU @@ -97928,7 +99192,6 @@ 3285766656,3285767679,UA 3285767680,3285768191,FR 3285768192,3285768703,RU -3285768704,3285769215,CH 3285769216,3285769727,DE 3285769728,3285770239,RO 3285770240,3285770495,NL @@ -97976,7 +99239,7 @@ 3285910336,3285910399,ES 3285910400,3285910407,IT 3285910408,3285910431,GB -3285910432,3285910463,EU +3285910432,3285910463,NG 3285910464,3285910527,ES 3285910528,3285911551,GB 3285911552,3285912575,EU @@ -98009,7 +99272,7 @@ 3285921920,3285921983,GB 3285921984,3285922111,EU 3285922112,3285922175,FR -3285922176,3285922183,GB +3285922176,3285922183,EU 3285922184,3285922191,RU 3285922192,3285922207,DE 3285922208,3285922239,ES @@ -98040,7 +99303,8 @@ 3285928224,3285928255,DE 3285928256,3285928271,GB 3285928272,3285928287,DE -3285928288,3285928447,EU +3285928288,3285928303,GB +3285928304,3285928447,EU 3285928448,3285928959,ES 3285928960,3285929983,EU 3285929984,3285930495,GB @@ -98078,8 +99342,8 @@ 3285938944,3285938951,NG 3285938952,3285938959,NL 3285938960,3285938975,US -3285938976,3285939039,ES -3285939040,3285939199,EU +3285938976,3285939071,ES +3285939072,3285939199,EU 3285939200,3285939711,ES 3285939712,3285940223,EU 3285940224,3285940735,ES @@ -98089,7 +99353,8 @@ 3285942784,3285943039,ES 3285943040,3285943295,SE 3285943296,3285943551,ES -3285943552,3285943567,EU +3285943552,3285943559,GB +3285943560,3285943567,EU 3285943568,3285943575,ES 3285943576,3285943583,DE 3285943584,3285943615,GB @@ -98637,11 +99902,11 @@ 3287448064,3287448575,GB 3287448576,3287449087,PL 3287449088,3287449599,BG +3287449600,3287450111,PL 3287450112,3287450623,DK 3287450624,3287451135,SE 3287451136,3287451647,PL 3287451648,3287452159,ES -3287452160,3287452671,FR 3287452672,3287453183,CH 3287453184,3287454207,RU 3287454208,3287454719,SE @@ -98867,9 +100132,7 @@ 3287713612,3287713615,FR 3287713616,3287713623,GB 3287713624,3287713667,FR -3287713668,3287713711,GB -3287713712,3287713727,FR -3287713728,3287713775,GB +3287713668,3287713775,GB 3287713776,3287713791,FR 3287713792,3287714047,GB 3287714048,3287715071,FR @@ -98997,8 +100260,7 @@ 3287951616,3287951871,CH 3287951872,3287952127,RU 3287952128,3287952383,UA -3287952384,3287953151,CH -3287953152,3287953407,IL +3287952384,3287953407,CH 3287953408,3287953663,DE 3287953664,3287953919,GB 3287953920,3287954175,DE @@ -99105,8 +100367,8 @@ 3288436224,3288436479,US 3288436480,3288436735,EG 3288436736,3288440831,ZA -3288440832,3288441103,VC -3288441104,3288442879,BB +3288440832,3288441343,VC +3288441344,3288442879,BB 3288442880,3288443135,KN 3288443136,3288443647,VC 3288443648,3288444927,BB @@ -99312,6 +100574,8 @@ 3291203328,3291203583,ZW 3291203584,3291203839,ZA 3291203840,3291204095,EG +3291204096,3291204351,KE +3291204352,3291204607,ZA 3291217920,3291230207,ZA 3291230208,3291234303,GH 3291234304,3291242495,ZA @@ -99385,6 +100649,7 @@ 3291437568,3291437823,NA 3291437824,3291439103,ZA 3291447296,3291463679,CI +3291480064,3291480319,MU 3291742208,3292004351,ZA 3300917248,3300921343,MU 3300925440,3300929535,MG @@ -99487,7 +100752,7 @@ 3302760448,3302768639,ZA 3302768640,3302776831,NG 3302776832,3302785023,ZW -3302809600,3302817791,NG +3302801408,3302817791,NG 3302817792,3302883327,EG 3302883328,3302948863,MA 3302948864,3302949119,MU @@ -99519,9 +100784,12 @@ 3316645888,3317170175,KE 3317694464,3318218751,EG 3318218752,3318743039,DZ +3319660544,3319791615,EG 3319791616,3320053759,MU 3320578048,3320643583,ZA 3320643584,3320709119,KE +3321757696,3321790463,KE +3321806848,3321823231,SD 3321823232,3321839615,NG 3321839616,3321855999,GH 3321886720,3321887743,MU @@ -99611,7 +100879,11 @@ 3323461632,3323659263,US 3323659264,3323660543,NZ 3323662336,3323674623,US -3323723776,3324051455,US +3323723776,3324011007,US +3324011008,3324011263,KN +3324011264,3324019711,US +3324019712,3324019967,KN +3324019968,3324051455,US 3324051456,3324182527,CA 3324182528,3324256255,US 3324256256,3324259327,SA @@ -100439,7 +101711,8 @@ 3342567424,3342579711,US 3342579712,3342581759,CA 3342581760,3342595071,US -3342595072,3342596095,CA +3342595072,3342595839,CA +3342595840,3342596095,FR 3342596096,3342598143,US 3342598144,3342603263,CA 3342603264,3342604799,US @@ -100449,7 +101722,11 @@ 3342663680,3343007743,US 3343024128,3343055871,US 3343055872,3343056895,CA -3343056896,3343319295,US +3343056896,3343167487,US +3343167488,3343169535,CA +3343169536,3343171583,US +3343171584,3343172607,BM +3343172608,3343319295,US 3343319296,3343364095,CA 3343364096,3343365119,US 3343365632,3343372543,CA @@ -100461,7 +101738,16 @@ 3343922976,3343923007,PA 3343923008,3343923135,US 3343923136,3343923199,HK -3343923200,3344171007,US +3343923200,3344140287,US +3344140288,3344141311,CA +3344141312,3344144383,US +3344144384,3344146431,CA +3344146432,3344154623,US +3344154624,3344156671,GD +3344156672,3344158719,CA +3344158720,3344166911,US +3344166912,3344168959,CA +3344168960,3344171007,US 3344171008,3344255999,CA 3344256000,3344257023,US 3344261120,3344268543,CA @@ -100584,10 +101870,8 @@ 3350862080,3350864639,CL 3350864640,3350953983,US 3350986752,3350994943,US -3350994944,3350995199,CA -3350995200,3350997503,US -3350997504,3350997759,CA -3350997760,3350999039,US +3350994944,3350998015,CA +3350998016,3350999039,US 3351052288,3351068671,US 3351117824,3351232511,US 3351232512,3351232767,IL @@ -102337,7 +103621,7 @@ 3389412352,3389412863,NZ 3389412864,3389413119,AU 3389413120,3389413375,NZ -3389413376,3389413887,AP +3389413376,3389413887,AU 3389413888,3389414143,TH 3389414144,3389414655,AU 3389414656,3389414911,NZ @@ -102390,12 +103674,14 @@ 3389528576,3389529087,JP 3389529088,3389529599,ID 3389529600,3389529855,PH -3389529856,3389530111,AP +3389529856,3389530111,HK 3389530112,3389532159,AU 3389532160,3389533183,SG 3389533184,3389534207,NZ 3389534208,3389538303,JP -3389538304,3389540351,TH +3389538304,3389538559,AU +3389538560,3389540351,TH +3389541376,3389541631,AU 3389541632,3389541887,JP 3389541888,3389542399,TH 3389542400,3389543423,JP @@ -102456,11 +103742,13 @@ 3389789696,3389790719,AU 3389790720,3389790975,BN 3389790976,3389791231,JP -3389791232,3389791999,AP +3389791232,3389791743,AU +3389791744,3389791999,JP 3389792000,3389801983,AU 3389801984,3389802239,NZ 3389802240,3389802751,AU 3389802752,3389803263,TH +3389803264,3389803519,ID 3389803520,3389806079,NZ 3389806080,3389807359,AU 3389807360,3389807615,NZ @@ -102471,6 +103759,7 @@ 3389809152,3389809919,AU 3389809920,3389810175,IN 3389810176,3389810431,AU +3389810432,3389810687,IN 3389810688,3389811199,NZ 3389811200,3389811711,AU 3389811712,3389811967,NZ @@ -102500,7 +103789,9 @@ 3389936896,3389937663,PH 3389937664,3389937919,CN 3389937920,3389938175,AU -3389939456,3389939711,AU +3389938176,3389938687,KR +3389938688,3389939199,ID +3389939200,3389939711,AU 3389939712,3389940223,NZ 3389940224,3389940479,AU 3389940480,3389940991,NZ @@ -102626,7 +103917,9 @@ 3390832640,3390963711,TH 3390963712,3391094783,KR 3391094784,3391356927,JP -3391356928,3391469055,NZ +3391356928,3391444479,NZ +3391444480,3391444991,VN +3391444992,3391469055,NZ 3391469056,3391469311,AU 3391469312,3391487999,NZ 3391488000,3391492095,CN @@ -103038,7 +104331,7 @@ 3393021440,3393021695,IN 3393021696,3393021951,HK 3393021952,3393022463,ID -3393022464,3393022975,AP +3393022464,3393022975,SG 3393022976,3393023231,PH 3393023232,3393023487,AU 3393023488,3393023743,SG @@ -103073,7 +104366,6 @@ 3393125376,3393125631,IN 3393125632,3393125887,JP 3393125888,3393126143,AU -3393126144,3393126399,FJ 3393126400,3393134591,HK 3393134592,3393146879,AU 3393146880,3393150975,PK @@ -103637,8 +104929,7 @@ 3397213184,3397213439,IN 3397213440,3397213695,AU 3397213696,3397214207,ID -3397214208,3397214719,AP -3397214720,3397215231,AU +3397214208,3397215231,AU 3397215232,3397215743,ID 3397215744,3397216255,PH 3397216256,3397216767,AU @@ -104096,7 +105387,7 @@ 3398828032,3398829055,KH 3398829056,3398830079,IN 3398830080,3398831103,KH -3398831104,3398832127,AP +3398831104,3398832127,JP 3398832128,3398836223,CN 3398836224,3398840319,ID 3398840320,3398842367,JP @@ -105568,7 +106859,9 @@ 3413576704,3413576959,AU 3413576960,3413577215,ID 3413577216,3413577727,AU -3413577728,3413579775,AP +3413577728,3413579007,AP +3413579008,3413579263,AU +3413579264,3413579775,JP 3413579776,3413582847,CN 3413582848,3413583871,VN 3413583872,3413584127,JP @@ -105590,7 +106883,7 @@ 3413595392,3413595647,CN 3413595648,3413595903,AU 3413595904,3413596159,HK -3413596160,3413596671,AP +3413596160,3413596671,SG 3413596672,3413597183,NP 3413597184,3413597695,AU 3413597696,3413597951,TW @@ -106100,7 +107393,7 @@ 3416922112,3416922367,AU 3416922368,3416922623,IN 3416922624,3416923135,VN -3416923136,3416924159,AP +3416923136,3416924159,HK 3416924160,3416928255,JP 3416928256,3416928511,IN 3416928512,3416928767,HK @@ -106585,7 +107878,6 @@ 3418955776,3418959871,TW 3418959872,3418960383,BD 3418960384,3418960895,ID -3418960896,3418961919,SG 3418961920,3418962943,VN 3418962944,3418963967,IN 3418963968,3418988543,AU @@ -106979,7 +108271,9 @@ 3423286208,3423286527,CA 3423286528,3423286655,GB 3423286656,3423287295,CA -3423287296,3423303679,US +3423287296,3423291983,US +3423291984,3423291991,IL +3423291992,3423303679,US 3423303680,3423304703,CA 3423304704,3423311871,US 3423311872,3423313151,VI @@ -107298,7 +108592,7 @@ 3423585552,3423585631,CA 3423585632,3423585647,US 3423585648,3423585775,CA -3423585776,3423585791,IR +3423585776,3423585791,MY 3423585792,3423585879,CA 3423585880,3423585887,US 3423585888,3423585895,CA @@ -107347,7 +108641,9 @@ 3423651840,3423651967,CA 3423651968,3423651999,US 3423652000,3423653887,CA -3423653888,3423797247,US +3423653888,3423705599,US +3423705600,3423705855,CA +3423705856,3423797247,US 3423797248,3423827711,CA 3423827712,3423827967,US 3423827968,3423848447,CA @@ -107892,15 +109188,23 @@ 3430845440,3430845951,MX 3430845952,3431114495,US 3431114496,3431114751,CA -3431114752,3431467519,US +3431114752,3431468031,US 3431468032,3431469055,CA 3431469056,3431596031,US 3431596032,3431613439,CA 3431613440,3431613695,US -3431613696,3431657471,CA +3431613696,3431621631,CA +3431621632,3431622143,US +3431622400,3431624703,CA +3431624704,3431624959,US +3431624960,3431638783,CA +3431638784,3431639039,US +3431639040,3431641855,CA +3431641856,3431642623,US +3431642624,3431657471,CA 3431657472,3431658495,US -3431658496,3431661567,CA -3431661568,3431745023,US +3431658496,3431661311,CA +3431661312,3431745023,US 3431745024,3431745279,BE 3431745280,3431745791,US 3431745792,3431746047,GB @@ -107918,7 +109222,7 @@ 3431759616,3431759871,DE 3431759872,3431783431,US 3431783432,3431783435,NL -3431783436,3432003839,US +3431783436,3432004607,US 3432004608,3432005631,CA 3432005632,3432009215,US 3432009216,3432009471,PR @@ -107970,13 +109274,19 @@ 3432807424,3432808447,CA 3432808448,3433581312,US 3433581313,3433581567,CA -3433581568,3433955327,US -3433955328,3433981951,CA +3433581568,3433955583,US +3433955584,3433964799,CA +3433964800,3433965055,US +3433965056,3433967359,CA +3433967360,3433967615,US +3433967616,3433981951,CA 3433981952,3433983999,US -3433984000,3434014719,CA +3433984000,3434012671,CA +3434012672,3434012927,US +3434012928,3434014719,CA 3434014720,3434015231,US -3434015232,3434020863,CA -3434020864,3434096063,US +3434015232,3434020607,CA +3434020608,3434096063,US 3434096064,3434096079,AU 3434096080,3434097919,US 3434097920,3434097983,GB @@ -109183,9 +110493,7 @@ 3454703136,3454703143,IN 3454703144,3454703255,US 3454703256,3454703263,CA -3454703264,3454703807,US -3454703808,3454703823,AF -3454703824,3454705151,US +3454703264,3454705151,US 3454705152,3454705215,GB 3454705216,3454708927,US 3454708928,3454708991,IN @@ -109414,7 +110722,11 @@ 3458144112,3458144119,CA 3458144120,3458144415,US 3458144416,3458144423,DE -3458144424,3458195455,US +3458144424,3458145727,US +3458145728,3458145735,DE +3458145736,3458145743,US +3458145744,3458145759,DE +3458145760,3458195455,US 3458195456,3458196479,SG 3458196480,3458765631,US 3458765632,3458765695,CA @@ -109581,7 +110893,8 @@ 3459373312,3459375103,CL 3459375104,3459376127,VE 3459376128,3459448831,US -3459448832,3459450623,CA +3459448832,3459449087,PR +3459449088,3459450623,CA 3459450624,3459450879,US 3459450880,3459455487,CA 3459455488,3459455743,US @@ -109601,7 +110914,9 @@ 3459731456,3459735551,CA 3459735552,3459745535,US 3459745536,3459745791,IT -3459745792,3460104703,US +3459745792,3459850431,US +3459850432,3459850495,CA +3459850496,3460104703,US 3460104704,3460105215,MX 3460105216,3460108895,US 3460108896,3460108903,FI @@ -110828,8 +112143,7 @@ 3469901824,3470131199,US 3470131200,3470137343,AG 3470137344,3470139391,VG -3470139392,3470143487,US -3470147584,3470148095,US +3470139392,3470148095,US 3470148096,3470148351,CA 3470148352,3470148863,US 3470148864,3470149119,CA @@ -111327,52 +112641,55 @@ 3470361656,3470361671,CA 3470361672,3470361703,US 3470361704,3470361711,AF -3470361712,3470361935,US -3470361936,3470361951,CA -3470361952,3470361983,US -3470361984,3470361991,CA -3470361992,3470362111,US +3470361712,3470362111,US 3470362112,3470362119,CA 3470362120,3470362127,AU 3470362128,3470362135,US 3470362136,3470362143,NL 3470362144,3470362159,US 3470362160,3470362167,AF -3470362168,3470362263,US +3470362168,3470362175,US +3470362176,3470362191,CA +3470362192,3470362263,US 3470362264,3470362271,NZ 3470362272,3470362319,US 3470362320,3470362335,AF 3470362336,3470362455,US -3470362456,3470362479,CA -3470362480,3470362495,US +3470362456,3470362471,CA +3470362472,3470362495,US 3470362496,3470362503,CA 3470362504,3470362559,US 3470362560,3470362623,CA -3470362624,3470362783,US +3470362624,3470362719,US +3470362720,3470362727,CA +3470362728,3470362783,US 3470362784,3470362791,AF 3470362792,3470362847,US -3470362848,3470362895,CA +3470362848,3470362855,AR +3470362856,3470362879,US +3470362880,3470362895,CA 3470362896,3470363295,US 3470363296,3470363303,BR 3470363304,3470363391,US 3470363392,3470363399,MX -3470363400,3470363407,GB -3470363408,3470363423,US -3470363424,3470363455,CA -3470363456,3470363535,US +3470363400,3470363423,US +3470363424,3470363439,CA +3470363440,3470363535,US 3470363536,3470363543,CA -3470363544,3470363551,AF -3470363552,3470363559,US +3470363544,3470363555,AF +3470363556,3470363559,US 3470363560,3470363567,CA 3470363568,3470363871,US 3470363872,3470363879,CA -3470363880,3470363967,US +3470363880,3470363903,US +3470363904,3470363919,CA +3470363920,3470363967,US 3470363968,3470363983,CA 3470363984,3470364415,US -3470364416,3470364479,CA -3470364480,3470364495,HN -3470364496,3470364503,CA -3470364504,3470458879,US +3470364416,3470364503,CA +3470364504,3470364655,US +3470364656,3470364663,CA +3470364664,3470458879,US 3470458880,3470475263,KR 3470475264,3470558207,US 3470558208,3470559231,HK @@ -111726,7 +113043,23 @@ 3474548224,3474548479,JP 3474548480,3474623599,US 3474623600,3474623615,CA -3474623616,3475112191,US +3474623616,3474841599,US +3474841600,3474843071,KN +3474843072,3474843135,US +3474843136,3474844415,KN +3474844416,3474844543,US +3474844544,3474844927,KN +3474844928,3474845055,US +3474845056,3474845439,KN +3474845440,3474845567,US +3474845568,3474846463,KN +3474846464,3474846591,US +3474846592,3474846975,KN +3474846976,3474847231,US +3474847232,3474849791,KN +3474849792,3475029927,US +3475029928,3475029935,CA +3475029936,3475112191,US 3475112192,3475113215,CA 3475113216,3475115007,US 3475115008,3475120127,CA @@ -111859,7 +113192,9 @@ 3477311872,3477312255,A1 3477312256,3477312511,US 3477312512,3477313023,A1 -3477313024,3478114303,US +3477313024,3477313279,US +3477313280,3477313535,A1 +3477313536,3478114303,US 3478114304,3478118399,PE 3478118400,3478192127,US 3478192128,3478257663,CA @@ -112760,7 +114095,11 @@ 3487203072,3487203327,DK 3487203328,3487236095,US 3487236096,3487301631,CA -3487301632,3487766527,US +3487301632,3487559711,US +3487559712,3487559743,AU +3487559744,3487559855,US +3487559856,3487559871,AU +3487559872,3487766527,US 3487766528,3487768575,CA 3487768576,3487842303,US 3487842304,3487858687,CA @@ -112907,7 +114246,9 @@ 3491637248,3491637759,CO 3491637760,3491651583,US 3491651584,3491659775,VI -3491659776,3491736063,US +3491659776,3491712927,US +3491712928,3491712959,TW +3491712960,3491736063,US 3491736064,3491736319,PR 3491736320,3491743743,US 3491743744,3491745791,CO @@ -112987,7 +114328,8 @@ 3493082624,3493089023,US 3493089024,3493089279,A2 3493089280,3493091327,US -3493091328,3493092351,BO +3493091328,3493091839,BO +3493091840,3493092351,US 3493092352,3493092607,NA 3493092608,3493138207,US 3493138208,3493138239,DE @@ -113555,11 +114897,25 @@ 3495159808,3495159815,ES 3495159816,3495159839,US 3495159840,3495159847,BR -3495159848,3495161599,US +3495159848,3495159895,US +3495159896,3495159903,IN +3495159904,3495160111,US +3495160112,3495160119,NZ +3495160120,3495160303,US +3495160304,3495160319,TR +3495160320,3495160367,US +3495160368,3495160383,ZA +3495160384,3495160639,US +3495160640,3495160647,CA +3495160648,3495160863,US +3495160864,3495160895,TR +3495160896,3495161599,US 3495161600,3495161855,BR 3495161856,3495164239,US 3495164240,3495164247,CA -3495164248,3495190527,US +3495164248,3495187199,US +3495187200,3495187455,IM +3495187456,3495190527,US 3495192576,3495193599,CA 3495193600,3495215103,US 3495215104,3495217151,VI @@ -113604,7 +114960,9 @@ 3495349248,3495350271,CA 3495350272,3495358463,US 3495358464,3495359487,CA -3495359488,3495362623,US +3495359488,3495361023,US +3495361024,3495361055,CA +3495361056,3495362623,US 3495362624,3495362631,BD 3495362632,3495362639,AR 3495362640,3495362711,US @@ -113793,7 +115151,9 @@ 3495781376,3495812879,US 3495812880,3495812895,GB 3495812896,3495815167,US -3495815168,3495815615,CA +3495815168,3495815407,CA +3495815408,3495815411,US +3495815412,3495815615,CA 3495815616,3495815619,US 3495815620,3495817215,CA 3495817216,3495828479,US @@ -113807,16 +115167,12 @@ 3495859652,3495862271,US 3495862272,3495864319,CA 3495864320,3495864831,DM -3495864832,3495865343,GP +3495864832,3495865343,MF 3495865344,3495865439,CA 3495865440,3495865471,BD -3495865472,3495865599,CA -3495865600,3495865631,BD -3495865632,3495866047,CA +3495865472,3495866047,CA 3495866048,3495866079,US -3495866080,3495866207,CA -3495866208,3495866239,BD -3495866240,3495866359,CA +3495866080,3495866359,CA 3495866360,3495866363,US 3495866364,3495866367,CA 3495866368,3495868415,VC @@ -113861,7 +115217,9 @@ 3496873984,3496878079,A2 3496878080,3496882175,CA 3496882176,3496886399,US -3496886400,3496886463,TR +3496886400,3496886407,TR +3496886408,3496886423,US +3496886424,3496886463,TR 3496886464,3496886495,US 3496886496,3496886503,CA 3496886504,3496886511,US @@ -115236,7 +116594,9 @@ 3509821912,3509821919,BM 3509821920,3509822335,US 3509822336,3509822351,DE -3509822352,3509829503,US +3509822352,3509825887,US +3509825888,3509826303,CN +3509826304,3509829503,US 3509829504,3509829535,GB 3509829536,3509830287,US 3509830288,3509830295,BE @@ -116495,7 +117855,11 @@ 3515456704,3515456767,JP 3515456768,3515596799,US 3515596800,3515613183,CA -3515613184,3515793351,US +3515613184,3515645951,US +3515678720,3515686911,US +3515686912,3515695103,CA +3515695104,3515711487,US +3515744256,3515793351,US 3515793352,3515793359,MO 3515793360,3515867151,US 3515867152,3515867167,AU @@ -116520,6 +117884,7 @@ 3515956400,3515965439,US 3515965440,3515973631,CA 3515973632,3515990015,US +3515990016,3516006399,CA 3516006400,3516039167,US 3516039168,3516071935,CA 3516071936,3516139007,US @@ -116543,7 +117908,9 @@ 3516357888,3516358399,CA 3516358400,3516366847,US 3516366848,3516370943,CA -3516370944,3516514303,US +3516370944,3516394239,US +3516394240,3516394247,IS +3516394248,3516514303,US 3516514304,3516530687,CA 3516530688,3516899327,US 3516899328,3516899839,A2 @@ -117003,9 +118370,7 @@ 3518765312,3518765567,CA 3518765568,3518766879,US 3518766880,3518766911,TH -3518766912,3518892223,US -3518892224,3518892231,CL -3518892232,3518892415,US +3518766912,3518892415,US 3518892416,3518892423,GB 3518892424,3518894439,US 3518894440,3518894447,TR @@ -117030,7 +118395,9 @@ 3518903928,3518903935,RU 3518903936,3518904015,US 3518904016,3518904031,EG -3518904032,3518911743,US +3518904032,3518905599,US +3518905600,3518905855,GB +3518905856,3518911743,US 3518911744,3518911999,GB 3518912000,3518912511,US 3518912512,3518912767,IN @@ -117063,8 +118430,8 @@ 3519406264,3519406295,US 3519406296,3519406303,TH 3519406304,3519406335,US -3519406336,3519406359,DE -3519406360,3519406375,US +3519406336,3519406351,DE +3519406352,3519406375,US 3519406376,3519406383,IT 3519406384,3519406391,IN 3519406392,3519406407,GB @@ -117658,7 +119025,11 @@ 3521921024,3521933321,US 3521933322,3521933329,PK 3521933330,3521933345,MA -3521933346,3521933413,US +3521933346,3521933357,US +3521933358,3521933365,AE +3521933366,3521933389,US +3521933390,3521933397,AE +3521933398,3521933413,US 3521933414,3521933421,IN 3521933422,3521933429,MA 3521933430,3521933437,CA @@ -117675,7 +119046,9 @@ 3521933622,3521933629,IN 3521933630,3521933645,US 3521933646,3521933653,GB -3521933654,3521933725,US +3521933654,3521933661,US +3521933662,3521933669,MA +3521933670,3521933725,US 3521933726,3521933733,GB 3521933734,3521933741,US 3521933742,3521933785,GB @@ -117701,7 +119074,37 @@ 3521934769,3521934776,MA 3521934777,3521935237,US 3521935238,3521935245,EG -3521935246,3521965055,US +3521935246,3521935310,US +3521935311,3521935318,EG +3521935319,3521935717,US +3521935718,3521935725,IN +3521935726,3521935993,US +3521935994,3521936025,EG +3521936026,3521936162,US +3521936163,3521936194,EG +3521936195,3521936243,US +3521936244,3521936251,IN +3521936252,3521936291,US +3521936292,3521936299,IN +3521936300,3521936393,US +3521936394,3521936425,EG +3521936426,3521936669,US +3521936670,3521936677,PK +3521936678,3521936827,US +3521936828,3521936860,EG +3521936861,3521936969,US +3521936970,3521936977,PK +3521936978,3521936993,US +3521936994,3521937001,LK +3521937002,3521937005,US +3521937006,3521937013,EG +3521937014,3521937017,US +3521937018,3521937025,SG +3521937026,3521937161,US +3521937162,3521937252,EG +3521937253,3521937260,US +3521937261,3521937406,EG +3521937407,3521965055,US 3521965056,3521966079,DE 3521966080,3522029439,US 3522029440,3522029503,FI @@ -117770,11 +119173,12 @@ 3523317760,3523330047,JP 3523330048,3523338239,AU 3523338240,3523340287,MY -3523340288,3523341311,AP +3523340288,3523341311,AU 3523341312,3523342335,JP 3523342336,3523346431,BD 3523346432,3523354623,CN 3523354624,3523362815,KR +3523362816,3523379199,VN 3523379200,3523395583,PK 3523395584,3523411967,JP 3523411968,3523477503,HK @@ -118248,9 +119652,7 @@ 3557030720,3557030751,GB 3557030752,3557030767,BE 3557030768,3557030783,GB -3557030784,3557030975,BE -3557030976,3557031039,GB -3557031040,3557031807,BE +3557030784,3557031807,BE 3557031808,3557031935,GB 3557031936,3557033575,IT 3557033576,3557033583,GB @@ -118414,8 +119816,8 @@ 3557363656,3557363663,JE 3557363664,3557363671,GB 3557363672,3557363679,JE -3557363680,3557363695,GB -3557363696,3557363783,JE +3557363680,3557363703,GB +3557363704,3557363783,JE 3557363784,3557363791,GB 3557363792,3557364223,JE 3557364224,3557364479,GB @@ -118453,8 +119855,8 @@ 3557365560,3557365631,GB 3557365632,3557365695,JE 3557365696,3557365847,GB -3557365848,3557365863,JE -3557365864,3557365887,GB +3557365848,3557365871,JE +3557365872,3557365887,GB 3557365888,3557365895,JE 3557365896,3557365911,GB 3557365912,3557365919,JE @@ -118536,7 +119938,11 @@ 3557834752,3557842943,IR 3557842944,3557851135,FI 3557851136,3557859327,HU -3557859328,3557860831,SE +3557859328,3557859839,SE +3557859840,3557860095,NO +3557860096,3557860607,SE +3557860608,3557860623,FI +3557860624,3557860831,SE 3557860832,3557860847,FI 3557860848,3557860863,SE 3557860864,3557861119,NO @@ -118591,14 +119997,73 @@ 3558154624,3558154751,CI 3558154752,3558154879,CM 3558154880,3558155007,SD -3558155008,3558155135,A2 +3558155008,3558155023,MM +3558155024,3558155027,NG +3558155028,3558155031,AF +3558155032,3558155039,DE +3558155040,3558155047,MR +3558155048,3558155055,A2 +3558155056,3558155059,AF +3558155060,3558155063,DE +3558155064,3558155135,A2 3558155136,3558155263,SD 3558155264,3558155391,ET -3558155392,3558155519,A2 +3558155392,3558155399,A2 +3558155400,3558155407,KE +3558155408,3558155423,A2 +3558155424,3558155431,MM +3558155432,3558155487,A2 +3558155488,3558155503,SO +3558155504,3558155511,A2 +3558155512,3558155515,DE +3558155516,3558155519,A2 3558155520,3558156031,SD -3558156032,3558156032,A2 -3558156033,3558156287,KG -3558156288,3558162431,A2 +3558156032,3558156287,KG +3558156288,3558156375,GB +3558156376,3558156383,AF +3558156384,3558156391,A2 +3558156392,3558156399,DK +3558156400,3558156455,AF +3558156456,3558156471,KE +3558156472,3558156479,A2 +3558156480,3558156511,GB +3558156512,3558156527,NP +3558156528,3558156543,A2 +3558156544,3558156671,KN +3558156672,3558156927,SM +3558156928,3558157183,AF +3558157184,3558157311,SM +3558157312,3558157319,A2 +3558157320,3558157327,DE +3558157328,3558157335,SL +3558157336,3558157375,A2 +3558157376,3558157391,UG +3558157392,3558157407,AF +3558157408,3558157439,SD +3558157440,3558157567,SZ +3558157568,3558157583,A2 +3558157584,3558157599,MM +3558157600,3558157727,SD +3558157728,3558157759,SO +3558157760,3558157791,A2 +3558157792,3558158079,SL +3558158080,3558158207,GB +3558158208,3558158239,SC +3558158240,3558158327,A2 +3558158328,3558158331,SC +3558158332,3558158335,A2 +3558158336,3558158847,SE +3558158848,3558159359,DE +3558159360,3558159519,AF +3558159520,3558159871,A2 +3558159872,3558160383,DE +3558160384,3558161151,A2 +3558161152,3558161407,AF +3558161408,3558162143,A2 +3558162144,3558162175,SO +3558162176,3558162207,BI +3558162208,3558162303,A2 +3558162304,3558162431,BI 3558162432,3558170623,DE 3558170624,3558178815,GB 3558178816,3558187007,BG @@ -118717,7 +120182,8 @@ 3558292872,3558293119,NL 3558293120,3558293143,CH 3558293144,3558293151,GB -3558293152,3558293503,NL +3558293152,3558293247,NL +3558293248,3558293503,GB 3558293504,3558301695,RU 3558301696,3558310319,DE 3558310320,3558310327,CH @@ -118979,13 +120445,7 @@ 3558785024,3558801407,IS 3558801408,3558809599,TR 3558809600,3558817791,ES -3558817792,3558821655,AT -3558821656,3558821663,DE -3558821664,3558821795,AT -3558821796,3558821799,DE -3558821800,3558821823,AT -3558821824,3558821831,DE -3558821832,3558825983,AT +3558817792,3558825983,AT 3558825984,3558827807,CY 3558827808,3558827815,A2 3558827816,3558828287,CY @@ -119092,9 +120552,7 @@ 3559089656,3559089659,GB 3559089660,3559090071,BE 3559090072,3559090079,NL -3559090080,3559090127,BE -3559090128,3559090135,GB -3559090136,3559090439,BE +3559090080,3559090439,BE 3559090440,3559090443,GB 3559090444,3559090463,BE 3559090464,3559090467,GB @@ -119110,9 +120568,7 @@ 3559090776,3559090779,GB 3559090780,3559090803,BE 3559090804,3559090807,GB -3559090808,3559090831,BE -3559090832,3559090839,GB -3559090840,3559090863,BE +3559090808,3559090863,BE 3559090864,3559090871,GB 3559090872,3559090895,BE 3559090896,3559090899,GB @@ -119122,13 +120578,9 @@ 3559090924,3559090927,GB 3559090928,3559091011,BE 3559091012,3559091015,GB -3559091016,3559091063,BE -3559091064,3559091071,GB -3559091072,3559091087,BE +3559091016,3559091087,BE 3559091088,3559091091,GB -3559091092,3559091159,BE -3559091160,3559091167,GB -3559091168,3559091203,BE +3559091092,3559091203,BE 3559091204,3559091207,GB 3559091208,3559091211,BE 3559091212,3559091215,GB @@ -119148,7 +120600,9 @@ 3559091592,3559091615,GB 3559091616,3559091631,BE 3559091632,3559091639,LU -3559091640,3559091855,BE +3559091640,3559091815,BE +3559091816,3559091823,GB +3559091824,3559091855,BE 3559091856,3559091863,GB 3559091864,3559092159,BE 3559092160,3559092160,GB @@ -119321,6 +120775,7 @@ 3559186432,3559194623,RU 3559194624,3559202815,SE 3559202816,3559211007,DE +3559211008,3559219199,SK 3559219200,3559227391,SE 3559227392,3559235583,DK 3559235584,3559243775,DE @@ -119515,12 +120970,12 @@ 3559902208,3559902975,UA 3559902976,3559903231,EE 3559903232,3559903487,UA -3559903488,3559903615,EE -3559903616,3559903743,UA -3559903744,3559904023,EE +3559903488,3559904023,EE 3559904024,3559904255,UA 3559904256,3559904511,EE -3559904512,3559905019,UA +3559904512,3559904767,UA +3559904768,3559904799,EE +3559904800,3559905019,UA 3559905020,3559905031,EE 3559905032,3559905047,UA 3559905048,3559905051,EE @@ -119548,9 +121003,7 @@ 3559905904,3559905911,UA 3559905912,3559906257,EE 3559906258,3559906259,UA -3559906260,3559906799,EE -3559906800,3559906815,UA -3559906816,3559906975,EE +3559906260,3559906975,EE 3559906976,3559907071,UA 3559907072,3559907327,EE 3559907328,3559915519,FR @@ -121123,13 +122576,13 @@ 3560944648,3560944651,TR 3560944652,3560944655,HU 3560944656,3560944659,TR -3560944660,3560944663,MZ +3560944660,3560944663,DE 3560944664,3560944667,FR 3560944668,3560944671,TR 3560944672,3560944675,KZ 3560944676,3560944679,GR 3560944680,3560944687,TR -3560944688,3560944691,FR +3560944688,3560944691,DE 3560944692,3560944695,SA 3560944696,3560944699,TR 3560944700,3560944703,CU @@ -121672,7 +123125,8 @@ 3560951112,3560951115,FR 3560951116,3560951119,SE 3560951120,3560951123,CZ -3560951124,3560951195,SE +3560951124,3560951127,GB +3560951128,3560951195,SE 3560951196,3560951199,DK 3560951200,3560951203,SE 3560951204,3560951207,AE @@ -121696,7 +123150,9 @@ 3560951408,3560951423,SE 3560951424,3560951427,NL 3560951428,3560951431,DK -3560951432,3560951440,SE +3560951432,3560951435,SE +3560951436,3560951439,DK +3560951440,3560951440,SE 3560951441,3560951442,JP 3560951443,3560951444,SE 3560951445,3560951446,HU @@ -121726,17 +123182,21 @@ 3560951836,3560951915,SE 3560951916,3560951919,PL 3560951920,3560951935,SE -3560951936,3560951940,NL -3560951941,3560951943,SE +3560951936,3560951939,NL +3560951940,3560951943,SE 3560951944,3560951947,NO -3560951948,3560952223,SE +3560951948,3560951995,SE +3560951996,3560951999,US +3560952000,3560952223,SE 3560952224,3560952227,CZ 3560952228,3560952231,SE 3560952232,3560952235,US 3560952236,3560952239,PT 3560952240,3560952255,SE 3560952256,3560952259,PL -3560952260,3560953103,SE +3560952260,3560952431,SE +3560952432,3560952435,DK +3560952436,3560953103,SE 3560953104,3560953119,JP 3560953120,3560954239,SE 3560954240,3560954367,AX @@ -121938,7 +123398,8 @@ 3561618432,3561618687,DK 3561618688,3561618815,FR 3561618816,3561618943,PL -3561618944,3561640575,GB +3561618944,3561618951,ES +3561618952,3561640575,GB 3561640576,3561640831,FR 3561640832,3561652223,GB 3561652224,3561668607,CH @@ -121987,8 +123448,8 @@ 3561922816,3561922847,GB 3561922848,3561922863,NL 3561922864,3561922871,FR -3561922872,3561922911,GB -3561922912,3561922975,NL +3561922872,3561922927,GB +3561922928,3561922975,NL 3561922976,3561922991,GB 3561922992,3561923015,NL 3561923016,3561923063,GB @@ -121999,8 +123460,8 @@ 3561923404,3561923407,NL 3561923408,3561923423,GB 3561923424,3561923551,NL -3561923552,3561923583,GB -3561923584,3561923679,NL +3561923552,3561923647,GB +3561923648,3561923679,NL 3561923680,3561923711,GB 3561923712,3561923743,FR 3561923744,3561923775,NL @@ -122126,7 +123587,8 @@ 3562098432,3562098687,GB 3562098688,3562098879,FR 3562098880,3562098895,BE -3562098896,3562098911,FR +3562098896,3562098903,GB +3562098904,3562098911,FR 3562098912,3562099199,GB 3562099200,3562099359,FR 3562099360,3562099391,GB @@ -122145,8 +123607,10 @@ 3562100544,3562100575,FR 3562100576,3562100703,GB 3562100704,3562100735,FR -3562100736,3562100863,GB -3562100864,3562101215,FR +3562100736,3562100991,GB +3562100992,3562101055,FR +3562101056,3562101087,GB +3562101088,3562101215,FR 3562101216,3562101375,GB 3562101376,3562101439,FR 3562101440,3562101471,GB @@ -122207,9 +123671,7 @@ 3562106144,3562106159,FR 3562106160,3562106191,GB 3562106192,3562106271,FR -3562106272,3562106367,GB -3562106368,3562106495,FR -3562106496,3562106527,GB +3562106272,3562106527,GB 3562106528,3562106559,FR 3562106560,3562106623,GB 3562106624,3562106911,FR @@ -122230,7 +123692,9 @@ 3562107712,3562107775,GB 3562107776,3562107807,FR 3562107808,3562107887,GB -3562107888,3562108063,FR +3562107888,3562107967,FR +3562107968,3562108031,GB +3562108032,3562108063,FR 3562108064,3562108159,GB 3562108160,3562108415,FR 3562108416,3562108959,GB @@ -122439,7 +123903,6 @@ 3563097344,3563102207,DE 3563102208,3563110399,CZ 3563110400,3563118591,RU -3563118592,3563126783,DE 3563126784,3563134975,KG 3563134976,3563143167,IT 3563143168,3563151359,GB @@ -122631,8 +124094,8 @@ 3563848512,3563848575,NL 3563848576,3563848583,ES 3563848584,3563848655,NL -3563848656,3563848959,ES -3563848960,3563848979,NL +3563848656,3563848703,ES +3563848704,3563848979,NL 3563848980,3563848983,ES 3563848984,3563848987,NL 3563848988,3563848999,ES @@ -122707,7 +124170,8 @@ 3564024464,3564027903,GB 3564027904,3564041215,DE 3564041216,3564041727,RU -3564041728,3564044287,DE +3564041728,3564044031,DE +3564044032,3564044287,GB 3564044288,3564052479,CZ 3564052480,3564060671,GB 3564060672,3564068863,RU @@ -122775,23 +124239,17 @@ 3564331008,3564339199,ES 3564339200,3564339967,GB 3564339968,3564339999,NL -3564340000,3564340351,GB -3564340352,3564340415,NL -3564340416,3564340479,GB +3564340000,3564340479,GB 3564340480,3564340735,NL 3564340736,3564340991,GB 3564340992,3564341119,NL 3564341120,3564341183,GB 3564341184,3564341247,NL -3564341248,3564341759,GB -3564341760,3564342063,NL -3564342064,3564342207,GB -3564342208,3564342271,NL -3564342272,3564342335,GB +3564341248,3564342015,GB +3564342016,3564342063,NL +3564342064,3564342335,GB 3564342336,3564342431,NL -3564342432,3564342527,GB -3564342528,3564342783,NL -3564342784,3564343583,GB +3564342432,3564343583,GB 3564343584,3564343615,NL 3564343616,3564343679,GB 3564343680,3564343743,NL @@ -122807,9 +124265,7 @@ 3564344224,3564344231,NL 3564344232,3564344239,GB 3564344240,3564344247,NL -3564344248,3564344575,GB -3564344576,3564344831,NL -3564344832,3564344895,GB +3564344248,3564344895,GB 3564344896,3564344959,NL 3564344960,3564345023,GB 3564345024,3564345087,NL @@ -122817,8 +124273,8 @@ 3564345128,3564345131,NL 3564345132,3564345135,GB 3564345136,3564345151,NL -3564345152,3564345215,GB -3564345216,3564345343,NL +3564345152,3564345247,GB +3564345248,3564345343,NL 3564345344,3564346143,GB 3564346144,3564346175,NL 3564346176,3564346207,GB @@ -122827,9 +124283,7 @@ 3564346272,3564346303,NL 3564346304,3564347391,GB 3564347392,3564347583,NL -3564347584,3564347647,GB -3564347648,3564348159,NL -3564348160,3564348191,GB +3564347584,3564348191,GB 3564348192,3564348239,NL 3564348240,3564348255,GB 3564348256,3564348287,NL @@ -122841,8 +124295,8 @@ 3564348528,3564348543,NL 3564348544,3564348559,GB 3564348560,3564348639,NL -3564348640,3564348671,GB -3564348672,3564348991,NL +3564348640,3564348927,GB +3564348928,3564348991,NL 3564348992,3564349183,GB 3564349184,3564349311,NL 3564349312,3564349375,GB @@ -122891,14 +124345,16 @@ 3564353408,3564353487,NL 3564353488,3564353503,GB 3564353504,3564353535,NL -3564353536,3564353791,GB -3564353792,3564353919,NL +3564353536,3564353855,GB +3564353856,3564353919,NL 3564353920,3564354063,GB 3564354064,3564354079,NL 3564354080,3564354303,GB 3564354304,3564354335,NL 3564354336,3564354367,GB -3564354368,3564354559,NL +3564354368,3564354431,NL +3564354432,3564354495,GB +3564354496,3564354559,NL 3564354560,3564354943,GB 3564354944,3564355039,NL 3564355040,3564355135,GB @@ -123205,9 +124661,7 @@ 3564882128,3564882135,NL 3564882136,3564882143,GB 3564882144,3564882239,NL -3564882240,3564882255,GB -3564882256,3564882271,NL -3564882272,3564882431,GB +3564882240,3564882431,GB 3564882432,3564882943,NL 3564882944,3564883007,GB 3564883008,3564883039,NL @@ -123637,7 +125091,8 @@ 3565486336,3565486975,FR 3565486976,3565487615,NL 3565487616,3565487871,SE -3565487872,3565488383,GB +3565487872,3565488127,SK +3565488128,3565488383,GB 3565488384,3565488639,ES 3565488640,3565488895,GB 3565488896,3565489535,DE @@ -124154,8 +125609,8 @@ 3567388032,3567388159,GB 3567388160,3567388399,DE 3567388400,3567388415,GB -3567388416,3567388511,DE -3567388512,3567388543,GB +3567388416,3567388527,DE +3567388528,3567388543,GB 3567388544,3567388607,DE 3567388608,3567388671,GB 3567388672,3567388927,CZ @@ -124404,9 +125859,7 @@ 3568595080,3568595087,A2 3568595088,3568599039,FR 3568599040,3568631807,PL -3568631808,3568650695,SE -3568650696,3568650699,US -3568650700,3568697343,SE +3568631808,3568697343,SE 3568697344,3568730111,PL 3568730112,3568746495,NL 3568746496,3568752895,FI @@ -124916,9 +126369,7 @@ 3571322016,3571322111,DE 3571322112,3571322559,GB 3571322560,3571322591,DE -3571322592,3571322879,GB -3571322880,3571323135,DE -3571323136,3571323391,GB +3571322592,3571323391,GB 3571323392,3571323455,DE 3571323456,3571323487,GB 3571323488,3571323519,DE @@ -124989,8 +126440,8 @@ 3571332608,3571332735,GB 3571332736,3571332751,DE 3571332752,3571332831,GB -3571332832,3571333631,DE -3571333632,3571333759,GB +3571332832,3571332863,DE +3571332864,3571333759,GB 3571333760,3571333791,DE 3571333792,3571333887,GB 3571333888,3571333951,DE @@ -125042,9 +126493,7 @@ 3571340800,3571341375,DE 3571341376,3571341487,GB 3571341488,3571341503,DE -3571341504,3571341567,GB -3571341568,3571341823,DE -3571341824,3571342015,GB +3571341504,3571342015,GB 3571342016,3571342047,DE 3571342048,3571342079,GB 3571342080,3571342591,DE @@ -125071,7 +126520,9 @@ 3571344128,3571344191,GB 3571344192,3571344255,DE 3571344256,3571345215,GB -3571345216,3571346463,DE +3571345216,3571345407,DE +3571345408,3571346431,GB +3571346432,3571346463,DE 3571346464,3571346495,GB 3571346496,3571346559,DE 3571346560,3571346591,GB @@ -125155,8 +126606,8 @@ 3571357696,3571357791,GB 3571357792,3571357855,DE 3571357856,3571357871,GB -3571357872,3571357951,DE -3571357952,3571358047,GB +3571357872,3571357919,DE +3571357920,3571358047,GB 3571358048,3571358079,DE 3571358080,3571358223,GB 3571358224,3571358255,DE @@ -125169,7 +126620,9 @@ 3571358448,3571358463,GB 3571358464,3571358495,DE 3571358496,3571358503,GB -3571358504,3571358559,DE +3571358504,3571358527,DE +3571358528,3571358531,GB +3571358532,3571358559,DE 3571358560,3571358575,GB 3571358576,3571358591,DE 3571358592,3571358975,GB @@ -125593,16 +127046,16 @@ 3575355232,3575355247,GB 3575355248,3575360199,ES 3575360200,3575360207,FR -3575360208,3575367111,ES +3575360208,3575360319,ES +3575360320,3575360383,PT +3575360384,3575367111,ES 3575367112,3575367119,DE 3575367120,3575372239,ES 3575372240,3575372247,PT 3575372248,3575382015,ES 3575382016,3575412991,FI 3575412992,3575413119,RU -3575413120,3575414375,FI -3575414376,3575414383,AX -3575414384,3575419903,FI +3575413120,3575419903,FI 3575419904,3575419919,AX 3575419920,3575420127,FI 3575420128,3575420159,AX @@ -126408,8 +127861,8 @@ 3576105600,3576105727,FR 3576105728,3576105759,GB 3576105760,3576105855,FR -3576105856,3576105991,GB -3576105992,3576106047,FR +3576105856,3576105999,GB +3576106000,3576106047,FR 3576106048,3576106055,GB 3576106056,3576106111,FR 3576106112,3576106239,GB @@ -126445,7 +127898,8 @@ 3576108864,3576108991,GB 3576108992,3576109023,FR 3576109024,3576109055,DE -3576109056,3576109567,FR +3576109056,3576109311,GB +3576109312,3576109567,FR 3576109568,3576109695,GB 3576109696,3576109791,FR 3576109792,3576109799,GB @@ -126468,8 +127922,8 @@ 3576111680,3576111711,FR 3576111712,3576111727,GB 3576111728,3576111807,FR -3576111808,3576112383,GB -3576112384,3576112543,FR +3576111808,3576112511,GB +3576112512,3576112543,FR 3576112544,3576113407,GB 3576113408,3576113535,FR 3576113536,3576119295,GB @@ -126603,8 +128057,8 @@ 3576251616,3576251647,GB 3576251648,3576252415,FR 3576252416,3576252671,GB -3576252672,3576254551,FR -3576254552,3576254559,GB +3576252672,3576254543,FR +3576254544,3576254559,GB 3576254560,3576254607,FR 3576254608,3576254615,GB 3576254616,3576254623,FR @@ -126620,7 +128074,9 @@ 3576254904,3576255151,FR 3576255152,3576255199,GB 3576255200,3576255215,FR -3576255216,3576255263,GB +3576255216,3576255231,GB +3576255232,3576255239,FR +3576255240,3576255263,GB 3576255264,3576255375,FR 3576255376,3576255383,GB 3576255384,3576255407,FR @@ -126697,8 +128153,8 @@ 3576257856,3576257871,GB 3576257872,3576257887,FR 3576257888,3576257903,GB -3576257904,3576257983,FR -3576257984,3576257999,GB +3576257904,3576257975,FR +3576257976,3576257999,GB 3576258000,3576258055,FR 3576258056,3576258063,GB 3576258064,3576258079,FR @@ -126839,7 +128295,9 @@ 3576265376,3576265383,GB 3576265384,3576265399,FR 3576265400,3576265431,GB -3576265432,3576265463,FR +3576265432,3576265447,FR +3576265448,3576265455,GB +3576265456,3576265463,FR 3576265464,3576265471,GB 3576265472,3576265759,FR 3576265760,3576265775,GB @@ -126851,7 +128309,9 @@ 3576265848,3576265863,GB 3576265864,3576265879,FR 3576265880,3576265903,GB -3576265904,3576266663,FR +3576265904,3576265919,FR +3576265920,3576265935,GB +3576265936,3576266663,FR 3576266664,3576266671,GB 3576266672,3576266687,FR 3576266688,3576266751,GB @@ -126998,9 +128458,7 @@ 3577625216,3577625231,EU 3577625232,3577625599,GB 3577625600,3577625823,EU -3577625824,3577625839,GB -3577625840,3577625855,DE -3577625856,3577626623,GB +3577625824,3577626623,GB 3577626624,3577627135,FR 3577627136,3577627391,EU 3577627392,3577627647,GB @@ -127114,7 +128572,8 @@ 3577659392,3577659679,GR 3577659680,3577659711,EU 3577659712,3577659743,GR -3577659744,3577660159,EU +3577659744,3577659903,EU +3577659904,3577660159,GB 3577660160,3577660607,BE 3577660608,3577660671,EU 3577660672,3577661439,BE @@ -127205,15 +128664,16 @@ 3579188416,3579188431,IS 3579188432,3579191759,GB 3579191760,3579191775,DE -3579191776,3579193615,GB -3579193616,3579193703,NL +3579191776,3579193607,GB +3579193608,3579193703,NL 3579193704,3579193704,GB 3579193705,3579193705,NL 3579193706,3579193711,GB 3579193712,3579193727,BE 3579193728,3579193815,NL 3579193816,3579193823,ES -3579193824,3579193855,NL +3579193824,3579193839,GB +3579193840,3579193855,NL 3579193856,3579194039,GB 3579194040,3579194047,SE 3579194048,3579194103,GB @@ -127457,8 +128917,8 @@ 3580199424,3580199935,SE 3580199936,3580200447,EE 3580200448,3580200959,SE -3580200960,3580201471,LT -3580201472,3580203519,SE +3580200960,3580201983,LT +3580201984,3580203519,SE 3580203520,3580204543,RU 3580204544,3580205055,SE 3580205056,3580207103,HR @@ -127487,9 +128947,11 @@ 3580260352,3580265727,AT 3580265728,3580268543,SE 3580268544,3580272639,LV -3580272640,3580338175,SE -3580338176,3580339199,HR -3580339200,3580340223,SE +3580272640,3580280831,SE +3580280832,3580329983,RU +3580329984,3580338175,SE +3580338176,3580339711,HR +3580339712,3580340223,SE 3580340224,3580344319,LT 3580344320,3580354559,SE 3580354560,3580362751,LT @@ -127707,23 +129169,121 @@ 3582296064,3582304255,GB 3582304256,3582312447,UA 3582312448,3582312703,GB -3582312704,3582312959,JE -3582312960,3582314495,GB -3582314496,3582314751,JE -3582314752,3582315775,GB +3582312704,3582313215,JE +3582313216,3582313231,GB +3582313232,3582313249,JE +3582313250,3582313250,GB +3582313251,3582313255,JE +3582313256,3582313260,GB +3582313261,3582313271,JE +3582313272,3582313342,GB +3582313343,3582313343,JE +3582313344,3582313470,GB +3582313471,3582313471,JE +3582313472,3582313559,GB +3582313560,3582313567,JE +3582313568,3582313599,GB +3582313600,3582313695,JE +3582313696,3582313726,GB +3582313727,3582313727,JE +3582313728,3582313743,GB +3582313744,3582313759,JE +3582313760,3582313775,GB +3582313776,3582313791,JE +3582313792,3582313799,GB +3582313800,3582313807,JE +3582313808,3582313871,GB +3582313872,3582313967,JE +3582313968,3582313982,GB +3582313983,3582313991,JE +3582313992,3582314007,GB +3582314008,3582314015,JE +3582314016,3582314079,GB +3582314080,3582314095,JE +3582314096,3582314119,GB +3582314120,3582314127,JE +3582314128,3582314167,GB +3582314168,3582314175,JE +3582314176,3582314187,GB +3582314188,3582314195,JE +3582314196,3582314199,GB +3582314200,3582314207,JE +3582314208,3582314235,GB +3582314236,3582314239,JE +3582314240,3582314263,GB +3582314264,3582314271,JE +3582314272,3582314303,GB +3582314304,3582314311,JE +3582314312,3582314343,GB +3582314344,3582314383,JE +3582314384,3582314407,GB +3582314408,3582314415,JE +3582314416,3582314443,GB +3582314444,3582314447,JE +3582314448,3582314451,GB +3582314452,3582314455,JE +3582314456,3582314491,GB +3582314492,3582314783,JE +3582314784,3582314879,GB +3582314880,3582314911,JE +3582314912,3582314943,GB +3582314944,3582314991,JE +3582314992,3582314999,GB +3582315000,3582315023,JE +3582315024,3582315063,GB +3582315064,3582315079,JE +3582315080,3582315095,GB +3582315096,3582315135,JE +3582315136,3582315191,GB +3582315192,3582315271,JE +3582315272,3582315279,GB +3582315280,3582315287,JE +3582315288,3582315302,GB +3582315303,3582315303,JE +3582315304,3582315327,GB +3582315328,3582315335,JE +3582315336,3582315343,GB +3582315344,3582315351,JE +3582315352,3582315383,GB +3582315384,3582315391,JE +3582315392,3582315463,GB +3582315464,3582315519,JE +3582315520,3582315775,GB 3582315776,3582316543,JE -3582316544,3582317055,GB +3582316544,3582316863,GB +3582316864,3582316871,JE +3582316872,3582317055,GB 3582317056,3582317311,JE -3582317312,3582317567,GB +3582317312,3582317479,GB +3582317480,3582317487,JE +3582317488,3582317567,GB 3582317568,3582318079,JE -3582318080,3582318591,GB +3582318080,3582318399,GB +3582318400,3582318407,JE +3582318408,3582318511,GB +3582318512,3582318519,JE +3582318520,3582318591,GB 3582318592,3582318847,JE -3582318848,3582318999,GB +3582318848,3582318935,GB +3582318936,3582318943,JE +3582318944,3582318999,GB 3582319000,3582319007,JE -3582319008,3582319359,GB -3582319360,3582319391,JE -3582319392,3582320383,GB -3582320384,3582320639,JE +3582319008,3582319103,GB +3582319104,3582319111,JE +3582319112,3582319359,GB +3582319360,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 3582320640,3582328831,CH 3582328832,3582337023,HU 3582337024,3582341119,ES @@ -127764,19 +129324,25 @@ 3582526152,3582526159,IM 3582526160,3582526463,GB 3582526464,3582526503,IM -3582526504,3582526719,GB +3582526504,3582526623,GB +3582526624,3582526631,IM +3582526632,3582526671,GB +3582526672,3582526679,IM +3582526680,3582526719,GB 3582526720,3582526727,IM 3582526728,3582526815,GB 3582526816,3582526819,IM 3582526820,3582526911,GB 3582526912,3582526927,IM -3582526928,3582527231,GB +3582526928,3582526935,GB +3582526936,3582526943,IM +3582526944,3582527231,GB 3582527232,3582527271,IM -3582527272,3582527311,GB -3582527312,3582527335,IM -3582527336,3582527455,GB -3582527456,3582527463,IM -3582527464,3582527479,GB +3582527272,3582527303,GB +3582527304,3582527311,IM +3582527312,3582527327,GB +3582527328,3582527335,IM +3582527336,3582527479,GB 3582527480,3582527743,IM 3582527744,3582529023,GB 3582529024,3582530303,IM @@ -127787,25 +129353,23 @@ 3582530960,3582530979,GB 3582530980,3582530983,IM 3582530984,3582530991,GB -3582530992,3582531007,IM -3582531008,3582531031,GB +3582530992,3582530999,IM +3582531000,3582531031,GB 3582531032,3582531039,IM -3582531040,3582531071,GB -3582531072,3582531423,IM -3582531424,3582531431,GB -3582531432,3582531439,IM +3582531040,3582531135,GB +3582531136,3582531439,IM 3582531440,3582531471,GB 3582531472,3582531487,IM -3582531488,3582531511,GB -3582531512,3582531535,IM +3582531488,3582531503,GB +3582531504,3582531535,IM 3582531536,3582531551,GB 3582531552,3582531559,IM 3582531560,3582531583,GB 3582531584,3582531631,IM -3582531632,3582531647,GB -3582531648,3582531663,IM -3582531664,3582531687,GB -3582531688,3582531695,IM +3582531632,3582531651,GB +3582531652,3582531663,IM +3582531664,3582531671,GB +3582531672,3582531695,IM 3582531696,3582531767,GB 3582531768,3582531775,IM 3582531776,3582531783,GB @@ -127971,7 +129535,9 @@ 3582599168,3582607359,DE 3582607360,3582615551,RU 3582623744,3582631935,FI -3582631936,3582640127,NO +3582631936,3582635007,NO +3582635008,3582635263,SE +3582635264,3582640127,NO 3582640128,3582648319,RU 3582648320,3582656511,PT 3582656512,3582664047,ES @@ -128169,9 +129735,7 @@ 3583680512,3583688703,RU 3583688704,3583696895,UA 3583696896,3583705087,NL -3583705088,3583705183,UA -3583705184,3583705223,NA -3583705224,3583705239,UA +3583705088,3583705239,UA 3583705240,3583705247,NA 3583705248,3583705255,UA 3583705256,3583705263,NA @@ -128335,8 +129899,8 @@ 3583710136,3583710211,UA 3583710212,3583710215,NA 3583710216,3583710319,UA -3583710320,3583710335,NA -3583710336,3583710367,UA +3583710320,3583710327,NA +3583710328,3583710367,UA 3583710368,3583710375,AQ 3583710376,3583710383,NA 3583710384,3583710407,UA @@ -128357,16 +129921,12 @@ 3583710872,3583710879,NA 3583710880,3583710887,UA 3583710888,3583710895,NA -3583710896,3583710935,UA -3583710936,3583710943,NA -3583710944,3583710991,UA +3583710896,3583710991,UA 3583710992,3583710999,NA 3583711000,3583711007,UA 3583711008,3583711015,RU 3583711016,3583711023,NA -3583711024,3583711087,UA -3583711088,3583711095,NA -3583711096,3583711247,UA +3583711024,3583711247,UA 3583711248,3583711255,NA 3583711256,3583711311,UA 3583711312,3583711319,NA @@ -128376,15 +129936,9 @@ 3583711360,3583711367,NA 3583711368,3583711375,UA 3583711376,3583711383,NA -3583711384,3583711495,UA -3583711496,3583711503,NA -3583711504,3583711551,UA -3583711552,3583711559,NA -3583711560,3583711567,UA -3583711568,3583711591,NA -3583711592,3583711607,UA -3583711608,3583711615,NA -3583711616,3583711631,UA +3583711384,3583711575,UA +3583711576,3583711591,NA +3583711592,3583711631,UA 3583711632,3583711639,RU 3583711640,3583711695,UA 3583711696,3583711703,NA @@ -128404,8 +129958,10 @@ 3583712160,3583712199,NA 3583712200,3583712311,UA 3583712312,3583712319,NA -3583712320,3583712447,UA -3583712448,3583712479,NA +3583712320,3583712455,UA +3583712456,3583712463,NA +3583712464,3583712471,UA +3583712472,3583712479,NA 3583712480,3583712623,UA 3583712624,3583712631,NA 3583712632,3583712655,UA @@ -128422,17 +129978,11 @@ 3583712928,3583712943,NA 3583712944,3583713007,UA 3583713008,3583713015,RU -3583713016,3583713031,UA -3583713032,3583713039,NA -3583713040,3583713143,UA +3583713016,3583713143,UA 3583713144,3583713151,NA -3583713152,3583713167,UA -3583713168,3583713175,EG -3583713176,3583713183,UA +3583713152,3583713183,UA 3583713184,3583713191,NA -3583713192,3583713271,UA -3583713272,3583713275,RU -3583713276,3583713279,UA +3583713192,3583713279,UA 3583713280,3583721471,CZ 3583721472,3583729663,DE 3583729664,3583737855,TR @@ -128459,9 +130009,10 @@ 3583744320,3583744447,GB 3583744448,3583744511,EU 3583744512,3583744767,GB -3583744768,3583744831,EU +3583744768,3583744831,DE 3583744832,3583744839,GB -3583744840,3583744959,EU +3583744840,3583744927,EU +3583744928,3583744959,DE 3583744960,3583744991,GB 3583744992,3583745279,EU 3583745280,3583745535,GB @@ -128562,7 +130113,9 @@ 3584093784,3584093791,NL 3584093792,3584094893,NO 3584094894,3584094895,NL -3584094896,3584095935,NO +3584094896,3584095807,NO +3584095808,3584095839,NL +3584095840,3584095935,NO 3584095936,3584095999,NL 3584096000,3584096255,NO 3584096256,3584098303,NL @@ -128755,7 +130308,8 @@ 3584983040,3584988655,US 3584988656,3584988671,UA 3584988672,3584990303,US -3584990304,3584990463,UA +3584990304,3584990335,UA +3584990336,3584990463,US 3584990464,3584990495,NL 3584990496,3584990511,US 3584990512,3584990527,UA @@ -128992,7 +130546,8 @@ 3585842176,3585842199,IQ 3585842200,3585842207,NL 3585842208,3585842687,IQ -3585842688,3585843199,NG +3585842688,3585842943,NG +3585842944,3585843199,NL 3585843200,3585851391,NO 3585851392,3585859583,SE 3585859584,3585860607,RU @@ -129145,7 +130700,8 @@ 3586478080,3586478591,SK 3586478592,3586478847,TR 3586478848,3586479103,SK -3586479104,3586490367,HU +3586479104,3586479359,TR +3586479360,3586490367,HU 3586490368,3586506751,LT 3586506752,3586523135,NL 3586523136,3586542559,DE @@ -129393,7 +130949,9 @@ 3587179456,3587179463,AT 3587179464,3587179471,CH 3587179472,3587186687,AT -3587186688,3587194495,DE +3587186688,3587190783,DE +3587190784,3587191039,GB +3587191040,3587194495,DE 3587194496,3587194511,RU 3587194512,3587194879,DE 3587194880,3587211263,GB @@ -129423,7 +130981,9 @@ 3587228641,3587228647,GB 3587228648,3587228927,NL 3587228928,3587229455,GB -3587229456,3587229823,NL +3587229456,3587229647,NL +3587229648,3587229663,GB +3587229664,3587229823,NL 3587229824,3587229839,GB 3587229840,3587229855,ES 3587229856,3587229871,NL @@ -129453,9 +131013,7 @@ 3587230944,3587230967,DE 3587230968,3587230975,GB 3587230976,3587230991,NL -3587230992,3587231295,GB -3587231296,3587231327,NL -3587231328,3587231359,GB +3587230992,3587231359,GB 3587231360,3587232535,NL 3587232536,3587232711,GB 3587232712,3587232719,NL @@ -129518,7 +131076,11 @@ 3587239304,3587239311,GB 3587239312,3587239903,NL 3587239904,3587239935,GB -3587239936,3587240087,NL +3587239936,3587240007,NL +3587240008,3587240015,GB +3587240016,3587240023,NL +3587240024,3587240031,GB +3587240032,3587240087,NL 3587240088,3587240095,GB 3587240096,3587240103,NL 3587240104,3587240107,GB @@ -129540,9 +131102,11 @@ 3587241264,3587241271,GB 3587241272,3587241343,NL 3587241344,3587241471,GB -3587241472,3587242063,NL -3587242064,3587242071,BE -3587242072,3587243935,NL +3587241472,3587242103,NL +3587242104,3587242111,GB +3587242112,3587242463,NL +3587242464,3587242471,GB +3587242472,3587243935,NL 3587243936,3587243943,GB 3587243944,3587243967,NL 3587243968,3587243975,GB @@ -130241,11 +131805,12 @@ 3589971232,3589971247,CA 3589971248,3589980159,ES 3589980160,3589996543,CZ -3589996544,3589996623,NL +3589996544,3589996575,GB +3589996576,3589996623,NL 3589996624,3589996639,GB 3589996640,3589996655,NL -3589996656,3589996703,GB -3589996704,3589996799,NL +3589996656,3589996735,GB +3589996736,3589996799,NL 3589996800,3589996863,GB 3589996864,3589996879,NL 3589996880,3589996911,GB @@ -130455,10 +132020,10 @@ 3590308320,3590308343,IQ 3590308344,3590308351,A2 3590308352,3590308367,IQ -3590308368,3590308383,A2 -3590308384,3590308391,IQ -3590308392,3590308407,A2 -3590308408,3590308423,IQ +3590308368,3590308375,A2 +3590308376,3590308391,IQ +3590308392,3590308399,A2 +3590308400,3590308423,IQ 3590308424,3590308431,A2 3590308432,3590308439,IQ 3590308440,3590308447,A2 @@ -130560,9 +132125,7 @@ 3590311112,3590311119,A2 3590311120,3590311135,IQ 3590311136,3590311143,A2 -3590311144,3590311151,IQ -3590311152,3590311159,A2 -3590311160,3590311167,IQ +3590311144,3590311167,IQ 3590311168,3590311175,A2 3590311176,3590311183,CD 3590311184,3590311199,A2 @@ -130689,9 +132252,7 @@ 3590320352,3590320359,IQ 3590320360,3590320375,A2 3590320376,3590320383,IQ -3590320384,3590321151,A2 -3590321152,3590321663,IQ -3590321664,3590321679,A2 +3590320384,3590321679,A2 3590321680,3590321687,CM 3590321688,3590321695,A2 3590321696,3590321711,ZW @@ -130959,15 +132520,15 @@ 3624549048,3624549063,A2 3624549064,3624549079,US 3624549080,3624549087,A2 -3624549088,3624549095,US -3624549096,3624549111,A2 +3624549088,3624549103,US +3624549104,3624549111,A2 3624549112,3624549375,US 3624549376,3624550143,A2 3624550144,3624587263,US 3624587264,3624591359,JM 3624595456,3624730623,US 3624730624,3624796159,CA -3624812544,3624817679,US +3624796160,3624817679,US 3624817680,3624817687,CA 3624817688,3624820735,US 3624820736,3624820799,CY @@ -130995,9 +132556,7 @@ 3624895936,3624895967,IN 3624895968,3624895999,US 3624896000,3624896255,CA -3624896256,3624896287,US -3624896288,3624896319,GB -3624896320,3624896383,US +3624896256,3624896383,US 3624896384,3624896415,IN 3624896416,3624896447,AT 3624896448,3624896767,US @@ -131389,7 +132948,7 @@ 3625423104,3625426943,CA 3625426944,3625508863,US 3625508864,3625512959,CA -3625512960,3625517055,PR +3625512960,3625515007,PR 3625517056,3625528541,US 3625528542,3625528551,AU 3625528552,3625574399,US @@ -131436,7 +132995,9 @@ 3626192768,3626192799,CH 3626192800,3626213439,US 3626213440,3626213471,GB -3626213472,3626227167,US +3626213472,3626225407,US +3626225408,3626225663,HK +3626225664,3626227167,US 3626227168,3626227199,AR 3626227200,3626228463,US 3626228464,3626228479,AE @@ -131903,7 +133464,9 @@ 3626528680,3626528703,US 3626528704,3626529183,CA 3626529184,3626529191,US -3626529192,3626529735,CA +3626529192,3626529639,CA +3626529640,3626529647,US +3626529648,3626529735,CA 3626529736,3626529751,US 3626529752,3626529807,CA 3626529808,3626529863,US @@ -132164,7 +133727,8 @@ 3628179456,3628187647,CA 3628187648,3628208127,US 3628208128,3628208383,IT -3628208384,3628223983,US +3628208384,3628208639,CN +3628208640,3628223983,US 3628223984,3628223999,CA 3628224000,3628224735,US 3628224736,3628224743,IT @@ -132320,7 +133884,13 @@ 3629202428,3629203199,CA 3629203200,3629318143,US 3629318144,3629326335,CA -3629326336,3629539327,US +3629326336,3629327527,US +3629327528,3629327535,HK +3629327536,3629327551,US +3629327552,3629327559,CN +3629327560,3629327567,US +3629327568,3629327575,HK +3629327576,3629539327,US 3629539328,3629547519,CA 3629547520,3629662207,US 3629662208,3629662463,GB @@ -132913,32 +134483,29 @@ 3631663152,3631663159,CA 3631663160,3631665151,US 3631665152,3631669247,CA -3631669248,3631669759,US -3631669760,3631669767,A2 +3631669248,3631669767,A2 3631669768,3631669775,US 3631669776,3631669783,BO -3631669784,3631669791,US +3631669784,3631669791,A2 3631669792,3631669799,BO 3631669800,3631669807,US 3631669808,3631669823,EC 3631669824,3631669839,BO -3631669840,3631669855,A2 -3631669856,3631669871,US -3631669872,3631669887,A2 +3631669840,3631669887,A2 3631669888,3631669919,BO 3631669920,3631669951,EC 3631669952,3631670015,US 3631670016,3631670143,CO 3631670144,3631670207,NI -3631670208,3631670271,A2 -3631670272,3631670527,US +3631670208,3631670527,A2 3631670528,3631670783,NG 3631670784,3631671039,EC 3631671040,3631671295,US 3631671296,3631671551,JM 3631671552,3631672575,PY 3631672576,3631672831,NG -3631672832,3631673119,US +3631672832,3631673087,A2 +3631673088,3631673119,US 3631673120,3631673151,A2 3631673152,3631673183,US 3631673184,3631673199,A2 @@ -133678,7 +135245,9 @@ 3633915904,3633922303,US 3633922304,3633922367,TN 3633922368,3633971199,US -3633971200,3634020351,CA +3633971200,3633974527,CA +3633974528,3633975039,US +3633975040,3634020351,CA 3634020352,3634053119,US 3634053120,3634061311,CL 3634061312,3634065311,US @@ -133840,10 +135409,8 @@ 3636152704,3636152767,CA 3636152768,3636152775,MX 3636152776,3636152783,US -3636152784,3636152791,CA -3636152792,3636152799,US -3636152800,3636152847,CA -3636152848,3636152895,US +3636152784,3636152855,CA +3636152856,3636152895,US 3636152896,3636153023,CA 3636153024,3636153055,KN 3636153056,3636153343,CA @@ -133938,7 +135505,9 @@ 3636277760,3636278015,FR 3636278016,3636283391,US 3636283392,3636283647,FR -3636283648,3636290815,US +3636283648,3636284415,US +3636284416,3636284671,FR +3636284672,3636290815,US 3636290816,3636291327,FR 3636291328,3636296703,US 3636296704,3636297727,FR @@ -133957,27 +135526,13 @@ 3636627200,3636627455,BR 3636627456,3636628479,MX 3636628480,3636628991,PE -3636628992,3636633951,US +3636628992,3636633887,US 3636633952,3636633983,CR 3636633984,3636634015,US -3636634016,3636634063,CR -3636634064,3636634079,US -3636634080,3636634111,CR -3636634112,3636634287,US -3636634288,3636634335,CR -3636634336,3636634351,US -3636634352,3636634431,CR -3636634432,3636634463,US -3636634464,3636634479,CR -3636634480,3636634495,US -3636634496,3636634511,CR -3636634512,3636634623,US -3636634624,3636634687,CR -3636634688,3636634719,US -3636634720,3636635135,CR +3636634016,3636635135,CR 3636635136,3636635391,US 3636635392,3636635775,CR -3636635776,3636636415,US +3636635904,3636636415,US 3636636416,3636636543,CR 3636636544,3636822015,US 3636822016,3636854783,CA @@ -134069,7 +135624,8 @@ 3636913664,3636913919,US 3636913920,3636914687,CA 3636914688,3636914815,US -3636914816,3636914943,CA +3636914816,3636914879,IN +3636914880,3636914943,CA 3636914944,3636915103,US 3636915104,3636915135,IN 3636915136,3636915199,US @@ -134111,8 +135667,7 @@ 3636919744,3636919807,US 3636919808,3636919871,GB 3636919872,3636919999,US -3636920000,3636920063,IN -3636920064,3636920127,US +3636920000,3636920127,IN 3636920128,3636920191,CA 3636920192,3637071887,US 3637071888,3637071903,AD @@ -134261,10 +135816,10 @@ 3638247680,3638247855,US 3638247856,3638247871,DE 3638247872,3638247903,US -3638247904,3638247935,GB -3638247936,3638248703,US +3638247904,3638248703,GB 3638248704,3638249215,FR -3638249216,3638249751,US +3638249216,3638249471,GB +3638249472,3638249751,US 3638249752,3638249791,GB 3638249792,3638250535,US 3638250536,3638250543,GB @@ -134291,7 +135846,12 @@ 3638374768,3638386687,CA 3638386688,3638398975,US 3638398976,3638398991,GB -3638398992,3638509295,US +3638398992,3638399007,CH +3638399008,3638399487,US +3638399488,3638399615,CH +3638399616,3638399743,US +3638399744,3638399999,CH +3638400000,3638509295,US 3638509296,3638509311,GB 3638509312,3638509567,US 3638509568,3638526911,CA @@ -134417,7 +135977,7 @@ 3639439632,3639439639,RO 3639439640,3639440767,US 3639440768,3639440895,IN -3639440896,3639484415,US +3639440896,3639508991,US 3639541760,3639558143,US 3639558144,3639566335,CA 3639566336,3639582719,US @@ -134531,10 +136091,10 @@ 3639893024,3639893039,US 3639893040,3639893071,DE 3639893072,3639893087,US -3639893088,3639893151,DE -3639893152,3639893167,US -3639893168,3639893199,DE -3639893200,3639893207,US +3639893088,3639893119,DE +3639893120,3639893167,US +3639893168,3639893183,DE +3639893184,3639893207,US 3639893208,3639893215,DE 3639893216,3639893503,US 3639893504,3639893519,ID @@ -134563,9 +136123,12 @@ 3640028280,3640028287,AF 3640028288,3640028295,US 3640028296,3640028303,CA -3640028304,3640028335,US +3640028304,3640028311,GB +3640028312,3640028335,US 3640028336,3640028343,CA -3640028344,3640057855,US +3640028344,3640028591,US +3640028592,3640028599,CA +3640028600,3640057855,US 3640057856,3640066047,CA 3640066048,3640075391,US 3640075392,3640075407,NL @@ -134750,15 +136313,14 @@ 3641335808,3641343999,SE 3641344000,3641345199,GB 3641345200,3641345215,IE -3641345216,3641353087,GB -3641353088,3641353151,A2 +3641345216,3641352959,GB +3641352960,3641353151,A2 3641353152,3641353183,BD 3641353184,3641353215,NG 3641353216,3641353231,GB 3641353232,3641353247,IQ 3641353248,3641353263,GB -3641353264,3641353343,A2 -3641353344,3641353727,BD +3641353264,3641353727,A2 3641353728,3641353759,NG 3641353760,3641353775,GB 3641353776,3641353807,NG @@ -134784,20 +136346,14 @@ 3641355584,3641355599,GB 3641355600,3641355775,A2 3641355776,3641356031,LB -3641356032,3641356111,A2 -3641356112,3641356119,NG -3641356120,3641356191,A2 +3641356032,3641356191,A2 3641356192,3641356207,NG -3641356208,3641356287,A2 -3641356288,3641357311,GB -3641357312,3641357567,A2 -3641357568,3641357823,GB -3641357824,3641357855,A2 +3641356208,3641357855,A2 3641357856,3641357879,GB 3641357880,3641357887,A2 3641357888,3641357927,GB -3641357928,3641358079,A2 -3641358080,3641359359,GB +3641357928,3641358335,A2 +3641358336,3641359359,GB 3641359360,3641359615,IQ 3641359616,3641359639,GB 3641359640,3641359647,A2 @@ -134901,7 +136457,6 @@ 3641683968,3641688063,KZ 3641688064,3641692159,RU 3641692160,3641696255,IT -3641696256,3641700351,DE 3641700352,3641704447,SE 3641704448,3641708543,FR 3641708544,3641712639,RU @@ -134942,7 +136497,9 @@ 3641762688,3641762691,GR 3641762692,3641762703,CY 3641762704,3641762711,GR -3641762712,3641762755,CY +3641762712,3641762731,CY +3641762732,3641762743,GR +3641762744,3641762755,CY 3641762756,3641762759,GR 3641762760,3641762907,CY 3641762908,3641762911,GR @@ -134991,14 +136548,12 @@ 3641764328,3641764347,CY 3641764348,3641764351,GR 3641764352,3641764607,CY -3641764608,3641764679,GR -3641764680,3641764683,CY -3641764684,3641764699,GR +3641764608,3641764699,GR 3641764700,3641764703,CY 3641764704,3641764711,GR 3641764712,3641764715,CY -3641764716,3641764775,GR -3641764776,3641764783,CY +3641764716,3641764779,GR +3641764780,3641764783,CY 3641764784,3641764787,GR 3641764788,3641764799,CY 3641764800,3641764847,GR @@ -135295,7 +136850,15 @@ 3642415652,3642415655,MT 3642415656,3642417151,GB 3642417152,3642421247,IT -3642421248,3642425343,A2 +3642421248,3642423091,A2 +3642423092,3642423099,NG +3642423100,3642424151,A2 +3642424152,3642424167,NG +3642424168,3642424199,A2 +3642424200,3642424215,NG +3642424216,3642425087,A2 +3642425088,3642425183,IQ +3642425184,3642425343,A2 3642425344,3642429439,DE 3642429440,3642433535,GB 3642433536,3642435583,CY @@ -135371,13 +136934,16 @@ 3642553412,3642553415,UA 3642553416,3642553423,RU 3642553424,3642553431,UA -3642553432,3642553463,RU +3642553432,3642553443,RU +3642553444,3642553447,UA +3642553448,3642553463,RU 3642553464,3642553471,UA 3642553472,3642553519,RU 3642553520,3642553523,UA 3642553524,3642553535,RU 3642553536,3642553543,DE -3642553544,3642553567,RU +3642553544,3642553547,UA +3642553548,3642553567,RU 3642553568,3642553571,UA 3642553572,3642553575,RU 3642553576,3642553579,UA @@ -135387,17 +136953,19 @@ 3642553600,3642553855,UA 3642553856,3642553927,RU 3642553928,3642553935,UA -3642553936,3642553963,RU -3642553964,3642554111,UA +3642553936,3642553959,RU +3642553960,3642554111,UA 3642554112,3642554119,RU -3642554120,3642554123,UA -3642554124,3642554151,RU +3642554120,3642554127,UA +3642554128,3642554151,RU 3642554152,3642554187,UA 3642554188,3642554207,RU -3642554208,3642554215,UA -3642554216,3642554223,RU +3642554208,3642554219,UA +3642554220,3642554223,RU 3642554224,3642554367,UA -3642554368,3642554623,LT +3642554368,3642554559,LT +3642554560,3642554575,UA +3642554576,3642554623,LT 3642554624,3642554631,UA 3642554632,3642554671,LV 3642554672,3642554675,UA @@ -135445,7 +137013,9 @@ 3642555228,3642555289,LT 3642555290,3642555295,UA 3642555296,3642555391,LT -3642555392,3642555439,PL +3642555392,3642555431,PL +3642555432,3642555437,UA +3642555438,3642555439,PL 3642555440,3642555443,UA 3642555444,3642555471,PL 3642555472,3642555475,UA @@ -135743,6 +137313,7 @@ 3645460480,3645464575,UA 3645464576,3645468671,SE 3645468672,3645472767,RU +3645472768,3645476863,AL 3645476864,3645480959,DE 3645480960,3645485055,RO 3645485056,3645489151,PL @@ -135784,7 +137355,9 @@ 3645575168,3645579263,CH 3645579264,3645583359,NL 3645583360,3645587455,PL -3645587456,3645595647,SK +3645587456,3645594711,SK +3645594712,3645594719,SR +3645594720,3645595647,SK 3645595648,3645597751,SE 3645597752,3645597759,GB 3645597760,3645601471,SE @@ -136810,7 +138383,9 @@ 3647959600,3647959607,AT 3647959608,3647961215,DE 3647961216,3647961247,IT -3647961248,3647963167,DE +3647961248,3647961255,DE +3647961256,3647961263,BE +3647961264,3647963167,DE 3647963168,3647963183,BE 3647963184,3647963231,DE 3647963232,3647963263,BE @@ -136876,8 +138451,8 @@ 3647976720,3647976727,DE 3647976728,3647976743,BE 3647976744,3647976751,DE -3647976752,3647976759,BE -3647976760,3647976783,DE +3647976752,3647976767,BE +3647976768,3647976783,DE 3647976784,3647976791,BE 3647976792,3647976799,DE 3647976800,3647976927,BE @@ -136890,12 +138465,14 @@ 3647977472,3647977791,GB 3647977792,3647977855,IE 3647977856,3647978495,GB -3647978496,3647978775,NL +3647978496,3647978551,NL +3647978552,3647978559,DE +3647978560,3647978775,NL 3647978776,3647978783,DE 3647978784,3647978895,NL 3647978896,3647978911,DE -3647978912,3647978927,NL -3647978928,3647979007,DE +3647978912,3647978935,NL +3647978936,3647979007,DE 3647979008,3647979136,IT 3647979137,3647979519,DE 3647979520,3647980543,FR @@ -136929,12 +138506,8 @@ 3648033120,3648033535,EU 3648033536,3648033791,IE 3648033792,3648034047,EU -3648034048,3648034051,IE -3648034052,3648034055,EU -3648034056,3648034095,IE -3648034096,3648034175,EU -3648034176,3648034191,IE -3648034192,3648034815,EU +3648034048,3648034303,IE +3648034304,3648034815,EU 3648034816,3648034847,DE 3648034848,3648034887,EU 3648034888,3648034895,IE @@ -137029,7 +138602,9 @@ 3648181376,3648181407,RU 3648181408,3648181423,DE 3648181424,3648181439,CH -3648181440,3648181551,DE +3648181440,3648181519,DE +3648181520,3648181527,RU +3648181528,3648181551,DE 3648181552,3648181567,RU 3648181568,3648181631,DE 3648181632,3648181647,AT @@ -137162,7 +138737,11 @@ 3648450560,3648454655,IT 3648454656,3648458751,NL 3648458752,3648462847,RU -3648462848,3648466943,FI +3648462848,3648465255,FI +3648465256,3648465271,AX +3648465272,3648465823,FI +3648465824,3648465855,AX +3648465856,3648466943,FI 3648466944,3648469263,DE 3648469264,3648469271,NL 3648469272,3648469295,DE @@ -137348,7 +138927,9 @@ 3650352384,3650352895,DE 3650352896,3650355199,GB 3650355200,3650359295,CH -3650359296,3650363391,NL +3650359296,3650360703,NL +3650360704,3650360831,BE +3650360832,3650363391,NL 3650363392,3650367487,GB 3650367488,3650371583,RU 3650371584,3650375679,ES @@ -137863,13 +139444,14 @@ 3652128768,3652136959,RU 3652136960,3652141055,IT 3652141056,3652141311,GB -3652141312,3652143103,A2 -3652143104,3652143359,GB +3652141312,3652142847,A2 +3652142848,3652143359,GB 3652143360,3652143871,A2 3652143872,3652144127,GB 3652144128,3652144383,KE 3652144384,3652144639,CM -3652144640,3652145151,A2 +3652144640,3652144895,GB +3652144896,3652145151,A2 3652145152,3652149247,UA 3652149248,3652153343,DE 3652153344,3652157439,SE @@ -138061,7 +139643,8 @@ 3653410256,3653410263,A2 3653410264,3653410271,NG 3653410272,3653410279,SD -3653410280,3653410295,A2 +3653410280,3653410287,IQ +3653410288,3653410295,A2 3653410296,3653410303,MW 3653410304,3653410815,GB 3653410816,3653414911,CZ @@ -138332,7 +139915,11 @@ 3664005888,3664006143,MY 3664006144,3664006399,AU 3664006400,3664006655,PF +3664006656,3664006911,AU +3664006912,3664007167,NZ 3664007168,3664008191,AU +3664008192,3664008447,MN +3664008448,3664008703,PK 3664052224,3664084991,NZ 3664084992,3664117759,KR 3664117760,3664248831,HK @@ -138426,6 +140013,7 @@ 3701014528,3701080063,JP 3701080064,3701211135,CN 3701211136,3701252095,JP +3701252096,3701256191,NC 3701256192,3701258239,SG 3701258240,3701260287,IN 3701260288,3701293055,JP @@ -138587,8 +140175,7 @@ 3743121408,3743125503,MY 3743125504,3743129599,ID 3743129600,3743130623,HK -3743130624,3743131647,AP -3743131648,3743133695,SG +3743130624,3743133695,SG 3743133696,3743134719,AU 3743135744,3743136767,CN 3743136768,3743137791,MY @@ -138650,6 +140237,7 @@ 3755999232,3757047807,IN 3757047808,3757834239,CN 3757834240,3757867007,AU +3757867008,3757899775,CN 3757899776,3757965311,KR 3757965312,3758063615,CN 3758063616,3758079999,HK From 20b75989acb457e5a2f931f8ad74517f885940ed Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Mon, 7 Feb 2011 23:21:33 -0500 Subject: [PATCH 29/37] dtrt when only relaybandwidthburst is set fixes bug 2470 --- changes/bug2470 | 5 +++++ src/or/config.c | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 changes/bug2470 diff --git a/changes/bug2470 b/changes/bug2470 new file mode 100644 index 000000000..8ff97b7bc --- /dev/null +++ b/changes/bug2470 @@ -0,0 +1,5 @@ + o Major bugfixes: + - If relays set RelayBandwidthBurst but not RelayBandwidthRate, + Tor would ignore their RelayBandwidthBurst setting, + potentially using more bandwidth than expected. Bugfix on + 0.2.0.1-alpha. Reported by Paul Wouters. Fixes bug 2470. diff --git a/src/or/config.c b/src/or/config.c index f8cfd29f8..8066a23a4 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -3401,6 +3401,8 @@ options_validate(or_options_t *old_options, or_options_t *options, if (options->RelayBandwidthRate && !options->RelayBandwidthBurst) options->RelayBandwidthBurst = options->RelayBandwidthRate; + if (options->RelayBandwidthBurst && !options->RelayBandwidthRate) + options->RelayBandwidthRate = options->RelayBandwidthBurst; if (options->RelayBandwidthRate > options->RelayBandwidthBurst) REJECT("RelayBandwidthBurst must be at least equal " From bcbcda309a24ebe9022ad47c023af12877535780 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Mon, 7 Feb 2011 23:22:45 -0500 Subject: [PATCH 30/37] move the clause above the "if bw is too low" check --- src/or/config.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/or/config.c b/src/or/config.c index 8066a23a4..a955b1728 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -3368,6 +3368,11 @@ options_validate(or_options_t *old_options, or_options_t *options, "RelayBandwidthBurst", msg) < 0) return -1; + if (options->RelayBandwidthRate && !options->RelayBandwidthBurst) + options->RelayBandwidthBurst = options->RelayBandwidthRate; + if (options->RelayBandwidthBurst && !options->RelayBandwidthRate) + options->RelayBandwidthRate = options->RelayBandwidthBurst; + if (server_mode(options)) { if (options->BandwidthRate < ROUTER_REQUIRED_MIN_BANDWIDTH) { r = tor_snprintf(buf, sizeof(buf), @@ -3399,11 +3404,6 @@ options_validate(or_options_t *old_options, or_options_t *options, } } - if (options->RelayBandwidthRate && !options->RelayBandwidthBurst) - options->RelayBandwidthBurst = options->RelayBandwidthRate; - if (options->RelayBandwidthBurst && !options->RelayBandwidthRate) - options->RelayBandwidthRate = options->RelayBandwidthBurst; - if (options->RelayBandwidthRate > options->RelayBandwidthBurst) REJECT("RelayBandwidthBurst must be at least equal " "to RelayBandwidthRate."); From 9c7e2cf010856aabfbca042870ec1d5718c30ea4 Mon Sep 17 00:00:00 2001 From: Sebastian Hahn Date: Mon, 7 Feb 2011 15:40:14 +0100 Subject: [PATCH 31/37] Locking failures on windows are indicated by EACCES Patch our implementation of tor_lockfile_lock() to handle this case correctly. Also add a note that blocking behaviour differs from windows to *nix. Fixes bug 2504, issue pointed out by mobmix. --- src/common/compat.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/common/compat.c b/src/common/compat.c index aa42514dd..5dfde3dc0 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -676,7 +676,10 @@ struct tor_lockfile_t { * * (Implementation note: because we need to fall back to fcntl on some * platforms, these locks are per-process, not per-thread. If you want - * to do in-process locking, use tor_mutex_t like a normal person.) + * to do in-process locking, use tor_mutex_t like a normal person. + * On Windows, when blocking is true, the maximum time that + * is actually waited is 10 seconds, after which NULL is returned + * and locked_out is set to 1.) */ tor_lockfile_t * tor_lockfile_lock(const char *filename, int blocking, int *locked_out) @@ -696,7 +699,7 @@ tor_lockfile_lock(const char *filename, int blocking, int *locked_out) #ifdef WIN32 _lseek(fd, 0, SEEK_SET); if (_locking(fd, blocking ? _LK_LOCK : _LK_NBLCK, 1) < 0) { - if (errno != EDEADLOCK) + if (errno != EACCESS && errno != EDEADLOCK) log_warn(LD_FS,"Couldn't lock \"%s\": %s", filename, strerror(errno)); else *locked_out = 1; From 7bf06d4a4f390aa866f9137b364632f5d6f3df8a Mon Sep 17 00:00:00 2001 From: Robert Ransom Date: Tue, 18 Jan 2011 03:54:56 -0800 Subject: [PATCH 32/37] Ignore and warn about "PublishServerDescriptor hidserv" Fixes #2408. --- changes/bug2408 | 6 ++++++ src/or/config.c | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 changes/bug2408 diff --git a/changes/bug2408 b/changes/bug2408 new file mode 100644 index 000000000..1d2dbf1ad --- /dev/null +++ b/changes/bug2408 @@ -0,0 +1,6 @@ + o Major bugfixes + - Ignore and warn about "PublishServerDescriptor hidserv" torrc + options. The 'hidserv' argument never controlled publication + of hidden service descriptors. Bugfix on 0.2.0.1-alpha. + + diff --git a/src/or/config.c b/src/or/config.c index a955b1728..8397b231a 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -2878,7 +2878,9 @@ compute_publishserverdescriptor(or_options_t *options) else if (!strcasecmp(string, "bridge")) *auth |= BRIDGE_AUTHORITY; else if (!strcasecmp(string, "hidserv")) - *auth |= HIDSERV_AUTHORITY; + log_warn(LD_CONFIG, + "PublishServerDescriptor hidserv is invalid. See " + "PublishHidServDescriptors."); else if (!strcasecmp(string, "") || !strcmp(string, "0")) /* no authority */; else From 5fc6967956610111d8cf24792ddf000bd83b4b86 Mon Sep 17 00:00:00 2001 From: Robert Ransom Date: Wed, 19 Jan 2011 13:38:40 -0800 Subject: [PATCH 33/37] Update documentation for PublishServerDescriptor --- doc/tor.1.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tor.1.in b/doc/tor.1.in index 1a72ebd09..390e6c4ba 100644 --- a/doc/tor.1.in +++ b/doc/tor.1.in @@ -907,7 +907,7 @@ This directive can be specified multiple times to bind to multiple addresses/ports. .LP .TP -\fBPublishServerDescriptor \fR\fB0\fR|\fB1\fR|\fBv1\fR|\fBv2\fR|\fBv3\fR|\fBbridge\fR|\fBhidserv\fR, ...\fP +\fBPublishServerDescriptor \fR\fB0\fR|\fB1\fR|\fBv1\fR|\fBv2\fR|\fBv3\fR|\fBbridge\fR, ...\fP This option is only considered if you have an ORPort defined. You can choose multiple arguments, separated by commas. From 20d493308a50d3acc10ba27ac78d4258045f8ede Mon Sep 17 00:00:00 2001 From: Robert Ransom Date: Wed, 9 Feb 2011 03:14:51 -0800 Subject: [PATCH 34/37] Update documentation for PublishServerDescriptor (0.2.2.x) --- doc/tor.1.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/tor.1.txt b/doc/tor.1.txt index 81f1ee626..c0957fc23 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -882,9 +882,9 @@ is non-zero): specified in ORPort. (Default: 0.0.0.0) This directive can be specified multiple times to bind to multiple addresses/ports. -**PublishServerDescriptor** **0**|**1**|**v1**|**v2**|**v3**|**bridge**|**hidserv**,**...**:: +**PublishServerDescriptor** **0**|**1**|**v1**|**v2**|**v3**|**bridge**,**...**:: This option specifies which descriptors Tor will publish when acting as - a relay or hidden service. You can + a relay. You can choose multiple arguments, separated by commas. + If this option is set to 0, Tor will not publish its @@ -892,7 +892,7 @@ is non-zero): out your server, or if you're using a Tor controller that handles directory publishing for you.) Otherwise, Tor will publish its descriptors of all type(s) specified. The default is "1", - which means "if running as a server or a hidden service, publish the + which means "if running as a server, publish the appropriate descriptors to the authorities". **ShutdownWaitLength** __NUM__:: From 6f07363e72b2ba7424ec64d3f294e2646a620705 Mon Sep 17 00:00:00 2001 From: Robert Ransom Date: Thu, 10 Feb 2011 11:06:05 -0800 Subject: [PATCH 35/37] Document what descriptors HSAuthoritativeDir serves Fixes bug 2089. --- doc/tor.1.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/tor.1.txt b/doc/tor.1.txt index 81f1ee626..fc1ce7323 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -1069,7 +1069,8 @@ if DirPort is non-zero): **HSAuthoritativeDir** **0**|**1**:: When this option is set in addition to **AuthoritativeDirectory**, Tor also - accepts and serves hidden service descriptors. (Default: 0) + accepts and serves v0 hidden service descriptors, + which are produced and used by Tor 0.2.1.x and older. (Default: 0) **HidServDirectoryV2** **0**|**1**:: When this option is set, Tor accepts and serves v2 hidden service From 50c259d763c7471588b4e1f242695d2652e4284b Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 24 Jan 2011 16:03:14 -0500 Subject: [PATCH 36/37] Make the DH parameter we use for TLS match the one from Apache's mod_ssl Our regular DH parameters that we use for circuit and rendezvous crypto are unchanged. This is yet another small step on the path of protocol fingerprinting resistance. (Backport from 0.2.2's 5ed73e3807d90dd0a3) --- changes/dhparam | 3 +++ src/common/crypto.c | 34 ++++++++++++++++++++++++++++------ src/common/crypto.h | 5 ++++- src/common/tortls.c | 2 +- src/or/onion.c | 4 ++-- src/or/rendclient.c | 2 +- src/or/rendservice.c | 2 +- src/or/test.c | 4 ++-- 8 files changed, 42 insertions(+), 14 deletions(-) create mode 100644 changes/dhparam diff --git a/changes/dhparam b/changes/dhparam new file mode 100644 index 000000000..cb31243ba --- /dev/null +++ b/changes/dhparam @@ -0,0 +1,3 @@ + o Minor features + - Adjust our TLS Diffie-Hellman parameters to match those used by + Apache's mod_ssl. diff --git a/src/common/crypto.c b/src/common/crypto.c index 29137a834..48c8dea08 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -1505,8 +1505,10 @@ crypto_hmac_sha1(char *hmac_out, /* DH */ -/** Shared P parameter for our DH key exchanged. */ +/** Shared P parameter for our circuit-crypto DH key exchanges. */ static BIGNUM *dh_param_p = NULL; +/** Shared P parameter for our TLS DH key exchanges. */ +static BIGNUM *dh_param_p_tls = NULL; /** Shared G parameter for our DH key exchanges. */ static BIGNUM *dh_param_g = NULL; @@ -1515,14 +1517,16 @@ static BIGNUM *dh_param_g = NULL; static void init_dh_param(void) { - BIGNUM *p, *g; + BIGNUM *p, *p2, *g; int r; - if (dh_param_p && dh_param_g) + if (dh_param_p && dh_param_g && dh_param_p_tls) return; p = BN_new(); + p2 = BN_new(); g = BN_new(); tor_assert(p); + tor_assert(p2); tor_assert(g); /* This is from rfc2409, section 6.2. It's a safe prime, and @@ -1536,10 +1540,20 @@ init_dh_param(void) "A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE6" "49286651ECE65381FFFFFFFFFFFFFFFF"); tor_assert(r); + /* This is the 1024-bit safe prime that Apache uses for its DH stuff; see + * modules/ssl/ssl_engine_dh.c */ + r = BN_hex2bn(&p2, + "D67DE440CBBBDC1936D693D34AFD0AD50C84D239A45F520BB88174CB98" + "BCE951849F912E639C72FB13B4B4D7177E16D55AC179BA420B2A29FE324A" + "467A635E81FF5901377BEDDCFD33168A461AAD3B72DAE8860078045B07A7" + "DBCA7874087D1510EA9FCC9DDD330507DD62DB88AEAA747DE0F4D6E2BD68" + "B0E7393E0F24218EB3"); + tor_assert(r); r = BN_set_word(g, 2); tor_assert(r); dh_param_p = p; + dh_param_p_tls = p2; dh_param_g = g; } @@ -1548,18 +1562,26 @@ init_dh_param(void) /** Allocate and return a new DH object for a key exchange. */ crypto_dh_env_t * -crypto_dh_new(void) +crypto_dh_new(int dh_type) { crypto_dh_env_t *res = tor_malloc_zero(sizeof(crypto_dh_env_t)); + tor_assert(dh_type == DH_TYPE_CIRCUIT || dh_type == DH_TYPE_TLS || + dh_type == DH_TYPE_REND); + if (!dh_param_p) init_dh_param(); if (!(res->dh = DH_new())) goto err; - if (!(res->dh->p = BN_dup(dh_param_p))) - goto err; + if (dh_type == DH_TYPE_TLS) { + if (!(res->dh->p = BN_dup(dh_param_p_tls))) + goto err; + } else { + if (!(res->dh->p = BN_dup(dh_param_p))) + goto err; + } if (!(res->dh->g = BN_dup(dh_param_g))) goto err; diff --git a/src/common/crypto.h b/src/common/crypto.h index d6f555537..576c03dc3 100644 --- a/src/common/crypto.h +++ b/src/common/crypto.h @@ -159,7 +159,10 @@ void crypto_hmac_sha1(char *hmac_out, const char *msg, size_t msg_len); /* Key negotiation */ -crypto_dh_env_t *crypto_dh_new(void); +#define DH_TYPE_CIRCUIT 1 +#define DH_TYPE_REND 2 +#define DH_TYPE_TLS 3 +crypto_dh_env_t *crypto_dh_new(int dh_type); int crypto_dh_get_bytes(crypto_dh_env_t *dh); int crypto_dh_generate_public(crypto_dh_env_t *dh); int crypto_dh_get_public(crypto_dh_env_t *dh, char *pubkey_out, diff --git a/src/common/tortls.c b/src/common/tortls.c index 1d597e295..7735618ea 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -684,7 +684,7 @@ tor_tls_context_new(crypto_pk_env_t *identity, unsigned int key_lifetime) if (!SSL_CTX_check_private_key(result->ctx)) goto error; { - crypto_dh_env_t *dh = crypto_dh_new(); + crypto_dh_env_t *dh = crypto_dh_new(DH_TYPE_TLS); SSL_CTX_set_tmp_dh(result->ctx, _crypto_dh_env_get_dh(dh)); crypto_dh_free(dh); } diff --git a/src/or/onion.c b/src/or/onion.c index bf72b4cab..e455a5263 100644 --- a/src/or/onion.c +++ b/src/or/onion.c @@ -173,7 +173,7 @@ onion_skin_create(crypto_pk_env_t *dest_router_key, *handshake_state_out = NULL; memset(onion_skin_out, 0, ONIONSKIN_CHALLENGE_LEN); - if (!(dh = crypto_dh_new())) + if (!(dh = crypto_dh_new(DH_TYPE_CIRCUIT))) goto err; dhbytes = crypto_dh_get_bytes(dh); @@ -247,7 +247,7 @@ onion_skin_server_handshake(const char *onion_skin, /*ONIONSKIN_CHALLENGE_LEN*/ goto err; } - dh = crypto_dh_new(); + dh = crypto_dh_new(DH_TYPE_CIRCUIT); if (crypto_dh_get_public(dh, handshake_reply_out, DH_KEY_LEN)) { log_info(LD_GENERAL, "crypto_dh_get_public failed."); goto err; diff --git a/src/or/rendclient.c b/src/or/rendclient.c index 95875465c..783a66150 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -130,7 +130,7 @@ rend_client_send_introduction(origin_circuit_t *introcirc, cpath = rendcirc->build_state->pending_final_cpath = tor_malloc_zero(sizeof(crypt_path_t)); cpath->magic = CRYPT_PATH_MAGIC; - if (!(cpath->dh_handshake_state = crypto_dh_new())) { + if (!(cpath->dh_handshake_state = crypto_dh_new(DH_TYPE_REND))) { log_warn(LD_BUG, "Internal error: couldn't allocate DH."); goto err; } diff --git a/src/or/rendservice.c b/src/or/rendservice.c index a650eda40..33e8d3e7e 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -1151,7 +1151,7 @@ rend_service_introduce(origin_circuit_t *circuit, const uint8_t *request, } /* Try DH handshake... */ - dh = crypto_dh_new(); + dh = crypto_dh_new(DH_TYPE_REND); if (!dh || crypto_dh_generate_public(dh)<0) { log_warn(LD_BUG,"Internal error: couldn't build DH state " "or generate public key."); diff --git a/src/or/test.c b/src/or/test.c index 904ca69db..b08f202c2 100644 --- a/src/or/test.c +++ b/src/or/test.c @@ -404,8 +404,8 @@ test_buffers(void) static void test_crypto_dh(void) { - crypto_dh_env_t *dh1 = crypto_dh_new(); - crypto_dh_env_t *dh2 = crypto_dh_new(); + crypto_dh_env_t *dh1 = crypto_dh_new(DH_TYPE_CIRCUIT); + crypto_dh_env_t *dh2 = crypto_dh_new(DH_TYPE_CIRCUIT); char p1[DH_BYTES]; char p2[DH_BYTES]; char s1[DH_BYTES]; From 28de4d83fd59bd656ebcda4442dc10482b8fb00a Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Thu, 10 Feb 2011 17:11:06 -0500 Subject: [PATCH 37/37] fix the other half of bug 1074 --- changes/bug1074-part2 | 6 ++++++ src/or/directory.c | 7 ++++--- 2 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 changes/bug1074-part2 diff --git a/changes/bug1074-part2 b/changes/bug1074-part2 new file mode 100644 index 000000000..6644f496d --- /dev/null +++ b/changes/bug1074-part2 @@ -0,0 +1,6 @@ + o Major bugfixes: + - Stop sending a CLOCK_SKEW controller status event whenever + we fetch directory information from a relay that has a wrong clock. + Instead, only inform the controller when it's a trusted authority + that claims our clock is wrong. Bugfix on tor-0.1.2.6-alpha; + fixes the other half of bug 1074. diff --git a/src/or/directory.c b/src/or/directory.c index 09ebccdc4..7150fce40 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -1468,9 +1468,10 @@ connection_dir_client_reached_eof(dir_connection_t *conn) delta>0 ? "ahead" : "behind", dbuf, delta>0 ? "behind" : "ahead"); skewed = 1; /* don't check the recommended-versions line */ - control_event_general_status(trusted ? LOG_WARN : LOG_NOTICE, - "CLOCK_SKEW SKEW=%ld SOURCE=DIRSERV:%s:%d", - delta, conn->_base.address, conn->_base.port); + if (trusted) + control_event_general_status(LOG_WARN, + "CLOCK_SKEW SKEW=%ld SOURCE=DIRSERV:%s:%d", + delta, conn->_base.address, conn->_base.port); } else { log_debug(LD_HTTP, "Time on received directory is within tolerance; " "we are %ld seconds skewed. (That's okay.)", delta);