diff --git a/cyences_app_for_splunk/README/cs_configurations.conf.spec b/cyences_app_for_splunk/README/cs_configurations.conf.spec index 07a215d1..f17afbf9 100644 --- a/cyences_app_for_splunk/README/cs_configurations.conf.spec +++ b/cyences_app_for_splunk/README/cs_configurations.conf.spec @@ -1,14 +1,3 @@ -[honeydb] -# HoneyDB information to update Blocked IP lookup dynamically -api_id = Honey DB API ID -api_key = Honey DB API Key - -[maliciousip] -# MaliciousIP Collector Configuration, -api_url = URL where the API is hosted to collect the data -auth_token = API auth token -cust_id = UUID generated automatically while Configuration - [product_config] enabled_products = comma separated list of enabled products disabled_products = comma separated list of disabled products diff --git a/cyences_app_for_splunk/bin/honeydb_lookup_gen.py b/cyences_app_for_splunk/bin/honeydb_lookup_gen.py deleted file mode 100644 index 40fc7029..00000000 --- a/cyences_app_for_splunk/bin/honeydb_lookup_gen.py +++ /dev/null @@ -1,117 +0,0 @@ -import os -import sys -import csv -import json -import requests - -from splunklib.searchcommands import dispatch, GeneratingCommand, Configuration, Option, validators -from splunk import rest -import cs_utils - -import logging -import logger_manager -logger = logger_manager.setup_logging('honeydb_lookup_gen', logging.INFO) - - -HONEYDB_URL = 'https://honeydb.io/api/bad-hosts' -HEADERS = ['ip','count','last_seen','blocked'] -LOOKUP_NAME = 'ip_blocked_list.csv' -CONF_FILE = 'cs_configurations' - - - -@Configuration() -class UpdateHoneyDBLookup(GeneratingCommand): - - update_lookup = Option(name="update_lookup", require=False, validate=validators.Boolean(), default=True) - generate_events = Option(name="generate_events", require=False, validate=validators.Boolean(), default=False) - - def get_api_info(self): - logger.info("Getting HoneyDB API Info.") - _, serverContent = rest.simpleRequest("/servicesNS/nobody/{}/configs/conf-{}?output_mode=json".format(cs_utils.APP_NAME, CONF_FILE), sessionKey=self.session_key) - data = json.loads(serverContent)['entry'] - api_id = '' - api_key = '' - for i in data: - if i['name'] == 'honeydb': - api_id = i['content']['api_id'] - api_key = cs_utils.CredentialManager(self.session_key).get_credential(api_id) - break - logger.info("Got HoneyDB API info.") - return api_id, api_key - - def request_bad_hosts(self, api_id, api_key): - ''' - # get list from - curl --header "X-HoneyDb-ApiId: " \ - --header "X-HoneyDb-ApiKey: " \ - https://honeydb.io/api/bad-hosts - ''' - logger.info("Requesting bad hosts list from honeydb.") - response = requests.get(HONEYDB_URL, headers={"X-HoneyDb-ApiId": api_id, "X-HoneyDb-ApiKey": api_key}, timeout=cs_utils.CYENCES_NETWORK_CALL_TIMEOUT) - logger.info("Got response.") - # The response.content will be in bytes it needs to be decoded - data = response.content.decode("utf-8") - # Convert the data to csv format - data = json.loads(data) - return data - - - def convert_to_csv_format(self, data): - logger.info("Converting data to csv lookup format.") - # remote_host/ip, count, last_seen, blocked - return [['{}'.format(i['remote_host']), '{}'.format(i['count']), '{}'.format(i['last_seen']), '1'] for i in data] - - - def update_lookup_file(self, lookup_file_path, data): - logger.info("Updating lookup file.") - with open(lookup_file_path, 'w') as f: - csv_writer = csv.writer(f) - csv_writer.writerow(HEADERS) - csv_writer.writerows(data) - logger.info("Lookup: {}, has been updated with {} entries.".format(lookup_file_path, len(data))) - - - def generate(self): - try: - self.session_key = cs_utils.GetSessionKey(logger).from_custom_command(self) - # Read API ID and API Key - api_id, api_key = self.get_api_info() - - if not api_id or not api_key: - logger.error("HoneyDB API ID or API Key not found in the cs_configurations.conf file.") - yield {"Error Message": "HoneyDB API ID or API Key not found in the cs_configurations.conf file."} - return - - # request for data - if self.generate_events or self.update_lookup: - data = self.request_bad_hosts(api_id, api_key) - if not isinstance(data, list): - # possibly it's error from honeydb - logger.error("Response from honeydb: {}".format(data)) - yield {"Error": "Response from honeydb: {}".format(data)} - return - - if self.update_lookup: - # Convert data to csv format to write in the lookup - lookup_data = self.convert_to_csv_format(data) - - # Update lookup - lookup_path = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), - os.path.join('lookups', LOOKUP_NAME)) - self.update_lookup_file(lookup_path, lookup_data) - - # Generate the events - if self.generate_events: - logger.info("Generate events.") - for i in data: - yield i - else: - logger.warning("No option were selected. Select between: update_lookup and generate_events") - yield {"warning_message": "No option were selected. Select between: update_lookup and generate_events"} - except Exception as e: - logger.exception("Error in honeydb_lookup_gen command: {}".format(e)) - raise e - - -dispatch(UpdateHoneyDBLookup, sys.argv, sys.stdin, sys.stdout, __name__) diff --git a/cyences_app_for_splunk/bin/maliciousip_lookup_gen.py b/cyences_app_for_splunk/bin/maliciousip_lookup_gen.py deleted file mode 100644 index f3c31e8c..00000000 --- a/cyences_app_for_splunk/bin/maliciousip_lookup_gen.py +++ /dev/null @@ -1,98 +0,0 @@ -import os -import sys -import csv -import requests - -from splunklib.searchcommands import dispatch, GeneratingCommand, Configuration, Option, validators -import cs_utils - -import logging -import logger_manager -logger = logger_manager.setup_logging('malicious_ip_lookup_gen', logging.INFO) - - -HEADERS = ['description','ip','ip_location','last_seen'] -LOOKUP_NAME = 'cs_malicious_ip_list.csv' - - - -@Configuration() -class UpdateMaliciousIPLookup(GeneratingCommand): - - update_lookup = Option(name="update_lookup", require=False, validate=validators.Boolean(), default=True) - generate_events = Option(name="generate_events", require=False, validate=validators.Boolean(), default=False) - - - def request_malicious_ips(self, api_config): - logger.info("Getting malicious Ip list from Cyences API.") - auth_header = { - "Authorization": "Bearer {}".format(api_config['auth_token']) - } - response = requests.get("{}{}".format(api_config['api_url'].rstrip('/'), '/api/v1/ip'), headers=auth_header, timeout=cs_utils.CYENCES_NETWORK_CALL_TIMEOUT) - logger.info("Got malicious Ip list response.") - return response.json()['data'] - - - def convert_to_csv_format(self, data): - logger.info("Converting data to csv lookup format.") - return [ - [ - '{}'.format(i['description']), - '{}'.format(i['ip']), - '{}'.format(i['ip_location']), - '{}'.format(i['last_seen']) - ] - for i in data - ] - - - def update_lookup_file(self, lookup_file_path, data): - logger.info("Updating lookup file.") - with open(lookup_file_path, 'w') as f: - csv_writer = csv.writer(f) - csv_writer.writerow(HEADERS) - csv_writer.writerows(data) - logger.info("Lookup: {}, has been updated with {} entries.".format(lookup_file_path, len(data))) - - - def generate(self): - try: - session_key = cs_utils.GetSessionKey(logger).from_custom_command(self) - - # Read API Info - api_config = cs_utils.get_cyences_api_key(session_key, logger) - - if not api_config['api_url'] or not api_config['auth_token']: - logger.error("MaliciousIP Collector Configuration not found in the cs_configurations.conf file.") - yield {"Error Message": "MaliciousIP Collector Configuration not found in the cs_configurations.conf file."} - return - - cs_utils.check_url_scheme(api_config['api_url'], logger) - - # request for data - if self.generate_events or self.update_lookup: - data = self.request_malicious_ips(api_config) - - if self.update_lookup: - # Convert data to csv format to write in the lookup - lookup_data = self.convert_to_csv_format(data) - - # Update lookup - lookup_path = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), - os.path.join('lookups', LOOKUP_NAME)) - self.update_lookup_file(lookup_path, lookup_data) - - # Generate the events - if self.generate_events: - logger.info("Generate events.") - for i in data: - yield i - else: - logger.warning("No option were selected. Select between: update_lookup and generate_events") - yield {"warning_message": "No option were selected. Select between: update_lookup and generate_events"} - except Exception as e: - logger.exception("Error in maliciousip_lookup_gen command: {}".format(e)) - raise e - - -dispatch(UpdateMaliciousIPLookup, sys.argv, sys.stdin, sys.stdout, __name__) diff --git a/cyences_app_for_splunk/bin/rh_cyences_product_conf.py b/cyences_app_for_splunk/bin/rh_cyences_product_conf.py index 6d71080e..4c2a36ee 100644 --- a/cyences_app_for_splunk/bin/rh_cyences_product_conf.py +++ b/cyences_app_for_splunk/bin/rh_cyences_product_conf.py @@ -15,7 +15,6 @@ CONF_FILE = 'cs_configurations' -HONEYDB_STANZA = 'honeydb' APP_CONFIG_STANZA = 'product_config' PRODUCTS_KEY = 'products' diff --git a/cyences_app_for_splunk/bin/rh_honeydb_conf.py b/cyences_app_for_splunk/bin/rh_honeydb_conf.py deleted file mode 100644 index 15447aa5..00000000 --- a/cyences_app_for_splunk/bin/rh_honeydb_conf.py +++ /dev/null @@ -1,68 +0,0 @@ -import json -import splunk.admin as admin -from splunk import rest -import cs_utils - -CONF_FILE = 'cs_configurations' -HONEYDB_STANZA = 'honeydb' - - -class HoneyDBConfRestcall(admin.MConfigHandler): - ''' - Set up supported arguments - ''' - - # Static variables - def setup(self): - """ - Sets the input arguments - :return: - """ - - # Set up the valid parameters - for arg in ['data']: - self.supportedArgs.addOptArg(arg) - - - def handleList(self, conf_info): - # Get HoneyDB API key - try: - _, serverContent = rest.simpleRequest("/servicesNS/nobody/{}/configs/conf-{}?output_mode=json".format(cs_utils.APP_NAME, CONF_FILE), sessionKey=self.getSessionKey()) - data = json.loads(serverContent)['entry'] - api_id = '' - api_key = '******' - for i in data: - if i['name'] == 'honeydb': - api_id = i['content']['api_id'] - break - conf_info['action']['api_id'] = api_id - conf_info['action']['api_key'] = api_key - except Exception as e: - conf_info['action']['error'] = 'Unable to fetch the API key. Might be no existing API key present. {}'.format(e) - - - def handleEdit(self, conf_info): - # Update the HoneyDB configuration - try: - data = json.loads(self.callerArgs['data'][0]) - api_id = str(data['api_id']) - api_key = str(data['api_key']) - except Exception as e: - conf_info['action']['error'] = 'Data is not in proper format. {} - {}'.format(e, self.callerArgs["data"]) - return - - try: - # Store API ID - rest.simpleRequest("/servicesNS/nobody/{}/configs/conf-{}/{}?output_mode=json".format(cs_utils.APP_NAME, CONF_FILE, HONEYDB_STANZA), postargs={'api_id': api_id}, method='POST', sessionKey=self.getSessionKey()) - - # Store API Key - cs_utils.CredentialManager(self.getSessionKey()).store_credential(api_id, api_key) - - conf_info['action']['success'] = "API ID and API Key is stored successfully." - - except Exception as e: - conf_info['action']['error'] = 'No success or error message returned. {}'.format(e) - - -if __name__ == "__main__": - admin.init(HoneyDBConfRestcall, admin.CONTEXT_APP_AND_USER) diff --git a/cyences_app_for_splunk/bin/upload_malicious_ip.py b/cyences_app_for_splunk/bin/upload_malicious_ip.py deleted file mode 100644 index 5f9f9a8d..00000000 --- a/cyences_app_for_splunk/bin/upload_malicious_ip.py +++ /dev/null @@ -1,77 +0,0 @@ -#!/usr/bin/env python - -import sys -import requests - - -from splunklib.searchcommands import dispatch, StreamingCommand, Configuration -import cs_utils - -import logging -import logger_manager -logger = logger_manager.setup_logging('upload_malicious_ip', logging.INFO) - - - -@Configuration(distributed=False) -class MaliciousIPUploaderCommand(StreamingCommand): - - def stream(self, records): - session_key = cs_utils.GetSessionKey(logger).from_custom_command(self) - try: - api_payload = [] - api_config = cs_utils.get_cyences_api_key(session_key, logger) - - if not api_config['api_url'] or not api_config['auth_token']: - logger.error("MaliciousIP Collector Configuration not found in the cs_configurations.conf file.") - yield {"Error Message": "MaliciousIP Collector Configuration not found in the cs_configurations.conf file."} - return - - cs_utils.check_url_scheme(api_config['api_url'], logger) - - for record in records: - api_payload.append( - { - 'ip': record['ip'], - 'ip_location': ','.join(record['ip_location']) if type(record['ip_location']) == list else str(record['ip_location']), - 'device_name': ','.join(record['dvc_name']) if type(record['dvc_name']) == list else str(record['dvc_name']), - 'device': ','.join(record['dvc']) if type(record['dvc']) == list else str(record['dvc']), - 'no_of_ports_used': int(record['no_of_ports_used']), - 'no_of_victims': int(record['no_of_victims']), - 'customer_id': api_config['cust_id'], - 'category': record['ip_category'], - } - ) - endpoint_url = "{}/api/v1/ip".format(api_config['api_url'].rstrip('/')) - payload = {'data': api_payload} - auth_header = { - "Authorization": "Bearer {}".format(api_config['auth_token']) - } - resp = None - try: - logger.info("Uploading malicious Ip list to Cyences API.") - resp = requests.post(endpoint_url, json=payload, headers=auth_header, timeout=cs_utils.CYENCES_NETWORK_CALL_TIMEOUT) - logger.info("Cyences API request completed.") - resp.raise_for_status() - yield {'success': True, 'message': "Successfully Uploaded Ips to API."} - logger.info("Response received {}".format(resp.json())) - except Exception as e: - logger.exception("Error while requesting upload_malicious_ip: {}".format(e)) - if resp: - yield { - 'success': False, - 'error_message': "Failed to upload Ips to API, Reason {}".format(repr(e)), - 'response_body': resp.json() - } - else: - yield { - 'success': False, - 'error_message': "Failed to upload Ips to API, Reason {}".format(repr(e)), - 'response': "None" - } - except Exception as e: - logger.exception("Error in upload_malicious_ip command: {}".format(e)) - raise e - - -dispatch(MaliciousIPUploaderCommand, sys.argv, sys.stdin, sys.stdout, __name__) \ No newline at end of file diff --git a/cyences_app_for_splunk/default/commands.conf b/cyences_app_for_splunk/default/commands.conf index c0a7559c..1aebae54 100644 --- a/cyences_app_for_splunk/default/commands.conf +++ b/cyences_app_for_splunk/default/commands.conf @@ -1,24 +1,8 @@ -[honeydblookupgen] -python.version = python3 -filename = honeydb_lookup_gen.py -chunked = true - [updatemacrodefinition] python.version = python3 filename = update_macro_definition.py chunked = true -[maliciousipupload] -python.version = python3 -filename = upload_malicious_ip.py -is_risky = true -chunked = true - -[maliciousiplookupgen] -python.version = python3 -filename = maliciousip_lookup_gen.py -chunked = true - [cyencesdevicemanager] python.version = python3 filename = cyences_device_manager.py diff --git a/cyences_app_for_splunk/default/cs_configurations.conf b/cyences_app_for_splunk/default/cs_configurations.conf index d6b84c1f..43799dfa 100644 --- a/cyences_app_for_splunk/default/cs_configurations.conf +++ b/cyences_app_for_splunk/default/cs_configurations.conf @@ -1,13 +1,3 @@ -[honeydb] -# HoneyDB information to update Blocked IP lookup dynamically -# See cs_configuration.conf.spec file for information -# Add API information into this file in the local folder - -[maliciousip] -# MaliciousIP Collector configuration -# See cs_configuration.conf.spec file for information -# Add API information into this file in the local folder - [product_config] enabled_products = disabled_products = \ No newline at end of file diff --git a/cyences_app_for_splunk/default/data/ui/nav/default.xml b/cyences_app_for_splunk/default/data/ui/nav/default.xml index 12da7857..b5152c02 100644 --- a/cyences_app_for_splunk/default/data/ui/nav/default.xml +++ b/cyences_app_for_splunk/default/data/ui/nav/default.xml @@ -45,7 +45,6 @@ - diff --git a/cyences_app_for_splunk/default/data/ui/views/cs_asset_intelligence.xml b/cyences_app_for_splunk/default/data/ui/views/cs_asset_intelligence.xml index 502bb660..0661f691 100644 --- a/cyences_app_for_splunk/default/data/ui/views/cs_asset_intelligence.xml +++ b/cyences_app_for_splunk/default/data/ui/views/cs_asset_intelligence.xml @@ -292,7 +292,8 @@ | append [| tstats `cs_summariesonly_network_traffic` count as outbound from datamodel=Network_Traffic where All_Traffic.src_ip IN $tkn_filter_ip_only$ by All_Traffic.dest_ip | `cs_drop_dm_object_name(All_Traffic)` | iplocation dest_ip] | eval ip=coalesce(src_ip, dest_ip) | `cs_network_generate_location_for_internal_network(ip)` -| lookup `cs_palo_search_blocked_ip_lookup_name` ip as src_ip OUTPUT blocked + + | eval inbound_mal = if(isnotnull(blocked), inbound, null()), inbound = if(isnull(blocked), inbound, null()) | eval outbound_mal = if(isnotnull(blocked), outbound, null()), outbound = if(isnull(blocked), outbound, null()) | geostats sum(inbound) as inbound_traffic, sum(outbound) as outbound_traffic, sum(inbound_mal) as inbound_malicious_traffic, sum(outbound_mal) as outbound_malicious_traffic diff --git a/cyences_app_for_splunk/default/data/ui/views/cs_malicious_ip_list.xml b/cyences_app_for_splunk/default/data/ui/views/cs_malicious_ip_list.xml deleted file mode 100644 index 90690af4..00000000 --- a/cyences_app_for_splunk/default/data/ui/views/cs_malicious_ip_list.xml +++ /dev/null @@ -1,111 +0,0 @@ -
- - - | inputlookup cs_malicious_ip_list.csv -| addinfo | where (info_min_time="-Infinity" OR last_seen>=info_min_time) AND (info_max_time="+Infinity" OR last_seen<=info_max_time) -| `cs_human_readable_time_format(last_seen)` -| table ip, last_seen, ip_location, description | fillnull value="-" description,ip_location - $tkn_last_seen.earliest$ - $tkn_last_seen.latest$ - -
- - - - -7d@h - now - - -
- - - -

Globally Detected Malicious IPs

-

The Malicious IP List is generated by the "Palo Alto Firewall – Malicious IP List Gen" report and this report relies on the following reports to be enabled

-

-

    -
  • Dynamically Update Blocked IPs with HoneyDB
  • -
  • Palo Alto Firewall - Network Compromise - Inbound Traffic from Blocked IPs
  • -
  • Palo Alto Firewall - Network Compromise - Outbound Traffic to Blocked IPs
  • -
  • Palo Alto Firewall - Network Compromise - DDoS Attack Prevented
  • -
-

-

The Malicious IP List contains IP addresses discovered in the last seven days by default. The time range can be changed by updating the following macro definition (Settings > Configuration): cs_palo_malicious_ip_list_filter_old_results.

-

- Data Collection: The pan:traffic sourcetype for Palo Alto is being used to collect data via the Palo Alto Networks Add-on for Splunk.

- - - - | rest /servicesNS/-/cyences_app_for_splunk/saved/searches count=0 splunk_server=local | search "eai:acl.app"="cyences_app_for_splunk" title IN ("Dynamically Update Blocked IPs with HoneyDB", "Palo Alto Firewall - Network Compromise - Inbound Traffic from Blocked IPs", "Palo Alto Firewall - Network Compromise - Outbound Traffic to Blocked IPs", "Palo Alto Firewall - Network Compromise - DDoS Attack Prevented", "Palo Alto Firewall - Malicious IP List Gen") | table title, disabled | rename title as label | eval data=if(disabled=1, "Report is disabled", "Report is enabled") -| eval sortnumber=case(label="Dynamically Update Blocked IPs with HoneyDB", 1, label="Palo Alto Firewall - Network Compromise - Inbound Traffic from Blocked IPs", 2, label="Palo Alto Firewall - Network Compromise - Outbound Traffic to Blocked IPs", 3, label="Palo Alto Firewall - Network Compromise - DDoS Attack Prevented", 4, label="Palo Alto Firewall - Malicious IP List Gen", 5) -| sort sortnumber | rename data as report_status - | table label, report_status - 0 - - - - - - {"Report is enabled": #008000, "Report is disabled": #B83C08} - -
-
-
- - - Malicious IPs on Map - - - | eval description=case(description="Incoming traffic into multiple firewalls from this blocked IP", "Incoming Traffic from Blocked IP", description="Outgoing traffic through multiple firewalls to this blocked IP", "Outgoing Traffic to Blocked IP", description="Involved in DDoS Attack", "DDoS", 1==1, "Other") -| iplocation ip | geostats globallimit=0 count by description - - - - - search?q=%7C%20inputlookup%20cs_malicious_ip_list.csv%0A%7C%20addinfo%20%7C%20where%20(info_min_time%3D%22-Infinity%22%20OR%20last_seen%3E%3Dinfo_min_time)%20AND%20(info_max_time%3D%22%2BInfinity%22%20OR%20last_seen%3C%3Dinfo_max_time)%0A%7C%20eval%20last_seen%3Dstrftime(last_seen%2C%20%22%25F%20%25T%22)%20%0A%7C%20table%20ip%2C%20last_seen%2C%20ip_location%2C%20description%20%7C%20%20eval%20description%3Dcase(description%3D%22Incoming%20traffic%20into%20multiple%20firewalls%20from%20this%20blocked%20IP%22%2C%20%22Incoming%20Traffic%20from%20Blocked%20IP%22%2C%20description%3D%22Outgoing%20traffic%20through%20multiple%20firewalls%20to%20this%20blocked%20IP%22%2C%20%22Outgoing%20Traffic%20to%20Blocked%20IP%22%2C%20description%3D%22Involved%20in%20DDoS%20Attack%22%2C%20%22DDoS%22%2C%201%3D%3D1%2C%20%22Other%22)%0A%7C%20iplocation%20ip%0A%7C%20search%20lat%3E%3D$click.bounds.south$%20lat%3C$click.bounds.north$%20lon%3E%3D$click.bounds.west$%20lon%3C$click.bounds.east$&earliest=$tkn_last_seen.earliest$&latest=$tkn_last_seen.latest$ - - - - - - - Globally Detected Malicious IPs - - - * - * - - - - - | search ip=$tkn_ip|s$ description=$tkn_description|s$ |stats count by ip_location - - All - * - * - ip_location - ip_location - - - - - | search ip=$tkn_ip|s$ ip_location=$tkn_location|s$ |stats count by description - - All - * - * - description - description - - - - | search ip=$tkn_ip|s$ ip_location=$tkn_location|s$ description=$tkn_description|s$ - - - - - -
-
-
-
diff --git a/cyences_app_for_splunk/default/data/ui/views/cs_overview.xml b/cyences_app_for_splunk/default/data/ui/views/cs_overview.xml index 95801308..a37e71fc 100644 --- a/cyences_app_for_splunk/default/data/ui/views/cs_overview.xml +++ b/cyences_app_for_splunk/default/data/ui/views/cs_overview.xml @@ -619,25 +619,4 @@ - - - Globally Detected Malicious IPs - - - | inputlookup cs_malicious_ip_list.csv -| `cs_human_readable_time_format(last_seen)` -| table ip, last_seen, ip_location, description - 0 - - - - -
- -
-

For more information about the Malicious IP List, please click here.

-
- -
-
\ No newline at end of file diff --git a/cyences_app_for_splunk/default/data/ui/views/cs_paloalto_firewall_reports.xml b/cyences_app_for_splunk/default/data/ui/views/cs_paloalto_firewall_reports.xml index aec383b9..549fc7fd 100644 --- a/cyences_app_for_splunk/default/data/ui/views/cs_paloalto_firewall_reports.xml +++ b/cyences_app_for_splunk/default/data/ui/views/cs_paloalto_firewall_reports.xml @@ -20,8 +20,7 @@ `cs_palo` sourcetype="pan:threat" | head 1 | stats count | eval data=if(count>0, "Data Present", "Data Not Present"), label="`cs_palo` sourcetype=\"pan:threat\"" | append [| search `cs_palo` sourcetype="pan:traffic" | head 1 | stats count | eval data=if(count>0, "Data Present", "Data Not Present"), label="`cs_palo` sourcetype=\"pan:traffic\""] -| append [| rest /servicesNS/-/cyences_app_for_splunk/saved/searches count=0 splunk_server=local | search "eai:acl.app"="cyences_app_for_splunk" title IN ("Palo Alto Firewall - Network Compromise - DDoS Attack Prevented", "Palo Alto Firewall - Network Compromise - Inbound Traffic from Blocked IPs", "Palo Alto Firewall - Network Compromise - Outbound Traffic to Blocked IPs") | table title, disabled | rename title as label | eval data=if(disabled=1, "Report is disabled", "Report is enabled")] - | table label, data +| table label, data $timeRange.earliest$ $timeRange.latest$ @@ -52,31 +51,6 @@ - - - DDoS Attack Prevented by Palo Alto Firewall - - - | savedsearch "Palo Alto Firewall - Network Compromise - DDoS Attack Prevented" -| `cs_human_readable_time_format(last_seen)` -| fields - dc_src_port - $timeRange.earliest$ - $timeRange.latest$ - 1 - - - - - -
- -

- Description: The events listed are DDoS attacks prevented by Palo Alto firewalls. The query searches for log_subtype=packet. An accelerated report named "Palo Alto Firewall – Network Compromise – DDoS Attack Prevented" has to be enabled in order for this dashboard panel to function.

-

- Data Collection: Threat data is received from Palo Alto Networks firewalls via the Palo Alto Networks Add-on for Splunk.

- -
-
Palo Alto Firewall Login Failures @@ -206,54 +180,4 @@ - - - Inbound Traffic from Blocked IPs - - - | savedsearch "Palo Alto Firewall - Network Compromise - Inbound Traffic from Blocked IPs" -| `cs_human_readable_time_format(last_seen)` -| fields - dc_dvc_name, dc_src_port, packets_in, packets_out, dc_dest_location, app, http_category, firewall_rule, blocked - $timeRange.earliest$ - $timeRange.latest$ - - - - - - search?q=%60cs_palo%60%20sourcetype=%22pan:traffic%22%20action=%22allowed%22%20src_ip=$row.src_ip$%20%7C%20stats%20count%2C%20latest(_time)%20as%20last_seen%2C%20dc(src_port)%20as%20dc_src_port%2C%20values(src_location)%20as%20src_location%2C%20sum(packets_in)%20as%20packets_in%2C%20sum(packets_out)%20as%20packets_out%2C%20dc(dest_ip)%20as%20dc_dest_ip%2C%20values(dest_port)%20as%20dest_port%2C%20dc(dest_location)%20as%20dc_dest_location%2C%20values(app)%20as%20app%2C%20values(http_category)%20as%20http_category%2C%20values(rule)%20as%20firewall_rule%20by%20src_ip%2C%20dvc%2C%20dvc_name%20%7C%20sort%20-count%20%7C%20eval%20last_seen%3Dstrftime(last_seen%2C%20%22%25F%20%25T%22)%20%7C%20%60cs_palo_blocked_ip_inbound_filter%60&earliest=$timeRange.earliest$&latest=$timeRange.latest$ - -
- -

- Description: Inbound traffic coming from blocked IP addresses. The ip_blocked_list lookup (cs_palo_search_blocked_ip_lookup_name) is used to identify the blocked IPs. An accelerated report named "Palo Alto Firewall – Network Compromise – Inbound Traffic from Blocked IPs" has to be enabled in order for this dashboard panel to function.

-

- Data Collection: The pan:traffic sourcetype for Palo Alto is used to collect data via the Palo Alto Networks Add-on for Splunk.

- -
- - Outbound Traffic to Blocked IPs - - - | savedsearch "Palo Alto Firewall - Network Compromise - Outbound Traffic to Blocked IPs" -| `cs_human_readable_time_format(last_seen)` -| fields - dc_dvc_name, dc_dest_port, packets_in, packets_out, dc_src_location, app, http_category, firewall_rule, blocked - $timeRange.earliest$ - $timeRange.latest$ - - - - - - search?q=%60cs_palo%60%20sourcetype=%22pan:traffic%22%20action=%22allowed%22%20dest_ip=$row.dest_ip$%20%7C%20stats%20count%2C%20latest(_time)%20as%20last_seen%2C%20dc(dest_port)%20as%20dc_dest_port%2C%20values(dest_location)%20as%20dest_location%2C%20sum(packets_in)%20as%20packets_in%2C%20sum(packets_out)%20as%20packets_out%2C%20dc(src_ip)%20as%20dc_src_ip%2C%20dc(src_port)%20as%20dc_src_port%2C%20dc(src_location)%20as%20dc_src_location%2C%20values(app)%20as%20app%2C%20values(http_category)%20as%20http_category%2C%20values(rule)%20as%20firewall_rule%20by%20dest_ip%2C%20dvc%2C%20dvc_name%20%7C%20sort%20-count%20%7C%20eval%20last_seen%3Dstrftime(last_seen%2C%20%22%25F%20%25T%22)%20%7C%20%60cs_palo_blocked_ip_outbound_filter%60&earliest=$timeRange.earliest$&latest=$timeRange.latest$ - -
- -

- Description: Outbound traffic going to blocked IP addresses. The ip_blocked_list lookup (‘cs_palo_search_blocked_ip_lookup_name’) is used to identify the blocked IPs. An accelerated report named "Palo Alto Firewall – Network Compromise – Outbound Traffic to Blocked IPs" has to be enabled in order for this dashboard panel to function.

-

- Data Collection: The pan:traffic sourcetype for Palo Alto is used to collect data via the Palo Alto Networks Add-on for Splunk.

- -
-
diff --git a/cyences_app_for_splunk/default/macros.conf b/cyences_app_for_splunk/default/macros.conf index 46c45d9b..1c45ff96 100644 --- a/cyences_app_for_splunk/default/macros.conf +++ b/cyences_app_for_splunk/default/macros.conf @@ -91,12 +91,6 @@ args = ip_field definition = eval is_source_internal = if(cidrmatch("10.0.0.0/8",$ip_field$) OR cidrmatch("172.16.0.0/12",$ip_field$) OR cidrmatch("192.168.0.0/16",$ip_field$), "Yes", "No") iseval = 0 -[cs_palo_search_blocked_ip(1)] -args = field_name -definition = lookup `cs_palo_search_blocked_ip_lookup_name` ip as $field_name$ OUTPUT blocked | search blocked=1 | fields - blocked -iseval = 0 - - [cs_palo_malicious_ip_list_filter_previous_results(1)] args = filter_from definition = where last_seen>relative_time(now(), "$filter_from$") @@ -1088,30 +1082,10 @@ iseval = 0 definition = search * iseval = 0 -[cs_palo_ddos_prevented_filter] -definition = search * -iseval = 0 - [cs_palo_firewall_login_failure_filter] definition = search * iseval = 0 -[cs_palo_search_blocked_ip_lookup_name] -definition = ip_blocked_list -# Use ip_range_blocked_list lookup if you have blocked ip list with IP CIDR (range) in the lookup -# Lookups must have two fields ip and blocked -# ip - Blocked IP or IP range (CIDR) -# blocked - 1 (all the list is blocked IPs so, keep value as 1) -iseval = 0 - -[cs_palo_blocked_ip_inbound_filter] -definition = search * -iseval = 0 - -[cs_palo_blocked_ip_outbound_filter] -definition = search * -iseval = 0 - [cs_palo_malicious_ip_list_filter_old_results] definition = `cs_palo_malicious_ip_list_filter_previous_results("-7d@h")` # Change the value to keep values in the malicious IP list for longer or shorter time period, the default value is -7d@h (last 7 days) diff --git a/cyences_app_for_splunk/default/restmap.conf b/cyences_app_for_splunk/default/restmap.conf index 858b2c4e..30da2877 100644 --- a/cyences_app_for_splunk/default/restmap.conf +++ b/cyences_app_for_splunk/default/restmap.conf @@ -1,18 +1,6 @@ [admin:Configuration] match = / -members = HoneyDBConfiguration,MaliciousIPConfiguration,CyencesProductConfiguration - -[admin_external:HoneyDBConfiguration] -handlertype = python -handlerfile = rh_honeydb_conf.py -handleractions = list,edit -python.version = python3 - -[admin_external:MaliciousIPConfiguration] -handlertype = python -handlerfile = rh_maliciousip_conf.py -handleractions = list,edit -python.version = python3 +members = CyencesProductConfiguration [admin_external:CyencesProductConfiguration] handlertype = python diff --git a/cyences_app_for_splunk/default/savedsearches.conf b/cyences_app_for_splunk/default/savedsearches.conf index 4437052f..1729c800 100644 --- a/cyences_app_for_splunk/default/savedsearches.conf +++ b/cyences_app_for_splunk/default/savedsearches.conf @@ -3622,54 +3622,6 @@ action.cyences_notable_event_action.products = Palo Alto action.cyences_notable_event_action.teams = SOC, Compliance -# Reports -[Palo Alto Firewall - Network Compromise - DDoS Attack Prevented] -disabled = 1 -action.email.useNSSubject = 1 -alert.track = 0 -auto_summarize = 1 -auto_summarize.dispatch.earliest_time = -1mon@d -description = Palo Alto Firewall prevented DDoS attack events. It searches for log_subtype=packet.\ -\ -Data Collection - Palo Alto Networks firewalls threat data. (Palo Alto Networks Add-on for Splunk) -search = `cs_palo` sourcetype="pan:threat" log_subtype=packet \ -| stats count, latest(_time) as last_seen, dc(src_port) as dc_src_port, dc(dest_ip) as dc_dest_ip, values(signature) as signature, values(dvc) as dvc, values(dvc_name) as dvc_name, values(src_location) as src_location, dc(dest) as dc_dest, values(action) as action by src | sort - count \ -| `cs_palo_ddos_prevented_filter` -action.cyences_notable_event_action.products = Palo Alto - - -[Palo Alto Firewall - Network Compromise - Inbound Traffic from Blocked IPs] -disabled = 1 -action.email.useNSSubject = 1 -alert.track = 0 -auto_summarize = 1 -auto_summarize.dispatch.earliest_time = -1mon@d -description = Network traffic coming from blocked IPs. The ip_blocked_list lookup is being used to identify the blocked IPs.\ -\ -Data Collection: Palo Alto pan:traffic sourcetype data. (Palo Alto Networks Add-on for Splunk) -search = `cs_palo` sourcetype="pan:traffic" action="allowed" `cs_filter_private_ips` packets_in>0 \ -| stats count, latest(_time) as last_seen, values(dvc) as dvc, values(dvc_name) as dvc_name, dc(dvc_name) as dc_dvc_name, dc(src_port) as dc_src_port, values(src_location) as src_location, sum(packets_in) as packets_in, sum(packets_out) as packets_out, dc(dest_ip) as dc_dest_ip, values(dest_port) as dest_port, dc(dest_location) as dc_dest_location, values(app) as app, values(http_category) as http_category, values(rule) as firewall_rule by src_ip \ -| `cs_palo_search_blocked_ip("src_ip")` | sort -count \ -| `cs_palo_blocked_ip_inbound_filter` -action.cyences_notable_event_action.products = Palo Alto - - -[Palo Alto Firewall - Network Compromise - Outbound Traffic to Blocked IPs] -disabled = 1 -action.email.useNSSubject = 1 -alert.track = 0 -auto_summarize = 1 -auto_summarize.dispatch.earliest_time = -1mon@d -description = Network traffic going to blocked IPs. The ip_blocked_list lookup is being used to identify the blocked IPs.\ -\ -Data Collection: Palo Alto pan:traffic sourcetype data. (Palo Alto Networks Add-on for Splunk) -search = `cs_palo` sourcetype="pan:traffic" action="allowed" `cs_filter_private_ips` packets_out>0 \ -| stats count, latest(_time) as last_seen, values(dvc) as dvc, values(dvc_name) as dvc_name, dc(dvc_name) as dc_dvc_name, dc(dest_port) as dc_dest_port, values(dest_location) as dest_location, sum(packets_in) as packets_in, sum(packets_out) as packets_out, dc(src_ip) as dc_src_ip, dc(src_port) as dc_src_port, dc(src_location) as dc_src_location, values(app) as app, values(http_category) as http_category, values(rule) as firewall_rule by dest_ip \ -| `cs_palo_search_blocked_ip("dest_ip")` | sort -count \ -| `cs_palo_blocked_ip_outbound_filter` -action.cyences_notable_event_action.products = Palo Alto - - [Palo Alto Firewall - Commits] disabled = 1 enableSched = 1 @@ -3704,57 +3656,6 @@ action.cyences_notable_event_action.products = Palo Alto action.cyences_notable_event_action.teams = SOC -[Dynamically Update Blocked IPs with HoneyDB] -disabled = 1 -enableSched = 1 -action.email.useNSSubject = 1 -alert.track = 0 -cron_schedule = 29 */8 * * * -description = Runs every 8 hours and update the blocked IP lookup (ip_blocked_list.csv) with HoneyDB.\ -Enable this report to dynamically update the lookup. -dispatch.earliest_time = 0 -dispatch.latest_time = now -display.general.timeRangePicker.show = 0 -display.general.type = statistics -display.page.search.tab = statistics -display.page.search.mode = fast -display.visualizations.show = 0 -request.ui_dispatch_app = cyences_app_for_splunk -request.ui_dispatch_view = search -search = | honeydblookupgen update_lookup=true generate_events=false - - -[Palo Alto Firewall - Malicious IP List Gen] -disabled = 1 -enableSched = 1 -action.email.useNSSubject = 1 -alert.track = 0 -cron_schedule = 2,17,32,47 * * * * -description = Based on various firewall activities like DDoS attack or it is an already blocked IP address and connecting through multiple firewalls this report will create a list of bad IP addresses.\ -The report runs every 15 minutes for last 4 hours. (To cover blocked IPs that is trying to connect to more than 2 firewall devices.) \ -\ -Note - Enable below three reports to make use of this report.\ -1. Palo Alto Firewall - Network Compromise - DDoS Attack Prevented\ -2. Palo Alto Firewall - Network Compromise - Inbound Traffic from Blocked IPs\ -3. Palo Alto Firewall - Network Compromise - Outbound Traffic to Blocked IPs -dispatch.earliest_time = -4h@m -dispatch.latest_time = now -display.general.timeRangePicker.show = 0 -display.general.type = statistics -display.page.search.tab = statistics -display.page.search.mode = fast -display.visualizations.show = 0 -request.ui_dispatch_app = cyences_app_for_splunk -request.ui_dispatch_view = search -search = | savedsearch "Palo Alto Firewall - Network Compromise - DDoS Attack Prevented" | rename src as ip, src_location as ip_location, dc_src_port as no_of_ports_used, dc_dest_ip as no_of_victims | eval description="Involved in DDoS Attack" | eval ip_category="ddos" \ -| append [| savedsearch "Palo Alto Firewall - Network Compromise - Inbound Traffic from Blocked IPs" | rename src_ip as ip, dc_src_port as no_of_ports_used, src_location as ip_location, dc_dest_ip as no_of_victims | eval description="Incoming traffic into multiple firewalls from this blocked IP" | eval ip_category="inbound"] \ -| append [| savedsearch "Palo Alto Firewall - Network Compromise - Outbound Traffic to Blocked IPs" | rename dest_ip as ip, dc_dest_port as no_of_ports_used, dest_location as ip_location, dc_src_ip as no_of_victims | eval description="Outgoing traffic through multiple firewalls to this blocked IP", last_seen=now() | eval ip_category="outbound"] \ -| maliciousipupload \ -| appendpipe [| maliciousiplookupgen ] -# TODO - maliciousiplookupgen command should be executed sequencially. Currently it is being executed before the maliciousipupload command. -action.cyences_notable_event_action.products = Palo Alto - - # ================ # Sophos Firewall # ================ diff --git a/cyences_app_for_splunk/default/transforms.conf b/cyences_app_for_splunk/default/transforms.conf index 7c28dd0a..626ae1a3 100644 --- a/cyences_app_for_splunk/default/transforms.conf +++ b/cyences_app_for_splunk/default/transforms.conf @@ -16,18 +16,6 @@ fields_list = _key, notable_event_id, update_time, user_making_change, category, filename = cs_fake_lookup_avoid_es_fields.csv max_matches = 1 - -# Blocked IP list lookups -[ip_range_blocked_list] -# batch_index_query = 0 -filename = ip_range_blocked_list.csv -match_type = CIDR(ip) -max_matches = 1 - -[ip_blocked_list] -filename = ip_blocked_list.csv -max_matches = 1 - # Asset Inventory [cs_all_assets] external_type = kvstore diff --git a/cyences_app_for_splunk/default/web.conf b/cyences_app_for_splunk/default/web.conf index e75ae607..10197c1b 100644 --- a/cyences_app_for_splunk/default/web.conf +++ b/cyences_app_for_splunk/default/web.conf @@ -1,23 +1,7 @@ -[expose:HoneyDBConfiguration] -pattern = HoneyDBConfiguration -methods = GET,POST - -[expose:MaliciousIPConfiguration] -pattern = MaliciousIPConfiguration -methods = GET,POST - [expose:CyencesProductConfiguration] pattern = CyencesProductConfiguration methods = GET,POST -[expose:HoneyDBConfiguration_specified] -pattern = HoneyDBConfiguration/* -methods = GET,POST - -[expose:MaliciousIPConfiguration_specified] -pattern = MaliciousIPConfiguration/* -methods = GET,POST - [expose:CyencesProductConfiguration_specified] pattern = CyencesProductConfiguration/* methods = GET,POST diff --git a/cyences_app_for_splunk/lookups/ip_blocked_list.csv b/cyences_app_for_splunk/lookups/ip_blocked_list.csv deleted file mode 100644 index 78f7a9a2..00000000 --- a/cyences_app_for_splunk/lookups/ip_blocked_list.csv +++ /dev/null @@ -1,5685 +0,0 @@ -ip,count,last_seen,blocked -194.61.24.19,264309,2020-10-07,1 -185.153.197.202,186503,2020-10-07,1 -185.153.199.182,103639,2020-10-07,1 -185.153.197.205,69867,2020-10-07,1 -100.2.236.147,67866,2020-10-06,1 -185.234.216.42,63463,2020-10-07,1 -45.37.51.46,51748,2020-10-06,1 -218.92.0.199,38700,2020-10-06,1 -91.241.19.149,31496,2020-10-07,1 -161.35.232.85,27680,2020-10-07,1 -98.228.7.84,23247,2020-10-07,1 -91.200.85.138,21250,2020-10-07,1 -37.48.92.199,18599,2020-10-07,1 -49.88.112.118,17376,2020-10-07,1 -61.177.172.158,15630,2020-10-07,1 -67.207.83.127,14046,2020-10-07,1 -218.92.0.191,13587,2020-10-07,1 -111.229.254.17,12676,2020-10-07,1 -141.98.216.154,11730,2020-10-07,1 -45.61.142.142,10925,2020-10-06,1 -132.232.49.143,10339,2020-10-07,1 -156.96.44.187,9871,2020-10-06,1 -161.35.228.63,9525,2020-10-06,1 -182.73.56.90,9370,2020-10-07,1 -95.177.212.74,8188,2020-10-07,1 -117.27.239.28,7602,2020-10-06,1 -49.88.112.111,7472,2020-10-07,1 -112.85.42.143,7403,2020-10-07,1 -37.187.154.33,7143,2020-10-07,1 -91.90.210.104,5984,2020-10-06,1 -124.123.183.248,5699,2020-10-06,1 -208.51.62.18,5363,2020-10-07,1 -80.82.65.204,4499,2020-10-07,1 -185.56.80.222,4306,2020-10-07,1 -153.121.82.26,4239,2020-10-07,1 -24.138.249.98,4201,2020-10-07,1 -111.230.228.235,4094,2020-10-07,1 -218.92.0.195,3918,2020-10-07,1 -171.235.82.80,3627,2020-10-06,1 -94.191.56.24,3540,2020-10-06,1 -87.251.67.80,3368,2020-10-06,1 -222.186.42.137,3359,2020-10-07,1 -107.147.161.90,3232,2020-10-06,1 -62.210.151.21,3171,2020-10-07,1 -222.186.180.130,3014,2020-10-07,1 -222.186.42.7,2914,2020-10-07,1 -118.25.0.193,2863,2020-10-07,1 -5.182.210.81,2839,2020-10-07,1 -222.186.42.155,2708,2020-10-07,1 -103.93.53.174,2666,2020-10-07,1 -222.186.15.115,2636,2020-10-07,1 -222.186.42.57,2587,2020-10-07,1 -222.186.31.166,2469,2020-10-07,1 -54.36.164.135,2453,2020-10-07,1 -54.39.247.141,2388,2020-10-06,1 -222.186.30.35,2296,2020-10-07,1 -95.217.194.62,2285,2020-10-07,1 -95.217.114.126,2236,2020-10-07,1 -222.186.15.62,2222,2020-10-07,1 -108.62.123.167,2198,2020-10-07,1 -141.212.123.205,2065,2020-10-07,1 -222.186.30.57,2022,2020-10-07,1 -222.186.31.83,2015,2020-10-07,1 -218.92.0.192,1994,2020-10-07,1 -212.43.17.129,1974,2020-10-06,1 -222.186.30.112,1891,2020-10-07,1 -222.186.30.76,1809,2020-10-07,1 -141.98.10.136,1742,2020-10-07,1 -222.186.42.213,1712,2020-10-07,1 -185.234.216.61,1656,2020-10-06,1 -192.40.59.230,1631,2020-10-06,1 -185.141.34.94,1561,2020-10-07,1 -45.143.223.105,1556,2020-10-06,1 -95.181.157.138,1535,2020-10-07,1 -218.92.0.211,1524,2020-10-07,1 -138.68.232.42,1524,2020-10-06,1 -59.188.73.149,1488,2020-10-07,1 -61.240.148.105,1285,2020-10-07,1 -49.88.112.114,1276,2020-10-07,1 -109.229.191.254,1265,2020-10-06,1 -141.98.10.143,1222,2020-10-07,1 -122.114.227.40,1220,2020-10-07,1 -121.36.207.181,1214,2020-10-07,1 -2.57.122.186,1208,2020-10-06,1 -183.245.241.237,1196,2020-10-07,1 -111.42.190.3,1193,2020-10-07,1 -115.236.60.26,1190,2020-10-07,1 -40.74.84.229,1180,2020-10-07,1 -139.5.145.122,1175,2020-10-07,1 -45.143.221.76,1171,2020-10-07,1 -194.87.138.97,1167,2020-10-06,1 -173.9.10.45,1138,2020-10-06,1 -101.99.3.22,1130,2020-10-07,1 -112.85.42.190,1085,2020-10-07,1 -156.96.44.121,1082,2020-10-07,1 -221.234.48.69,1069,2020-10-07,1 -112.85.42.187,1052,2020-10-07,1 -194.180.224.115,1036,2020-10-07,1 -189.203.27.9,1034,2020-10-06,1 -185.171.89.88,1020,2020-10-07,1 -112.85.42.173,991,2020-10-07,1 -104.131.127.244,991,2020-10-07,1 -85.93.20.150,967,2020-10-06,1 -85.93.20.147,954,2020-10-06,1 -85.93.20.149,949,2020-10-06,1 -85.93.20.148,948,2020-10-06,1 -112.85.42.47,945,2020-10-07,1 -161.35.232.240,912,2020-10-06,1 -112.85.42.230,904,2020-10-07,1 -37.120.202.4,902,2020-10-07,1 -122.194.229.122,895,2020-10-07,1 -193.228.91.108,880,2020-10-06,1 -45.93.201.194,869,2020-10-06,1 -167.114.156.189,864,2020-10-06,1 -112.85.42.81,864,2020-10-07,1 -124.128.248.18,849,2020-10-07,1 -218.92.0.185,840,2020-10-07,1 -218.92.0.251,830,2020-10-07,1 -112.85.42.231,816,2020-10-07,1 -112.85.42.174,799,2020-10-07,1 -125.212.196.202,792,2020-10-07,1 -112.85.42.183,789,2020-10-07,1 -5.155.147.21,770,2020-10-06,1 -112.85.42.172,769,2020-10-07,1 -143.208.200.30,752,2020-10-07,1 -112.85.42.196,744,2020-10-07,1 -112.85.42.98,740,2020-10-07,1 -122.194.229.59,711,2020-10-07,1 -61.177.172.89,705,2020-10-07,1 -218.107.213.89,700,2020-10-07,1 -88.218.227.249,700,2020-10-07,1 -112.85.42.180,683,2020-10-07,1 -45.84.196.60,671,2020-10-06,1 -88.99.240.166,660,2020-10-07,1 -60.222.254.231,656,2020-10-07,1 -112.85.42.110,653,2020-10-07,1 -61.177.172.177,648,2020-10-07,1 -194.61.54.112,644,2020-10-07,1 -103.253.42.54,643,2020-10-07,1 -185.202.2.238,630,2020-10-07,1 -112.85.42.91,628,2020-10-07,1 -112.85.42.184,627,2020-10-07,1 -112.85.42.151,620,2020-10-07,1 -185.234.216.38,612,2020-10-06,1 -61.177.172.142,611,2020-10-07,1 -104.155.210.11,609,2020-10-06,1 -165.227.167.230,609,2020-10-07,1 -112.85.42.53,606,2020-10-07,1 -75.37.200.85,601,2020-10-07,1 -193.169.252.34,600,2020-10-06,1 -185.234.216.247,595,2020-10-06,1 -61.177.172.168,584,2020-10-07,1 -45.148.121.4,584,2020-10-06,1 -176.111.173.12,580,2020-10-07,1 -168.119.33.233,575,2020-10-06,1 -112.85.42.122,566,2020-10-07,1 -218.92.0.249,557,2020-10-07,1 -218.92.0.248,546,2020-10-07,1 -218.92.0.168,545,2020-10-07,1 -219.150.218.80,543,2020-10-07,1 -112.85.42.69,540,2020-10-07,1 -207.154.235.138,531,2020-10-07,1 -112.85.42.112,530,2020-10-07,1 -45.148.10.65,527,2020-10-06,1 -218.92.0.133,526,2020-10-07,1 -218.92.0.250,518,2020-10-07,1 -122.194.229.54,510,2020-10-07,1 -218.92.0.175,506,2020-10-07,1 -45.145.67.171,497,2020-10-06,1 -95.177.219.3,491,2020-10-07,1 -91.107.5.173,480,2020-10-07,1 -73.16.36.212,479,2020-10-07,1 -112.85.42.176,478,2020-10-07,1 -62.173.128.218,475,2020-10-07,1 -159.192.139.106,462,2020-10-07,1 -112.85.42.120,457,2020-10-07,1 -218.92.0.246,444,2020-10-07,1 -218.92.0.208,437,2020-10-07,1 -112.85.42.119,437,2020-10-07,1 -45.148.10.28,434,2020-10-06,1 -61.177.172.54,430,2020-10-07,1 -85.239.35.130,429,2020-10-07,1 -46.161.27.174,429,2020-10-07,1 -218.92.0.176,428,2020-10-07,1 -61.177.172.128,417,2020-10-07,1 -104.196.172.192,414,2020-10-07,1 -120.57.32.123,407,2020-10-07,1 -193.228.91.124,405,2020-10-07,1 -119.162.106.41,400,2020-10-06,1 -185.132.53.85,397,2020-10-07,1 -218.92.0.184,390,2020-10-07,1 -61.177.172.104,388,2020-10-07,1 -218.92.0.145,386,2020-10-07,1 -95.32.192.186,378,2020-10-06,1 -198.211.109.243,377,2020-10-06,1 -61.177.172.61,375,2020-10-07,1 -193.228.91.11,371,2020-10-06,1 -112.85.42.85,369,2020-10-07,1 -112.85.42.13,368,2020-10-07,1 -218.92.0.247,368,2020-10-07,1 -112.85.42.200,367,2020-10-07,1 -112.85.42.181,357,2020-10-07,1 -122.194.229.37,352,2020-10-07,1 -92.63.196.15,351,2020-10-06,1 -218.92.0.205,341,2020-10-07,1 -218.92.0.171,339,2020-10-07,1 -104.225.140.11,337,2020-10-06,1 -112.254.209.70,336,2020-10-06,1 -107.152.101.164,335,2020-10-07,1 -222.138.235.146,329,2020-10-06,1 -45.156.84.56,329,2020-10-07,1 -123.133.168.134,326,2020-10-06,1 -27.194.43.118,324,2020-10-06,1 -20.37.49.188,323,2020-10-06,1 -218.92.0.138,323,2020-10-07,1 -185.174.195.135,315,2020-10-06,1 -92.113.199.114,314,2020-10-07,1 -83.97.20.90,313,2020-10-07,1 -125.41.96.216,313,2020-10-06,1 -112.255.76.71,310,2020-10-06,1 -119.165.89.107,306,2020-10-07,1 -124.131.22.240,305,2020-10-06,1 -27.215.87.189,299,2020-10-06,1 -136.243.107.50,296,2020-10-07,1 -218.92.0.165,295,2020-10-07,1 -219.154.106.244,290,2020-10-06,1 -120.57.219.100,290,2020-10-06,1 -205.209.166.170,290,2020-10-06,1 -194.180.224.130,287,2020-10-07,1 -141.98.10.192,286,2020-10-07,1 -223.130.31.155,286,2020-10-07,1 -111.200.195.67,286,2020-10-07,1 -74.208.173.156,285,2020-10-07,1 -144.76.199.144,285,2020-10-06,1 -115.227.172.29,283,2020-10-07,1 -119.163.238.126,280,2020-10-06,1 -45.45.45.45,277,2020-10-07,1 -103.223.9.9,276,2020-10-06,1 -123.133.215.141,276,2020-10-06,1 -125.44.234.38,275,2020-10-06,1 -39.86.73.182,274,2020-10-06,1 -116.73.97.2,272,2020-10-06,1 -217.195.216.170,271,2020-10-07,1 -62.234.166.206,271,2020-10-07,1 -112.226.174.195,271,2020-10-06,1 -120.59.122.124,270,2020-10-06,1 -182.121.230.112,269,2020-10-06,1 -182.116.115.35,269,2020-10-06,1 -218.92.0.172,269,2020-10-07,1 -125.42.126.206,266,2020-10-07,1 -197.248.10.108,265,2020-10-07,1 -178.62.79.215,265,2020-10-07,1 -218.92.0.223,264,2020-10-07,1 -112.225.85.151,264,2020-10-06,1 -124.131.52.118,263,2020-10-06,1 -27.194.113.171,263,2020-10-06,1 -103.223.9.129,263,2020-10-06,1 -39.73.82.46,260,2020-10-06,1 -115.56.147.159,260,2020-10-07,1 -115.56.159.160,257,2020-10-06,1 -60.243.115.82,255,2020-10-07,1 -27.193.42.80,254,2020-10-06,1 -61.52.52.237,253,2020-10-06,1 -125.47.246.147,250,2020-10-06,1 -119.123.127.228,249,2020-10-07,1 -192.3.53.114,248,2020-10-07,1 -125.44.232.57,248,2020-10-06,1 -221.15.225.248,248,2020-10-06,1 -185.202.0.18,247,2020-10-07,1 -182.113.30.173,247,2020-10-06,1 -119.167.19.122,247,2020-10-06,1 -59.177.79.130,245,2020-10-07,1 -182.119.12.140,243,2020-10-06,1 -103.223.8.179,243,2020-10-06,1 -193.169.254.109,241,2020-10-07,1 -27.217.164.32,238,2020-10-06,1 -223.130.31.61,238,2020-10-07,1 -27.207.157.81,237,2020-10-06,1 -27.194.12.172,237,2020-10-06,1 -176.113.115.214,237,2020-10-07,1 -148.72.158.192,236,2020-10-06,1 -212.72.215.51,235,2020-10-06,1 -39.79.37.162,234,2020-10-06,1 -194.87.138.172,234,2020-10-07,1 -95.152.53.22,232,2020-10-06,1 -39.77.162.100,232,2020-10-06,1 -115.99.240.180,232,2020-10-06,1 -27.222.224.238,231,2020-10-06,1 -103.223.9.57,230,2020-10-06,1 -123.235.246.207,230,2020-10-07,1 -221.3.98.176,229,2020-10-06,1 -61.163.128.139,229,2020-10-06,1 -61.53.74.162,228,2020-10-06,1 -123.13.149.19,228,2020-10-07,1 -123.14.71.194,228,2020-10-06,1 -193.169.252.206,228,2020-10-07,1 -185.202.0.7,227,2020-10-07,1 -194.180.224.103,227,2020-10-07,1 -222.139.69.105,227,2020-10-06,1 -39.64.21.40,226,2020-10-07,1 -42.224.3.179,225,2020-10-06,1 -27.35.160.21,224,2020-10-06,1 -112.242.215.12,224,2020-10-06,1 -182.59.224.59,223,2020-10-07,1 -185.132.53.115,223,2020-10-06,1 -115.50.214.242,223,2020-10-06,1 -193.228.91.123,223,2020-10-07,1 -115.55.236.223,222,2020-10-06,1 -116.73.68.212,222,2020-10-06,1 -61.177.172.107,221,2020-10-07,1 -112.226.60.236,221,2020-10-07,1 -218.92.0.173,221,2020-10-07,1 -123.8.166.225,220,2020-10-06,1 -221.1.232.133,220,2020-10-06,1 -119.163.133.199,220,2020-10-07,1 -112.85.42.72,220,2020-10-07,1 -39.79.177.255,220,2020-10-06,1 -120.59.25.147,220,2020-10-07,1 -112.252.208.251,220,2020-10-06,1 -45.148.10.15,219,2020-10-06,1 -223.130.31.96,218,2020-10-07,1 -182.113.48.181,218,2020-10-07,1 -219.155.96.98,218,2020-10-06,1 -213.108.134.117,217,2020-10-07,1 -42.228.75.110,216,2020-10-06,1 -123.4.246.78,215,2020-10-06,1 -167.172.192.223,215,2020-10-06,1 -42.234.224.152,215,2020-10-06,1 -42.239.236.112,215,2020-10-07,1 -125.234.96.254,215,2020-10-06,1 -42.235.153.53,213,2020-10-06,1 -113.134.244.137,211,2020-10-06,1 -185.174.195.128,211,2020-10-07,1 -119.189.213.174,211,2020-10-06,1 -222.138.205.248,211,2020-10-06,1 -219.157.215.216,210,2020-10-06,1 -27.5.47.23,210,2020-10-06,1 -218.92.0.158,210,2020-10-07,1 -182.59.35.129,209,2020-10-06,1 -95.32.221.57,208,2020-10-06,1 -112.225.32.49,208,2020-10-06,1 -27.220.109.29,208,2020-10-06,1 -59.177.37.41,207,2020-10-06,1 -115.97.19.119,207,2020-10-06,1 -182.59.3.33,206,2020-10-06,1 -201.170.246.166,206,2020-10-07,1 -103.223.9.25,206,2020-10-06,1 -182.59.82.255,204,2020-10-07,1 -123.130.150.223,203,2020-10-06,1 -182.116.118.127,203,2020-10-06,1 -103.240.211.46,203,2020-10-07,1 -27.216.122.135,203,2020-10-06,1 -115.59.199.155,202,2020-10-06,1 -119.166.79.167,202,2020-10-06,1 -39.74.252.166,201,2020-10-06,1 -119.185.189.232,201,2020-10-06,1 -182.56.227.218,201,2020-10-06,1 -115.61.96.99,201,2020-10-06,1 -115.61.124.19,200,2020-10-06,1 -61.54.49.126,198,2020-10-06,1 -218.92.0.212,198,2020-10-07,1 -123.134.49.151,198,2020-10-06,1 -45.118.145.222,198,2020-10-07,1 -185.174.195.134,196,2020-10-06,1 -87.251.67.39,196,2020-10-07,1 -219.155.216.193,195,2020-10-07,1 -61.52.52.169,194,2020-10-06,1 -61.52.45.226,193,2020-10-06,1 -42.231.203.247,193,2020-10-07,1 -182.127.73.195,193,2020-10-06,1 -27.207.184.52,190,2020-10-06,1 -39.79.163.104,190,2020-10-06,1 -156.96.46.203,188,2020-10-07,1 -119.179.248.146,188,2020-10-06,1 -182.126.115.218,188,2020-10-06,1 -223.130.28.246,187,2020-10-06,1 -39.86.67.242,187,2020-10-06,1 -42.230.5.24,186,2020-10-06,1 -182.127.213.225,186,2020-10-07,1 -39.79.142.45,185,2020-10-07,1 -85.209.0.103,185,2020-10-07,1 -182.57.57.25,183,2020-10-07,1 -182.123.210.87,181,2020-10-06,1 -144.202.71.4,181,2020-10-07,1 -27.206.83.125,181,2020-10-07,1 -103.223.8.94,181,2020-10-06,1 -115.56.197.167,180,2020-10-06,1 -27.219.112.142,180,2020-10-06,1 -144.202.131.91,179,2020-10-07,1 -45.141.84.175,179,2020-10-07,1 -123.9.223.16,179,2020-10-06,1 -182.113.210.16,179,2020-10-07,1 -61.52.185.21,179,2020-10-06,1 -103.91.245.13,178,2020-10-06,1 -40.114.115.207,178,2020-10-07,1 -103.215.54.42,177,2020-10-06,1 -115.99.28.37,177,2020-10-06,1 -119.167.37.161,175,2020-10-06,1 -39.74.27.188,173,2020-10-06,1 -115.58.106.221,173,2020-10-07,1 -103.223.8.209,173,2020-10-07,1 -222.137.123.184,170,2020-10-06,1 -39.77.143.251,169,2020-10-07,1 -39.73.161.6,169,2020-10-07,1 -27.219.62.29,168,2020-10-06,1 -221.15.170.30,168,2020-10-07,1 -27.207.193.26,168,2020-10-06,1 -39.65.197.200,168,2020-10-07,1 -103.223.9.141,167,2020-10-07,1 -103.145.13.230,166,2020-10-07,1 -112.249.128.205,166,2020-10-06,1 -39.65.187.20,166,2020-10-07,1 -61.53.80.159,165,2020-10-06,1 -115.48.157.109,165,2020-10-06,1 -45.148.121.144,165,2020-10-06,1 -115.53.38.234,165,2020-10-06,1 -123.4.250.224,165,2020-10-06,1 -51.75.173.165,165,2020-10-07,1 -211.38.13.166,164,2020-10-07,1 -193.169.253.136,164,2020-10-06,1 -125.42.99.73,164,2020-10-06,1 -219.156.101.99,164,2020-10-06,1 -103.223.8.237,164,2020-10-06,1 -125.45.52.144,163,2020-10-06,1 -123.8.177.219,163,2020-10-06,1 -42.224.74.105,163,2020-10-06,1 -123.5.132.229,163,2020-10-06,1 -85.209.0.101,163,2020-10-07,1 -61.52.96.161,163,2020-10-06,1 -49.88.112.113,163,2020-10-07,1 -182.117.64.37,162,2020-10-06,1 -27.6.185.26,161,2020-10-06,1 -103.223.9.159,161,2020-10-06,1 -103.223.8.102,161,2020-10-06,1 -103.145.13.229,159,2020-10-07,1 -45.84.196.225,159,2020-10-06,1 -42.224.65.174,158,2020-10-06,1 -221.15.84.10,157,2020-10-07,1 -95.32.93.205,156,2020-10-06,1 -115.61.171.84,156,2020-10-06,1 -88.80.116.100,154,2020-10-07,1 -182.124.84.97,154,2020-10-06,1 -119.62.125.126,153,2020-10-07,1 -27.220.88.51,153,2020-10-06,1 -42.224.174.201,152,2020-10-06,1 -123.233.235.167,151,2020-10-06,1 -141.98.9.36,151,2020-10-07,1 -141.98.9.33,150,2020-10-07,1 -103.145.13.124,150,2020-10-07,1 -61.156.215.57,150,2020-10-06,1 -115.61.174.240,149,2020-10-07,1 -120.57.212.215,149,2020-10-06,1 -27.210.175.153,149,2020-10-06,1 -115.55.155.140,148,2020-10-06,1 -115.98.1.228,147,2020-10-06,1 -112.196.183.226,147,2020-10-07,1 -61.53.122.72,145,2020-10-06,1 -112.226.160.4,145,2020-10-06,1 -127.0.0.1,145,2020-10-07,1 -39.79.59.8,144,2020-10-06,1 -223.130.31.135,144,2020-10-06,1 -141.98.9.164,143,2020-10-07,1 -141.98.9.34,143,2020-10-07,1 -49.88.112.70,143,2020-10-07,1 -124.131.143.49,142,2020-10-06,1 -124.131.145.171,142,2020-10-06,1 -221.214.162.48,142,2020-10-06,1 -27.5.45.62,142,2020-10-07,1 -115.54.195.163,142,2020-10-06,1 -18.158.87.32,142,2020-10-07,1 -141.98.9.35,142,2020-10-07,1 -124.135.183.171,141,2020-10-06,1 -39.73.239.31,141,2020-10-06,1 -115.59.235.238,141,2020-10-06,1 -221.15.125.2,140,2020-10-06,1 -116.30.195.211,140,2020-10-06,1 -222.138.79.121,140,2020-10-06,1 -119.184.59.116,140,2020-10-06,1 -182.117.83.234,140,2020-10-07,1 -39.79.231.66,139,2020-10-06,1 -223.130.29.47,139,2020-10-07,1 -91.195.181.130,138,2020-10-07,1 -219.157.18.153,138,2020-10-06,1 -203.184.51.46,138,2020-10-06,1 -111.21.166.86,138,2020-10-07,1 -123.9.72.105,137,2020-10-07,1 -185.153.199.148,137,2020-10-07,1 -27.207.92.108,136,2020-10-06,1 -121.237.68.159,136,2020-10-06,1 -141.98.9.32,135,2020-10-07,1 -112.85.42.96,135,2020-10-07,1 -85.72.226.50,134,2020-10-07,1 -141.98.9.162,134,2020-10-07,1 -61.53.86.188,134,2020-10-06,1 -115.63.181.145,134,2020-10-07,1 -141.98.9.31,133,2020-10-07,1 -121.18.25.6,133,2020-10-06,1 -141.98.9.165,133,2020-10-07,1 -223.130.28.219,132,2020-10-07,1 -103.223.8.56,132,2020-10-06,1 -223.130.28.215,131,2020-10-06,1 -115.63.138.19,131,2020-10-06,1 -112.248.102.109,131,2020-10-07,1 -103.94.137.158,130,2020-10-07,1 -141.98.9.166,130,2020-10-07,1 -84.245.57.73,129,2020-10-07,1 -141.98.9.163,128,2020-10-07,1 -222.141.75.109,128,2020-10-06,1 -185.221.134.250,128,2020-10-07,1 -34.86.141.43,128,2020-10-06,1 -125.45.76.26,126,2020-10-06,1 -141.98.9.167,125,2020-10-07,1 -85.209.0.100,122,2020-10-07,1 -27.202.38.158,122,2020-10-06,1 -182.59.254.1,122,2020-10-06,1 -103.223.8.76,121,2020-10-06,1 -221.1.229.69,120,2020-10-06,1 -51.195.63.10,120,2020-10-07,1 -27.215.2.81,119,2020-10-06,1 -83.66.65.159,119,2020-10-07,1 -27.207.179.23,119,2020-10-06,1 -138.197.189.231,119,2020-10-06,1 -40.117.155.11,119,2020-10-07,1 -141.98.10.213,119,2020-10-07,1 -58.255.213.83,118,2020-10-07,1 -59.180.173.90,118,2020-10-06,1 -141.98.10.214,117,2020-10-07,1 -123.4.23.120,117,2020-10-06,1 -112.240.248.185,116,2020-10-06,1 -221.214.163.24,116,2020-10-06,1 -188.166.233.193,115,2020-10-07,1 -182.117.30.188,114,2020-10-07,1 -27.207.218.101,114,2020-10-06,1 -141.98.10.211,114,2020-10-07,1 -182.116.55.104,114,2020-10-06,1 -27.202.14.159,114,2020-10-07,1 -182.121.101.107,114,2020-10-07,1 -74.120.14.52,113,2020-10-07,1 -103.133.105.65,112,2020-10-07,1 -192.35.169.48,112,2020-10-06,1 -219.154.97.2,112,2020-10-07,1 -35.174.109.247,111,2020-10-07,1 -27.219.111.238,111,2020-10-07,1 -167.248.133.36,111,2020-10-07,1 -123.5.176.240,111,2020-10-06,1 -182.112.60.203,110,2020-10-07,1 -141.98.10.209,110,2020-10-07,1 -103.66.209.37,109,2020-10-07,1 -88.80.243.86,109,2020-10-07,1 -27.217.172.123,109,2020-10-06,1 -27.202.21.190,109,2020-10-06,1 -103.223.9.172,108,2020-10-06,1 -141.98.10.210,108,2020-10-07,1 -141.98.10.212,107,2020-10-07,1 -42.232.77.11,107,2020-10-06,1 -144.76.219.77,106,2020-10-07,1 -182.127.93.210,106,2020-10-06,1 -119.167.18.7,106,2020-10-06,1 -182.127.52.188,105,2020-10-07,1 -60.214.207.24,105,2020-10-07,1 -115.56.203.56,105,2020-10-06,1 -34.121.155.61,105,2020-10-06,1 -115.60.148.103,104,2020-10-07,1 -182.121.64.21,104,2020-10-06,1 -158.69.119.177,104,2020-10-07,1 -85.209.0.252,104,2020-10-07,1 -217.148.217.90,103,2020-10-06,1 -125.47.98.191,102,2020-10-06,1 -45.119.85.200,102,2020-10-07,1 -202.134.86.91,101,2020-10-07,1 -60.211.109.21,101,2020-10-06,1 -27.202.14.241,101,2020-10-06,1 -193.56.28.193,100,2020-10-07,1 -36.7.71.209,99,2020-10-07,1 -39.88.140.248,99,2020-10-07,1 -116.73.99.66,99,2020-10-07,1 -123.235.149.165,98,2020-10-07,1 -45.148.122.184,98,2020-10-07,1 -27.210.248.10,98,2020-10-06,1 -66.151.174.82,96,2020-10-06,1 -61.52.225.48,94,2020-10-07,1 -188.68.94.194,94,2020-10-07,1 -193.27.228.9,93,2020-10-07,1 -116.236.24.123,93,2020-10-07,1 -42.228.246.56,92,2020-10-06,1 -40.86.226.27,92,2020-10-06,1 -119.180.9.209,92,2020-10-06,1 -223.130.28.69,92,2020-10-06,1 -117.4.240.104,91,2020-10-07,1 -85.209.0.253,91,2020-10-07,1 -42.230.194.163,90,2020-10-06,1 -179.43.166.238,89,2020-10-06,1 -222.138.179.83,89,2020-10-06,1 -37.145.55.140,89,2020-10-06,1 -167.248.133.52,88,2020-10-07,1 -103.85.128.197,87,2020-10-06,1 -125.43.254.183,87,2020-10-06,1 -45.145.185.13,86,2020-10-07,1 -219.154.116.96,86,2020-10-07,1 -185.202.1.188,86,2020-10-06,1 -85.209.0.102,85,2020-10-07,1 -125.46.201.60,83,2020-10-07,1 -115.63.128.121,83,2020-10-06,1 -222.138.235.239,83,2020-10-07,1 -124.135.131.108,82,2020-10-06,1 -85.209.0.251,82,2020-10-07,1 -216.170.119.5,82,2020-10-06,1 -62.210.162.99,82,2020-10-07,1 -213.136.76.30,81,2020-10-07,1 -167.248.133.51,81,2020-10-07,1 -103.143.209.135,80,2020-10-07,1 -45.146.164.184,80,2020-10-07,1 -185.220.100.252,79,2020-10-07,1 -64.227.86.210,79,2020-10-06,1 -207.180.217.146,79,2020-10-07,1 -123.31.17.24,79,2020-10-07,1 -123.9.194.169,79,2020-10-06,1 -13.69.134.240,78,2020-10-06,1 -219.157.56.195,78,2020-10-07,1 -163.19.200.153,77,2020-10-06,1 -219.157.206.188,76,2020-10-06,1 -148.251.47.118,76,2020-10-06,1 -159.148.118.9,75,2020-10-07,1 -52.156.81.249,74,2020-10-07,1 -74.120.14.51,73,2020-10-06,1 -182.117.67.15,73,2020-10-06,1 -74.120.14.36,72,2020-10-07,1 -103.92.25.178,71,2020-10-07,1 -120.56.116.5,71,2020-10-06,1 -223.130.31.55,71,2020-10-06,1 -223.130.31.24,70,2020-10-07,1 -40.117.40.27,69,2020-10-06,1 -167.248.133.35,68,2020-10-07,1 -61.156.205.80,68,2020-10-07,1 -59.148.23.97,68,2020-10-07,1 -84.228.84.127,68,2020-10-07,1 -45.153.203.146,67,2020-10-07,1 -156.96.151.241,66,2020-10-06,1 -27.223.188.207,66,2020-10-07,1 -185.220.100.255,65,2020-10-07,1 -182.123.252.255,65,2020-10-07,1 -163.19.221.100,65,2020-10-06,1 -186.29.64.81,64,2020-10-06,1 -90.150.87.119,64,2020-10-07,1 -13.71.32.72,64,2020-10-07,1 -5.8.18.88,63,2020-10-07,1 -117.216.46.66,63,2020-10-06,1 -188.40.23.37,62,2020-10-07,1 -124.131.159.173,62,2020-10-06,1 -141.98.81.141,61,2020-10-06,1 -41.50.136.87,61,2020-10-06,1 -39.88.119.83,61,2020-10-07,1 -45.148.121.92,60,2020-10-07,1 -42.227.213.235,59,2020-10-06,1 -61.162.168.8,59,2020-10-06,1 -198.20.70.114,58,2020-10-06,1 -125.138.6.181,57,2020-10-07,1 -45.143.221.251,57,2020-10-07,1 -42.180.180.13,57,2020-10-06,1 -2.189.220.237,55,2020-10-06,1 -23.102.159.50,55,2020-10-06,1 -74.120.14.35,55,2020-10-07,1 -162.142.125.49,55,2020-10-07,1 -88.85.172.131,55,2020-10-07,1 -207.244.251.243,54,2020-10-07,1 -148.163.66.70,54,2020-10-07,1 -176.10.99.200,54,2020-10-06,1 -88.80.42.253,53,2020-10-07,1 -103.223.8.191,53,2020-10-06,1 -173.232.207.75,52,2020-10-07,1 -196.35.34.5,52,2020-10-07,1 -27.222.188.96,51,2020-10-06,1 -185.132.250.204,51,2020-10-06,1 -51.15.16.71,51,2020-10-06,1 -120.59.121.146,51,2020-10-06,1 -162.142.125.33,51,2020-10-07,1 -103.223.9.55,50,2020-10-07,1 -185.220.101.12,50,2020-10-06,1 -123.235.54.234,49,2020-10-07,1 -162.142.125.34,49,2020-10-07,1 -67.169.115.216,49,2020-10-06,1 -202.107.188.197,49,2020-10-07,1 -105.199.58.109,49,2020-10-07,1 -132.145.90.246,48,2020-10-07,1 -45.148.121.138,48,2020-10-07,1 -162.142.125.52,48,2020-10-07,1 -164.68.112.178,47,2020-10-07,1 -171.232.255.127,46,2020-10-07,1 -27.115.124.74,46,2020-10-07,1 -111.43.41.18,46,2020-10-07,1 -5.8.10.202,45,2020-10-07,1 -70.95.196.219,45,2020-10-07,1 -54.38.81.231,45,2020-10-06,1 -213.202.223.223,45,2020-10-07,1 -18.27.197.252,44,2020-10-06,1 -185.142.236.35,44,2020-10-06,1 -34.94.104.192,43,2020-10-06,1 -123.129.23.86,43,2020-10-07,1 -207.244.251.230,43,2020-10-06,1 -200.140.204.217,42,2020-10-07,1 -195.54.160.180,42,2020-10-07,1 -5.182.210.205,42,2020-10-07,1 -162.142.125.51,42,2020-10-07,1 -217.28.145.174,42,2020-10-06,1 -104.215.87.104,41,2020-10-07,1 -223.130.31.35,41,2020-10-06,1 -141.98.81.154,41,2020-10-07,1 -103.145.13.221,41,2020-10-07,1 -146.88.240.4,40,2020-10-07,1 -83.97.20.30,40,2020-10-07,1 -115.97.7.87,40,2020-10-06,1 -162.158.178.172,40,2020-10-06,1 -185.220.102.243,40,2020-10-07,1 -162.142.125.50,40,2020-10-07,1 -148.72.168.23,39,2020-10-07,1 -84.38.185.29,39,2020-10-07,1 -91.250.242.12,39,2020-10-07,1 -116.75.194.71,39,2020-10-06,1 -45.143.221.92,39,2020-10-07,1 -104.36.254.231,38,2020-10-07,1 -185.191.126.212,38,2020-10-06,1 -192.35.168.220,37,2020-10-07,1 -119.57.120.107,37,2020-10-06,1 -196.201.20.182,37,2020-10-07,1 -103.194.117.13,37,2020-10-06,1 -103.54.248.246,36,2020-10-07,1 -27.115.124.9,36,2020-10-07,1 -201.250.11.51,36,2020-10-07,1 -62.102.148.68,35,2020-10-06,1 -185.220.102.247,35,2020-10-07,1 -198.23.200.238,35,2020-10-06,1 -209.150.146.4,35,2020-10-07,1 -119.45.202.79,35,2020-10-07,1 -94.13.119.139,35,2020-10-07,1 -207.244.228.213,35,2020-10-07,1 -185.220.101.3,35,2020-10-06,1 -185.220.100.254,35,2020-10-06,1 -85.93.20.91,35,2020-10-06,1 -103.223.9.238,34,2020-10-07,1 -103.133.108.230,34,2020-10-06,1 -3.22.112.242,34,2020-10-06,1 -185.216.140.6,34,2020-10-06,1 -185.216.140.240,34,2020-10-07,1 -85.93.20.86,34,2020-10-06,1 -51.75.86.211,34,2020-10-07,1 -76.126.214.48,33,2020-10-07,1 -85.93.20.90,33,2020-10-06,1 -27.115.124.75,33,2020-10-07,1 -161.97.66.128,33,2020-10-06,1 -59.125.70.206,33,2020-10-07,1 -116.73.96.16,33,2020-10-06,1 -27.202.145.227,33,2020-10-07,1 -85.93.20.92,33,2020-10-06,1 -154.117.186.237,33,2020-10-07,1 -85.93.20.88,33,2020-10-06,1 -27.115.124.10,33,2020-10-07,1 -104.206.128.38,32,2020-10-07,1 -46.165.245.154,32,2020-10-07,1 -109.195.167.7,32,2020-10-06,1 -85.93.20.84,32,2020-10-06,1 -185.220.100.242,32,2020-10-06,1 -91.241.19.166,32,2020-10-06,1 -162.142.125.35,31,2020-10-07,1 -31.173.168.226,31,2020-10-07,1 -85.93.20.82,31,2020-10-06,1 -193.169.252.205,31,2020-10-07,1 -200.233.161.57,31,2020-10-07,1 -192.35.168.199,31,2020-10-06,1 -125.212.233.74,31,2020-10-06,1 -89.18.30.122,30,2020-10-07,1 -103.145.13.59,30,2020-10-07,1 -195.176.3.23,30,2020-10-06,1 -85.93.20.87,30,2020-10-06,1 -85.93.20.89,30,2020-10-06,1 -217.160.172.202,30,2020-10-06,1 -103.223.8.186,30,2020-10-07,1 -80.82.65.90,30,2020-10-07,1 -125.46.11.67,30,2020-10-06,1 -178.73.215.171,30,2020-10-06,1 -171.235.61.244,29,2020-10-07,1 -114.34.183.59,29,2020-10-07,1 -85.93.20.83,29,2020-10-06,1 -71.246.232.148,29,2020-10-06,1 -51.255.51.204,28,2020-10-06,1 -52.252.60.3,28,2020-10-07,1 -94.102.56.238,28,2020-10-07,1 -83.97.20.29,28,2020-10-07,1 -45.76.42.216,28,2020-10-06,1 -151.234.213.47,28,2020-10-06,1 -95.70.241.219,28,2020-10-07,1 -192.35.168.219,28,2020-10-06,1 -134.209.189.230,28,2020-10-07,1 -192.35.168.218,28,2020-10-06,1 -190.144.43.138,28,2020-10-06,1 -120.56.115.67,28,2020-10-06,1 -220.133.24.190,27,2020-10-07,1 -213.25.135.253,27,2020-10-06,1 -104.33.60.16,27,2020-10-06,1 -190.117.240.144,27,2020-10-06,1 -185.220.102.241,27,2020-10-07,1 -185.220.100.253,27,2020-10-06,1 -199.195.253.117,27,2020-10-07,1 -103.114.104.130,27,2020-10-06,1 -124.118.68.2,27,2020-10-06,1 -157.245.80.76,27,2020-10-06,1 -85.93.20.85,27,2020-10-06,1 -185.220.100.241,27,2020-10-06,1 -185.153.199.12,27,2020-10-06,1 -191.234.182.188,27,2020-10-06,1 -200.93.148.35,27,2020-10-07,1 -164.160.33.164,26,2020-10-07,1 -212.2.230.38,26,2020-10-07,1 -54.145.153.125,26,2020-10-07,1 -217.182.192.217,26,2020-10-06,1 -185.220.101.207,26,2020-10-06,1 -185.220.100.240,26,2020-10-06,1 -51.89.153.182,26,2020-10-07,1 -185.220.101.20,26,2020-10-06,1 -45.143.221.41,26,2020-10-06,1 -51.195.149.63,26,2020-10-06,1 -193.218.118.130,25,2020-10-06,1 -213.81.147.251,25,2020-10-07,1 -91.192.103.7,25,2020-10-06,1 -212.129.41.9,25,2020-10-07,1 -161.97.117.229,25,2020-10-06,1 -185.220.101.15,25,2020-10-06,1 -129.146.63.51,25,2020-10-06,1 -223.155.86.43,25,2020-10-06,1 -128.72.141.200,25,2020-10-07,1 -91.234.62.217,25,2020-10-06,1 -122.228.19.79,25,2020-10-07,1 -51.195.150.135,25,2020-10-06,1 -193.29.15.169,25,2020-10-06,1 -94.23.160.207,25,2020-10-07,1 -116.75.167.80,25,2020-10-06,1 -162.142.125.36,24,2020-10-07,1 -51.75.144.43,24,2020-10-06,1 -191.19.235.38,24,2020-10-07,1 -185.153.199.132,24,2020-10-07,1 -183.136.225.45,24,2020-10-07,1 -181.175.226.209,24,2020-10-06,1 -162.158.167.5,24,2020-10-06,1 -89.254.132.172,24,2020-10-06,1 -192.35.168.251,24,2020-10-06,1 -27.7.180.71,24,2020-10-07,1 -103.209.178.42,23,2020-10-06,1 -110.138.227.235,23,2020-10-06,1 -80.41.67.230,23,2020-10-06,1 -193.228.91.105,23,2020-10-07,1 -103.145.13.223,23,2020-10-06,1 -195.54.167.123,23,2020-10-06,1 -42.48.194.164,23,2020-10-07,1 -45.143.221.6,23,2020-10-06,1 -181.118.119.176,23,2020-10-07,1 -106.69.234.43,23,2020-10-07,1 -141.105.136.68,22,2020-10-06,1 -171.25.193.25,22,2020-10-07,1 -8.210.178.55,22,2020-10-07,1 -88.86.195.160,22,2020-10-06,1 -178.233.97.54,22,2020-10-06,1 -185.220.101.205,22,2020-10-07,1 -1.84.3.53,22,2020-10-06,1 -114.32.184.113,22,2020-10-06,1 -177.143.199.93,22,2020-10-06,1 -185.174.195.133,22,2020-10-07,1 -96.68.124.117,22,2020-10-06,1 -192.35.168.64,22,2020-10-07,1 -207.244.250.28,22,2020-10-07,1 -203.150.160.226,22,2020-10-06,1 -91.124.172.174,22,2020-10-06,1 -176.40.124.52,22,2020-10-07,1 -113.200.150.226,22,2020-10-06,1 -223.149.200.8,22,2020-10-07,1 -125.163.78.66,21,2020-10-06,1 -185.220.100.243,21,2020-10-07,1 -50.207.57.246,21,2020-10-06,1 -178.136.195.90,21,2020-10-06,1 -217.28.149.144,21,2020-10-06,1 -45.189.115.94,21,2020-10-06,1 -85.105.197.201,21,2020-10-07,1 -5.189.158.174,21,2020-10-06,1 -134.236.150.193,21,2020-10-07,1 -185.220.102.248,21,2020-10-06,1 -115.63.177.14,21,2020-10-07,1 -172.68.146.233,21,2020-10-06,1 -103.114.105.83,21,2020-10-07,1 -216.170.125.173,21,2020-10-07,1 -103.145.13.118,21,2020-10-07,1 -37.46.150.59,21,2020-10-06,1 -180.241.145.66,21,2020-10-06,1 -168.232.13.50,21,2020-10-06,1 -207.244.225.116,21,2020-10-06,1 -176.100.103.173,21,2020-10-06,1 -185.220.101.7,21,2020-10-07,1 -192.145.141.224,21,2020-10-06,1 -186.235.62.74,21,2020-10-06,1 -36.68.220.1,21,2020-10-06,1 -58.118.205.240,21,2020-10-06,1 -94.130.51.168,21,2020-10-06,1 -180.251.105.232,21,2020-10-06,1 -149.28.148.207,21,2020-10-07,1 -176.111.173.15,21,2020-10-07,1 -95.211.230.211,20,2020-10-07,1 -14.49.199.118,20,2020-10-07,1 -51.77.201.36,20,2020-10-07,1 -78.84.233.68,20,2020-10-06,1 -191.232.242.173,20,2020-10-06,1 -14.161.6.201,20,2020-10-07,1 -202.158.15.146,20,2020-10-07,1 -71.214.177.186,20,2020-10-06,1 -139.162.247.102,20,2020-10-07,1 -193.142.146.50,20,2020-10-07,1 -185.128.154.163,20,2020-10-07,1 -159.147.41.52,20,2020-10-06,1 -194.87.138.19,20,2020-10-07,1 -190.4.22.209,20,2020-10-07,1 -115.36.91.46,20,2020-10-07,1 -171.248.38.160,20,2020-10-06,1 -138.185.24.19,20,2020-10-06,1 -46.105.107.182,20,2020-10-06,1 -45.161.55.232,20,2020-10-06,1 -187.153.92.247,20,2020-10-06,1 -162.208.51.46,20,2020-10-06,1 -138.97.224.90,20,2020-10-06,1 -203.154.33.27,20,2020-10-07,1 -189.103.108.38,20,2020-10-06,1 -185.20.198.160,20,2020-10-06,1 -186.215.235.9,19,2020-10-06,1 -185.202.2.132,19,2020-10-07,1 -88.250.210.8,19,2020-10-07,1 -172.69.134.66,19,2020-10-06,1 -218.161.82.64,19,2020-10-07,1 -185.107.70.202,19,2020-10-07,1 -200.104.131.232,19,2020-10-06,1 -12.219.57.196,19,2020-10-06,1 -185.202.0.78,19,2020-10-06,1 -18.162.245.185,19,2020-10-06,1 -193.70.21.159,19,2020-10-06,1 -189.79.67.148,19,2020-10-06,1 -162.243.161.217,19,2020-10-07,1 -207.244.225.108,19,2020-10-06,1 -59.180.141.211,19,2020-10-07,1 -209.58.143.69,19,2020-10-07,1 -165.232.32.126,19,2020-10-06,1 -69.222.157.166,19,2020-10-06,1 -199.195.250.77,19,2020-10-06,1 -51.83.139.56,19,2020-10-06,1 -164.52.24.170,19,2020-10-06,1 -223.130.31.122,19,2020-10-07,1 -103.133.109.40,19,2020-10-07,1 -212.129.25.123,19,2020-10-07,1 -103.145.13.103,19,2020-10-07,1 -185.42.170.203,19,2020-10-06,1 -170.246.107.55,19,2020-10-06,1 -89.25.102.208,19,2020-10-06,1 -162.247.74.216,18,2020-10-06,1 -139.59.130.236,18,2020-10-07,1 -171.25.193.20,18,2020-10-06,1 -77.89.199.118,18,2020-10-06,1 -13.78.141.119,18,2020-10-07,1 -162.247.74.217,18,2020-10-06,1 -54.183.89.19,18,2020-10-07,1 -45.225.194.104,18,2020-10-06,1 -186.228.144.188,18,2020-10-06,1 -193.218.118.131,18,2020-10-06,1 -124.118.70.61,18,2020-10-06,1 -177.52.25.8,18,2020-10-07,1 -108.75.74.100,18,2020-10-06,1 -37.130.10.79,18,2020-10-06,1 -51.83.129.84,18,2020-10-06,1 -62.109.10.150,18,2020-10-06,1 -178.63.40.189,18,2020-10-07,1 -31.220.3.105,18,2020-10-06,1 -199.195.250.247,18,2020-10-07,1 -170.238.245.147,18,2020-10-06,1 -177.68.110.72,18,2020-10-06,1 -185.147.215.8,18,2020-10-06,1 -172.68.254.41,18,2020-10-06,1 -185.220.102.245,18,2020-10-06,1 -185.220.101.13,18,2020-10-06,1 -220.130.10.13,18,2020-10-06,1 -87.251.74.39,18,2020-10-07,1 -46.105.108.104,18,2020-10-07,1 -118.40.139.200,17,2020-10-07,1 -220.250.51.208,17,2020-10-06,1 -87.251.75.145,17,2020-10-06,1 -31.129.229.76,17,2020-10-07,1 -103.145.13.203,17,2020-10-07,1 -123.14.92.226,17,2020-10-07,1 -51.195.150.144,17,2020-10-06,1 -103.117.33.7,17,2020-10-07,1 -104.244.76.245,17,2020-10-06,1 -185.220.101.5,17,2020-10-06,1 -89.234.157.254,17,2020-10-06,1 -77.247.181.162,17,2020-10-07,1 -47.149.9.231,17,2020-10-06,1 -178.62.117.106,17,2020-10-07,1 -49.235.221.172,17,2020-10-07,1 -185.220.100.245,17,2020-10-06,1 -170.130.187.2,17,2020-10-06,1 -35.246.214.111,17,2020-10-07,1 -120.59.124.133,17,2020-10-06,1 -96.9.66.23,17,2020-10-07,1 -104.140.188.38,17,2020-10-07,1 -192.35.168.193,17,2020-10-06,1 -185.202.2.147,17,2020-10-07,1 -85.104.110.198,17,2020-10-06,1 -107.189.10.42,17,2020-10-06,1 -46.166.139.111,17,2020-10-06,1 -107.181.172.120,17,2020-10-07,1 -186.216.152.38,17,2020-10-06,1 -185.220.101.200,17,2020-10-06,1 -185.220.101.21,17,2020-10-06,1 -171.25.193.77,17,2020-10-06,1 -103.223.9.145,17,2020-10-06,1 -125.99.242.202,17,2020-10-06,1 -172.68.254.123,17,2020-10-06,1 -37.26.136.247,17,2020-10-06,1 -123.142.108.122,17,2020-10-06,1 -188.169.45.232,17,2020-10-07,1 -104.244.76.13,17,2020-10-07,1 -176.216.132.75,17,2020-10-06,1 -139.162.122.110,17,2020-10-07,1 -45.143.221.3,17,2020-10-07,1 -185.220.100.246,17,2020-10-06,1 -185.220.101.142,17,2020-10-06,1 -192.35.168.144,16,2020-10-07,1 -188.255.251.181,16,2020-10-06,1 -209.141.50.85,16,2020-10-07,1 -95.208.124.94,16,2020-10-06,1 -185.220.102.251,16,2020-10-06,1 -88.127.108.225,16,2020-10-06,1 -45.128.133.242,16,2020-10-06,1 -130.225.244.90,16,2020-10-06,1 -193.42.99.50,16,2020-10-06,1 -185.170.114.25,16,2020-10-06,1 -94.52.86.60,16,2020-10-06,1 -217.170.204.126,16,2020-10-06,1 -139.162.108.129,16,2020-10-07,1 -82.223.69.202,16,2020-10-07,1 -150.109.253.19,16,2020-10-06,1 -208.100.26.231,16,2020-10-07,1 -185.202.1.111,16,2020-10-07,1 -103.210.41.23,16,2020-10-07,1 -119.28.91.238,16,2020-10-07,1 -69.202.255.6,16,2020-10-06,1 -164.52.24.168,16,2020-10-06,1 -188.68.45.180,16,2020-10-06,1 -185.217.90.25,16,2020-10-07,1 -209.95.51.11,16,2020-10-06,1 -115.236.67.42,16,2020-10-07,1 -99.52.206.24,16,2020-10-07,1 -81.10.9.198,16,2020-10-07,1 -51.195.148.18,16,2020-10-06,1 -185.220.101.10,16,2020-10-06,1 -69.30.225.114,16,2020-10-07,1 -103.9.157.45,16,2020-10-07,1 -139.59.95.60,16,2020-10-06,1 -106.58.175.97,16,2020-10-07,1 -51.195.149.69,16,2020-10-06,1 -109.31.131.82,16,2020-10-07,1 -45.148.121.85,16,2020-10-07,1 -183.88.232.183,15,2020-10-06,1 -170.130.187.38,15,2020-10-06,1 -220.93.66.124,15,2020-10-06,1 -184.154.74.66,15,2020-10-06,1 -58.218.204.51,15,2020-10-07,1 -185.220.101.215,15,2020-10-06,1 -185.94.111.1,15,2020-10-07,1 -170.130.187.54,15,2020-10-06,1 -204.12.234.82,15,2020-10-07,1 -185.220.100.244,15,2020-10-06,1 -218.200.235.178,15,2020-10-07,1 -149.202.238.204,15,2020-10-06,1 -80.82.70.118,15,2020-10-07,1 -101.99.20.59,15,2020-10-07,1 -182.56.131.10,15,2020-10-07,1 -162.158.179.137,15,2020-10-06,1 -185.220.102.249,15,2020-10-07,1 -220.128.159.121,15,2020-10-06,1 -157.245.41.62,15,2020-10-07,1 -64.64.104.10,15,2020-10-07,1 -78.141.245.242,15,2020-10-06,1 -183.97.39.5,15,2020-10-06,1 -185.220.102.246,15,2020-10-07,1 -185.140.56.36,15,2020-10-06,1 -13.90.21.186,15,2020-10-07,1 -139.199.123.152,15,2020-10-07,1 -185.232.64.121,15,2020-10-06,1 -134.17.94.58,15,2020-10-07,1 -167.71.9.180,15,2020-10-07,1 -193.118.53.194,15,2020-10-07,1 -68.114.111.205,15,2020-10-06,1 -103.232.237.160,15,2020-10-06,1 -207.244.248.208,15,2020-10-07,1 -197.5.145.27,15,2020-10-07,1 -161.35.47.220,15,2020-10-06,1 -104.206.128.30,15,2020-10-06,1 -101.255.65.138,15,2020-10-07,1 -192.35.168.250,15,2020-10-06,1 -159.89.53.183,14,2020-10-07,1 -103.223.9.173,14,2020-10-06,1 -59.180.143.181,14,2020-10-06,1 -185.100.87.206,14,2020-10-06,1 -46.165.230.5,14,2020-10-06,1 -164.132.154.237,14,2020-10-07,1 -13.67.176.48,14,2020-10-07,1 -40.121.153.222,14,2020-10-07,1 -175.198.83.204,14,2020-10-06,1 -98.242.239.194,14,2020-10-07,1 -198.204.240.90,14,2020-10-07,1 -60.191.125.35,14,2020-10-07,1 -39.117.31.162,14,2020-10-06,1 -172.68.254.43,14,2020-10-06,1 -45.93.201.126,14,2020-10-07,1 -124.207.193.119,14,2020-10-06,1 -114.199.218.37,14,2020-10-07,1 -141.98.80.39,14,2020-10-06,1 -52.54.45.239,14,2020-10-07,1 -185.220.100.247,14,2020-10-07,1 -51.195.33.22,14,2020-10-06,1 -114.35.199.18,14,2020-10-06,1 -45.148.122.149,14,2020-10-07,1 -185.191.126.240,14,2020-10-06,1 -82.81.215.149,14,2020-10-06,1 -162.158.178.174,14,2020-10-06,1 -173.208.211.202,14,2020-10-07,1 -212.129.2.28,14,2020-10-07,1 -182.74.25.246,14,2020-10-06,1 -185.220.101.136,14,2020-10-06,1 -122.181.16.134,14,2020-10-06,1 -193.118.53.210,13,2020-10-06,1 -37.49.230.126,13,2020-10-07,1 -117.160.210.211,13,2020-10-06,1 -177.155.248.159,13,2020-10-06,1 -104.248.143.177,13,2020-10-07,1 -186.144.60.110,13,2020-10-06,1 -171.244.139.236,13,2020-10-07,1 -185.126.177.184,13,2020-10-06,1 -164.132.54.215,13,2020-10-07,1 -175.196.61.1,13,2020-10-06,1 -74.112.142.236,13,2020-10-06,1 -163.27.176.178,13,2020-10-06,1 -162.158.178.128,13,2020-10-06,1 -192.144.143.60,13,2020-10-07,1 -206.251.221.183,13,2020-10-06,1 -185.220.101.211,13,2020-10-06,1 -52.231.154.50,13,2020-10-06,1 -95.109.88.253,13,2020-10-06,1 -195.5.109.194,13,2020-10-06,1 -45.146.165.80,13,2020-10-07,1 -45.95.168.141,13,2020-10-06,1 -37.134.195.202,13,2020-10-06,1 -176.20.174.206,13,2020-10-07,1 -185.220.101.139,13,2020-10-06,1 -211.250.72.142,13,2020-10-06,1 -185.176.222.73,13,2020-10-06,1 -5.188.210.227,13,2020-10-06,1 -172.68.146.239,13,2020-10-06,1 -172.68.255.101,13,2020-10-06,1 -2.57.122.98,13,2020-10-07,1 -94.72.130.188,13,2020-10-06,1 -89.179.247.249,13,2020-10-07,1 -51.77.52.216,13,2020-10-06,1 -124.16.75.150,13,2020-10-07,1 -41.217.204.220,13,2020-10-07,1 -128.14.133.58,13,2020-10-06,1 -91.241.19.60,12,2020-10-07,1 -45.143.220.250,12,2020-10-07,1 -74.112.141.177,12,2020-10-07,1 -34.77.197.251,12,2020-10-06,1 -172.68.255.47,12,2020-10-06,1 -83.97.20.21,12,2020-10-07,1 -185.220.101.134,12,2020-10-07,1 -107.172.248.158,12,2020-10-07,1 -162.158.179.59,12,2020-10-06,1 -162.158.179.155,12,2020-10-06,1 -85.60.193.225,12,2020-10-07,1 -194.61.24.35,12,2020-10-06,1 -162.158.167.103,12,2020-10-06,1 -192.241.217.52,12,2020-10-06,1 -170.210.176.254,12,2020-10-07,1 -195.154.176.37,12,2020-10-06,1 -185.220.101.14,12,2020-10-06,1 -185.220.101.137,12,2020-10-06,1 -162.158.165.135,12,2020-10-06,1 -104.140.188.30,12,2020-10-07,1 -162.158.179.113,12,2020-10-06,1 -162.158.166.132,12,2020-10-06,1 -203.251.11.118,12,2020-10-06,1 -104.206.128.6,12,2020-10-06,1 -51.254.143.190,12,2020-10-07,1 -176.205.141.100,12,2020-10-07,1 -43.227.56.11,12,2020-10-07,1 -192.35.168.249,12,2020-10-07,1 -171.25.193.78,12,2020-10-06,1 -89.248.167.131,12,2020-10-06,1 -213.108.133.6,12,2020-10-06,1 -196.52.43.99,12,2020-10-07,1 -138.197.213.134,12,2020-10-07,1 -109.134.113.102,12,2020-10-06,1 -64.53.207.60,12,2020-10-06,1 -103.10.228.137,11,2020-10-07,1 -37.187.122.154,11,2020-10-06,1 -167.172.158.47,11,2020-10-06,1 -209.97.144.55,11,2020-10-07,1 -144.217.85.4,11,2020-10-07,1 -172.68.253.248,11,2020-10-06,1 -23.129.64.200,11,2020-10-07,1 -185.176.220.56,11,2020-10-06,1 -61.219.11.153,11,2020-10-06,1 -162.158.179.183,11,2020-10-06,1 -185.199.10.71,11,2020-10-07,1 -36.72.219.2,11,2020-10-07,1 -185.202.2.68,11,2020-10-06,1 -125.212.238.36,11,2020-10-07,1 -167.99.108.13,11,2020-10-07,1 -220.132.176.232,11,2020-10-07,1 -206.189.136.172,11,2020-10-07,1 -162.158.166.242,11,2020-10-06,1 -139.59.43.196,11,2020-10-06,1 -176.107.187.151,11,2020-10-07,1 -162.158.166.20,11,2020-10-06,1 -35.242.214.242,11,2020-10-07,1 -139.196.239.108,11,2020-10-06,1 -52.183.143.164,11,2020-10-07,1 -185.244.43.183,11,2020-10-07,1 -104.206.128.66,11,2020-10-06,1 -93.174.89.20,11,2020-10-07,1 -92.82.208.71,11,2020-10-06,1 -94.102.54.251,11,2020-10-06,1 -164.163.99.10,11,2020-10-06,1 -192.241.239.63,11,2020-10-06,1 -167.88.7.134,11,2020-10-07,1 -178.62.31.152,11,2020-10-07,1 -45.79.214.240,11,2020-10-06,1 -93.114.234.244,11,2020-10-07,1 -68.183.94.180,11,2020-10-06,1 -162.158.166.158,11,2020-10-06,1 -82.67.138.184,11,2020-10-06,1 -5.39.87.36,11,2020-10-06,1 -69.197.161.210,11,2020-10-07,1 -65.49.20.68,11,2020-10-07,1 -192.241.210.93,11,2020-10-06,1 -64.227.7.123,11,2020-10-06,1 -51.195.149.84,11,2020-10-07,1 -91.237.161.173,11,2020-10-07,1 -51.210.97.29,11,2020-10-07,1 -184.105.139.68,11,2020-10-06,1 -34.94.247.253,11,2020-10-06,1 -185.32.222.168,11,2020-10-06,1 -159.89.123.66,11,2020-10-07,1 -95.110.222.165,11,2020-10-07,1 -192.210.191.11,11,2020-10-07,1 -188.92.77.18,11,2020-10-06,1 -92.118.160.33,11,2020-10-06,1 -46.249.32.58,11,2020-10-07,1 -37.187.174.55,11,2020-10-06,1 -123.14.5.115,11,2020-10-06,1 -148.72.211.177,11,2020-10-07,1 -157.230.248.89,11,2020-10-06,1 -91.234.194.249,11,2020-10-07,1 -37.187.135.130,11,2020-10-07,1 -212.124.119.74,10,2020-10-06,1 -94.182.189.235,10,2020-10-06,1 -193.106.31.2,10,2020-10-06,1 -172.69.134.54,10,2020-10-06,1 -103.21.53.11,10,2020-10-06,1 -47.74.7.193,10,2020-10-07,1 -192.144.148.220,10,2020-10-07,1 -198.144.120.223,10,2020-10-06,1 -162.158.179.23,10,2020-10-06,1 -198.96.155.3,10,2020-10-06,1 -180.76.101.241,10,2020-10-06,1 -178.176.224.77,10,2020-10-06,1 -185.220.101.6,10,2020-10-06,1 -82.193.145.123,10,2020-10-07,1 -162.247.73.192,10,2020-10-06,1 -67.205.153.4,10,2020-10-07,1 -200.46.28.251,10,2020-10-07,1 -104.140.188.2,10,2020-10-06,1 -154.8.195.36,10,2020-10-06,1 -167.172.144.31,10,2020-10-06,1 -103.146.202.150,10,2020-10-07,1 -89.33.192.51,10,2020-10-06,1 -222.90.28.99,10,2020-10-06,1 -112.217.207.130,10,2020-10-06,1 -34.73.10.30,10,2020-10-06,1 -152.254.224.131,10,2020-10-07,1 -185.146.157.196,10,2020-10-06,1 -185.67.82.114,10,2020-10-06,1 -74.82.47.3,10,2020-10-06,1 -104.244.72.203,10,2020-10-06,1 -162.158.166.58,10,2020-10-06,1 -103.114.104.156,10,2020-10-07,1 -202.182.119.2,10,2020-10-07,1 -202.29.147.35,10,2020-10-07,1 -51.195.46.17,10,2020-10-07,1 -194.87.138.209,10,2020-10-07,1 -91.121.89.189,10,2020-10-06,1 -85.248.227.163,10,2020-10-07,1 -170.130.187.42,10,2020-10-07,1 -185.57.152.70,10,2020-10-07,1 -210.56.23.100,10,2020-10-06,1 -179.43.167.229,10,2020-10-07,1 -179.43.160.235,10,2020-10-06,1 -51.15.238.252,10,2020-10-06,1 -1.160.116.242,10,2020-10-06,1 -23.129.64.206,10,2020-10-07,1 -103.252.196.150,10,2020-10-06,1 -151.80.140.166,10,2020-10-06,1 -87.236.52.30,10,2020-10-07,1 -128.199.133.62,10,2020-10-06,1 -122.51.167.108,10,2020-10-07,1 -167.99.90.240,10,2020-10-06,1 -182.61.5.136,10,2020-10-06,1 -103.49.153.141,10,2020-10-06,1 -167.71.195.173,10,2020-10-06,1 -125.215.207.40,10,2020-10-07,1 -186.170.28.46,10,2020-10-06,1 -122.51.235.39,10,2020-10-07,1 -51.83.139.55,10,2020-10-06,1 -123.207.8.86,10,2020-10-07,1 -51.195.149.142,10,2020-10-06,1 -193.112.19.133,10,2020-10-06,1 -120.132.28.86,10,2020-10-07,1 -185.191.126.242,10,2020-10-06,1 -123.31.26.144,10,2020-10-07,1 -223.99.22.149,10,2020-10-07,1 -104.244.73.193,10,2020-10-07,1 -185.220.102.250,10,2020-10-06,1 -35.181.1.170,10,2020-10-07,1 -198.98.54.14,10,2020-10-06,1 -172.69.134.126,10,2020-10-06,1 -156.54.174.197,10,2020-10-06,1 -159.89.48.56,10,2020-10-06,1 -45.95.168.60,10,2020-10-06,1 -54.38.188.35,10,2020-10-07,1 -79.137.79.48,10,2020-10-06,1 -156.96.118.53,10,2020-10-06,1 -132.232.132.103,10,2020-10-06,1 -206.81.16.252,10,2020-10-07,1 -185.220.101.4,10,2020-10-06,1 -51.158.111.157,10,2020-10-06,1 -46.19.141.82,10,2020-10-06,1 -142.217.53.17,10,2020-10-07,1 -104.244.74.57,10,2020-10-06,1 -124.193.142.2,10,2020-10-06,1 -170.130.187.50,10,2020-10-06,1 -81.69.177.96,10,2020-10-07,1 -218.29.54.108,10,2020-10-07,1 -69.28.90.167,10,2020-10-07,1 -167.172.57.1,10,2020-10-06,1 -103.249.239.222,10,2020-10-07,1 -138.197.213.160,10,2020-10-07,1 -168.226.218.253,10,2020-10-06,1 -12.97.172.196,10,2020-10-07,1 -183.234.58.41,10,2020-10-06,1 -196.12.240.199,10,2020-10-06,1 -2.86.32.7,10,2020-10-07,1 -23.129.64.201,10,2020-10-06,1 -188.216.246.136,10,2020-10-06,1 -159.65.239.34,10,2020-10-06,1 -115.146.126.209,10,2020-10-07,1 -217.170.206.192,10,2020-10-06,1 -93.113.111.193,10,2020-10-06,1 -153.126.187.46,10,2020-10-06,1 -104.244.74.28,10,2020-10-06,1 -162.243.169.210,10,2020-10-07,1 -180.245.88.178,10,2020-10-07,1 -59.180.176.104,10,2020-10-06,1 -46.101.159.212,10,2020-10-07,1 -122.51.221.184,10,2020-10-07,1 -45.154.168.201,10,2020-10-06,1 -178.32.197.95,10,2020-10-06,1 -203.172.66.216,10,2020-10-07,1 -113.141.70.184,10,2020-10-07,1 -128.199.210.138,10,2020-10-07,1 -54.219.178.204,10,2020-10-07,1 -136.255.144.2,10,2020-10-06,1 -51.91.99.233,10,2020-10-06,1 -210.75.240.13,10,2020-10-07,1 -45.143.221.85,10,2020-10-07,1 -45.56.67.34,10,2020-10-07,1 -193.118.53.202,10,2020-10-06,1 -137.74.206.80,10,2020-10-07,1 -14.29.255.9,10,2020-10-06,1 -178.62.76.138,10,2020-10-07,1 -74.82.47.4,10,2020-10-07,1 -136.144.225.128,10,2020-10-06,1 -211.57.153.250,10,2020-10-07,1 -157.245.243.14,10,2020-10-07,1 -37.187.252.148,10,2020-10-07,1 -45.154.35.213,10,2020-10-06,1 -140.143.199.89,10,2020-10-06,1 -51.79.86.177,10,2020-10-06,1 -80.82.68.68,9,2020-10-07,1 -118.31.120.119,9,2020-10-06,1 -188.165.148.25,9,2020-10-06,1 -91.192.103.8,9,2020-10-06,1 -179.43.167.228,9,2020-10-06,1 -178.128.22.249,9,2020-10-07,1 -218.21.240.24,9,2020-10-06,1 -200.159.63.178,9,2020-10-06,1 -185.248.160.65,9,2020-10-06,1 -51.195.149.108,9,2020-10-06,1 -51.15.229.198,9,2020-10-06,1 -103.105.67.146,9,2020-10-07,1 -179.43.160.234,9,2020-10-06,1 -120.53.12.94,9,2020-10-06,1 -114.5.64.82,9,2020-10-07,1 -103.69.124.247,9,2020-10-06,1 -177.98.217.53,9,2020-10-07,1 -95.128.43.164,9,2020-10-06,1 -213.141.157.220,9,2020-10-06,1 -141.98.252.163,9,2020-10-06,1 -200.45.147.129,9,2020-10-06,1 -62.210.201.246,9,2020-10-07,1 -103.57.123.1,9,2020-10-07,1 -185.191.126.243,9,2020-10-06,1 -182.254.195.46,9,2020-10-06,1 -112.150.165.168,9,2020-10-07,1 -139.180.218.28,9,2020-10-07,1 -118.27.0.198,9,2020-10-07,1 -65.0.35.30,9,2020-10-07,1 -54.38.36.210,9,2020-10-06,1 -183.144.199.11,9,2020-10-06,1 -110.49.70.244,9,2020-10-06,1 -172.68.255.155,9,2020-10-06,1 -189.19.96.144,9,2020-10-06,1 -31.31.72.24,9,2020-10-06,1 -51.68.229.177,9,2020-10-07,1 -115.223.34.141,9,2020-10-06,1 -151.80.173.36,9,2020-10-07,1 -191.191.107.15,9,2020-10-06,1 -64.225.14.25,9,2020-10-06,1 -115.236.100.36,9,2020-10-06,1 -104.131.32.115,9,2020-10-06,1 -206.189.93.218,9,2020-10-06,1 -68.183.68.148,9,2020-10-06,1 -45.143.221.90,9,2020-10-07,1 -177.69.237.54,9,2020-10-06,1 -203.66.168.81,9,2020-10-06,1 -184.105.247.194,9,2020-10-07,1 -198.251.83.193,9,2020-10-06,1 -128.199.16.228,9,2020-10-07,1 -95.9.96.247,9,2020-10-07,1 -82.65.86.43,9,2020-10-07,1 -152.136.143.44,9,2020-10-06,1 -23.129.64.189,9,2020-10-06,1 -62.234.142.49,9,2020-10-06,1 -141.98.81.52,9,2020-10-07,1 -162.247.74.201,9,2020-10-06,1 -184.105.247.252,9,2020-10-07,1 -178.62.27.144,9,2020-10-07,1 -46.101.173.231,9,2020-10-07,1 -111.229.19.221,9,2020-10-06,1 -183.234.184.4,9,2020-10-06,1 -49.176.146.35,9,2020-10-06,1 -51.89.136.104,9,2020-10-06,1 -123.59.62.57,9,2020-10-06,1 -150.158.111.251,9,2020-10-06,1 -162.158.165.173,9,2020-10-06,1 -216.218.206.68,9,2020-10-06,1 -188.131.131.59,9,2020-10-06,1 -217.170.205.14,9,2020-10-06,1 -203.206.205.179,9,2020-10-07,1 -162.211.226.228,9,2020-10-06,1 -104.248.124.109,9,2020-10-07,1 -165.232.64.90,9,2020-10-07,1 -51.68.174.34,9,2020-10-06,1 -45.135.241.109,9,2020-10-06,1 -71.6.232.2,9,2020-10-06,1 -203.135.56.86,9,2020-10-06,1 -94.2.61.17,9,2020-10-06,1 -117.121.38.28,9,2020-10-07,1 -119.126.112.246,9,2020-10-06,1 -162.158.165.129,9,2020-10-06,1 -212.47.238.207,9,2020-10-06,1 -49.232.166.190,9,2020-10-07,1 -35.238.86.248,9,2020-10-06,1 -190.186.170.83,9,2020-10-06,1 -196.11.177.190,9,2020-10-07,1 -167.71.102.17,9,2020-10-07,1 -49.234.50.235,9,2020-10-06,1 -180.76.180.231,9,2020-10-06,1 -54.37.232.108,9,2020-10-06,1 -144.34.165.26,9,2020-10-07,1 -185.220.103.8,9,2020-10-06,1 -183.103.35.229,9,2020-10-06,1 -195.54.160.183,9,2020-10-07,1 -172.69.134.102,9,2020-10-06,1 -46.22.220.37,9,2020-10-06,1 -117.83.83.109,9,2020-10-06,1 -82.223.98.190,9,2020-10-07,1 -185.220.101.213,9,2020-10-06,1 -156.96.56.248,9,2020-10-06,1 -162.158.179.193,9,2020-10-06,1 -35.0.127.52,9,2020-10-06,1 -168.232.152.254,9,2020-10-07,1 -112.199.98.42,9,2020-10-07,1 -84.209.139.0,9,2020-10-06,1 -188.166.60.138,9,2020-10-06,1 -162.247.74.200,9,2020-10-07,1 -119.45.208.191,9,2020-10-06,1 -220.180.119.192,9,2020-10-06,1 -45.77.165.76,9,2020-10-06,1 -202.159.24.35,9,2020-10-06,1 -157.245.110.124,9,2020-10-07,1 -66.49.131.65,9,2020-10-06,1 -14.29.254.239,9,2020-10-07,1 -99.17.246.167,9,2020-10-07,1 -195.176.3.24,9,2020-10-06,1 -198.98.56.27,9,2020-10-06,1 -123.231.160.98,9,2020-10-06,1 -168.90.49.190,9,2020-10-06,1 -160.19.49.7,9,2020-10-06,1 -185.220.101.146,9,2020-10-06,1 -103.114.107.250,9,2020-10-06,1 -125.19.153.156,9,2020-10-06,1 -31.220.40.238,9,2020-10-07,1 -83.118.194.4,9,2020-10-06,1 -120.59.22.205,9,2020-10-07,1 -204.85.191.9,9,2020-10-06,1 -104.248.29.200,9,2020-10-06,1 -87.242.234.181,9,2020-10-07,1 -115.77.188.228,9,2020-10-06,1 -51.38.48.127,9,2020-10-07,1 -178.62.33.222,9,2020-10-06,1 -111.207.49.186,9,2020-10-06,1 -104.140.188.14,9,2020-10-06,1 -45.142.189.66,9,2020-10-07,1 -106.12.115.169,9,2020-10-06,1 -46.249.32.234,9,2020-10-07,1 -198.98.62.35,9,2020-10-06,1 -92.246.84.133,9,2020-10-06,1 -51.77.200.139,9,2020-10-07,1 -123.149.215.142,9,2020-10-06,1 -75.75.97.57,9,2020-10-06,1 -139.59.80.157,9,2020-10-06,1 -188.53.19.157,9,2020-10-06,1 -119.28.4.12,9,2020-10-06,1 -61.216.131.31,9,2020-10-06,1 -43.231.128.195,9,2020-10-06,1 -125.35.92.130,9,2020-10-07,1 -179.219.97.149,9,2020-10-07,1 -193.70.89.118,9,2020-10-07,1 -192.144.129.98,9,2020-10-06,1 -46.32.252.149,9,2020-10-07,1 -35.247.42.6,9,2020-10-06,1 -113.160.54.78,9,2020-10-07,1 -196.50.13.218,9,2020-10-06,1 -122.51.241.12,9,2020-10-06,1 -45.43.54.172,9,2020-10-07,1 -162.158.179.187,9,2020-10-06,1 -185.220.101.138,9,2020-10-06,1 -45.143.221.9,9,2020-10-06,1 -54.36.108.162,9,2020-10-06,1 -152.136.121.150,9,2020-10-06,1 -162.158.165.89,9,2020-10-06,1 -115.233.224.130,9,2020-10-06,1 -51.68.139.151,9,2020-10-06,1 -198.251.83.73,9,2020-10-06,1 -113.108.88.78,9,2020-10-06,1 -103.226.249.209,9,2020-10-06,1 -45.82.137.35,9,2020-10-06,1 -206.189.194.249,9,2020-10-06,1 -54.37.71.207,9,2020-10-06,1 -144.34.186.40,9,2020-10-06,1 -123.136.128.13,9,2020-10-06,1 -185.220.102.252,9,2020-10-06,1 -51.91.127.200,9,2020-10-07,1 -177.0.108.26,9,2020-10-06,1 -42.194.203.206,9,2020-10-06,1 -91.192.103.9,9,2020-10-06,1 -119.29.156.239,9,2020-10-06,1 -104.206.128.74,9,2020-10-06,1 -216.155.130.140,9,2020-10-06,1 -185.220.101.144,9,2020-10-06,1 -219.144.68.15,9,2020-10-06,1 -123.207.88.57,9,2020-10-06,1 -185.220.101.206,9,2020-10-06,1 -196.25.35.242,9,2020-10-07,1 -122.51.28.187,9,2020-10-07,1 -104.206.128.46,9,2020-10-07,1 -34.106.93.46,9,2020-10-07,1 -128.14.209.154,9,2020-10-06,1 -162.158.167.81,9,2020-10-06,1 -27.115.50.114,9,2020-10-06,1 -35.200.203.6,9,2020-10-06,1 -51.15.43.205,9,2020-10-06,1 -129.204.249.36,9,2020-10-06,1 -51.195.150.139,9,2020-10-06,1 -162.0.236.242,9,2020-10-06,1 -104.140.188.50,9,2020-10-07,1 -115.159.201.15,9,2020-10-06,1 -116.228.53.227,9,2020-10-07,1 -111.229.24.104,9,2020-10-06,1 -139.59.7.251,9,2020-10-06,1 -31.220.40.237,9,2020-10-06,1 -106.75.225.60,9,2020-10-07,1 -86.96.197.226,9,2020-10-06,1 -95.141.35.15,9,2020-10-06,1 -46.59.65.88,9,2020-10-06,1 -105.156.229.187,9,2020-10-06,1 -218.237.253.167,9,2020-10-06,1 -189.178.14.25,9,2020-10-06,1 -123.55.98.28,9,2020-10-06,1 -184.105.247.196,9,2020-10-07,1 -203.245.29.159,9,2020-10-07,1 -93.15.41.61,9,2020-10-06,1 -51.38.186.180,9,2020-10-06,1 -54.150.80.72,9,2020-10-07,1 -185.220.100.250,9,2020-10-06,1 -81.17.16.149,9,2020-10-06,1 -45.172.108.84,9,2020-10-06,1 -180.69.254.177,9,2020-10-06,1 -178.62.230.153,9,2020-10-07,1 -218.93.225.150,9,2020-10-06,1 -123.30.236.149,9,2020-10-06,1 -212.109.197.1,9,2020-10-06,1 -77.57.204.34,8,2020-10-06,1 -116.74.251.112,8,2020-10-06,1 -81.70.20.177,8,2020-10-07,1 -218.59.129.110,8,2020-10-06,1 -54.39.16.73,8,2020-10-06,1 -213.137.179.203,8,2020-10-06,1 -149.129.222.54,8,2020-10-07,1 -77.247.181.163,8,2020-10-06,1 -116.3.192.254,8,2020-10-07,1 -128.199.87.167,8,2020-10-06,1 -190.147.165.128,8,2020-10-07,1 -37.252.187.140,8,2020-10-06,1 -106.12.91.102,8,2020-10-07,1 -49.232.59.246,8,2020-10-07,1 -81.70.43.144,8,2020-10-07,1 -118.89.113.252,8,2020-10-06,1 -185.239.242.57,8,2020-10-06,1 -162.158.178.14,8,2020-10-06,1 -213.33.226.118,8,2020-10-07,1 -129.204.233.214,8,2020-10-06,1 -162.213.3.221,8,2020-10-06,1 -139.59.129.44,8,2020-10-07,1 -64.227.8.111,8,2020-10-06,1 -122.51.202.157,8,2020-10-07,1 -103.226.250.28,8,2020-10-06,1 -111.20.195.30,8,2020-10-06,1 -129.204.186.151,8,2020-10-06,1 -54.38.55.136,8,2020-10-06,1 -178.17.170.178,8,2020-10-06,1 -185.12.45.118,8,2020-10-06,1 -79.120.54.174,8,2020-10-07,1 -140.86.12.31,8,2020-10-07,1 -190.85.54.158,8,2020-10-06,1 -111.198.48.204,8,2020-10-06,1 -185.220.103.4,8,2020-10-06,1 -210.104.112.207,8,2020-10-06,1 -103.223.9.147,8,2020-10-06,1 -121.67.181.9,8,2020-10-06,1 -185.220.101.18,8,2020-10-06,1 -51.15.171.31,8,2020-10-06,1 -187.214.158.96,8,2020-10-07,1 -152.231.93.130,8,2020-10-06,1 -51.195.149.85,8,2020-10-06,1 -213.190.30.117,8,2020-10-06,1 -103.39.210.110,8,2020-10-06,1 -178.66.188.201,8,2020-10-06,1 -5.135.179.178,8,2020-10-06,1 -162.158.166.118,8,2020-10-06,1 -134.175.140.34,8,2020-10-06,1 -117.232.127.51,8,2020-10-06,1 -185.100.87.190,8,2020-10-06,1 -5.200.92.10,8,2020-10-06,1 -185.34.33.2,8,2020-10-06,1 -118.89.236.249,8,2020-10-06,1 -45.154.255.69,8,2020-10-06,1 -51.77.112.168,8,2020-10-06,1 -5.56.200.234,8,2020-10-06,1 -46.19.141.83,8,2020-10-06,1 -188.166.9.162,8,2020-10-06,1 -116.16.13.18,8,2020-10-07,1 -75.101.46.22,8,2020-10-06,1 -137.74.173.182,8,2020-10-06,1 -178.128.63.36,8,2020-10-06,1 -191.234.161.50,8,2020-10-06,1 -209.65.68.190,8,2020-10-07,1 -162.158.178.250,8,2020-10-06,1 -121.69.89.78,8,2020-10-06,1 -95.163.206.70,8,2020-10-06,1 -23.129.64.192,8,2020-10-06,1 -139.186.77.46,8,2020-10-06,1 -185.220.101.203,8,2020-10-06,1 -162.158.167.51,8,2020-10-06,1 -62.28.217.62,8,2020-10-06,1 -188.166.228.229,8,2020-10-06,1 -157.230.100.192,8,2020-10-06,1 -218.237.156.34,8,2020-10-06,1 -114.67.102.123,8,2020-10-06,1 -178.128.158.86,8,2020-10-07,1 -200.188.48.142,8,2020-10-06,1 -4.17.231.208,8,2020-10-06,1 -159.89.167.183,8,2020-10-06,1 -162.243.233.102,8,2020-10-06,1 -219.92.163.192,8,2020-10-06,1 -23.102.231.168,8,2020-10-07,1 -124.158.12.202,8,2020-10-07,1 -198.211.117.96,8,2020-10-07,1 -58.185.183.60,8,2020-10-06,1 -80.169.225.123,8,2020-10-06,1 -43.224.130.146,8,2020-10-06,1 -188.166.233.31,8,2020-10-06,1 -190.245.95.122,8,2020-10-07,1 -139.199.48.124,8,2020-10-06,1 -145.239.131.228,8,2020-10-06,1 -85.159.237.210,8,2020-10-06,1 -118.121.57.64,8,2020-10-06,1 -178.128.39.211,8,2020-10-06,1 -167.99.194.74,8,2020-10-07,1 -101.206.162.227,8,2020-10-06,1 -171.15.17.90,8,2020-10-07,1 -118.25.44.66,8,2020-10-06,1 -144.217.93.78,8,2020-10-07,1 -113.160.201.150,8,2020-10-06,1 -201.77.130.15,8,2020-10-06,1 -134.175.130.52,8,2020-10-06,1 -54.37.71.203,8,2020-10-06,1 -46.249.59.113,8,2020-10-06,1 -45.125.65.112,8,2020-10-06,1 -45.125.65.118,8,2020-10-06,1 -175.24.113.23,8,2020-10-06,1 -172.68.254.15,8,2020-10-06,1 -91.64.202.240,8,2020-10-06,1 -188.166.185.157,8,2020-10-07,1 -198.12.124.80,8,2020-10-06,1 -150.109.151.206,8,2020-10-06,1 -186.59.250.178,8,2020-10-06,1 -189.14.40.146,8,2020-10-07,1 -51.178.45.204,8,2020-10-06,1 -199.195.250.42,8,2020-10-06,1 -182.61.167.24,8,2020-10-07,1 -112.199.118.195,8,2020-10-06,1 -45.186.248.135,8,2020-10-06,1 -162.247.72.199,8,2020-10-06,1 -222.190.143.206,8,2020-10-06,1 -91.144.173.197,8,2020-10-06,1 -69.250.156.161,8,2020-10-06,1 -104.131.39.193,8,2020-10-06,1 -157.245.54.200,8,2020-10-06,1 -152.136.98.80,8,2020-10-06,1 -74.82.195.39,8,2020-10-06,1 -106.75.146.18,8,2020-10-06,1 -51.77.58.79,8,2020-10-07,1 -170.130.187.58,8,2020-10-07,1 -211.253.10.96,8,2020-10-06,1 -167.99.67.209,8,2020-10-06,1 -95.188.70.130,8,2020-10-07,1 -49.231.176.30,8,2020-10-06,1 -64.227.27.221,8,2020-10-07,1 -31.132.151.46,8,2020-10-06,1 -160.251.13.147,8,2020-10-06,1 -176.114.199.56,8,2020-10-06,1 -202.137.10.182,8,2020-10-06,1 -46.105.149.168,8,2020-10-06,1 -162.158.166.4,8,2020-10-06,1 -23.97.65.219,8,2020-10-06,1 -167.71.235.133,8,2020-10-07,1 -51.75.64.187,8,2020-10-06,1 -144.217.191.148,8,2020-10-06,1 -198.199.97.218,8,2020-10-07,1 -178.217.169.10,8,2020-10-06,1 -43.226.39.43,8,2020-10-06,1 -73.51.61.166,8,2020-10-06,1 -134.122.76.222,8,2020-10-06,1 -132.232.4.140,8,2020-10-07,1 -179.43.167.227,8,2020-10-06,1 -85.208.109.221,8,2020-10-07,1 -118.116.8.215,8,2020-10-06,1 -118.200.44.158,8,2020-10-06,1 -120.92.10.24,8,2020-10-06,1 -165.22.251.121,8,2020-10-07,1 -51.195.149.141,8,2020-10-06,1 -139.59.159.75,8,2020-10-06,1 -107.150.100.197,8,2020-10-06,1 -220.186.170.35,8,2020-10-06,1 -139.59.46.167,8,2020-10-06,1 -117.92.152.71,8,2020-10-06,1 -129.211.171.24,8,2020-10-07,1 -185.123.164.52,8,2020-10-06,1 -185.220.101.9,8,2020-10-06,1 -213.32.78.219,8,2020-10-07,1 -134.209.164.184,8,2020-10-06,1 -89.222.181.58,8,2020-10-06,1 -51.178.51.36,8,2020-10-06,1 -189.112.42.197,8,2020-10-06,1 -85.209.0.210,8,2020-10-07,1 -203.56.24.180,8,2020-10-06,1 -181.48.184.162,8,2020-10-06,1 -51.38.50.99,8,2020-10-06,1 -142.93.215.19,8,2020-10-07,1 -185.12.45.117,8,2020-10-06,1 -117.91.186.77,8,2020-10-06,1 -186.138.55.190,8,2020-10-06,1 -103.100.208.254,8,2020-10-06,1 -137.74.36.253,8,2020-10-06,1 -178.62.6.114,8,2020-10-06,1 -51.254.141.18,8,2020-10-06,1 -39.109.123.18,8,2020-10-06,1 -68.183.27.89,8,2020-10-07,1 -72.201.104.87,8,2020-10-07,1 -217.182.205.27,8,2020-10-06,1 -77.233.4.133,8,2020-10-06,1 -62.210.37.82,8,2020-10-07,1 -116.237.194.38,8,2020-10-07,1 -113.142.58.155,8,2020-10-06,1 -162.243.50.8,8,2020-10-07,1 -164.132.46.14,8,2020-10-06,1 -151.236.193.195,8,2020-10-06,1 -49.232.100.132,8,2020-10-06,1 -220.78.28.68,8,2020-10-06,1 -121.15.2.178,8,2020-10-06,1 -89.248.174.193,8,2020-10-07,1 -15.206.243.135,8,2020-10-06,1 -51.195.149.132,8,2020-10-06,1 -129.211.92.123,8,2020-10-06,1 -159.65.64.76,8,2020-10-06,1 -177.139.136.73,8,2020-10-06,1 -60.250.23.233,8,2020-10-06,1 -192.241.238.180,8,2020-10-07,1 -139.99.238.150,8,2020-10-07,1 -35.235.126.192,8,2020-10-07,1 -104.244.76.58,8,2020-10-07,1 -128.0.129.192,8,2020-10-06,1 -106.13.35.232,8,2020-10-06,1 -117.204.252.122,8,2020-10-06,1 -170.80.68.242,8,2020-10-07,1 -117.28.25.50,8,2020-10-07,1 -88.132.237.102,8,2020-10-06,1 -66.70.189.203,8,2020-10-07,1 -51.38.36.9,8,2020-10-06,1 -24.6.78.186,8,2020-10-06,1 -200.70.56.204,8,2020-10-06,1 -142.4.212.121,8,2020-10-07,1 -183.87.157.202,8,2020-10-07,1 -194.5.207.189,8,2020-10-07,1 -113.214.25.170,8,2020-10-06,1 -154.8.147.238,8,2020-10-06,1 -69.229.6.2,8,2020-10-06,1 -60.254.104.107,8,2020-10-06,1 -129.211.91.213,8,2020-10-07,1 -210.187.34.201,8,2020-10-06,1 -213.198.67.46,8,2020-10-06,1 -128.199.240.146,8,2020-10-06,1 -125.25.184.78,8,2020-10-06,1 -91.232.4.149,8,2020-10-06,1 -95.167.225.85,8,2020-10-06,1 -157.245.33.184,8,2020-10-07,1 -185.220.101.130,8,2020-10-06,1 -165.227.195.122,8,2020-10-07,1 -43.229.153.13,8,2020-10-07,1 -51.158.120.58,8,2020-10-07,1 -107.174.205.28,8,2020-10-06,1 -51.75.206.42,8,2020-10-07,1 -103.125.171.105,8,2020-10-07,1 -106.12.74.23,8,2020-10-06,1 -167.71.117.84,8,2020-10-06,1 -106.124.139.161,8,2020-10-06,1 -34.93.237.166,8,2020-10-06,1 -178.165.70.181,8,2020-10-07,1 -210.211.116.80,8,2020-10-06,1 -23.101.156.218,8,2020-10-06,1 -43.243.75.62,8,2020-10-07,1 -40.77.30.252,8,2020-10-07,1 -51.79.52.2,8,2020-10-07,1 -129.226.51.112,8,2020-10-07,1 -62.57.227.12,8,2020-10-07,1 -162.247.74.7,8,2020-10-06,1 -145.239.88.43,8,2020-10-06,1 -106.37.223.54,8,2020-10-06,1 -152.32.253.118,8,2020-10-06,1 -45.240.88.35,8,2020-10-07,1 -49.232.136.90,8,2020-10-06,1 -156.236.72.209,8,2020-10-06,1 -129.28.180.174,8,2020-10-06,1 -203.195.204.122,8,2020-10-07,1 -51.77.150.203,8,2020-10-07,1 -106.55.9.175,8,2020-10-06,1 -106.12.208.211,8,2020-10-06,1 -39.100.28.147,8,2020-10-06,1 -220.88.1.208,8,2020-10-06,1 -118.69.183.237,8,2020-10-06,1 -198.98.49.153,8,2020-10-06,1 -159.203.168.167,8,2020-10-06,1 -124.156.105.251,8,2020-10-07,1 -159.203.188.175,8,2020-10-06,1 -136.232.214.110,8,2020-10-06,1 -103.76.252.6,8,2020-10-07,1 -69.194.15.75,8,2020-10-06,1 -51.178.53.233,8,2020-10-06,1 -2.230.51.5,8,2020-10-07,1 -159.65.184.79,8,2020-10-06,1 -118.24.89.224,8,2020-10-06,1 -185.142.239.49,8,2020-10-07,1 -61.133.232.251,8,2020-10-06,1 -47.176.38.253,8,2020-10-06,1 -172.69.134.252,8,2020-10-06,1 -138.68.176.38,8,2020-10-06,1 -192.241.219.117,8,2020-10-06,1 -106.13.45.212,8,2020-10-06,1 -31.220.0.16,8,2020-10-06,1 -106.13.74.61,8,2020-10-06,1 -197.5.145.75,8,2020-10-07,1 -104.244.75.157,8,2020-10-06,1 -103.145.13.57,8,2020-10-06,1 -211.20.176.82,8,2020-10-06,1 -172.68.254.75,8,2020-10-06,1 -106.52.141.222,8,2020-10-07,1 -142.93.107.175,8,2020-10-06,1 -185.191.126.241,8,2020-10-06,1 -152.136.130.86,8,2020-10-06,1 -117.173.67.119,8,2020-10-06,1 -129.28.185.31,8,2020-10-06,1 -172.68.255.65,8,2020-10-06,1 -162.247.74.213,8,2020-10-06,1 -64.227.77.30,8,2020-10-07,1 -89.216.47.154,8,2020-10-06,1 -106.75.2.68,8,2020-10-07,1 -185.220.101.2,8,2020-10-06,1 -58.244.188.162,8,2020-10-06,1 -213.32.92.57,8,2020-10-06,1 -162.243.237.90,8,2020-10-06,1 -139.162.126.103,8,2020-10-07,1 -111.229.242.156,8,2020-10-06,1 -104.140.188.6,8,2020-10-06,1 -163.44.159.154,8,2020-10-07,1 -118.27.4.225,8,2020-10-06,1 -103.225.136.151,8,2020-10-06,1 -163.44.168.207,8,2020-10-06,1 -119.2.17.138,8,2020-10-06,1 -91.134.143.172,8,2020-10-07,1 -162.247.74.74,8,2020-10-06,1 -139.198.15.41,8,2020-10-07,1 -45.55.219.114,8,2020-10-06,1 -160.153.234.236,8,2020-10-06,1 -51.91.123.217,8,2020-10-06,1 -181.134.15.194,8,2020-10-07,1 -199.115.228.202,8,2020-10-06,1 -112.2.219.4,8,2020-10-06,1 -185.220.103.9,8,2020-10-06,1 -162.158.179.31,8,2020-10-06,1 -117.152.157.79,8,2020-10-06,1 -138.68.82.194,8,2020-10-06,1 -118.70.170.120,8,2020-10-06,1 -88.129.82.123,8,2020-10-07,1 -116.12.52.141,8,2020-10-07,1 -152.136.110.246,8,2020-10-06,1 -115.159.33.215,8,2020-10-06,1 -5.135.180.185,8,2020-10-07,1 -23.129.64.207,8,2020-10-07,1 -107.170.135.29,8,2020-10-07,1 -104.224.185.114,7,2020-10-06,1 -40.86.72.197,7,2020-10-07,1 -83.221.210.233,7,2020-10-07,1 -103.29.185.166,7,2020-10-07,1 -106.13.232.197,7,2020-10-06,1 -106.55.5.192,7,2020-10-06,1 -109.91.245.71,7,2020-10-06,1 -119.29.10.25,7,2020-10-06,1 -47.91.11.132,7,2020-10-07,1 -118.25.57.184,7,2020-10-07,1 -164.132.217.11,7,2020-10-07,1 -49.235.159.133,7,2020-10-06,1 -199.195.252.47,7,2020-10-06,1 -37.220.36.240,7,2020-10-06,1 -49.235.83.136,7,2020-10-07,1 -68.193.34.13,7,2020-10-07,1 -103.232.123.175,7,2020-10-06,1 -170.130.187.22,7,2020-10-07,1 -176.31.255.223,7,2020-10-07,1 -61.160.251.98,7,2020-10-06,1 -162.243.18.87,7,2020-10-06,1 -111.93.10.213,7,2020-10-07,1 -34.122.109.138,7,2020-10-06,1 -139.59.84.29,7,2020-10-07,1 -111.231.62.191,7,2020-10-07,1 -61.155.2.142,7,2020-10-07,1 -14.102.74.99,7,2020-10-06,1 -134.73.73.117,7,2020-10-06,1 -107.170.2.119,7,2020-10-06,1 -118.193.32.219,7,2020-10-07,1 -178.128.226.2,7,2020-10-06,1 -114.33.119.253,7,2020-10-06,1 -161.97.85.16,7,2020-10-07,1 -149.56.45.139,7,2020-10-06,1 -132.145.81.240,7,2020-10-07,1 -59.180.170.45,7,2020-10-07,1 -51.15.63.199,7,2020-10-07,1 -212.64.91.114,7,2020-10-07,1 -162.158.166.128,7,2020-10-06,1 -191.239.248.60,7,2020-10-06,1 -4.17.231.207,7,2020-10-06,1 -36.189.253.226,7,2020-10-06,1 -51.254.117.33,7,2020-10-07,1 -118.24.156.184,7,2020-10-06,1 -178.128.123.111,7,2020-10-06,1 -137.26.29.118,7,2020-10-06,1 -216.218.206.67,7,2020-10-07,1 -119.204.112.229,7,2020-10-06,1 -45.183.192.14,7,2020-10-06,1 -192.241.216.57,7,2020-10-06,1 -211.21.148.92,7,2020-10-07,1 -58.87.106.192,7,2020-10-06,1 -152.136.11.110,7,2020-10-06,1 -152.136.131.171,7,2020-10-07,1 -51.77.200.24,7,2020-10-07,1 -121.18.88.186,7,2020-10-06,1 -92.50.249.166,7,2020-10-06,1 -117.103.192.36,7,2020-10-06,1 -202.0.103.51,7,2020-10-07,1 -106.54.109.98,7,2020-10-07,1 -144.34.207.84,7,2020-10-06,1 -122.51.179.14,7,2020-10-06,1 -101.79.167.142,7,2020-10-06,1 -213.59.135.87,7,2020-10-06,1 -106.54.220.54,7,2020-10-06,1 -111.206.250.203,7,2020-10-06,1 -162.198.89.189,7,2020-10-06,1 -68.183.146.249,7,2020-10-07,1 -149.56.132.202,7,2020-10-06,1 -145.239.82.87,7,2020-10-06,1 -104.140.188.42,7,2020-10-06,1 -161.35.11.118,7,2020-10-06,1 -120.132.12.162,7,2020-10-06,1 -134.175.150.132,7,2020-10-07,1 -95.130.168.234,7,2020-10-06,1 -133.130.119.178,7,2020-10-07,1 -192.42.116.27,7,2020-10-06,1 -101.36.160.91,7,2020-10-06,1 -66.241.106.215,7,2020-10-06,1 -81.182.248.193,7,2020-10-07,1 -49.233.56.209,7,2020-10-06,1 -159.65.181.225,7,2020-10-06,1 -115.159.117.250,7,2020-10-06,1 -139.59.241.75,7,2020-10-06,1 -103.81.153.133,7,2020-10-06,1 -209.17.96.234,7,2020-10-07,1 -183.82.121.81,7,2020-10-07,1 -51.91.8.222,7,2020-10-06,1 -81.71.24.200,7,2020-10-06,1 -154.221.27.226,7,2020-10-06,1 -43.225.151.251,7,2020-10-06,1 -34.93.0.165,7,2020-10-06,1 -138.197.12.179,7,2020-10-06,1 -51.91.111.73,7,2020-10-06,1 -73.13.104.201,7,2020-10-06,1 -128.199.124.53,7,2020-10-06,1 -134.175.146.231,7,2020-10-06,1 -165.227.140.245,7,2020-10-06,1 -45.141.84.123,7,2020-10-07,1 -186.16.14.107,7,2020-10-06,1 -45.240.88.20,7,2020-10-06,1 -191.232.50.5,7,2020-10-06,1 -185.177.127.35,7,2020-10-06,1 -111.229.67.3,7,2020-10-06,1 -210.184.2.66,7,2020-10-06,1 -190.64.135.122,7,2020-10-07,1 -49.233.88.23,7,2020-10-06,1 -112.21.191.10,7,2020-10-06,1 -51.83.134.233,7,2020-10-06,1 -161.35.32.43,7,2020-10-06,1 -142.93.99.56,7,2020-10-07,1 -149.129.184.49,7,2020-10-06,1 -49.234.24.193,7,2020-10-06,1 -112.21.188.250,7,2020-10-06,1 -209.17.96.74,7,2020-10-07,1 -203.245.29.209,7,2020-10-06,1 -177.23.184.99,7,2020-10-06,1 -223.130.28.218,7,2020-10-06,1 -66.98.45.242,7,2020-10-07,1 -202.154.180.51,7,2020-10-06,1 -68.183.129.63,7,2020-10-06,1 -103.105.58.150,7,2020-10-06,1 -49.235.218.121,7,2020-10-06,1 -117.50.8.230,7,2020-10-06,1 -190.98.231.87,7,2020-10-06,1 -104.245.41.113,7,2020-10-06,1 -51.75.126.115,7,2020-10-06,1 -128.199.212.194,7,2020-10-07,1 -113.200.105.23,7,2020-10-06,1 -172.69.135.17,7,2020-10-06,1 -36.133.131.176,7,2020-10-06,1 -162.158.179.185,7,2020-10-06,1 -80.82.68.117,7,2020-10-06,1 -106.52.29.132,7,2020-10-06,1 -58.87.71.16,7,2020-10-06,1 -46.238.122.54,7,2020-10-07,1 -81.130.234.235,7,2020-10-06,1 -118.69.171.156,7,2020-10-06,1 -184.71.9.2,7,2020-10-06,1 -170.239.108.74,7,2020-10-06,1 -45.64.237.125,7,2020-10-06,1 -94.110.20.207,7,2020-10-06,1 -103.75.191.160,7,2020-10-06,1 -161.35.194.252,7,2020-10-07,1 -36.133.141.236,7,2020-10-07,1 -119.45.254.116,7,2020-10-06,1 -64.52.85.67,7,2020-10-06,1 -106.12.14.130,7,2020-10-06,1 -222.180.208.14,7,2020-10-07,1 -42.200.206.225,7,2020-10-07,1 -78.159.103.159,7,2020-10-06,1 -194.6.231.122,7,2020-10-06,1 -192.99.4.179,7,2020-10-07,1 -195.206.105.217,7,2020-10-06,1 -216.239.90.19,7,2020-10-06,1 -172.105.15.28,7,2020-10-07,1 -95.165.172.171,7,2020-10-06,1 -107.170.20.247,7,2020-10-06,1 -154.221.18.237,7,2020-10-06,1 -51.83.185.192,7,2020-10-06,1 -77.238.69.23,7,2020-10-07,1 -212.64.5.28,7,2020-10-06,1 -51.77.140.111,7,2020-10-06,1 -4.17.231.196,7,2020-10-06,1 -128.199.22.221,7,2020-10-06,1 -200.37.35.178,7,2020-10-07,1 -128.199.84.201,7,2020-10-06,1 -167.71.211.45,7,2020-10-06,1 -194.204.194.11,7,2020-10-06,1 -103.55.36.220,7,2020-10-06,1 -103.45.131.47,7,2020-10-06,1 -125.128.241.71,7,2020-10-06,1 -139.162.119.197,7,2020-10-06,1 -64.225.43.21,7,2020-10-06,1 -150.136.160.141,7,2020-10-06,1 -185.100.87.250,7,2020-10-06,1 -203.245.30.35,7,2020-10-07,1 -159.65.136.141,7,2020-10-06,1 -51.15.86.96,7,2020-10-06,1 -71.228.134.158,7,2020-10-06,1 -182.61.2.67,7,2020-10-07,1 -18.236.135.177,7,2020-10-07,1 -139.170.150.251,7,2020-10-07,1 -202.155.228.207,7,2020-10-06,1 -149.202.175.255,7,2020-10-07,1 -65.49.20.66,7,2020-10-07,1 -170.130.187.18,7,2020-10-06,1 -180.69.27.217,7,2020-10-06,1 -185.237.179.99,7,2020-10-07,1 -104.244.72.115,7,2020-10-06,1 -175.24.42.244,7,2020-10-06,1 -189.112.12.107,7,2020-10-07,1 -92.220.10.100,7,2020-10-07,1 -139.59.138.115,7,2020-10-07,1 -195.54.160.223,7,2020-10-07,1 -189.211.183.151,7,2020-10-06,1 -23.129.64.210,7,2020-10-06,1 -114.67.95.121,7,2020-10-07,1 -167.172.214.147,7,2020-10-06,1 -172.69.135.19,7,2020-10-06,1 -49.232.55.161,7,2020-10-07,1 -80.98.249.181,7,2020-10-07,1 -118.89.244.84,7,2020-10-07,1 -192.160.102.170,7,2020-10-06,1 -90.112.46.133,7,2020-10-06,1 -164.132.42.32,7,2020-10-06,1 -162.158.179.191,7,2020-10-06,1 -51.75.123.107,7,2020-10-06,1 -162.158.165.75,7,2020-10-06,1 -119.115.128.2,7,2020-10-06,1 -150.136.12.28,7,2020-10-07,1 -122.51.154.136,7,2020-10-07,1 -122.51.30.252,7,2020-10-06,1 -73.232.46.104,7,2020-10-06,1 -190.32.21.250,7,2020-10-07,1 -185.100.87.247,7,2020-10-07,1 -114.67.246.133,7,2020-10-07,1 -192.141.107.58,7,2020-10-07,1 -159.203.13.59,7,2020-10-06,1 -123.157.219.83,7,2020-10-06,1 -128.14.230.200,7,2020-10-06,1 -148.72.65.173,7,2020-10-06,1 -87.249.217.32,7,2020-10-06,1 -118.24.84.55,7,2020-10-06,1 -94.229.66.131,7,2020-10-06,1 -106.54.112.173,7,2020-10-06,1 -40.89.172.25,7,2020-10-07,1 -23.97.180.45,7,2020-10-07,1 -212.47.251.127,7,2020-10-07,1 -181.164.2.121,7,2020-10-06,1 -128.14.209.226,7,2020-10-06,1 -51.255.28.53,7,2020-10-07,1 -36.250.5.117,7,2020-10-06,1 -167.114.155.2,7,2020-10-06,1 -14.141.61.171,7,2020-10-07,1 -119.28.51.99,7,2020-10-06,1 -180.167.168.2,7,2020-10-06,1 -185.176.222.39,7,2020-10-06,1 -39.128.250.133,7,2020-10-06,1 -194.152.206.103,7,2020-10-07,1 -31.220.3.108,7,2020-10-06,1 -212.64.78.151,7,2020-10-06,1 -185.100.87.248,7,2020-10-06,1 -139.59.10.186,7,2020-10-06,1 -172.68.146.65,7,2020-10-06,1 -176.31.102.37,7,2020-10-07,1 -111.19.129.38,7,2020-10-06,1 -198.206.243.23,7,2020-10-07,1 -103.6.244.158,7,2020-10-07,1 -134.175.2.7,7,2020-10-06,1 -62.234.59.145,7,2020-10-06,1 -51.79.156.248,7,2020-10-06,1 -104.206.128.62,7,2020-10-06,1 -40.73.77.193,7,2020-10-06,1 -50.234.173.102,7,2020-10-06,1 -104.248.33.135,7,2020-10-06,1 -106.51.73.204,7,2020-10-06,1 -49.235.104.204,7,2020-10-07,1 -183.165.60.66,7,2020-10-06,1 -72.42.162.79,7,2020-10-06,1 -51.91.123.132,7,2020-10-06,1 -54.38.33.178,7,2020-10-06,1 -14.253.199.205,7,2020-10-07,1 -154.209.228.233,7,2020-10-06,1 -106.53.84.238,7,2020-10-06,1 -49.233.160.103,7,2020-10-06,1 -64.227.67.106,7,2020-10-07,1 -189.178.68.66,7,2020-10-06,1 -104.248.61.192,7,2020-10-06,1 -51.178.142.175,7,2020-10-06,1 -148.72.158.151,7,2020-10-07,1 -175.0.164.136,7,2020-10-07,1 -185.225.16.146,7,2020-10-06,1 -27.254.206.238,7,2020-10-06,1 -192.241.223.72,7,2020-10-06,1 -13.80.104.33,7,2020-10-07,1 -149.248.36.44,7,2020-10-07,1 -106.12.144.219,7,2020-10-06,1 -51.210.107.217,7,2020-10-06,1 -34.216.183.110,7,2020-10-07,1 -172.104.108.109,7,2020-10-06,1 -121.229.62.94,7,2020-10-07,1 -95.85.33.224,7,2020-10-06,1 -185.41.212.214,7,2020-10-07,1 -185.100.87.246,7,2020-10-06,1 -191.238.220.140,7,2020-10-07,1 -159.28.132.130,7,2020-10-07,1 -103.130.219.110,7,2020-10-06,1 -190.111.119.69,7,2020-10-06,1 -186.234.80.209,7,2020-10-07,1 -134.209.156.18,7,2020-10-06,1 -61.2.243.4,7,2020-10-07,1 -82.65.27.68,7,2020-10-07,1 -187.190.109.142,7,2020-10-06,1 -154.85.51.181,7,2020-10-07,1 -167.172.38.238,7,2020-10-06,1 -103.44.27.16,7,2020-10-06,1 -188.153.208.82,7,2020-10-06,1 -150.136.116.126,7,2020-10-06,1 -139.99.40.44,7,2020-10-06,1 -185.148.38.26,7,2020-10-06,1 -116.59.25.192,7,2020-10-06,1 -118.89.111.49,7,2020-10-07,1 -51.75.247.170,7,2020-10-07,1 -128.199.225.104,7,2020-10-06,1 -34.76.17.151,7,2020-10-06,1 -185.220.101.1,7,2020-10-06,1 -122.51.201.67,7,2020-10-07,1 -124.156.159.169,7,2020-10-07,1 -37.205.51.40,7,2020-10-06,1 -207.244.70.35,7,2020-10-06,1 -147.135.112.79,7,2020-10-06,1 -180.168.141.246,6,2020-10-07,1 -172.105.218.213,6,2020-10-07,1 -185.202.2.131,6,2020-10-06,1 -208.109.14.122,6,2020-10-06,1 -208.100.26.229,6,2020-10-07,1 -62.4.21.162,6,2020-10-06,1 -172.69.134.36,6,2020-10-06,1 -79.137.33.20,6,2020-10-07,1 -37.77.48.7,6,2020-10-07,1 -167.172.46.87,6,2020-10-07,1 -182.61.20.166,6,2020-10-07,1 -104.131.190.193,6,2020-10-06,1 -162.158.166.172,6,2020-10-06,1 -182.61.27.149,6,2020-10-06,1 -46.182.7.42,6,2020-10-06,1 -60.220.185.64,6,2020-10-07,1 -46.36.27.120,6,2020-10-06,1 -51.75.122.213,6,2020-10-06,1 -146.88.240.17,6,2020-10-06,1 -58.208.84.93,6,2020-10-06,1 -1.193.160.164,6,2020-10-06,1 -203.245.29.148,6,2020-10-06,1 -139.199.74.11,6,2020-10-06,1 -93.243.85.197,6,2020-10-06,1 -187.188.90.141,6,2020-10-07,1 -122.152.220.161,6,2020-10-06,1 -46.101.114.250,6,2020-10-06,1 -138.201.2.53,6,2020-10-06,1 -46.101.220.225,6,2020-10-06,1 -123.6.5.104,6,2020-10-06,1 -106.75.85.117,6,2020-10-07,1 -46.19.141.84,6,2020-10-06,1 -104.140.188.10,6,2020-10-06,1 -185.206.92.147,6,2020-10-06,1 -128.199.103.239,6,2020-10-07,1 -151.80.155.98,6,2020-10-07,1 -124.156.139.95,6,2020-10-06,1 -106.75.234.83,6,2020-10-06,1 -163.172.66.130,6,2020-10-07,1 -145.239.82.174,6,2020-10-06,1 -142.44.146.33,6,2020-10-06,1 -162.158.166.66,6,2020-10-06,1 -82.142.163.194,6,2020-10-06,1 -103.44.240.204,6,2020-10-06,1 -162.158.178.24,6,2020-10-06,1 -67.205.134.14,6,2020-10-07,1 -192.35.168.96,6,2020-10-06,1 -119.28.119.152,6,2020-10-07,1 -202.78.235.70,6,2020-10-07,1 -23.129.64.212,6,2020-10-07,1 -212.64.66.135,6,2020-10-06,1 -197.44.101.210,6,2020-10-07,1 -188.166.211.7,6,2020-10-07,1 -180.212.67.35,6,2020-10-06,1 -58.65.153.246,6,2020-10-06,1 -200.75.208.233,6,2020-10-06,1 -201.236.254.156,6,2020-10-06,1 -45.144.65.49,6,2020-10-06,1 -110.8.67.146,6,2020-10-06,1 -128.14.209.178,6,2020-10-06,1 -5.135.224.152,6,2020-10-06,1 -200.76.215.195,6,2020-10-06,1 -190.202.124.93,6,2020-10-06,1 -111.229.85.222,6,2020-10-07,1 -203.158.177.71,6,2020-10-06,1 -51.178.81.106,6,2020-10-07,1 -101.80.183.200,6,2020-10-07,1 -50.199.145.1,6,2020-10-06,1 -5.89.35.84,6,2020-10-06,1 -64.227.125.204,6,2020-10-07,1 -188.226.167.212,6,2020-10-06,1 -61.160.245.87,6,2020-10-06,1 -182.75.139.26,6,2020-10-06,1 -116.213.43.5,6,2020-10-06,1 -115.50.144.125,6,2020-10-07,1 -123.31.20.81,6,2020-10-07,1 -165.3.113.26,6,2020-10-06,1 -60.174.236.98,6,2020-10-06,1 -115.99.190.136,6,2020-10-06,1 -172.69.134.150,6,2020-10-06,1 -18.212.233.80,6,2020-10-07,1 -175.24.93.7,6,2020-10-06,1 -81.17.16.148,6,2020-10-06,1 -111.161.74.125,6,2020-10-06,1 -36.133.109.23,6,2020-10-06,1 -106.52.70.240,6,2020-10-06,1 -103.129.223.136,6,2020-10-06,1 -104.248.169.127,6,2020-10-07,1 -177.184.75.130,6,2020-10-07,1 -142.44.211.27,6,2020-10-07,1 -110.43.42.91,6,2020-10-06,1 -93.39.116.254,6,2020-10-06,1 -192.42.116.22,6,2020-10-06,1 -91.204.199.73,6,2020-10-06,1 -144.34.196.101,6,2020-10-06,1 -185.211.188.170,6,2020-10-07,1 -180.71.47.198,6,2020-10-06,1 -12.31.77.178,6,2020-10-06,1 -62.14.242.34,6,2020-10-06,1 -106.12.215.238,6,2020-10-07,1 -106.55.149.162,6,2020-10-07,1 -154.70.208.66,6,2020-10-06,1 -220.186.166.199,6,2020-10-06,1 -45.227.255.125,6,2020-10-07,1 -218.0.56.209,6,2020-10-07,1 -5.39.116.182,6,2020-10-06,1 -196.52.43.121,6,2020-10-06,1 -201.217.80.15,6,2020-10-06,1 -34.76.78.209,6,2020-10-07,1 -104.224.146.218,6,2020-10-06,1 -139.59.147.218,6,2020-10-07,1 -192.241.234.86,6,2020-10-06,1 -194.170.156.9,6,2020-10-06,1 -27.7.172.89,6,2020-10-06,1 -167.86.117.63,6,2020-10-06,1 -177.220.189.111,6,2020-10-07,1 -185.216.140.185,6,2020-10-07,1 -118.25.133.121,6,2020-10-07,1 -76.8.234.238,6,2020-10-07,1 -114.233.64.156,6,2020-10-07,1 -49.167.185.78,6,2020-10-07,1 -113.186.42.25,6,2020-10-06,1 -123.206.226.149,6,2020-10-06,1 -66.240.205.34,6,2020-10-07,1 -209.17.97.90,6,2020-10-06,1 -62.234.96.122,6,2020-10-07,1 -221.12.107.26,6,2020-10-06,1 -49.233.189.161,6,2020-10-07,1 -162.158.165.69,6,2020-10-06,1 -107.6.171.130,6,2020-10-06,1 -156.96.128.235,6,2020-10-07,1 -140.206.242.34,6,2020-10-06,1 -77.43.80.224,6,2020-10-07,1 -112.216.39.234,6,2020-10-06,1 -45.55.156.19,6,2020-10-06,1 -162.158.166.208,6,2020-10-06,1 -39.33.186.187,6,2020-10-07,1 -192.241.215.127,6,2020-10-06,1 -59.180.189.205,6,2020-10-06,1 -106.13.233.5,6,2020-10-06,1 -220.132.68.51,6,2020-10-06,1 -213.141.131.22,6,2020-10-06,1 -114.67.250.30,6,2020-10-06,1 -192.241.232.157,6,2020-10-06,1 -195.154.179.3,6,2020-10-06,1 -140.238.25.151,6,2020-10-07,1 -168.90.89.35,6,2020-10-07,1 -91.42.214.167,6,2020-10-06,1 -157.230.2.112,6,2020-10-06,1 -170.130.187.34,6,2020-10-06,1 -162.158.165.221,6,2020-10-06,1 -68.183.92.52,6,2020-10-06,1 -122.51.59.95,6,2020-10-07,1 -52.1.233.118,6,2020-10-07,1 -80.246.2.153,6,2020-10-06,1 -188.210.80.218,6,2020-10-07,1 -167.172.249.82,6,2020-10-06,1 -91.121.162.198,6,2020-10-06,1 -84.52.85.204,6,2020-10-06,1 -39.105.169.186,6,2020-10-06,1 -45.148.122.101,6,2020-10-07,1 -192.241.235.179,6,2020-10-06,1 -35.247.50.84,6,2020-10-07,1 -37.59.43.63,6,2020-10-07,1 -112.78.11.31,6,2020-10-07,1 -139.59.87.254,6,2020-10-06,1 -218.108.186.218,6,2020-10-06,1 -188.166.229.193,6,2020-10-07,1 -159.65.41.104,6,2020-10-06,1 -118.70.233.206,6,2020-10-07,1 -158.69.222.2,6,2020-10-07,1 -211.38.132.37,6,2020-10-06,1 -92.118.161.9,6,2020-10-06,1 -162.158.178.106,6,2020-10-06,1 -64.227.97.122,6,2020-10-06,1 -125.64.94.133,6,2020-10-06,1 -14.200.208.244,6,2020-10-06,1 -171.246.57.248,6,2020-10-07,1 -79.137.72.121,6,2020-10-06,1 -160.16.147.188,6,2020-10-07,1 -138.68.99.46,6,2020-10-06,1 -193.112.126.64,6,2020-10-07,1 -118.128.190.153,6,2020-10-06,1 -49.233.32.245,6,2020-10-07,1 -185.220.100.251,6,2020-10-06,1 -89.155.39.33,6,2020-10-07,1 -80.227.134.221,6,2020-10-06,1 -140.143.18.2,6,2020-10-06,1 -203.232.119.245,6,2020-10-06,1 -172.69.134.156,6,2020-10-06,1 -54.39.22.191,6,2020-10-06,1 -47.74.48.159,6,2020-10-06,1 -42.159.155.8,6,2020-10-06,1 -154.0.170.103,6,2020-10-07,1 -117.79.132.166,6,2020-10-07,1 -181.59.252.136,6,2020-10-07,1 -190.98.193.100,6,2020-10-07,1 -61.183.144.188,6,2020-10-07,1 -201.88.116.7,6,2020-10-07,1 -177.42.79.207,6,2020-10-07,1 -162.247.74.206,6,2020-10-06,1 -107.170.113.190,6,2020-10-06,1 -60.167.178.69,6,2020-10-06,1 -142.115.19.34,6,2020-10-06,1 -102.53.4.85,6,2020-10-06,1 -213.32.111.53,6,2020-10-06,1 -114.112.96.30,6,2020-10-07,1 -180.76.183.218,6,2020-10-06,1 -52.161.145.225,6,2020-10-07,1 -85.209.0.153,6,2020-10-06,1 -120.92.166.166,6,2020-10-06,1 -119.200.186.168,6,2020-10-06,1 -118.210.61.245,6,2020-10-06,1 -177.152.124.24,6,2020-10-06,1 -122.51.37.133,6,2020-10-07,1 -200.174.156.62,6,2020-10-07,1 -51.254.59.113,6,2020-10-07,1 -162.158.166.202,6,2020-10-06,1 -173.82.245.73,6,2020-10-06,1 -139.59.59.102,6,2020-10-06,1 -46.101.154.96,6,2020-10-06,1 -103.94.6.69,6,2020-10-07,1 -195.70.59.121,6,2020-10-07,1 -38.117.123.2,6,2020-10-06,1 -162.158.166.148,6,2020-10-06,1 -162.158.166.170,6,2020-10-06,1 -114.67.113.90,6,2020-10-06,1 -111.231.141.141,6,2020-10-06,1 -104.43.136.64,6,2020-10-07,1 -145.239.110.129,6,2020-10-06,1 -132.232.68.138,6,2020-10-06,1 -51.91.100.109,6,2020-10-06,1 -178.175.240.70,6,2020-10-07,1 -180.250.108.130,6,2020-10-06,1 -202.77.105.110,6,2020-10-06,1 -192.144.190.178,6,2020-10-06,1 -197.247.249.48,6,2020-10-06,1 -192.241.208.139,6,2020-10-06,1 -162.158.167.43,6,2020-10-06,1 -159.65.158.172,6,2020-10-06,1 -122.51.222.42,6,2020-10-06,1 -104.236.124.45,6,2020-10-06,1 -51.195.149.193,6,2020-10-06,1 -212.51.148.162,6,2020-10-07,1 -158.69.0.38,6,2020-10-06,1 -175.198.80.24,6,2020-10-06,1 -92.223.105.154,6,2020-10-06,1 -159.65.78.3,6,2020-10-07,1 -148.72.158.190,6,2020-10-07,1 -179.155.57.213,6,2020-10-07,1 -163.172.218.46,6,2020-10-07,1 -181.48.120.220,6,2020-10-06,1 -106.12.52.154,6,2020-10-06,1 -104.140.188.26,6,2020-10-06,1 -217.111.239.37,6,2020-10-07,1 -45.32.223.253,6,2020-10-07,1 -59.78.85.210,6,2020-10-07,1 -45.172.214.21,6,2020-10-06,1 -49.233.84.59,6,2020-10-07,1 -186.18.41.1,6,2020-10-06,1 -192.241.239.81,6,2020-10-06,1 -180.168.47.238,6,2020-10-06,1 -206.253.167.10,6,2020-10-06,1 -162.158.165.247,6,2020-10-06,1 -78.18.223.104,6,2020-10-06,1 -185.100.87.245,6,2020-10-06,1 -87.103.126.98,6,2020-10-06,1 -202.147.192.242,6,2020-10-07,1 -162.158.178.252,6,2020-10-06,1 -104.244.75.53,6,2020-10-06,1 -162.158.179.189,6,2020-10-06,1 -167.86.94.107,6,2020-10-06,1 -1.179.137.10,6,2020-10-06,1 -92.222.216.222,6,2020-10-06,1 -213.251.184.102,6,2020-10-06,1 -31.20.193.52,6,2020-10-06,1 -212.60.64.220,6,2020-10-06,1 -128.199.99.204,6,2020-10-07,1 -91.231.213.51,6,2020-10-06,1 -129.204.7.21,6,2020-10-07,1 -119.29.56.139,6,2020-10-07,1 -200.38.235.232,6,2020-10-06,1 -140.143.136.89,6,2020-10-06,1 -189.213.153.159,6,2020-10-06,1 -156.96.119.57,6,2020-10-06,1 -101.89.145.133,6,2020-10-07,1 -158.69.194.115,6,2020-10-06,1 -138.197.15.190,6,2020-10-06,1 -185.220.101.195,6,2020-10-06,1 -156.166.193.240,6,2020-10-06,1 -209.17.96.210,6,2020-10-06,1 -89.100.106.42,6,2020-10-06,1 -182.254.178.192,5,2020-10-06,1 -104.248.130.10,5,2020-10-06,1 -124.121.113.188,5,2020-10-06,1 -84.113.1.222,5,2020-10-06,1 -49.234.18.158,5,2020-10-06,1 -104.248.131.113,5,2020-10-06,1 -156.236.70.79,5,2020-10-06,1 -36.156.154.154,5,2020-10-07,1 -31.207.33.100,5,2020-10-06,1 -162.158.165.109,5,2020-10-06,1 -67.216.209.77,5,2020-10-06,1 -66.70.189.54,5,2020-10-07,1 -122.51.186.17,5,2020-10-07,1 -189.209.0.88,5,2020-10-06,1 -185.202.1.79,5,2020-10-06,1 -62.210.89.160,5,2020-10-06,1 -120.56.118.84,5,2020-10-06,1 -51.38.47.79,5,2020-10-07,1 -47.180.212.134,5,2020-10-06,1 -54.183.245.205,5,2020-10-07,1 -172.81.253.133,5,2020-10-07,1 -218.161.22.153,5,2020-10-06,1 -162.158.166.42,5,2020-10-06,1 -112.217.11.203,5,2020-10-06,1 -213.108.134.156,5,2020-10-06,1 -178.255.154.57,5,2020-10-07,1 -23.92.36.3,5,2020-10-06,1 -148.72.158.121,5,2020-10-06,1 -23.129.64.203,5,2020-10-07,1 -45.146.165.240,5,2020-10-06,1 -69.162.120.194,5,2020-10-06,1 -13.85.74.7,5,2020-10-06,1 -31.220.40.236,5,2020-10-06,1 -125.46.41.36,5,2020-10-06,1 -77.127.60.239,5,2020-10-06,1 -51.83.74.126,5,2020-10-06,1 -182.61.44.2,5,2020-10-06,1 -162.158.179.165,5,2020-10-06,1 -27.195.159.166,5,2020-10-06,1 -111.231.82.143,5,2020-10-06,1 -101.255.81.91,5,2020-10-07,1 -205.205.150.19,5,2020-10-06,1 -136.43.32.84,5,2020-10-07,1 -150.107.120.42,5,2020-10-07,1 -134.175.48.244,5,2020-10-06,1 -184.105.247.195,5,2020-10-06,1 -51.38.186.53,5,2020-10-06,1 -147.0.22.179,5,2020-10-07,1 -67.205.135.127,5,2020-10-06,1 -107.172.207.173,5,2020-10-06,1 -74.82.47.5,5,2020-10-06,1 -188.166.232.4,5,2020-10-06,1 -172.69.134.234,5,2020-10-06,1 -51.254.116.201,5,2020-10-07,1 -118.69.82.233,5,2020-10-07,1 -36.133.29.143,5,2020-10-06,1 -35.187.98.101,5,2020-10-06,1 -103.99.15.136,5,2020-10-07,1 -167.71.47.142,5,2020-10-06,1 -195.24.129.234,5,2020-10-06,1 -103.136.40.88,5,2020-10-07,1 -210.94.89.94,5,2020-10-07,1 -122.51.166.84,5,2020-10-06,1 -114.33.90.225,5,2020-10-07,1 -51.195.150.130,5,2020-10-06,1 -81.182.254.124,5,2020-10-06,1 -47.56.145.231,5,2020-10-06,1 -103.41.247.200,5,2020-10-06,1 -104.140.188.22,5,2020-10-06,1 -193.112.72.251,5,2020-10-07,1 -103.208.220.226,5,2020-10-06,1 -69.172.78.17,5,2020-10-06,1 -196.52.43.122,5,2020-10-07,1 -172.104.7.232,5,2020-10-07,1 -209.17.97.66,5,2020-10-07,1 -171.233.168.126,5,2020-10-06,1 -51.158.190.194,5,2020-10-07,1 -190.7.57.166,5,2020-10-06,1 -111.206.250.235,5,2020-10-06,1 -138.68.221.125,5,2020-10-07,1 -178.128.201.175,5,2020-10-06,1 -46.245.222.203,5,2020-10-06,1 -106.12.16.149,5,2020-10-06,1 -162.158.167.39,5,2020-10-06,1 -150.158.198.131,5,2020-10-06,1 -81.68.209.109,5,2020-10-06,1 -104.223.197.227,5,2020-10-06,1 -52.247.193.10,5,2020-10-07,1 -189.68.29.147,5,2020-10-06,1 -122.51.68.7,5,2020-10-07,1 -139.59.211.245,5,2020-10-07,1 -81.68.184.116,5,2020-10-07,1 -198.23.219.72,5,2020-10-06,1 -221.228.109.146,5,2020-10-07,1 -51.140.217.237,5,2020-10-06,1 -106.54.36.205,5,2020-10-06,1 -83.97.20.31,5,2020-10-06,1 -121.162.235.44,5,2020-10-06,1 -5.160.243.153,5,2020-10-07,1 -45.148.122.191,5,2020-10-07,1 -49.234.126.177,5,2020-10-06,1 -200.54.170.198,5,2020-10-06,1 -41.38.44.180,5,2020-10-06,1 -192.241.236.171,5,2020-10-07,1 -51.37.149.242,5,2020-10-06,1 -92.118.161.37,5,2020-10-07,1 -142.93.42.135,5,2020-10-06,1 -142.93.101.148,5,2020-10-06,1 -51.158.29.207,5,2020-10-07,1 -128.14.134.170,5,2020-10-06,1 -122.155.213.14,5,2020-10-06,1 -51.158.171.117,5,2020-10-06,1 -200.175.180.116,5,2020-10-06,1 -45.148.121.83,5,2020-10-07,1 -23.129.64.181,5,2020-10-06,1 -20.39.190.185,5,2020-10-06,1 -94.199.198.137,5,2020-10-06,1 -51.83.133.26,5,2020-10-07,1 -51.254.222.185,5,2020-10-06,1 -47.107.167.199,5,2020-10-06,1 -146.88.240.16,5,2020-10-07,1 -117.247.225.18,5,2020-10-07,1 -193.118.53.138,5,2020-10-06,1 -103.247.117.250,5,2020-10-06,1 -45.181.168.86,5,2020-10-06,1 -196.52.43.106,5,2020-10-06,1 -71.117.128.50,5,2020-10-06,1 -49.232.175.244,5,2020-10-07,1 -77.68.20.140,5,2020-10-06,1 -74.121.192.219,5,2020-10-06,1 -183.82.121.34,5,2020-10-06,1 -191.234.189.215,5,2020-10-06,1 -134.122.23.108,5,2020-10-06,1 -91.83.88.200,5,2020-10-07,1 -162.158.166.28,5,2020-10-06,1 -162.158.166.88,5,2020-10-06,1 -45.143.221.4,5,2020-10-07,1 -104.131.46.166,5,2020-10-06,1 -180.164.58.165,5,2020-10-06,1 -129.204.42.59,5,2020-10-06,1 -92.118.161.17,5,2020-10-06,1 -192.241.233.246,5,2020-10-06,1 -114.67.105.83,5,2020-10-06,1 -187.1.81.161,5,2020-10-07,1 -147.135.203.181,5,2020-10-06,1 -162.243.192.108,5,2020-10-07,1 -62.234.94.202,5,2020-10-06,1 -2.57.121.190,5,2020-10-06,1 -172.68.254.17,5,2020-10-06,1 -172.105.201.117,5,2020-10-06,1 -104.153.96.154,5,2020-10-06,1 -107.189.10.101,5,2020-10-06,1 -192.241.233.235,5,2020-10-06,1 -142.93.115.12,5,2020-10-07,1 -128.14.134.134,5,2020-10-07,1 -112.51.249.235,5,2020-10-07,1 -116.101.77.195,5,2020-10-07,1 -46.105.107.134,5,2020-10-06,1 -182.254.161.202,5,2020-10-07,1 -78.186.125.177,5,2020-10-06,1 -109.234.162.110,5,2020-10-07,1 -192.241.217.192,5,2020-10-06,1 -51.195.149.99,5,2020-10-06,1 -51.158.183.69,5,2020-10-06,1 -139.155.24.139,5,2020-10-06,1 -13.228.67.208,5,2020-10-07,1 -192.241.234.43,5,2020-10-06,1 -80.24.149.228,5,2020-10-06,1 -202.152.21.213,5,2020-10-06,1 -1.232.176.9,5,2020-10-06,1 -43.252.10.253,5,2020-10-07,1 -172.69.134.198,5,2020-10-06,1 -170.130.187.14,5,2020-10-06,1 -23.95.132.35,5,2020-10-06,1 -119.207.235.159,5,2020-10-07,1 -54.39.12.74,5,2020-10-07,1 -172.68.146.77,5,2020-10-06,1 -167.86.93.40,5,2020-10-07,1 -184.105.139.69,5,2020-10-07,1 -106.12.146.9,5,2020-10-07,1 -51.75.18.215,5,2020-10-06,1 -151.115.34.98,4,2020-10-06,1 -128.199.217.137,4,2020-10-07,1 -217.24.160.92,4,2020-10-07,1 -196.52.43.53,4,2020-10-06,1 -172.68.255.107,4,2020-10-06,1 -154.236.172.226,4,2020-10-06,1 -187.131.216.181,4,2020-10-07,1 -180.168.95.234,4,2020-10-06,1 -24.103.6.86,4,2020-10-06,1 -77.46.248.50,4,2020-10-06,1 -23.129.64.191,4,2020-10-07,1 -137.74.219.113,4,2020-10-06,1 -65.49.20.69,4,2020-10-07,1 -119.29.85.64,4,2020-10-06,1 -111.229.176.206,4,2020-10-06,1 -165.84.180.37,4,2020-10-06,1 -167.172.112.154,4,2020-10-07,1 -119.29.161.236,4,2020-10-07,1 -27.76.209.21,4,2020-10-07,1 -212.252.106.196,4,2020-10-07,1 -45.154.35.214,4,2020-10-06,1 -45.55.58.74,4,2020-10-07,1 -39.109.115.153,4,2020-10-06,1 -5.182.141.61,4,2020-10-06,1 -51.77.149.232,4,2020-10-07,1 -37.233.77.228,4,2020-10-07,1 -75.127.1.242,4,2020-10-06,1 -142.93.173.214,4,2020-10-06,1 -36.148.22.126,4,2020-10-07,1 -51.79.145.158,4,2020-10-06,1 -106.12.186.74,4,2020-10-07,1 -194.127.178.241,4,2020-10-07,1 -172.68.254.27,4,2020-10-06,1 -145.239.91.191,4,2020-10-06,1 -106.12.202.192,4,2020-10-06,1 -1.34.99.228,4,2020-10-07,1 -46.105.132.53,4,2020-10-06,1 -208.109.12.104,4,2020-10-07,1 -52.172.162.53,4,2020-10-07,1 -220.133.3.167,4,2020-10-06,1 -156.221.100.130,4,2020-10-06,1 -49.159.196.137,4,2020-10-07,1 -173.249.52.246,4,2020-10-06,1 -91.179.124.202,4,2020-10-07,1 -192.241.237.158,4,2020-10-06,1 -171.242.207.64,4,2020-10-07,1 -47.24.143.195,4,2020-10-07,1 -119.187.254.51,4,2020-10-06,1 -40.88.124.145,4,2020-10-07,1 -198.23.221.28,4,2020-10-06,1 -103.90.233.35,4,2020-10-06,1 -146.88.240.14,4,2020-10-06,1 -27.68.17.228,4,2020-10-07,1 -211.195.135.231,4,2020-10-07,1 -124.239.148.63,4,2020-10-07,1 -58.97.200.34,4,2020-10-07,1 -88.218.17.221,4,2020-10-07,1 -162.158.165.239,4,2020-10-06,1 -192.35.169.20,4,2020-10-06,1 -81.101.99.22,4,2020-10-07,1 -49.233.185.109,4,2020-10-06,1 -162.243.128.129,4,2020-10-06,1 -106.54.219.237,4,2020-10-06,1 -49.235.84.101,4,2020-10-07,1 -222.243.13.3,4,2020-10-06,1 -185.65.175.130,4,2020-10-07,1 -192.241.234.189,4,2020-10-06,1 -189.39.216.229,4,2020-10-06,1 -190.145.12.233,4,2020-10-07,1 -54.145.103.225,4,2020-10-06,1 -211.75.192.149,4,2020-10-06,1 -196.52.43.97,4,2020-10-06,1 -180.250.115.121,4,2020-10-07,1 -190.153.222.250,4,2020-10-07,1 -192.241.239.92,4,2020-10-07,1 -196.52.43.130,4,2020-10-07,1 -115.77.203.128,4,2020-10-07,1 -193.111.198.162,4,2020-10-07,1 -189.23.160.82,4,2020-10-06,1 -207.244.251.235,4,2020-10-07,1 -220.135.193.217,4,2020-10-06,1 -8.30.177.205,4,2020-10-06,1 -176.74.254.41,4,2020-10-07,1 -139.162.75.112,4,2020-10-06,1 -203.135.63.30,4,2020-10-06,1 -116.109.106.162,4,2020-10-07,1 -71.229.141.129,4,2020-10-07,1 -168.196.222.120,4,2020-10-07,1 -162.158.166.116,4,2020-10-06,1 -211.170.28.251,4,2020-10-06,1 -23.129.64.186,4,2020-10-06,1 -2.51.105.73,4,2020-10-07,1 -37.187.54.45,4,2020-10-06,1 -104.206.128.58,4,2020-10-06,1 -146.88.240.11,4,2020-10-06,1 -5.202.181.241,4,2020-10-06,1 -185.132.53.151,4,2020-10-06,1 -91.234.62.17,4,2020-10-06,1 -156.96.118.46,4,2020-10-07,1 -138.197.222.97,4,2020-10-06,1 -92.118.161.21,4,2020-10-06,1 -162.158.165.121,4,2020-10-06,1 -182.253.197.67,4,2020-10-06,1 -162.158.178.240,4,2020-10-06,1 -182.180.57.179,4,2020-10-06,1 -49.71.131.109,4,2020-10-06,1 -121.200.61.37,4,2020-10-06,1 -114.33.83.88,4,2020-10-06,1 -104.236.112.52,4,2020-10-07,1 -197.5.145.93,4,2020-10-07,1 -3.34.110.39,4,2020-10-06,1 -181.175.251.238,4,2020-10-06,1 -202.158.77.42,4,2020-10-07,1 -135.181.64.20,4,2020-10-06,1 -194.180.224.117,4,2020-10-07,1 -116.196.90.254,4,2020-10-06,1 -176.106.162.202,4,2020-10-06,1 -156.202.234.213,4,2020-10-06,1 -106.12.20.195,4,2020-10-06,1 -49.235.167.59,4,2020-10-06,1 -154.83.14.164,4,2020-10-06,1 -192.99.11.195,4,2020-10-06,1 -182.23.56.138,4,2020-10-06,1 -40.124.32.105,4,2020-10-06,1 -106.12.47.108,4,2020-10-06,1 -192.241.237.91,4,2020-10-06,1 -104.206.128.34,4,2020-10-06,1 -186.147.160.189,4,2020-10-06,1 -74.82.28.5,4,2020-10-07,1 -170.80.142.166,4,2020-10-06,1 -115.77.206.178,4,2020-10-07,1 -171.242.177.217,4,2020-10-07,1 -41.69.65.204,4,2020-10-06,1 -171.246.34.245,4,2020-10-07,1 -125.94.117.128,4,2020-10-06,1 -36.89.63.122,4,2020-10-06,1 -51.77.137.211,4,2020-10-06,1 -157.245.33.235,4,2020-10-07,1 -162.142.125.16,4,2020-10-07,1 -45.123.111.84,4,2020-10-07,1 -118.40.248.20,4,2020-10-07,1 -45.138.72.131,4,2020-10-06,1 -195.29.102.42,4,2020-10-07,1 -115.96.124.31,4,2020-10-06,1 -103.53.231.15,4,2020-10-07,1 -151.115.61.58,4,2020-10-06,1 -104.41.43.241,4,2020-10-07,1 -36.80.3.35,4,2020-10-07,1 -171.246.56.147,4,2020-10-07,1 -212.64.76.91,4,2020-10-06,1 -106.12.93.25,4,2020-10-07,1 -203.150.53.133,4,2020-10-06,1 -195.201.117.103,4,2020-10-06,1 -101.78.9.235,4,2020-10-07,1 -196.52.43.125,4,2020-10-07,1 -103.233.103.80,4,2020-10-06,1 -45.148.122.185,4,2020-10-06,1 -13.65.151.245,4,2020-10-07,1 -162.158.178.110,4,2020-10-06,1 -146.88.240.15,4,2020-10-06,1 -185.142.236.34,4,2020-10-06,1 -164.132.103.232,4,2020-10-07,1 -156.96.56.45,4,2020-10-06,1 -129.28.172.220,4,2020-10-07,1 -171.246.47.254,4,2020-10-07,1 -165.22.76.96,4,2020-10-06,1 -192.241.235.76,4,2020-10-07,1 -189.15.205.122,4,2020-10-06,1 -92.222.74.255,4,2020-10-07,1 -51.159.22.147,4,2020-10-06,1 -50.207.163.12,4,2020-10-06,1 -106.52.249.134,4,2020-10-06,1 -65.52.207.171,4,2020-10-07,1 -196.52.43.109,4,2020-10-07,1 -94.25.169.201,4,2020-10-06,1 -153.36.233.60,4,2020-10-06,1 -54.219.246.199,4,2020-10-07,1 -182.61.6.64,4,2020-10-07,1 -123.150.9.74,4,2020-10-06,1 -191.54.97.142,4,2020-10-06,1 -118.24.82.81,4,2020-10-06,1 -34.66.101.36,4,2020-10-07,1 -60.249.244.191,4,2020-10-07,1 -64.227.10.134,4,2020-10-07,1 -195.162.81.89,4,2020-10-06,1 -123.30.157.239,4,2020-10-07,1 -73.245.122.155,4,2020-10-06,1 -201.114.229.142,4,2020-10-07,1 -139.162.106.181,4,2020-10-06,1 -162.158.179.33,4,2020-10-06,1 -185.220.103.5,4,2020-10-07,1 -45.145.67.233,4,2020-10-06,1 -51.159.20.133,4,2020-10-06,1 -106.12.199.117,4,2020-10-06,1 -106.55.170.47,4,2020-10-06,1 -103.192.61.34,4,2020-10-06,1 -139.211.156.238,4,2020-10-06,1 -106.53.244.185,4,2020-10-06,1 -116.104.236.158,4,2020-10-07,1 -66.240.219.146,4,2020-10-07,1 -122.116.51.129,4,2020-10-06,1 -172.68.255.179,4,2020-10-06,1 -81.17.16.150,4,2020-10-07,1 -195.34.243.122,4,2020-10-07,1 -59.151.43.20,4,2020-10-06,1 -152.67.47.139,4,2020-10-07,1 -116.100.220.232,4,2020-10-07,1 -103.136.40.110,4,2020-10-07,1 -139.155.1.137,4,2020-10-06,1 -213.150.206.88,4,2020-10-07,1 -59.126.72.4,4,2020-10-07,1 -49.249.239.198,4,2020-10-06,1 -162.158.179.63,4,2020-10-06,1 -103.63.108.25,4,2020-10-06,1 -123.240.162.92,4,2020-10-06,1 -14.135.120.19,4,2020-10-06,1 -124.29.217.66,4,2020-10-07,1 -175.103.40.69,4,2020-10-07,1 -116.107.144.8,4,2020-10-07,1 -3.131.29.3,4,2020-10-07,1 -162.158.178.108,4,2020-10-06,1 -212.156.136.114,4,2020-10-07,1 -85.105.183.104,4,2020-10-06,1 -35.167.78.134,4,2020-10-07,1 -183.129.174.68,4,2020-10-06,1 -177.37.176.210,4,2020-10-06,1 -81.183.213.37,4,2020-10-07,1 -188.166.144.207,4,2020-10-06,1 -102.165.30.13,4,2020-10-06,1 -85.248.227.165,4,2020-10-06,1 -106.75.211.130,4,2020-10-06,1 -58.182.98.237,4,2020-10-06,1 -176.31.182.79,4,2020-10-07,1 -49.234.42.108,4,2020-10-06,1 -104.140.188.18,4,2020-10-06,1 -221.195.117.131,4,2020-10-07,1 -45.148.121.3,4,2020-10-06,1 -120.55.212.226,4,2020-10-07,1 -182.162.104.153,4,2020-10-06,1 -74.120.14.26,4,2020-10-06,1 -191.255.232.53,4,2020-10-06,1 -218.25.140.72,4,2020-10-06,1 -146.88.240.10,4,2020-10-06,1 -51.79.55.141,4,2020-10-06,1 -116.100.12.84,4,2020-10-07,1 -162.158.179.53,4,2020-10-06,1 -178.17.170.23,4,2020-10-06,1 -91.121.86.22,4,2020-10-07,1 -188.230.215.67,4,2020-10-07,1 -18.237.225.63,4,2020-10-07,1 -171.242.165.70,4,2020-10-07,1 -211.47.97.64,4,2020-10-06,1 -202.59.173.49,4,2020-10-06,1 -27.77.203.205,4,2020-10-07,1 -104.131.109.139,4,2020-10-06,1 -87.251.70.83,4,2020-10-07,1 -192.241.211.132,3,2020-10-06,1 -104.140.188.34,3,2020-10-06,1 -124.156.54.249,3,2020-10-06,1 -51.15.105.235,3,2020-10-06,1 -165.232.103.3,3,2020-10-06,1 -103.31.251.44,3,2020-10-07,1 -184.68.86.2,3,2020-10-06,1 -115.76.110.3,3,2020-10-07,1 -171.243.122.141,3,2020-10-07,1 -192.241.237.45,3,2020-10-07,1 -212.200.196.147,3,2020-10-06,1 -171.242.153.2,3,2020-10-07,1 -71.10.250.0,3,2020-10-06,1 -114.34.157.39,3,2020-10-06,1 -104.206.128.22,3,2020-10-06,1 -209.17.96.186,3,2020-10-06,1 -87.251.70.14,3,2020-10-06,1 -192.241.208.169,3,2020-10-06,1 -162.158.166.94,3,2020-10-06,1 -98.234.44.106,3,2020-10-06,1 -124.131.36.83,3,2020-10-06,1 -73.100.238.60,3,2020-10-06,1 -177.139.56.170,3,2020-10-06,1 -162.158.165.153,3,2020-10-06,1 -83.123.13.165,3,2020-10-07,1 -193.118.55.146,3,2020-10-06,1 -162.158.166.110,3,2020-10-06,1 -167.99.103.193,3,2020-10-06,1 -92.118.161.13,3,2020-10-07,1 -172.69.135.61,3,2020-10-06,1 -196.52.43.127,3,2020-10-06,1 -196.52.43.64,3,2020-10-07,1 -158.140.96.28,3,2020-10-06,1 -116.101.46.68,3,2020-10-07,1 -115.96.133.30,3,2020-10-07,1 -186.42.185.74,3,2020-10-06,1 -209.17.96.114,3,2020-10-06,1 -162.158.165.101,3,2020-10-06,1 -115.76.107.227,3,2020-10-07,1 -78.85.4.107,3,2020-10-07,1 -162.158.165.41,3,2020-10-06,1 -49.51.155.69,3,2020-10-06,1 -162.158.165.139,3,2020-10-06,1 -13.76.221.25,3,2020-10-07,1 -189.39.117.130,3,2020-10-06,1 -92.118.160.37,3,2020-10-06,1 -182.61.21.155,3,2020-10-06,1 -203.222.26.26,3,2020-10-07,1 -23.129.64.180,3,2020-10-06,1 -103.211.78.254,3,2020-10-07,1 -177.11.136.83,3,2020-10-06,1 -173.220.199.42,3,2020-10-07,1 -104.140.188.58,3,2020-10-07,1 -103.223.8.240,3,2020-10-06,1 -171.243.107.51,3,2020-10-07,1 -196.52.43.101,3,2020-10-06,1 -216.245.209.230,3,2020-10-07,1 -162.158.166.254,3,2020-10-06,1 -221.234.239.11,3,2020-10-06,1 -192.241.237.160,3,2020-10-07,1 -162.158.165.245,3,2020-10-06,1 -115.71.239.208,3,2020-10-06,1 -192.241.234.246,3,2020-10-06,1 -157.97.94.245,3,2020-10-06,1 -203.163.239.251,3,2020-10-06,1 -1.186.248.30,3,2020-10-06,1 -172.68.254.161,3,2020-10-06,1 -188.120.225.96,3,2020-10-06,1 -66.230.230.230,3,2020-10-06,1 -198.143.133.154,3,2020-10-07,1 -178.62.115.86,3,2020-10-07,1 -172.69.134.162,3,2020-10-06,1 -106.13.165.247,3,2020-10-07,1 -161.97.100.76,3,2020-10-06,1 -105.213.111.212,3,2020-10-06,1 -172.68.146.231,3,2020-10-06,1 -171.246.53.185,3,2020-10-07,1 -61.145.178.134,3,2020-10-06,1 -221.120.43.185,3,2020-10-06,1 -104.206.128.70,3,2020-10-06,1 -24.38.31.13,3,2020-10-06,1 -202.83.42.90,3,2020-10-06,1 -162.158.179.195,3,2020-10-06,1 -164.52.24.169,3,2020-10-06,1 -191.205.197.161,3,2020-10-07,1 -223.19.119.152,3,2020-10-06,1 -162.158.167.75,3,2020-10-06,1 -128.199.111.10,3,2020-10-07,1 -185.132.53.2,3,2020-10-07,1 -165.227.125.173,3,2020-10-07,1 -172.68.146.197,3,2020-10-06,1 -165.22.229.30,3,2020-10-07,1 -223.25.98.58,3,2020-10-06,1 -162.158.166.210,3,2020-10-06,1 -209.17.96.242,3,2020-10-06,1 -67.82.48.113,3,2020-10-07,1 -103.83.154.75,3,2020-10-07,1 -27.77.227.2,3,2020-10-07,1 -123.132.155.114,3,2020-10-06,1 -162.158.166.236,3,2020-10-06,1 -61.53.196.115,3,2020-10-06,1 -159.203.78.201,3,2020-10-07,1 -13.68.213.123,3,2020-10-07,1 -172.69.134.78,3,2020-10-06,1 -20.191.104.104,3,2020-10-06,1 -123.21.181.143,3,2020-10-06,1 -151.115.33.33,3,2020-10-06,1 -192.241.238.94,3,2020-10-06,1 -172.68.141.43,3,2020-10-06,1 -27.69.165.178,3,2020-10-07,1 -187.108.65.199,3,2020-10-06,1 -93.140.108.59,3,2020-10-07,1 -192.241.237.93,3,2020-10-06,1 -95.110.149.183,3,2020-10-07,1 -74.194.247.70,3,2020-10-06,1 -207.154.230.59,3,2020-10-06,1 -84.104.253.195,3,2020-10-06,1 -182.127.121.173,3,2020-10-06,1 -162.158.167.79,3,2020-10-06,1 -162.158.166.54,3,2020-10-06,1 -103.135.39.91,3,2020-10-06,1 -177.84.40.106,3,2020-10-06,1 -109.194.3.165,3,2020-10-07,1 -162.158.165.155,3,2020-10-06,1 -168.121.224.95,3,2020-10-06,1 -116.206.59.195,3,2020-10-06,1 -103.26.136.173,3,2020-10-06,1 -172.68.254.131,3,2020-10-06,1 -183.111.224.109,3,2020-10-06,1 -173.66.70.109,3,2020-10-06,1 -51.178.119.209,3,2020-10-06,1 -157.245.123.108,3,2020-10-07,1 -172.69.134.30,3,2020-10-06,1 -162.158.165.67,3,2020-10-06,1 -54.196.169.100,3,2020-10-06,1 -119.145.188.138,3,2020-10-07,1 -162.243.128.209,3,2020-10-06,1 -122.165.149.75,3,2020-10-06,1 -192.241.237.60,3,2020-10-06,1 -185.59.247.48,3,2020-10-06,1 -139.59.129.59,3,2020-10-07,1 -124.158.179.229,3,2020-10-06,1 -116.100.11.254,3,2020-10-07,1 -103.223.122.25,3,2020-10-06,1 -78.15.152.179,3,2020-10-06,1 -185.100.87.191,3,2020-10-06,1 -123.4.75.78,3,2020-10-06,1 -162.158.166.108,3,2020-10-06,1 -220.132.209.150,3,2020-10-06,1 -54.183.198.217,3,2020-10-07,1 -102.165.30.37,3,2020-10-07,1 -191.241.50.50,3,2020-10-06,1 -185.127.16.58,3,2020-10-06,1 -172.69.134.174,3,2020-10-06,1 -61.110.143.248,3,2020-10-06,1 -111.229.129.100,3,2020-10-06,1 -40.85.160.227,3,2020-10-06,1 -150.109.231.12,3,2020-10-06,1 -186.96.68.210,3,2020-10-07,1 -162.158.167.63,3,2020-10-06,1 -95.128.118.182,3,2020-10-07,1 -209.45.49.177,3,2020-10-07,1 -109.187.9.26,3,2020-10-06,1 -89.239.41.157,3,2020-10-07,1 -176.216.81.3,3,2020-10-06,1 -61.178.32.88,3,2020-10-06,1 -162.158.166.182,3,2020-10-06,1 -115.96.125.139,3,2020-10-06,1 -116.73.67.211,3,2020-10-07,1 -104.196.235.71,3,2020-10-07,1 -172.68.254.39,3,2020-10-06,1 -172.69.134.84,3,2020-10-06,1 -134.175.249.84,3,2020-10-07,1 -27.68.170.226,3,2020-10-07,1 -200.29.171.107,3,2020-10-07,1 -188.116.36.152,3,2020-10-06,1 -87.251.66.178,3,2020-10-06,1 -165.232.64.46,3,2020-10-07,1 -162.158.165.57,3,2020-10-06,1 -45.232.75.253,3,2020-10-06,1 -123.5.195.204,3,2020-10-06,1 -103.69.245.55,3,2020-10-07,1 -27.72.92.178,3,2020-10-06,1 -31.168.18.65,3,2020-10-07,1 -184.176.131.109,3,2020-10-06,1 -171.225.226.67,3,2020-10-07,1 -194.87.138.0,3,2020-10-06,1 -162.158.165.229,3,2020-10-06,1 -196.168.216.96,3,2020-10-07,1 -5.202.143.71,3,2020-10-07,1 -104.131.21.222,3,2020-10-06,1 -110.164.147.189,3,2020-10-06,1 -162.158.179.219,3,2020-10-06,1 -27.6.242.88,3,2020-10-07,1 -192.241.234.115,3,2020-10-06,1 -173.30.96.81,3,2020-10-07,1 -171.242.172.51,3,2020-10-07,1 -168.121.226.60,3,2020-10-07,1 -27.211.189.23,3,2020-10-06,1 -178.254.197.242,3,2020-10-06,1 -69.117.251.114,3,2020-10-06,1 -128.14.209.250,3,2020-10-06,1 -162.158.166.150,3,2020-10-06,1 -162.158.166.160,3,2020-10-06,1 -68.175.89.61,3,2020-10-06,1 -112.2.216.222,3,2020-10-07,1 -195.54.161.246,3,2020-10-07,1 -192.34.57.113,3,2020-10-06,1 -10.255.52.74,3,2020-10-06,1 -119.187.107.62,3,2020-10-06,1 -37.187.106.104,3,2020-10-07,1 -172.68.146.161,3,2020-10-06,1 -72.89.131.110,3,2020-10-07,1 -192.241.219.22,3,2020-10-06,1 -172.69.135.127,3,2020-10-06,1 -218.55.177.7,3,2020-10-07,1 -119.29.247.187,3,2020-10-06,1 -178.117.0.183,3,2020-10-06,1 -170.254.226.100,3,2020-10-06,1 -213.32.122.81,3,2020-10-06,1 -162.158.179.27,3,2020-10-06,1 -115.76.229.124,3,2020-10-07,1 -192.241.217.152,3,2020-10-07,1 -162.158.165.179,3,2020-10-06,1 -125.78.160.160,3,2020-10-06,1 -36.75.246.208,3,2020-10-06,1 -162.158.178.164,3,2020-10-06,1 -162.158.166.176,3,2020-10-06,1 -5.234.239.0,3,2020-10-07,1 -193.169.252.69,3,2020-10-06,1 -162.158.165.19,3,2020-10-06,1 -103.78.15.226,3,2020-10-07,1 -172.68.254.25,3,2020-10-06,1 -192.35.168.203,3,2020-10-06,1 -82.118.23.32,3,2020-10-07,1 -54.36.149.70,3,2020-10-07,1 -172.68.255.161,3,2020-10-06,1 -216.254.186.76,3,2020-10-07,1 -96.114.71.146,3,2020-10-06,1 -104.244.78.233,3,2020-10-07,1 -193.27.228.158,3,2020-10-06,1 -192.241.233.186,3,2020-10-06,1 -162.158.167.23,3,2020-10-06,1 -103.253.140.19,3,2020-10-07,1 -203.212.245.143,3,2020-10-06,1 -103.54.145.133,3,2020-10-06,1 -170.130.187.26,3,2020-10-06,1 -162.158.166.90,3,2020-10-06,1 -167.71.237.73,3,2020-10-07,1 -209.17.96.122,3,2020-10-06,1 -92.222.92.114,3,2020-10-06,1 -92.204.171.210,3,2020-10-06,1 -162.158.178.10,3,2020-10-06,1 -172.68.254.73,3,2020-10-06,1 -102.165.30.33,3,2020-10-06,1 -92.60.180.108,3,2020-10-07,1 -1.234.182.12,3,2020-10-06,1 -93.126.62.101,3,2020-10-06,1 -85.133.184.234,3,2020-10-06,1 -211.198.90.77,3,2020-10-06,1 -117.27.88.61,3,2020-10-07,1 -27.77.227.114,3,2020-10-07,1 -117.7.101.28,3,2020-10-07,1 -172.69.134.180,3,2020-10-06,1 -60.175.90.102,3,2020-10-07,1 -162.158.179.9,3,2020-10-06,1 -139.162.99.243,3,2020-10-07,1 -162.158.166.24,3,2020-10-06,1 -219.157.219.94,3,2020-10-06,1 -102.165.30.49,3,2020-10-06,1 -83.103.59.192,3,2020-10-06,1 -162.158.165.29,3,2020-10-06,1 -109.194.3.19,3,2020-10-07,1 -106.52.91.250,3,2020-10-07,1 -175.24.120.42,3,2020-10-06,1 -159.89.188.167,3,2020-10-06,1 -138.197.166.66,3,2020-10-07,1 -45.234.16.242,3,2020-10-07,1 -119.45.56.100,3,2020-10-07,1 -209.17.96.130,3,2020-10-06,1 -161.35.236.158,3,2020-10-06,1 -85.248.227.164,3,2020-10-07,1 -188.241.121.202,3,2020-10-07,1 -172.68.254.61,3,2020-10-06,1 -171.242.215.5,3,2020-10-07,1 -186.10.125.209,3,2020-10-06,1 -172.68.146.71,3,2020-10-06,1 -186.10.94.58,3,2020-10-06,1 -115.76.109.94,3,2020-10-07,1 -162.158.165.33,3,2020-10-06,1 -185.107.47.171,3,2020-10-07,1 -67.197.185.134,3,2020-10-07,1 -182.59.170.110,3,2020-10-07,1 -171.242.145.129,3,2020-10-07,1 -162.158.165.213,3,2020-10-06,1 -177.170.55.7,3,2020-10-06,1 -177.223.100.22,3,2020-10-07,1 -62.234.20.26,3,2020-10-06,1 -64.20.51.155,3,2020-10-07,1 -208.78.41.156,3,2020-10-07,1 -3.81.245.94,3,2020-10-07,1 -81.213.167.181,3,2020-10-06,1 -122.228.19.80,3,2020-10-06,1 -107.6.183.162,3,2020-10-07,1 -121.11.115.32,3,2020-10-06,1 -196.52.43.126,3,2020-10-06,1 -45.6.63.64,3,2020-10-06,1 -162.158.165.169,3,2020-10-06,1 -162.158.165.25,3,2020-10-06,1 -193.239.232.102,3,2020-10-06,1 -103.136.42.200,3,2020-10-07,1 -178.128.144.227,3,2020-10-07,1 -180.218.4.81,3,2020-10-06,1 -113.31.114.90,3,2020-10-07,1 -162.243.128.48,3,2020-10-07,1 -188.123.35.224,3,2020-10-07,1 -122.51.68.166,3,2020-10-06,1 -138.197.132.220,3,2020-10-07,1 -103.223.9.48,3,2020-10-06,1 -192.241.234.95,3,2020-10-06,1 -162.158.178.54,3,2020-10-06,1 -49.158.123.60,3,2020-10-06,1 -174.4.137.104,3,2020-10-06,1 -88.78.244.194,3,2020-10-06,1 -196.221.67.188,3,2020-10-06,1 -171.242.240.155,3,2020-10-07,1 -45.148.122.161,3,2020-10-06,1 -172.68.146.101,3,2020-10-06,1 -141.98.83.11,3,2020-10-06,1 -117.156.119.39,3,2020-10-06,1 -209.17.96.202,3,2020-10-06,1 -171.242.151.98,3,2020-10-07,1 -70.67.15.93,3,2020-10-06,1 -172.68.146.185,3,2020-10-06,1 -172.69.135.163,3,2020-10-06,1 -196.52.43.123,3,2020-10-06,1 -82.62.153.15,3,2020-10-06,1 -172.68.146.125,3,2020-10-06,1 -103.214.138.62,3,2020-10-07,1 -162.158.166.50,3,2020-10-06,1 -142.93.34.237,3,2020-10-07,1 -68.183.148.159,3,2020-10-07,1 -39.74.96.93,3,2020-10-06,1 -155.4.240.169,3,2020-10-06,1 -194.87.138.26,3,2020-10-07,1 -139.155.224.91,3,2020-10-06,1 -192.241.234.126,3,2020-10-07,1 -122.51.57.78,3,2020-10-06,1 -125.64.94.135,3,2020-10-06,1 -67.83.205.134,3,2020-10-07,1 -114.33.56.17,3,2020-10-06,1 -36.108.151.79,3,2020-10-06,1 -115.63.133.126,3,2020-10-06,1 -172.68.146.95,3,2020-10-06,1 -159.89.118.163,3,2020-10-06,1 -51.15.35.229,3,2020-10-06,1 -197.35.159.229,3,2020-10-06,1 -176.221.188.104,3,2020-10-06,1 -162.158.166.104,3,2020-10-06,1 -103.220.29.85,3,2020-10-06,1 -103.56.196.236,3,2020-10-07,1 -175.123.253.79,3,2020-10-07,1 -2.57.121.189,3,2020-10-07,1 -162.243.128.180,3,2020-10-06,1 -188.120.235.117,3,2020-10-07,1 -103.125.171.115,3,2020-10-06,1 -14.116.151.215,3,2020-10-07,1 -172.68.146.191,3,2020-10-06,1 -114.32.59.150,3,2020-10-06,1 -117.1.26.27,3,2020-10-07,1 -109.97.116.131,3,2020-10-07,1 -162.158.165.251,3,2020-10-06,1 -45.93.201.235,3,2020-10-06,1 -212.56.152.151,3,2020-10-06,1 -171.242.212.38,3,2020-10-07,1 -27.213.110.83,3,2020-10-07,1 -162.158.166.86,3,2020-10-06,1 -192.241.221.78,3,2020-10-06,1 -115.97.31.75,3,2020-10-07,1 -92.25.72.21,3,2020-10-06,1 -41.207.188.106,3,2020-10-06,1 -34.221.44.26,3,2020-10-07,1 -195.54.167.224,3,2020-10-06,1 -142.93.153.169,3,2020-10-06,1 -64.20.62.90,3,2020-10-07,1 -192.241.234.107,3,2020-10-06,1 -162.158.178.22,3,2020-10-06,1 -60.208.165.138,3,2020-10-06,1 -42.190.54.78,3,2020-10-06,1 -165.227.103.213,3,2020-10-07,1 -52.252.230.176,3,2020-10-06,1 -123.116.153.62,3,2020-10-06,1 -71.6.146.130,3,2020-10-06,1 -167.248.133.31,3,2020-10-07,1 -191.205.184.167,3,2020-10-06,1 -45.143.221.135,3,2020-10-06,1 -68.183.193.148,3,2020-10-07,1 -218.102.216.61,3,2020-10-06,1 -45.72.177.46,3,2020-10-07,1 -79.143.25.181,3,2020-10-07,1 -103.138.108.188,3,2020-10-07,1 -68.183.35.255,3,2020-10-06,1 -156.196.158.27,3,2020-10-07,1 -124.158.162.34,3,2020-10-06,1 -139.162.4.14,3,2020-10-06,1 -103.127.187.76,3,2020-10-06,1 -116.103.72.160,3,2020-10-07,1 -209.17.97.42,2,2020-10-07,1 -216.144.82.122,2,2020-10-06,1 -91.244.141.155,2,2020-10-06,1 -27.202.1.223,2,2020-10-06,1 -162.158.178.176,2,2020-10-06,1 -106.12.175.226,2,2020-10-06,1 -120.138.125.42,2,2020-10-06,1 -27.77.231.167,2,2020-10-07,1 -171.224.209.97,2,2020-10-07,1 -115.76.107.122,2,2020-10-07,1 -114.33.174.243,2,2020-10-06,1 -27.64.227.166,2,2020-10-07,1 -51.158.66.14,2,2020-10-06,1 -51.178.176.38,2,2020-10-06,1 -14.102.56.243,2,2020-10-07,1 -116.102.245.226,2,2020-10-06,1 -27.77.233.108,2,2020-10-07,1 -27.68.172.36,2,2020-10-07,1 -115.76.106.174,2,2020-10-07,1 -192.241.238.210,2,2020-10-06,1 -144.48.168.149,2,2020-10-06,1 -91.216.110.61,2,2020-10-07,1 -171.246.56.245,2,2020-10-07,1 -182.230.112.148,2,2020-10-06,1 -114.32.235.28,2,2020-10-06,1 -172.69.135.91,2,2020-10-06,1 -165.22.43.5,2,2020-10-06,1 -5.32.25.94,2,2020-10-07,1 -194.87.138.33,2,2020-10-07,1 -187.120.147.186,2,2020-10-06,1 -62.148.142.202,2,2020-10-07,1 -171.242.170.165,2,2020-10-07,1 -171.252.95.10,2,2020-10-07,1 -203.212.243.171,2,2020-10-06,1 -117.0.164.62,2,2020-10-07,1 -125.63.68.2,2,2020-10-06,1 -162.158.165.65,2,2020-10-06,1 -27.3.134.154,2,2020-10-06,1 -115.165.200.200,2,2020-10-06,1 -115.76.99.219,2,2020-10-07,1 -171.252.95.119,2,2020-10-07,1 -128.92.217.171,2,2020-10-06,1 -42.200.231.27,2,2020-10-07,1 -162.158.167.167,2,2020-10-06,1 -171.243.96.94,2,2020-10-07,1 -118.25.64.152,2,2020-10-06,1 -117.5.69.170,2,2020-10-07,1 -61.84.208.131,2,2020-10-06,1 -192.241.235.192,2,2020-10-06,1 -27.68.171.235,2,2020-10-07,1 -116.107.227.224,2,2020-10-07,1 -116.106.86.18,2,2020-10-07,1 -175.143.82.192,2,2020-10-06,1 -94.180.25.123,2,2020-10-07,1 -117.0.96.120,2,2020-10-07,1 -171.245.122.216,2,2020-10-07,1 -106.12.153.161,2,2020-10-07,1 -116.97.30.167,2,2020-10-07,1 -124.156.218.232,2,2020-10-07,1 -197.36.13.101,2,2020-10-06,1 -171.238.78.156,2,2020-10-07,1 -94.102.50.163,2,2020-10-06,1 -171.229.126.81,2,2020-10-07,1 -171.229.142.112,2,2020-10-07,1 -27.68.17.217,2,2020-10-07,1 -122.116.247.59,2,2020-10-06,1 -192.241.232.233,2,2020-10-06,1 -190.10.167.115,2,2020-10-06,1 -171.225.231.237,2,2020-10-06,1 -116.107.166.10,2,2020-10-07,1 -217.64.134.145,2,2020-10-07,1 -172.69.135.225,2,2020-10-06,1 -27.69.174.11,2,2020-10-07,1 -103.117.153.185,2,2020-10-07,1 -115.77.195.18,2,2020-10-07,1 -36.155.117.37,2,2020-10-07,1 -156.96.118.33,2,2020-10-06,1 -171.229.129.60,2,2020-10-07,1 -171.246.62.86,2,2020-10-07,1 -114.35.204.70,2,2020-10-06,1 -51.15.101.42,2,2020-10-06,1 -115.76.31.244,2,2020-10-07,1 -92.169.162.37,2,2020-10-07,1 -116.100.216.169,2,2020-10-07,1 -190.225.71.138,2,2020-10-06,1 -93.71.9.21,2,2020-10-06,1 -171.227.166.68,2,2020-10-07,1 -211.72.75.121,2,2020-10-07,1 -116.100.221.15,2,2020-10-07,1 -116.100.8.72,2,2020-10-07,1 -27.77.239.167,2,2020-10-07,1 -27.65.29.206,2,2020-10-07,1 -37.49.230.155,2,2020-10-06,1 -187.190.48.251,2,2020-10-06,1 -171.246.38.231,2,2020-10-07,1 -220.133.196.147,2,2020-10-06,1 -45.148.122.198,2,2020-10-06,1 -117.1.227.188,2,2020-10-07,1 -115.96.132.48,2,2020-10-06,1 -171.246.62.67,2,2020-10-07,1 -114.27.128.199,2,2020-10-06,1 -114.33.46.170,2,2020-10-07,1 -81.243.152.143,2,2020-10-06,1 -24.229.146.86,2,2020-10-06,1 -146.255.81.98,2,2020-10-06,1 -156.204.119.193,2,2020-10-06,1 -116.105.42.52,2,2020-10-07,1 -91.243.4.60,2,2020-10-06,1 -203.150.54.87,2,2020-10-06,1 -162.158.179.139,2,2020-10-06,1 -27.68.19.189,2,2020-10-07,1 -115.96.135.46,2,2020-10-06,1 -115.96.125.111,2,2020-10-06,1 -115.96.145.57,2,2020-10-07,1 -167.248.133.23,2,2020-10-06,1 -94.180.24.227,2,2020-10-06,1 -117.94.236.189,2,2020-10-06,1 -116.72.129.201,2,2020-10-06,1 -143.110.144.192,2,2020-10-07,1 -117.1.32.179,2,2020-10-07,1 -45.189.57.198,2,2020-10-07,1 -171.248.63.221,2,2020-10-07,1 -45.143.223.49,2,2020-10-06,1 -27.68.18.90,2,2020-10-07,1 -154.120.242.70,2,2020-10-06,1 -85.204.111.36,2,2020-10-07,1 -181.209.159.29,2,2020-10-06,1 -114.35.44.197,2,2020-10-06,1 -171.246.57.21,2,2020-10-07,1 -27.68.169.216,2,2020-10-07,1 -116.100.222.86,2,2020-10-07,1 -190.185.121.102,2,2020-10-06,1 -140.143.137.170,2,2020-10-07,1 -103.124.174.223,2,2020-10-06,1 -114.33.40.121,2,2020-10-07,1 -115.76.20.193,2,2020-10-07,1 -27.68.23.32,2,2020-10-07,1 -104.248.45.204,2,2020-10-06,1 -116.107.238.249,2,2020-10-07,1 -171.252.92.143,2,2020-10-07,1 -171.229.120.20,2,2020-10-07,1 -103.56.196.29,2,2020-10-06,1 -177.67.168.4,2,2020-10-06,1 -1.173.189.171,2,2020-10-06,1 -78.186.2.75,2,2020-10-07,1 -27.77.203.169,2,2020-10-07,1 -27.65.29.254,2,2020-10-07,1 -49.159.141.231,2,2020-10-07,1 -27.77.238.246,2,2020-10-07,1 -115.76.105.47,2,2020-10-07,1 -116.100.3.178,2,2020-10-07,1 -171.229.203.98,2,2020-10-07,1 -115.96.155.229,2,2020-10-06,1 -117.1.126.227,2,2020-10-07,1 -182.210.241.145,2,2020-10-06,1 -23.94.93.109,2,2020-10-06,1 -43.225.64.175,2,2020-10-06,1 -171.253.85.10,2,2020-10-07,1 -114.35.246.135,2,2020-10-07,1 -171.248.56.92,2,2020-10-07,1 -116.96.63.59,2,2020-10-07,1 -37.59.222.68,2,2020-10-06,1 -178.128.124.89,2,2020-10-06,1 -141.98.81.200,2,2020-10-07,1 -115.96.135.81,2,2020-10-06,1 -27.64.151.228,2,2020-10-07,1 -171.243.107.30,2,2020-10-07,1 -163.172.190.215,2,2020-10-06,1 -116.103.219.167,2,2020-10-07,1 -220.133.85.207,2,2020-10-06,1 -115.96.132.111,2,2020-10-06,1 -216.249.104.172,2,2020-10-06,1 -117.6.42.238,2,2020-10-07,1 -161.35.59.74,2,2020-10-07,1 -162.158.165.97,2,2020-10-06,1 -103.90.238.148,2,2020-10-06,1 -27.76.0.45,2,2020-10-07,1 -27.65.28.83,2,2020-10-07,1 -171.225.226.41,2,2020-10-07,1 -171.243.105.201,2,2020-10-07,1 -171.227.167.124,2,2020-10-07,1 -171.232.114.90,2,2020-10-07,1 -172.69.135.73,2,2020-10-06,1 -27.69.180.174,2,2020-10-06,1 -27.77.233.17,2,2020-10-07,1 -187.133.62.249,2,2020-10-06,1 -171.229.151.182,2,2020-10-07,1 -5.13.125.212,2,2020-10-06,1 -116.100.40.103,2,2020-10-07,1 -171.246.60.166,2,2020-10-07,1 -27.68.168.16,2,2020-10-07,1 -171.243.113.115,2,2020-10-06,1 -116.105.41.80,2,2020-10-07,1 -49.232.142.68,2,2020-10-06,1 -137.59.86.187,2,2020-10-07,1 -134.249.155.251,2,2020-10-06,1 -27.76.215.176,2,2020-10-07,1 -171.242.157.225,2,2020-10-07,1 -115.90.126.171,2,2020-10-07,1 -27.68.169.81,2,2020-10-07,1 -114.35.43.79,2,2020-10-06,1 -115.74.139.124,2,2020-10-07,1 -54.193.130.20,2,2020-10-07,1 -118.24.107.179,2,2020-10-06,1 -115.76.107.173,2,2020-10-07,1 -171.246.44.131,2,2020-10-07,1 -171.242.168.223,2,2020-10-07,1 -115.77.204.164,2,2020-10-07,1 -209.17.96.106,2,2020-10-07,1 -162.243.128.4,2,2020-10-07,1 -171.237.129.4,2,2020-10-07,1 -111.33.152.150,2,2020-10-06,1 -115.76.103.108,2,2020-10-07,1 -116.97.20.62,2,2020-10-07,1 -5.164.30.158,2,2020-10-06,1 -117.2.201.66,2,2020-10-07,1 -171.242.179.187,2,2020-10-07,1 -171.232.24.133,2,2020-10-07,1 -171.245.57.172,2,2020-10-07,1 -171.248.60.50,2,2020-10-07,1 -171.246.41.181,2,2020-10-07,1 -120.237.45.85,2,2020-10-07,1 -115.96.124.131,2,2020-10-07,1 -27.68.20.32,2,2020-10-07,1 -197.54.220.22,2,2020-10-06,1 -171.232.119.199,2,2020-10-07,1 -27.77.228.77,2,2020-10-07,1 -89.97.218.142,2,2020-10-06,1 -49.163.40.165,2,2020-10-07,1 -162.158.167.9,2,2020-10-06,1 -124.253.20.239,2,2020-10-06,1 -52.205.101.178,2,2020-10-06,1 -116.100.44.24,2,2020-10-07,1 -203.176.129.48,2,2020-10-06,1 -162.158.179.55,2,2020-10-06,1 -116.107.232.108,2,2020-10-07,1 -171.253.92.145,2,2020-10-07,1 -171.229.138.122,2,2020-10-07,1 -171.248.61.186,2,2020-10-07,1 -171.232.118.145,2,2020-10-07,1 -115.132.226.35,2,2020-10-06,1 -116.100.220.70,2,2020-10-07,1 -115.96.123.172,2,2020-10-06,1 -171.228.179.199,2,2020-10-07,1 -115.96.140.91,2,2020-10-06,1 -186.145.254.158,2,2020-10-06,1 -89.32.41.232,2,2020-10-06,1 -171.254.210.175,2,2020-10-07,1 -116.105.36.144,2,2020-10-07,1 -195.62.46.91,2,2020-10-06,1 -27.76.208.15,2,2020-10-07,1 -115.77.200.164,2,2020-10-07,1 -27.69.162.17,2,2020-10-07,1 -171.246.35.246,2,2020-10-07,1 -192.241.230.182,2,2020-10-06,1 -171.235.105.196,2,2020-10-07,1 -115.76.31.74,2,2020-10-07,1 -27.77.201.60,2,2020-10-07,1 -27.77.198.221,2,2020-10-07,1 -171.246.53.2,2,2020-10-07,1 -194.19.225.76,2,2020-10-07,1 -171.242.193.103,2,2020-10-07,1 -162.243.128.226,2,2020-10-07,1 -103.68.112.146,2,2020-10-06,1 -162.158.165.201,2,2020-10-06,1 -115.76.25.153,2,2020-10-07,1 -117.5.71.207,2,2020-10-07,1 -36.156.155.192,2,2020-10-06,1 -171.251.192.67,2,2020-10-07,1 -162.158.178.202,2,2020-10-06,1 -115.77.206.68,2,2020-10-07,1 -129.250.206.86,2,2020-10-07,1 -170.106.81.231,2,2020-10-06,1 -49.232.102.194,2,2020-10-07,1 -117.247.88.232,2,2020-10-06,1 -14.248.114.182,2,2020-10-06,1 -78.61.219.49,2,2020-10-06,1 -171.243.120.106,2,2020-10-07,1 -171.243.104.27,2,2020-10-07,1 -171.245.224.34,2,2020-10-06,1 -27.68.172.163,2,2020-10-07,1 -2.189.17.109,2,2020-10-06,1 -115.73.115.15,2,2020-10-07,1 -171.242.162.98,2,2020-10-07,1 -171.246.58.213,2,2020-10-07,1 -115.76.105.199,2,2020-10-07,1 -182.113.212.114,2,2020-10-06,1 -51.75.160.14,2,2020-10-07,1 -117.1.226.96,2,2020-10-07,1 -171.229.139.4,2,2020-10-07,1 -182.213.195.21,2,2020-10-06,1 -117.2.190.57,2,2020-10-07,1 -103.145.13.85,2,2020-10-06,1 -171.248.61.241,2,2020-10-07,1 -115.96.197.172,2,2020-10-06,1 -92.81.21.110,2,2020-10-06,1 -45.14.224.169,2,2020-10-07,1 -129.126.240.234,2,2020-10-06,1 -59.88.58.178,2,2020-10-06,1 -218.3.26.115,2,2020-10-06,1 -172.68.254.127,2,2020-10-06,1 -171.245.114.15,2,2020-10-07,1 -116.100.45.98,2,2020-10-07,1 -117.1.127.153,2,2020-10-07,1 -49.156.95.114,2,2020-10-07,1 -27.77.234.169,2,2020-10-07,1 -61.52.100.122,2,2020-10-06,1 -116.101.217.9,2,2020-10-07,1 -171.242.191.111,2,2020-10-07,1 -117.5.245.205,2,2020-10-07,1 -171.229.113.177,2,2020-10-07,1 -220.133.193.224,2,2020-10-06,1 -114.35.191.203,2,2020-10-06,1 -69.175.97.170,2,2020-10-06,1 -171.246.50.244,2,2020-10-07,1 -171.253.83.163,2,2020-10-07,1 -171.232.114.17,2,2020-10-07,1 -27.69.186.100,2,2020-10-06,1 -45.5.146.149,2,2020-10-07,1 -116.100.46.210,2,2020-10-07,1 -171.246.51.133,2,2020-10-07,1 -115.76.18.146,2,2020-10-07,1 -24.188.33.120,2,2020-10-07,1 -162.158.178.214,2,2020-10-06,1 -220.140.12.3,2,2020-10-06,1 -192.241.234.214,2,2020-10-06,1 -94.180.25.14,2,2020-10-06,1 -49.233.17.92,2,2020-10-06,1 -171.243.107.14,2,2020-10-06,1 -171.248.62.26,2,2020-10-07,1 -103.200.38.130,2,2020-10-07,1 -171.248.58.145,2,2020-10-07,1 -171.232.119.44,2,2020-10-07,1 -5.193.68.212,2,2020-10-06,1 -171.245.228.251,2,2020-10-07,1 -15.206.203.176,2,2020-10-07,1 -117.0.167.205,2,2020-10-07,1 -59.94.73.90,2,2020-10-06,1 -180.215.206.164,2,2020-10-06,1 -220.135.74.185,2,2020-10-06,1 -116.107.235.140,2,2020-10-07,1 -116.101.4.244,2,2020-10-07,1 -171.237.230.64,2,2020-10-07,1 -192.241.238.111,2,2020-10-07,1 -177.154.49.126,2,2020-10-06,1 -59.126.90.23,2,2020-10-06,1 -118.163.128.139,2,2020-10-06,1 -171.232.117.215,2,2020-10-07,1 -220.134.81.119,2,2020-10-06,1 -52.142.195.166,2,2020-10-06,1 -115.75.243.78,2,2020-10-07,1 -156.67.125.177,2,2020-10-06,1 -41.230.30.215,2,2020-10-06,1 -117.1.46.193,2,2020-10-07,1 -116.101.10.149,2,2020-10-07,1 -115.77.197.79,2,2020-10-07,1 -116.97.11.54,2,2020-10-07,1 -116.97.18.214,2,2020-10-07,1 -27.68.27.65,2,2020-10-07,1 -115.77.201.187,2,2020-10-07,1 -171.232.112.167,2,2020-10-07,1 -94.180.24.107,2,2020-10-06,1 -27.77.192.223,2,2020-10-07,1 -36.238.12.239,2,2020-10-06,1 -171.246.55.51,2,2020-10-07,1 -105.155.254.142,2,2020-10-06,1 -194.87.138.162,2,2020-10-06,1 -115.76.103.18,2,2020-10-07,1 -116.103.222.207,2,2020-10-07,1 -27.65.31.15,2,2020-10-07,1 -171.246.46.66,2,2020-10-07,1 -115.76.19.26,2,2020-10-07,1 -23.95.96.84,2,2020-10-06,1 -77.81.23.74,2,2020-10-06,1 -116.101.14.87,2,2020-10-07,1 -116.100.223.71,2,2020-10-07,1 -116.100.47.253,2,2020-10-07,1 -116.105.46.152,2,2020-10-07,1 -170.233.138.124,2,2020-10-07,1 -62.210.78.81,2,2020-10-06,1 -209.17.96.82,2,2020-10-06,1 -197.218.241.234,2,2020-10-06,1 -27.69.187.154,2,2020-10-06,1 -117.2.217.170,2,2020-10-07,1 -116.111.177.54,2,2020-10-07,1 -27.66.99.139,2,2020-10-07,1 -171.246.50.112,2,2020-10-07,1 -115.76.25.62,2,2020-10-07,1 -27.77.226.238,2,2020-10-07,1 -192.241.235.244,2,2020-10-06,1 -49.79.121.168,2,2020-10-06,1 -178.250.156.17,2,2020-10-06,1 -115.76.108.79,2,2020-10-07,1 -103.91.69.30,2,2020-10-06,1 -195.54.167.30,2,2020-10-06,1 -103.17.245.129,2,2020-10-06,1 -220.133.53.34,2,2020-10-07,1 -194.87.138.7,2,2020-10-06,1 -27.69.181.58,2,2020-10-06,1 -203.212.240.49,2,2020-10-07,1 -171.245.54.206,2,2020-10-07,1 -27.77.201.62,2,2020-10-07,1 -112.13.200.154,2,2020-10-06,1 -115.74.141.225,2,2020-10-07,1 -31.13.225.101,2,2020-10-07,1 -117.1.24.81,2,2020-10-07,1 -116.101.43.204,2,2020-10-07,1 -27.68.28.165,2,2020-10-07,1 -115.76.98.183,2,2020-10-07,1 -83.4.56.141,2,2020-10-07,1 -115.96.132.1,2,2020-10-07,1 -116.107.164.225,2,2020-10-07,1 -156.96.62.68,2,2020-10-06,1 -78.187.13.251,2,2020-10-06,1 -117.0.104.118,2,2020-10-07,1 -108.178.61.60,2,2020-10-07,1 -220.134.123.203,2,2020-10-06,1 -192.241.239.112,2,2020-10-07,1 -116.101.12.127,2,2020-10-07,1 -116.107.237.185,2,2020-10-07,1 -27.65.31.55,2,2020-10-07,1 -101.190.60.118,2,2020-10-06,1 -192.241.220.224,2,2020-10-06,1 -171.232.114.169,2,2020-10-07,1 -197.50.17.54,2,2020-10-07,1 -162.158.178.134,2,2020-10-06,1 -103.197.134.34,2,2020-10-06,1 -162.158.165.137,2,2020-10-06,1 -122.117.192.190,2,2020-10-06,1 -171.252.94.248,2,2020-10-07,1 -117.1.155.216,2,2020-10-07,1 -27.77.233.149,2,2020-10-07,1 -37.6.27.71,2,2020-10-06,1 -202.44.239.110,2,2020-10-07,1 -171.252.171.95,2,2020-10-07,1 -171.242.148.14,2,2020-10-07,1 -27.69.173.99,2,2020-10-07,1 -27.69.188.113,2,2020-10-06,1 -41.42.193.231,2,2020-10-06,1 -171.232.119.133,2,2020-10-07,1 -171.246.63.90,2,2020-10-07,1 -115.76.18.216,2,2020-10-07,1 -172.68.254.21,2,2020-10-06,1 -115.96.199.220,2,2020-10-07,1 -171.246.37.138,2,2020-10-07,1 -171.242.27.23,2,2020-10-07,1 -175.139.204.129,2,2020-10-06,1 -162.158.166.126,2,2020-10-06,1 -49.51.8.172,2,2020-10-06,1 -171.242.164.237,2,2020-10-07,1 -171.246.45.250,2,2020-10-07,1 -78.207.129.1,2,2020-10-07,1 -115.76.24.77,2,2020-10-07,1 -173.209.136.130,2,2020-10-06,1 -200.120.96.219,2,2020-10-07,1 -98.208.33.36,2,2020-10-06,1 -115.76.17.86,2,2020-10-07,1 -140.143.134.171,2,2020-10-06,1 -221.178.190.8,2,2020-10-06,1 -171.248.60.91,2,2020-10-07,1 -193.25.214.203,2,2020-10-06,1 -103.121.29.77,2,2020-10-06,1 -171.243.120.121,2,2020-10-07,1 -124.156.50.108,2,2020-10-06,1 -218.210.36.142,2,2020-10-06,1 -101.26.201.194,2,2020-10-06,1 -106.13.212.162,2,2020-10-06,1 -114.39.71.169,2,2020-10-06,1 -27.69.180.181,2,2020-10-07,1 -27.68.16.149,2,2020-10-07,1 -213.25.46.114,2,2020-10-07,1 -103.54.217.223,2,2020-10-06,1 -218.161.23.215,2,2020-10-06,1 -171.232.206.16,2,2020-10-06,1 -128.14.209.234,2,2020-10-06,1 -171.246.53.130,2,2020-10-07,1 -171.245.28.217,2,2020-10-07,1 -171.225.231.55,2,2020-10-07,1 -156.96.150.32,2,2020-10-07,1 -116.100.219.127,2,2020-10-07,1 -117.1.125.184,2,2020-10-07,1 -171.248.58.49,2,2020-10-07,1 -51.158.98.126,2,2020-10-06,1 -115.76.26.30,2,2020-10-07,1 -171.246.55.186,2,2020-10-07,1 -171.245.29.160,2,2020-10-07,1 -14.167.103.136,2,2020-10-06,1 -138.201.71.205,2,2020-10-06,1 -199.116.124.35,2,2020-10-06,1 -171.252.203.217,2,2020-10-07,1 -171.245.231.84,2,2020-10-07,1 -171.245.12.115,2,2020-10-07,1 -27.73.237.42,2,2020-10-07,1 -218.161.63.47,2,2020-10-07,1 -27.77.236.37,2,2020-10-07,1 -92.50.161.112,2,2020-10-07,1 -171.232.113.239,2,2020-10-07,1 -42.224.7.69,2,2020-10-07,1 -162.158.179.119,2,2020-10-06,1 -156.196.248.141,2,2020-10-06,1 -115.96.66.63,2,2020-10-06,1 -192.241.232.146,2,2020-10-07,1 -167.248.133.22,2,2020-10-07,1 -162.158.178.112,2,2020-10-06,1 -13.77.141.87,2,2020-10-07,1 -115.77.206.122,2,2020-10-07,1 -176.212.96.36,2,2020-10-07,1 -94.180.25.156,2,2020-10-06,1 -115.76.228.128,2,2020-10-07,1 -171.253.92.153,2,2020-10-07,1 -116.101.26.175,2,2020-10-07,1 -171.246.35.1,2,2020-10-07,1 -13.57.205.49,2,2020-10-07,1 -171.246.33.195,2,2020-10-07,1 -172.69.135.169,2,2020-10-06,1 -171.246.34.235,2,2020-10-07,1 -116.97.0.91,2,2020-10-07,1 -171.246.56.79,2,2020-10-07,1 -180.101.145.234,2,2020-10-06,1 -171.242.224.165,2,2020-10-07,1 -171.242.126.133,2,2020-10-07,1 -175.183.62.172,2,2020-10-06,1 -192.81.219.53,2,2020-10-07,1 -64.20.36.212,2,2020-10-07,1 -156.247.1.161,2,2020-10-07,1 -106.104.176.225,2,2020-10-06,1 -162.158.167.197,2,2020-10-06,1 -122.116.142.4,2,2020-10-06,1 -171.245.224.12,2,2020-10-07,1 -171.248.56.143,2,2020-10-07,1 -115.77.206.195,2,2020-10-07,1 -185.79.92.21,2,2020-10-06,1 -27.66.118.33,2,2020-10-07,1 -212.108.234.104,2,2020-10-06,1 -180.97.182.226,2,2020-10-07,1 -94.180.25.6,2,2020-10-06,1 -92.222.72.234,2,2020-10-06,1 -162.158.179.57,2,2020-10-06,1 -27.68.168.141,2,2020-10-07,1 -27.68.29.201,2,2020-10-07,1 -27.68.30.137,2,2020-10-07,1 -216.218.206.66,2,2020-10-06,1 -104.206.128.10,2,2020-10-06,1 -116.101.215.219,2,2020-10-07,1 -115.76.29.200,2,2020-10-07,1 -141.212.123.187,2,2020-10-07,1 -116.105.44.191,2,2020-10-06,1 -27.69.185.231,2,2020-10-07,1 -171.242.155.209,2,2020-10-07,1 -170.130.187.10,2,2020-10-06,1 -92.118.160.17,2,2020-10-06,1 -115.76.109.54,2,2020-10-07,1 -82.251.100.63,2,2020-10-06,1 -193.112.108.148,2,2020-10-06,1 -196.219.92.66,2,2020-10-07,1 -115.77.192.19,2,2020-10-07,1 -185.100.87.207,2,2020-10-07,1 -171.245.53.154,2,2020-10-07,1 -198.23.236.129,2,2020-10-06,1 -99.65.106.210,2,2020-10-06,1 -171.232.116.221,2,2020-10-07,1 -27.65.31.73,2,2020-10-07,1 -58.87.97.143,2,2020-10-07,1 -156.200.196.199,2,2020-10-06,1 -115.76.30.127,2,2020-10-07,1 -168.232.113.235,2,2020-10-06,1 -27.68.30.251,2,2020-10-07,1 -114.32.153.44,2,2020-10-07,1 -172.104.112.26,2,2020-10-06,1 -103.39.49.6,2,2020-10-07,1 -92.118.160.41,2,2020-10-06,1 -171.242.185.243,2,2020-10-07,1 -115.76.96.149,2,2020-10-07,1 -171.242.226.169,2,2020-10-07,1 -115.96.138.114,2,2020-10-06,1 -43.229.11.20,2,2020-10-06,1 -103.90.238.149,2,2020-10-06,1 -172.68.255.17,2,2020-10-06,1 -171.243.122.148,2,2020-10-06,1 -106.45.0.43,2,2020-10-06,1 -116.104.121.81,2,2020-10-07,1 -27.69.187.236,2,2020-10-07,1 -157.230.61.63,2,2020-10-06,1 -116.100.8.152,2,2020-10-07,1 -171.253.82.110,2,2020-10-07,1 -115.76.108.91,2,2020-10-07,1 -162.12.245.79,2,2020-10-06,1 -192.241.214.48,2,2020-10-07,1 -27.68.31.209,2,2020-10-07,1 -27.68.170.125,2,2020-10-07,1 -117.50.6.160,2,2020-10-07,1 -171.229.120.152,2,2020-10-07,1 -171.243.112.120,2,2020-10-07,1 -162.158.167.181,2,2020-10-06,1 -116.107.238.222,2,2020-10-07,1 -171.224.246.204,2,2020-10-07,1 -119.45.34.13,2,2020-10-06,1 -171.248.63.191,2,2020-10-07,1 -171.252.93.124,2,2020-10-07,1 -148.223.224.67,2,2020-10-06,1 -51.158.67.12,2,2020-10-06,1 -27.69.189.50,2,2020-10-07,1 -114.32.241.81,2,2020-10-06,1 -106.12.210.166,2,2020-10-06,1 -116.100.47.139,2,2020-10-07,1 -27.73.32.58,2,2020-10-07,1 -192.241.233.55,2,2020-10-07,1 -116.105.46.187,2,2020-10-06,1 -171.246.55.77,2,2020-10-06,1 -171.225.228.237,2,2020-10-06,1 -187.80.159.8,2,2020-10-06,1 -111.229.25.25,2,2020-10-06,1 -170.106.36.152,2,2020-10-06,1 -27.68.28.185,2,2020-10-07,1 -171.252.200.217,2,2020-10-07,1 -117.0.71.139,2,2020-10-07,1 -115.77.200.70,2,2020-10-07,1 -122.51.194.254,2,2020-10-06,1 -27.68.170.73,2,2020-10-07,1 -171.242.80.64,2,2020-10-07,1 -192.241.238.54,2,2020-10-07,1 -171.232.114.74,2,2020-10-07,1 -61.61.238.9,2,2020-10-06,1 -103.89.91.156,2,2020-10-07,1 -209.17.97.34,2,2020-10-06,1 -171.232.115.38,2,2020-10-07,1 -171.252.202.223,2,2020-10-07,1 -115.73.193.147,2,2020-10-07,1 -27.69.188.18,2,2020-10-07,1 -171.229.64.38,2,2020-10-07,1 -114.32.240.12,2,2020-10-06,1 -115.76.97.247,2,2020-10-07,1 -27.77.234.151,2,2020-10-07,1 -200.37.108.155,2,2020-10-07,1 -27.68.170.168,2,2020-10-07,1 -186.66.79.221,2,2020-10-06,1 -171.232.113.218,2,2020-10-07,1 -115.76.29.118,2,2020-10-07,1 -49.233.204.30,2,2020-10-06,1 -117.0.166.102,2,2020-10-07,1 -171.242.181.160,2,2020-10-07,1 -203.184.132.189,2,2020-10-06,1 -121.132.232.147,2,2020-10-07,1 -171.247.243.251,2,2020-10-06,1 -27.77.231.44,2,2020-10-07,1 -116.107.150.147,2,2020-10-07,1 -171.247.22.241,2,2020-10-07,1 -27.77.197.172,2,2020-10-07,1 -27.77.239.237,2,2020-10-07,1 -116.107.225.255,2,2020-10-07,1 -159.65.146.5,2,2020-10-07,1 -27.77.225.76,2,2020-10-07,1 -97.113.207.130,2,2020-10-06,1 -171.252.202.132,2,2020-10-07,1 -115.143.208.32,2,2020-10-06,1 -162.158.179.229,2,2020-10-06,1 -171.228.118.37,2,2020-10-07,1 -35.171.28.189,2,2020-10-06,1 -27.76.7.150,2,2020-10-07,1 -115.77.207.125,2,2020-10-07,1 -172.69.135.233,2,2020-10-06,1 -220.133.218.211,2,2020-10-06,1 -115.76.108.141,2,2020-10-07,1 -114.35.250.205,2,2020-10-06,1 -192.99.31.119,2,2020-10-06,1 -103.242.236.222,2,2020-10-07,1 -196.52.43.90,2,2020-10-06,1 -172.69.135.85,2,2020-10-06,1 -171.229.124.241,2,2020-10-07,1 -83.209.255.221,2,2020-10-07,1 -192.241.220.30,2,2020-10-06,1 -45.202.9.151,2,2020-10-06,1 -171.246.46.16,2,2020-10-07,1 -197.156.93.189,2,2020-10-06,1 -171.232.117.86,2,2020-10-07,1 -118.170.113.149,2,2020-10-06,1 -171.246.62.68,2,2020-10-07,1 -151.115.40.122,2,2020-10-06,1 -106.13.168.107,2,2020-10-06,1 -2.51.62.137,2,2020-10-06,1 -112.30.38.19,2,2020-10-06,1 -122.114.170.66,2,2020-10-06,1 -195.239.107.62,2,2020-10-07,1 -27.77.198.178,2,2020-10-07,1 -113.255.212.70,2,2020-10-07,1 -171.242.180.91,2,2020-10-07,1 -27.77.193.3,2,2020-10-07,1 -142.112.29.171,2,2020-10-06,1 -171.224.187.100,2,2020-10-07,1 -117.1.234.71,2,2020-10-07,1 -181.188.215.163,2,2020-10-07,1 -171.229.122.39,2,2020-10-07,1 -103.197.134.203,2,2020-10-06,1 -156.96.47.16,2,2020-10-06,1 -162.142.125.28,2,2020-10-07,1 -171.246.46.68,2,2020-10-07,1 -193.27.228.141,2,2020-10-06,1 -203.163.232.99,2,2020-10-06,1 -118.24.245.56,2,2020-10-07,1 -1.34.127.176,2,2020-10-06,1 -190.154.87.186,2,2020-10-06,1 -59.127.66.49,2,2020-10-06,1 -103.83.247.126,2,2020-10-06,1 -27.68.171.209,2,2020-10-07,1 -171.242.190.98,2,2020-10-07,1 -207.96.13.153,2,2020-10-07,1 -51.158.167.141,2,2020-10-06,1 -171.242.87.42,2,2020-10-07,1 -171.243.111.112,2,2020-10-07,1 -116.100.6.33,2,2020-10-07,1 -117.1.234.142,2,2020-10-07,1 -162.158.166.76,2,2020-10-06,1 -114.33.193.137,2,2020-10-06,1 -27.66.117.6,2,2020-10-07,1 -117.0.239.158,2,2020-10-07,1 -171.227.167.42,2,2020-10-07,1 -162.158.167.145,2,2020-10-06,1 -171.242.31.83,2,2020-10-07,1 -116.105.36.195,2,2020-10-07,1 -171.225.238.201,2,2020-10-07,1 -42.115.62.168,2,2020-10-07,1 -115.96.196.113,2,2020-10-06,1 -45.148.122.102,2,2020-10-06,1 -116.100.7.109,2,2020-10-07,1 -116.104.237.155,2,2020-10-07,1 -116.101.24.73,2,2020-10-07,1 -162.158.167.65,2,2020-10-06,1 -190.155.8.133,2,2020-10-06,1 -103.208.204.206,2,2020-10-06,1 -171.252.202.98,2,2020-10-07,1 -116.100.13.202,2,2020-10-07,1 -220.134.223.68,2,2020-10-06,1 -201.49.86.181,2,2020-10-06,1 -117.212.242.230,2,2020-10-06,1 -23.129.64.213,2,2020-10-06,1 -27.68.21.78,2,2020-10-07,1 -83.253.113.22,2,2020-10-06,1 -178.129.212.73,2,2020-10-07,1 -59.127.230.238,2,2020-10-06,1 -24.207.205.152,2,2020-10-06,1 -115.96.117.63,2,2020-10-06,1 -186.155.14.16,2,2020-10-07,1 -150.95.89.178,2,2020-10-06,1 -162.158.165.45,2,2020-10-06,1 -171.229.103.177,2,2020-10-07,1 -171.242.175.205,2,2020-10-07,1 -162.158.165.87,2,2020-10-06,1 -171.229.201.238,2,2020-10-07,1 -171.243.114.246,2,2020-10-07,1 -103.124.173.222,2,2020-10-06,1 -221.222.251.25,2,2020-10-07,1 -115.76.106.154,2,2020-10-07,1 -171.242.174.220,2,2020-10-07,1 -187.94.254.24,2,2020-10-06,1 -103.9.159.144,2,2020-10-06,1 -218.161.105.97,2,2020-10-06,1 -116.100.8.161,2,2020-10-07,1 -111.229.109.26,2,2020-10-07,1 -59.52.78.185,2,2020-10-06,1 -193.187.101.114,2,2020-10-06,1 -45.59.15.18,2,2020-10-06,1 -27.65.29.243,2,2020-10-07,1 -51.91.108.57,2,2020-10-07,1 -27.65.31.79,2,2020-10-07,1 -104.131.91.214,2,2020-10-07,1 -171.245.235.188,2,2020-10-06,1 -205.205.150.59,2,2020-10-06,1 -41.216.186.89,2,2020-10-07,1 -115.76.106.108,2,2020-10-07,1 -171.243.117.75,2,2020-10-07,1 -115.96.127.145,2,2020-10-06,1 -116.100.217.104,2,2020-10-07,1 -117.0.97.199,2,2020-10-07,1 -60.227.214.209,2,2020-10-07,1 -27.69.165.255,2,2020-10-07,1 -171.248.62.212,2,2020-10-07,1 -27.68.28.252,2,2020-10-07,1 -186.71.226.158,2,2020-10-06,1 -183.88.18.48,2,2020-10-07,1 -115.96.136.74,2,2020-10-06,1 -171.248.62.19,2,2020-10-07,1 -171.236.125.150,2,2020-10-07,1 -114.35.26.217,2,2020-10-06,1 -187.189.178.29,2,2020-10-06,1 -114.32.212.38,2,2020-10-06,1 -197.49.18.105,2,2020-10-06,1 -116.101.15.57,2,2020-10-07,1 -115.74.6.180,2,2020-10-07,1 -220.186.129.15,2,2020-10-06,1 -218.161.107.124,2,2020-10-06,1 -13.79.224.60,2,2020-10-07,1 -171.252.93.29,2,2020-10-07,1 -116.107.148.92,2,2020-10-07,1 -94.159.31.10,2,2020-10-07,1 -27.68.171.62,2,2020-10-07,1 -59.127.24.39,2,2020-10-06,1 -212.231.80.88,2,2020-10-06,1 -171.248.59.103,2,2020-10-07,1 -118.89.231.121,2,2020-10-07,1 -171.245.119.238,2,2020-10-07,1 -176.212.108.41,2,2020-10-06,1 -179.26.65.17,2,2020-10-06,1 -27.76.13.71,2,2020-10-07,1 -103.207.7.240,2,2020-10-06,1 -171.246.47.35,2,2020-10-07,1 -171.248.58.134,2,2020-10-07,1 -3.112.218.93,2,2020-10-07,1 -27.77.207.65,2,2020-10-07,1 -171.246.60.81,2,2020-10-07,1 -112.26.44.112,2,2020-10-06,1 -196.52.43.85,2,2020-10-06,1 -27.73.4.37,2,2020-10-07,1 -103.225.51.128,2,2020-10-07,1 -27.77.197.242,2,2020-10-07,1 -88.218.16.202,2,2020-10-07,1 -27.69.165.173,2,2020-10-07,1 -171.242.175.48,2,2020-10-07,1 -171.248.56.45,2,2020-10-07,1 -27.77.224.214,2,2020-10-07,1 -116.104.235.125,2,2020-10-07,1 -27.77.237.173,2,2020-10-07,1 -171.245.29.201,2,2020-10-07,1 -171.242.31.194,2,2020-10-07,1 -171.227.173.152,2,2020-10-07,1 -173.23.230.174,2,2020-10-06,1 -116.100.43.87,2,2020-10-07,1 -171.232.119.83,2,2020-10-07,1 -115.77.199.173,2,2020-10-07,1 -140.143.0.121,2,2020-10-06,1 -190.154.88.49,2,2020-10-06,1 -171.246.58.140,2,2020-10-07,1 -111.230.67.250,2,2020-10-07,1 -186.155.17.226,2,2020-10-06,1 -58.115.42.105,2,2020-10-06,1 -111.206.250.230,2,2020-10-06,1 -222.138.212.232,2,2020-10-07,1 -171.234.133.252,2,2020-10-07,1 -27.68.175.192,2,2020-10-07,1 -111.246.112.131,2,2020-10-06,1 -115.76.229.221,2,2020-10-07,1 -99.230.167.69,2,2020-10-06,1 -171.248.45.10,2,2020-10-06,1 -114.32.150.79,2,2020-10-06,1 -51.15.250.123,2,2020-10-06,1 -116.100.6.152,2,2020-10-07,1 -113.187.167.182,2,2020-10-06,1 -171.246.38.60,2,2020-10-07,1 -121.235.49.112,2,2020-10-06,1 -171.255.236.193,2,2020-10-07,1 -116.97.1.110,2,2020-10-07,1 -31.208.110.174,2,2020-10-06,1 -167.71.124.113,2,2020-10-07,1 -172.69.135.243,2,2020-10-06,1 -171.244.80.50,2,2020-10-07,1 -139.5.221.87,2,2020-10-06,1 -115.76.103.21,2,2020-10-07,1 -116.72.131.129,2,2020-10-07,1 -115.96.106.213,2,2020-10-06,1 -171.242.147.198,2,2020-10-07,1 -171.246.35.223,2,2020-10-07,1 -115.77.198.66,2,2020-10-07,1 -89.248.168.238,2,2020-10-06,1 -171.232.112.7,2,2020-10-07,1 -103.117.153.6,2,2020-10-06,1 -27.77.233.180,2,2020-10-07,1 -49.206.244.118,2,2020-10-06,1 -129.204.210.108,2,2020-10-06,1 -114.32.231.230,2,2020-10-06,1 -184.105.139.118,2,2020-10-07,1 -171.224.238.53,2,2020-10-07,1 -111.57.0.90,2,2020-10-06,1 -118.101.103.108,2,2020-10-06,1 -116.100.3.209,2,2020-10-07,1 -91.164.40.78,2,2020-10-07,1 -46.119.169.104,2,2020-10-06,1 -117.71.57.195,2,2020-10-07,1 -171.249.59.106,2,2020-10-07,1 -171.242.190.69,2,2020-10-07,1 -117.220.14.110,2,2020-10-06,1 -116.104.232.83,2,2020-10-07,1 -119.41.19.207,2,2020-10-07,1 -198.12.121.164,2,2020-10-07,1 -203.25.215.208,2,2020-10-06,1 -116.106.80.160,2,2020-10-07,1 -124.253.195.184,2,2020-10-06,1 -140.246.136.72,2,2020-10-06,1 -116.104.138.15,2,2020-10-07,1 -27.69.184.217,2,2020-10-07,1 -27.68.29.46,2,2020-10-07,1 -112.44.242.10,2,2020-10-06,1 -51.158.68.191,2,2020-10-06,1 -171.243.119.213,2,2020-10-06,1 -116.101.6.244,2,2020-10-07,1 -115.96.105.156,2,2020-10-06,1 -209.17.97.74,2,2020-10-06,1 -116.100.41.235,2,2020-10-07,1 -171.248.62.63,2,2020-10-07,1 -171.225.228.17,2,2020-10-07,1 -171.245.51.74,2,2020-10-07,1 -206.132.225.98,2,2020-10-06,1 -171.242.245.238,2,2020-10-07,1 -103.243.112.173,2,2020-10-06,1 -27.73.227.52,2,2020-10-07,1 -27.77.226.235,2,2020-10-07,1 -2.57.122.195,2,2020-10-07,1 -171.246.51.168,2,2020-10-07,1 -109.86.58.9,2,2020-10-07,1 -103.82.75.117,2,2020-10-07,1 -51.158.105.211,2,2020-10-06,1 -209.141.41.103,2,2020-10-06,1 -36.112.172.125,2,2020-10-07,1 -220.132.126.132,2,2020-10-06,1 -47.32.160.16,2,2020-10-06,1 -116.104.235.77,2,2020-10-07,1 -27.68.19.64,2,2020-10-07,1 -115.76.110.95,2,2020-10-07,1 -116.101.31.182,2,2020-10-07,1 -171.246.61.62,2,2020-10-07,1 -27.77.236.86,2,2020-10-07,1 -171.237.86.82,2,2020-10-07,1 -171.253.72.132,2,2020-10-07,1 -116.100.40.61,2,2020-10-07,1 -1.174.77.253,2,2020-10-06,1 -103.54.217.73,2,2020-10-06,1 -27.77.194.241,2,2020-10-07,1 -122.117.136.229,2,2020-10-06,1 -116.101.219.99,2,2020-10-07,1 -171.243.101.174,2,2020-10-07,1 -217.182.230.2,2,2020-10-06,1 -20.190.218.248,2,2020-10-06,1 -171.246.57.182,2,2020-10-07,1 -27.76.2.123,2,2020-10-07,1 -171.229.121.175,2,2020-10-07,1 -171.233.43.52,2,2020-10-07,1 -180.76.182.19,2,2020-10-06,1 -171.224.190.42,2,2020-10-07,1 -116.101.14.141,2,2020-10-07,1 -201.252.98.149,2,2020-10-06,1 -171.224.116.90,2,2020-10-07,1 -116.100.3.19,2,2020-10-07,1 -116.100.5.139,2,2020-10-07,1 -117.1.155.38,2,2020-10-07,1 -171.243.112.197,2,2020-10-06,1 -94.102.63.74,2,2020-10-06,1 -46.118.118.196,2,2020-10-06,1 -89.40.88.40,2,2020-10-07,1 -45.41.132.156,2,2020-10-07,1 -162.158.166.224,2,2020-10-06,1 -77.75.129.35,2,2020-10-07,1 -27.77.206.128,2,2020-10-07,1 -171.233.43.174,2,2020-10-07,1 -171.225.232.247,2,2020-10-07,1 -110.232.76.218,2,2020-10-07,1 -202.83.42.131,2,2020-10-06,1 -27.68.168.235,2,2020-10-07,1 -185.234.218.39,2,2020-10-06,1 -27.77.194.206,2,2020-10-07,1 -171.229.144.117,2,2020-10-07,1 -218.161.87.216,2,2020-10-07,1 -220.133.212.230,2,2020-10-06,1 -171.246.36.123,2,2020-10-07,1 -203.212.247.156,2,2020-10-07,1 -171.245.237.71,2,2020-10-06,1 -94.180.24.16,2,2020-10-06,1 -41.42.38.200,2,2020-10-06,1 -203.212.240.20,2,2020-10-06,1 -111.185.52.138,2,2020-10-07,1 -116.101.74.5,2,2020-10-07,1 -2.42.57.234,2,2020-10-06,1 -171.246.41.125,2,2020-10-07,1 -116.100.219.32,2,2020-10-07,1 -171.253.68.124,2,2020-10-07,1 -171.228.140.142,2,2020-10-07,1 -171.246.52.234,2,2020-10-07,1 -1.34.31.19,2,2020-10-06,1 -171.229.133.1,2,2020-10-07,1 -178.175.241.150,2,2020-10-07,1 -14.241.51.39,2,2020-10-06,1 -27.68.175.38,2,2020-10-07,1 -171.248.60.115,2,2020-10-07,1 -171.243.101.130,2,2020-10-07,1 -194.87.138.135,2,2020-10-06,1 -195.18.23.85,2,2020-10-06,1 -45.148.122.15,2,2020-10-06,1 -117.1.42.216,2,2020-10-07,1 -27.68.172.37,2,2020-10-07,1 -2.176.85.202,2,2020-10-07,1 -171.242.74.176,2,2020-10-07,1 -171.245.236.214,2,2020-10-07,1 -156.217.9.122,2,2020-10-06,1 -27.69.185.119,2,2020-10-07,1 -220.135.244.12,2,2020-10-06,1 -171.246.39.156,2,2020-10-07,1 -27.66.73.131,2,2020-10-07,1 -60.243.116.208,2,2020-10-06,1 -171.242.106.95,2,2020-10-07,1 -187.60.145.49,2,2020-10-07,1 -27.68.174.152,2,2020-10-07,1 -27.68.19.24,2,2020-10-07,1 -220.135.3.161,2,2020-10-06,1 -115.76.29.51,2,2020-10-07,1 -115.96.129.171,2,2020-10-06,1 -192.241.215.103,2,2020-10-07,1 -116.104.114.68,2,2020-10-07,1 -171.245.120.57,2,2020-10-07,1 -116.97.9.105,2,2020-10-07,1 -186.71.0.122,2,2020-10-06,1 -171.228.144.225,2,2020-10-07,1 -180.68.88.11,2,2020-10-06,1 -171.225.230.57,2,2020-10-07,1 -171.229.132.78,2,2020-10-07,1 -202.166.98.243,2,2020-10-07,1 -115.76.97.25,2,2020-10-07,1 -27.69.176.96,2,2020-10-07,1 -27.77.235.15,2,2020-10-07,1 -79.138.11.206,2,2020-10-07,1 -115.76.111.229,2,2020-10-07,1 -171.232.24.109,2,2020-10-07,1 -51.140.100.22,2,2020-10-07,1 -171.242.74.236,2,2020-10-07,1 -115.76.101.35,2,2020-10-07,1 -37.32.121.48,2,2020-10-06,1 -185.180.231.199,2,2020-10-06,1 -192.241.230.159,2,2020-10-07,1 -125.234.233.65,2,2020-10-07,1 -116.233.226.80,2,2020-10-06,1 -51.158.121.134,2,2020-10-06,1 -171.252.205.112,2,2020-10-07,1 -146.196.120.5,2,2020-10-06,1 -74.120.14.16,2,2020-10-06,1 -171.246.61.181,2,2020-10-07,1 -117.7.103.62,2,2020-10-07,1 -171.246.55.31,2,2020-10-07,1 -43.239.132.144,2,2020-10-06,1 -115.76.96.223,2,2020-10-07,1 -115.77.204.148,2,2020-10-07,1 -117.0.234.167,2,2020-10-07,1 -27.73.229.135,2,2020-10-07,1 -115.96.132.161,2,2020-10-06,1 -220.132.190.241,2,2020-10-06,1 -218.253.242.63,2,2020-10-06,1 -162.158.178.144,2,2020-10-06,1 -24.49.46.253,2,2020-10-07,1 -27.77.238.231,2,2020-10-07,1 -59.127.55.212,2,2020-10-06,1 -106.12.98.182,2,2020-10-06,1 -171.242.25.7,2,2020-10-07,1 -27.77.205.83,2,2020-10-07,1 -36.237.131.21,2,2020-10-06,1 -200.89.159.246,2,2020-10-06,1 -121.229.48.89,2,2020-10-06,1 -171.251.196.193,2,2020-10-07,1 -171.232.118.156,2,2020-10-07,1 -27.77.231.45,2,2020-10-07,1 -171.247.27.147,2,2020-10-07,1 -74.82.47.50,2,2020-10-07,1 -114.32.27.182,2,2020-10-07,1 -171.229.151.48,2,2020-10-07,1 -171.227.175.69,2,2020-10-07,1 -209.141.43.35,2,2020-10-07,1 -171.245.229.25,2,2020-10-06,1 -186.71.154.218,2,2020-10-06,1 -94.180.25.113,2,2020-10-06,1 -203.212.243.59,2,2020-10-07,1 -186.215.247.110,2,2020-10-07,1 -116.100.12.15,2,2020-10-07,1 -112.155.243.7,2,2020-10-06,1 -171.237.107.122,2,2020-10-07,1 -103.252.170.15,2,2020-10-06,1 -171.246.54.149,2,2020-10-07,1 -116.101.210.29,2,2020-10-07,1 -171.253.64.142,2,2020-10-07,1 -116.101.40.100,2,2020-10-07,1 -1.192.94.61,2,2020-10-07,1 -27.69.165.164,2,2020-10-06,1 -203.163.236.135,2,2020-10-06,1 -185.232.65.36,2,2020-10-07,1 -191.5.99.171,2,2020-10-06,1 -116.96.48.35,2,2020-10-07,1 -171.229.150.163,2,2020-10-07,1 -192.144.230.221,2,2020-10-07,1 -196.245.152.66,2,2020-10-06,1 -197.55.168.34,2,2020-10-06,1 -167.248.133.26,2,2020-10-06,1 -27.77.203.57,2,2020-10-07,1 -167.248.133.25,2,2020-10-07,1 -117.0.166.170,2,2020-10-07,1 -122.3.0.5,2,2020-10-07,1 -213.176.36.15,2,2020-10-06,1 -171.252.202.242,2,2020-10-07,1 -95.216.14.37,2,2020-10-06,1 -205.185.117.149,2,2020-10-06,1 -220.134.9.13,2,2020-10-07,1 -116.100.43.81,2,2020-10-07,1 -171.246.59.19,2,2020-10-07,1 -36.250.11.6,2,2020-10-06,1 -27.69.185.243,2,2020-10-06,1 -171.252.206.240,2,2020-10-07,1 -181.175.132.191,2,2020-10-06,1 -171.246.32.29,2,2020-10-07,1 -39.63.17.116,2,2020-10-06,1 -111.231.228.239,2,2020-10-06,1 -171.245.30.177,2,2020-10-07,1 -18.236.234.197,2,2020-10-07,1 -27.68.29.178,2,2020-10-07,1 -107.173.219.3,2,2020-10-07,1 -103.103.213.235,2,2020-10-06,1 -171.242.37.183,2,2020-10-07,1 -155.4.32.33,2,2020-10-07,1 -197.62.103.23,2,2020-10-06,1 -116.100.15.253,2,2020-10-07,1 -103.215.166.77,2,2020-10-06,1 -171.234.184.204,2,2020-10-07,1 -171.242.163.2,2,2020-10-07,1 -195.34.91.127,2,2020-10-06,1 -116.100.44.233,2,2020-10-07,1 -171.243.123.225,2,2020-10-07,1 -171.242.154.55,2,2020-10-07,1 -27.65.28.190,2,2020-10-07,1 -192.241.229.204,2,2020-10-06,1 -171.232.117.57,2,2020-10-07,1 -49.232.29.120,2,2020-10-07,1 -106.12.162.234,2,2020-10-06,1 -114.32.229.218,2,2020-10-07,1 -175.165.231.83,2,2020-10-07,1 -27.68.25.165,2,2020-10-07,1 -171.253.77.109,2,2020-10-07,1 -103.44.240.68,2,2020-10-06,1 -68.66.248.4,2,2020-10-07,1 -162.158.178.12,2,2020-10-06,1 -27.76.155.87,2,2020-10-07,1 -103.117.153.33,2,2020-10-06,1 -117.5.168.251,2,2020-10-07,1 -116.107.172.24,2,2020-10-07,1 -192.241.235.115,2,2020-10-06,1 -219.84.213.126,2,2020-10-06,1 -171.242.193.120,2,2020-10-07,1 -117.0.235.136,2,2020-10-07,1 -116.105.33.82,2,2020-10-07,1 -192.241.221.114,2,2020-10-07,1 -117.5.247.106,2,2020-10-07,1 -115.76.100.138,2,2020-10-07,1 -171.242.200.4,2,2020-10-07,1 -124.253.162.52,2,2020-10-06,1 -1.34.65.80,2,2020-10-07,1 -45.83.67.228,2,2020-10-06,1 -103.69.243.125,2,2020-10-06,1 -171.228.202.161,2,2020-10-07,1 -218.32.104.88,2,2020-10-06,1 -172.68.254.29,2,2020-10-06,1 -186.155.18.111,2,2020-10-06,1 -115.76.99.131,2,2020-10-07,1 -59.89.97.28,2,2020-10-06,1 -171.237.247.74,2,2020-10-07,1 -184.105.139.98,2,2020-10-07,1 -80.82.68.222,2,2020-10-06,1 -122.117.115.4,2,2020-10-06,1 -122.100.104.235,2,2020-10-06,1 -115.77.200.0,2,2020-10-07,1 -156.214.124.90,2,2020-10-06,1 -77.242.22.60,2,2020-10-07,1 -91.228.87.57,2,2020-10-06,1 -220.135.133.217,2,2020-10-07,1 -45.143.221.105,2,2020-10-07,1 -27.210.145.43,2,2020-10-06,1 -117.1.121.206,2,2020-10-07,1 -41.236.233.59,2,2020-10-06,1 -190.155.254.121,2,2020-10-06,1 -116.100.42.70,2,2020-10-07,1 -122.117.11.140,2,2020-10-06,1 -102.165.30.57,2,2020-10-06,1 -175.197.159.122,2,2020-10-07,1 -171.246.48.237,2,2020-10-07,1 -116.100.222.192,2,2020-10-07,1 -171.242.217.201,2,2020-10-07,1 -27.72.50.160,2,2020-10-07,1 -72.208.228.49,2,2020-10-06,1 -115.76.100.252,2,2020-10-07,1 -115.77.202.58,2,2020-10-07,1 -171.225.234.166,2,2020-10-07,1 -27.77.235.75,2,2020-10-07,1 -50.192.250.10,2,2020-10-06,1 -172.68.254.121,2,2020-10-06,1 -58.221.62.206,2,2020-10-06,1 -177.76.190.51,2,2020-10-07,1 -192.241.233.93,2,2020-10-07,1 -115.96.132.211,2,2020-10-06,1 -190.97.188.188,2,2020-10-07,1 -220.134.244.147,2,2020-10-06,1 -122.116.115.123,2,2020-10-06,1 -162.158.166.248,2,2020-10-06,1 -171.252.95.136,2,2020-10-07,1 -27.76.11.131,2,2020-10-07,1 -94.102.50.138,2,2020-10-07,1 -27.77.239.224,2,2020-10-07,1 -27.65.29.183,2,2020-10-07,1 -171.224.144.60,2,2020-10-07,1 -116.96.50.74,2,2020-10-07,1 -114.35.210.80,2,2020-10-06,1 -172.107.94.66,2,2020-10-06,1 -171.232.113.171,2,2020-10-07,1 -220.133.88.143,2,2020-10-06,1 -47.33.126.78,2,2020-10-07,1 -157.245.168.179,2,2020-10-07,1 -115.77.204.206,2,2020-10-07,1 -171.246.50.84,2,2020-10-07,1 -220.135.17.182,2,2020-10-06,1 -51.158.169.150,2,2020-10-06,1 -46.182.106.190,2,2020-10-06,1 -116.105.40.108,2,2020-10-07,1 -203.212.241.15,2,2020-10-07,1 -52.53.185.33,2,2020-10-07,1 -191.181.232.155,2,2020-10-07,1 -45.148.122.190,2,2020-10-06,1 -14.143.3.30,2,2020-10-07,1 -27.72.49.21,2,2020-10-07,1 -210.209.144.101,2,2020-10-06,1 -171.252.200.191,2,2020-10-07,1 -72.179.26.79,2,2020-10-07,1 -103.54.217.135,2,2020-10-06,1 -114.35.170.147,2,2020-10-06,1 -200.27.175.236,2,2020-10-06,1 -171.246.54.147,2,2020-10-07,1 -116.100.44.219,2,2020-10-07,1 -171.242.189.216,2,2020-10-07,1 -171.243.123.86,2,2020-10-06,1 -171.228.131.127,2,2020-10-07,1 -192.241.234.4,2,2020-10-06,1 -171.246.45.99,2,2020-10-07,1 -124.239.153.215,2,2020-10-06,1 -106.12.111.201,2,2020-10-06,1 -162.158.166.6,2,2020-10-06,1 -115.74.128.247,2,2020-10-07,1 -203.212.243.36,2,2020-10-06,1 -115.73.196.52,2,2020-10-07,1 -116.100.42.56,2,2020-10-07,1 -122.51.254.201,2,2020-10-06,1 -50.220.86.228,2,2020-10-06,1 -35.220.194.235,2,2020-10-06,1 -162.243.128.141,2,2020-10-06,1 -201.28.61.250,2,2020-10-06,1 -182.58.240.240,2,2020-10-06,1 -162.142.125.27,2,2020-10-07,1 -220.135.95.98,2,2020-10-06,1 -27.77.226.22,2,2020-10-07,1 -171.242.255.199,2,2020-10-07,1 -1.54.25.47,2,2020-10-06,1 -117.198.73.216,2,2020-10-06,1 -151.115.38.194,2,2020-10-06,1 -213.182.195.106,2,2020-10-06,1 -1.52.47.123,2,2020-10-06,1 -51.15.75.70,2,2020-10-06,1 -116.101.40.190,2,2020-10-07,1 -196.52.43.58,2,2020-10-07,1 -114.35.74.193,2,2020-10-06,1 -171.252.207.82,2,2020-10-07,1 -27.77.229.251,2,2020-10-07,1 -196.52.43.60,2,2020-10-06,1 -116.100.221.83,2,2020-10-07,1 -220.132.60.152,2,2020-10-06,1 -103.99.184.43,2,2020-10-07,1 -178.63.239.229,2,2020-10-07,1 -171.246.38.84,2,2020-10-07,1 -27.68.25.61,2,2020-10-07,1 -117.1.239.204,2,2020-10-07,1 -41.45.182.25,2,2020-10-06,1 -116.97.6.230,2,2020-10-07,1 -162.158.165.233,2,2020-10-06,1 -116.104.185.188,2,2020-10-07,1 -116.100.4.138,2,2020-10-07,1 -177.103.164.56,2,2020-10-06,1 -171.237.83.154,2,2020-10-07,1 -116.107.145.27,2,2020-10-07,1 -103.243.46.95,2,2020-10-06,1 -95.103.19.113,2,2020-10-06,1 -128.201.67.143,2,2020-10-06,1 -92.27.35.210,2,2020-10-06,1 -161.35.238.241,2,2020-10-06,1 -59.126.201.178,2,2020-10-06,1 -119.96.216.52,2,2020-10-06,1 -115.74.129.235,2,2020-10-07,1 -178.17.171.102,2,2020-10-07,1 -27.69.165.114,2,2020-10-06,1 -115.77.199.202,2,2020-10-07,1 -117.1.238.212,2,2020-10-07,1 -171.253.69.230,2,2020-10-07,1 -223.130.28.129,2,2020-10-06,1 -171.242.230.205,2,2020-10-07,1 -171.229.148.5,2,2020-10-07,1 -54.38.180.93,2,2020-10-07,1 -115.96.197.213,2,2020-10-06,1 -27.77.238.71,2,2020-10-07,1 -117.5.164.221,2,2020-10-07,1 -194.61.54.115,2,2020-10-06,1 -27.69.170.59,2,2020-10-07,1 -27.77.232.75,2,2020-10-07,1 -171.242.190.209,2,2020-10-07,1 -171.229.94.192,2,2020-10-07,1 -27.68.175.71,2,2020-10-07,1 -172.81.226.22,2,2020-10-06,1 -117.2.217.160,2,2020-10-07,1 -49.159.8.52,2,2020-10-06,1 -116.101.212.131,2,2020-10-07,1 -210.117.11.20,2,2020-10-06,1 -113.227.14.51,2,2020-10-06,1 -61.0.5.207,2,2020-10-06,1 -171.248.61.142,2,2020-10-07,1 -212.64.3.40,2,2020-10-06,1 -117.0.235.63,2,2020-10-07,1 -120.131.14.125,2,2020-10-07,1 -196.52.43.120,2,2020-10-07,1 -171.242.73.197,2,2020-10-07,1 -139.199.78.228,2,2020-10-06,1 -121.169.25.46,2,2020-10-06,1 -162.158.167.73,2,2020-10-06,1 -115.76.110.243,2,2020-10-07,1 -118.100.209.71,2,2020-10-06,1 -172.68.255.131,2,2020-10-06,1 -45.147.120.6,2,2020-10-06,1 -203.212.247.191,2,2020-10-06,1 -116.107.171.45,2,2020-10-07,1 -27.77.231.246,2,2020-10-07,1 -171.246.56.81,2,2020-10-07,1 -220.135.50.93,2,2020-10-06,1 -78.188.152.183,2,2020-10-06,1 -171.246.37.115,2,2020-10-07,1 -27.65.29.127,2,2020-10-07,1 -171.246.57.104,2,2020-10-07,1 -190.10.165.173,2,2020-10-06,1 -171.232.119.116,2,2020-10-07,1 -171.243.112.199,2,2020-10-07,1 -184.154.189.90,2,2020-10-07,1 -118.24.83.41,2,2020-10-06,1 -27.66.97.250,2,2020-10-07,1 -171.248.62.239,2,2020-10-07,1 -220.134.39.74,2,2020-10-06,1 -117.5.70.76,2,2020-10-07,1 -162.158.166.234,2,2020-10-06,1 -171.237.129.62,2,2020-10-07,1 -171.227.164.182,2,2020-10-07,1 -192.144.185.175,2,2020-10-07,1 -37.9.134.97,2,2020-10-06,1 -96.27.249.5,2,2020-10-06,1 -180.128.242.171,2,2020-10-06,1 -115.76.105.40,2,2020-10-07,1 -92.55.66.94,2,2020-10-06,1 -45.248.43.106,2,2020-10-06,1 -116.107.165.49,2,2020-10-07,1 -31.179.233.207,2,2020-10-06,1 -171.242.182.66,2,2020-10-07,1 -125.64.94.136,2,2020-10-06,1 -115.76.31.195,2,2020-10-07,1 -162.158.178.238,2,2020-10-06,1 -27.68.168.89,2,2020-10-07,1 -92.255.191.71,2,2020-10-06,1 -92.112.59.134,2,2020-10-06,1 -114.42.176.94,2,2020-10-06,1 -171.246.57.247,2,2020-10-07,1 -171.232.115.147,2,2020-10-07,1 -192.241.235.104,2,2020-10-07,1 -172.68.254.105,2,2020-10-06,1 -31.208.166.61,1,2020-10-06,1 -192.241.220.248,1,2020-10-07,1 -5.202.76.31,1,2020-10-06,1 -115.76.96.193,1,2020-10-07,1 -5.196.89.191,1,2020-10-06,1 -27.73.57.95,1,2020-10-07,1 -171.242.127.127,1,2020-10-07,1 -27.77.198.70,1,2020-10-07,1 -192.241.234.241,1,2020-10-07,1 -151.115.57.55,1,2020-10-06,1 -27.69.172.22,1,2020-10-07,1 -125.234.234.252,1,2020-10-07,1 -182.123.211.127,1,2020-10-07,1 -182.61.175.219,1,2020-10-07,1 -171.232.112.198,1,2020-10-07,1 -171.240.142.109,1,2020-10-06,1 -193.27.228.7,1,2020-10-07,1 -115.77.161.141,1,2020-10-07,1 -2.184.213.106,1,2020-10-06,1 -209.17.96.250,1,2020-10-07,1 -125.164.238.206,1,2020-10-07,1 -117.2.193.67,1,2020-10-07,1 -170.239.150.182,1,2020-10-07,1 -27.68.29.174,1,2020-10-07,1 -180.76.97.9,1,2020-10-06,1 -117.0.234.182,1,2020-10-07,1 -220.135.193.130,1,2020-10-06,1 -192.241.231.234,1,2020-10-06,1 -116.101.77.72,1,2020-10-07,1 -117.194.246.223,1,2020-10-06,1 -190.24.56.192,1,2020-10-07,1 -171.246.52.143,1,2020-10-07,1 -171.232.113.57,1,2020-10-07,1 -123.30.240.111,1,2020-10-07,1 -117.5.169.2,1,2020-10-07,1 -171.245.225.93,1,2020-10-07,1 -114.35.108.126,1,2020-10-06,1 -88.218.17.152,1,2020-10-06,1 -192.241.217.189,1,2020-10-06,1 -171.232.119.179,1,2020-10-07,1 -164.90.158.186,1,2020-10-07,1 -116.100.14.59,1,2020-10-07,1 -185.220.101.133,1,2020-10-07,1 -196.92.5.219,1,2020-10-07,1 -116.101.210.35,1,2020-10-07,1 -171.246.54.155,1,2020-10-07,1 -171.246.51.93,1,2020-10-07,1 -116.100.221.92,1,2020-10-07,1 -116.105.42.15,1,2020-10-07,1 -221.229.162.170,1,2020-10-07,1 -190.154.215.125,1,2020-10-06,1 -115.96.122.175,1,2020-10-07,1 -116.101.6.172,1,2020-10-07,1 -171.242.194.109,1,2020-10-07,1 -115.76.106.43,1,2020-10-07,1 -115.76.27.172,1,2020-10-07,1 -27.73.231.155,1,2020-10-07,1 -116.104.238.21,1,2020-10-07,1 -59.126.181.164,1,2020-10-06,1 -171.227.172.165,1,2020-10-06,1 -162.158.178.30,1,2020-10-06,1 -111.119.171.30,1,2020-10-06,1 -111.92.104.169,1,2020-10-07,1 -117.1.43.73,1,2020-10-07,1 -192.241.239.146,1,2020-10-07,1 -116.100.42.207,1,2020-10-07,1 -61.216.172.18,1,2020-10-07,1 -84.245.57.108,1,2020-10-07,1 -117.2.202.1,1,2020-10-07,1 -117.0.107.49,1,2020-10-07,1 -115.96.142.200,1,2020-10-06,1 -116.101.6.17,1,2020-10-07,1 -27.65.29.97,1,2020-10-07,1 -27.77.239.87,1,2020-10-07,1 -27.73.239.137,1,2020-10-07,1 -185.165.190.34,1,2020-10-06,1 -116.100.44.130,1,2020-10-07,1 -171.242.97.11,1,2020-10-07,1 -122.116.253.71,1,2020-10-06,1 -171.246.41.17,1,2020-10-07,1 -190.85.225.36,1,2020-10-06,1 -115.77.194.19,1,2020-10-07,1 -114.34.129.31,1,2020-10-06,1 -106.52.178.166,1,2020-10-06,1 -171.253.82.159,1,2020-10-07,1 -171.242.175.142,1,2020-10-07,1 -115.182.105.68,1,2020-10-06,1 -27.69.170.126,1,2020-10-07,1 -116.100.5.220,1,2020-10-07,1 -171.243.113.140,1,2020-10-06,1 -106.54.198.182,1,2020-10-06,1 -171.246.57.237,1,2020-10-07,1 -148.72.208.36,1,2020-10-06,1 -111.206.250.204,1,2020-10-06,1 -210.59.209.174,1,2020-10-06,1 -103.192.118.78,1,2020-10-06,1 -115.76.17.145,1,2020-10-07,1 -85.209.0.182,1,2020-10-07,1 -171.242.228.149,1,2020-10-07,1 -192.241.236.71,1,2020-10-06,1 -61.7.147.29,1,2020-10-07,1 -5.188.156.159,1,2020-10-07,1 -115.77.202.26,1,2020-10-07,1 -171.242.192.57,1,2020-10-07,1 -59.125.70.209,1,2020-10-07,1 -1.55.254.250,1,2020-10-07,1 -116.105.46.84,1,2020-10-06,1 -117.1.43.61,1,2020-10-07,1 -171.246.45.105,1,2020-10-07,1 -171.227.168.164,1,2020-10-07,1 -151.177.141.180,1,2020-10-07,1 -27.76.4.32,1,2020-10-07,1 -192.241.239.202,1,2020-10-07,1 -51.116.233.120,1,2020-10-06,1 -27.68.16.194,1,2020-10-07,1 -41.42.238.148,1,2020-10-06,1 -171.243.113.63,1,2020-10-07,1 -162.158.165.37,1,2020-10-06,1 -116.100.41.156,1,2020-10-07,1 -186.155.19.250,1,2020-10-07,1 -171.248.59.228,1,2020-10-07,1 -27.68.24.192,1,2020-10-07,1 -156.206.178.0,1,2020-10-06,1 -114.32.119.220,1,2020-10-06,1 -209.17.96.50,1,2020-10-07,1 -171.247.26.69,1,2020-10-07,1 -116.105.41.202,1,2020-10-06,1 -116.100.223.129,1,2020-10-07,1 -117.196.175.108,1,2020-10-06,1 -116.105.32.102,1,2020-10-06,1 -165.227.182.136,1,2020-10-06,1 -51.15.103.150,1,2020-10-06,1 -45.153.203.154,1,2020-10-07,1 -140.143.22.116,1,2020-10-06,1 -171.253.81.27,1,2020-10-07,1 -1.10.170.189,1,2020-10-07,1 -27.69.186.30,1,2020-10-07,1 -115.76.97.131,1,2020-10-07,1 -189.127.158.25,1,2020-10-06,1 -122.34.205.3,1,2020-10-06,1 -91.230.25.209,1,2020-10-06,1 -111.206.250.197,1,2020-10-06,1 -115.77.201.115,1,2020-10-07,1 -192.241.218.22,1,2020-10-07,1 -171.252.205.218,1,2020-10-07,1 -113.203.236.216,1,2020-10-06,1 -115.77.194.57,1,2020-10-07,1 -192.241.223.186,1,2020-10-07,1 -114.35.177.126,1,2020-10-06,1 -51.255.109.170,1,2020-10-07,1 -116.105.38.97,1,2020-10-07,1 -171.227.168.56,1,2020-10-07,1 -171.246.34.188,1,2020-10-07,1 -27.68.29.58,1,2020-10-07,1 -171.252.95.90,1,2020-10-07,1 -115.76.105.141,1,2020-10-07,1 -171.229.120.183,1,2020-10-07,1 -171.243.116.168,1,2020-10-07,1 -87.247.97.189,1,2020-10-06,1 -116.72.131.11,1,2020-10-07,1 -116.72.129.11,1,2020-10-06,1 -59.95.103.13,1,2020-10-06,1 -171.232.118.39,1,2020-10-07,1 -171.245.23.68,1,2020-10-07,1 -106.12.33.78,1,2020-10-06,1 -89.239.35.133,1,2020-10-06,1 -27.68.175.254,1,2020-10-07,1 -171.246.32.100,1,2020-10-07,1 -171.247.16.93,1,2020-10-07,1 -37.156.29.171,1,2020-10-07,1 -157.56.180.175,1,2020-10-06,1 -180.183.249.132,1,2020-10-06,1 -27.77.196.73,1,2020-10-07,1 -125.230.218.130,1,2020-10-07,1 -114.33.41.203,1,2020-10-07,1 -42.200.80.42,1,2020-10-07,1 -27.68.25.11,1,2020-10-07,1 -171.246.52.157,1,2020-10-07,1 -89.46.223.95,1,2020-10-07,1 -27.79.232.69,1,2020-10-06,1 -189.130.42.70,1,2020-10-07,1 -27.68.23.19,1,2020-10-07,1 -176.212.108.223,1,2020-10-06,1 -122.114.185.153,1,2020-10-06,1 -192.144.228.40,1,2020-10-06,1 -139.199.189.158,1,2020-10-06,1 -89.28.47.65,1,2020-10-06,1 -171.246.46.178,1,2020-10-07,1 -2.50.136.114,1,2020-10-06,1 -171.232.118.83,1,2020-10-07,1 -175.24.81.123,1,2020-10-06,1 -122.51.149.86,1,2020-10-06,1 -41.59.89.22,1,2020-10-07,1 -27.68.17.0,1,2020-10-07,1 -117.1.45.86,1,2020-10-07,1 -83.110.6.71,1,2020-10-06,1 -106.124.137.108,1,2020-10-07,1 -107.178.230.14,1,2020-10-06,1 -123.207.74.24,1,2020-10-06,1 -171.247.54.213,1,2020-10-07,1 -171.243.117.109,1,2020-10-06,1 -171.233.43.17,1,2020-10-07,1 -218.161.4.120,1,2020-10-06,1 -52.142.61.195,1,2020-10-06,1 -171.232.117.171,1,2020-10-07,1 -171.229.98.39,1,2020-10-07,1 -192.241.239.84,1,2020-10-06,1 -103.90.238.151,1,2020-10-07,1 -104.131.47.97,1,2020-10-06,1 -47.111.153.111,1,2020-10-07,1 -180.246.89.6,1,2020-10-06,1 -115.76.25.32,1,2020-10-07,1 -103.60.14.181,1,2020-10-06,1 -116.100.10.64,1,2020-10-07,1 -115.96.127.231,1,2020-10-06,1 -188.26.37.112,1,2020-10-06,1 -171.242.252.24,1,2020-10-07,1 -115.77.203.103,1,2020-10-07,1 -103.54.146.147,1,2020-10-07,1 -193.8.83.80,1,2020-10-07,1 -27.68.20.142,1,2020-10-07,1 -109.106.138.28,1,2020-10-07,1 -113.53.85.67,1,2020-10-06,1 -49.233.163.45,1,2020-10-06,1 -27.77.207.92,1,2020-10-07,1 -192.241.224.183,1,2020-10-07,1 -117.1.236.65,1,2020-10-07,1 -104.206.128.42,1,2020-10-07,1 -89.165.11.181,1,2020-10-06,1 -3.6.58.214,1,2020-10-06,1 -27.64.170.137,1,2020-10-07,1 -171.246.45.73,1,2020-10-07,1 -171.224.214.85,1,2020-10-07,1 -116.100.15.13,1,2020-10-07,1 -171.252.201.241,1,2020-10-07,1 -59.127.197.48,1,2020-10-06,1 -192.241.234.5,1,2020-10-07,1 -115.96.145.22,1,2020-10-07,1 -220.133.194.236,1,2020-10-06,1 -171.245.116.109,1,2020-10-07,1 -27.77.192.71,1,2020-10-07,1 -171.224.189.180,1,2020-10-07,1 -116.100.44.15,1,2020-10-07,1 -129.213.92.40,1,2020-10-07,1 -115.96.138.46,1,2020-10-07,1 -192.241.234.16,1,2020-10-06,1 -131.93.205.178,1,2020-10-07,1 -93.83.241.218,1,2020-10-06,1 -115.73.113.188,1,2020-10-07,1 -116.101.12.46,1,2020-10-07,1 -117.1.46.126,1,2020-10-07,1 -192.241.234.166,1,2020-10-07,1 -131.221.229.10,1,2020-10-06,1 -171.246.51.207,1,2020-10-07,1 -220.133.28.107,1,2020-10-06,1 -115.76.110.98,1,2020-10-07,1 -162.158.178.156,1,2020-10-06,1 -171.246.43.67,1,2020-10-07,1 -171.245.31.74,1,2020-10-07,1 -45.55.157.158,1,2020-10-06,1 -116.104.188.164,1,2020-10-07,1 -192.241.235.173,1,2020-10-07,1 -160.20.84.225,1,2020-10-07,1 -171.246.43.203,1,2020-10-07,1 -171.252.201.76,1,2020-10-07,1 -41.47.203.6,1,2020-10-07,1 -171.248.56.32,1,2020-10-07,1 -103.105.42.119,1,2020-10-07,1 -171.245.227.229,1,2020-10-07,1 -115.74.139.5,1,2020-10-07,1 -115.96.120.24,1,2020-10-07,1 -118.25.182.118,1,2020-10-07,1 -103.25.46.62,1,2020-10-06,1 -156.208.252.2,1,2020-10-06,1 -27.68.171.22,1,2020-10-07,1 -171.246.57.133,1,2020-10-07,1 -125.163.49.61,1,2020-10-07,1 -179.43.160.236,1,2020-10-07,1 -162.243.128.94,1,2020-10-07,1 -209.17.96.26,1,2020-10-06,1 -111.231.54.33,1,2020-10-06,1 -171.242.150.116,1,2020-10-07,1 -171.246.61.126,1,2020-10-07,1 -192.35.169.25,1,2020-10-06,1 -190.141.13.26,1,2020-10-06,1 -171.248.63.84,1,2020-10-07,1 -115.76.21.73,1,2020-10-07,1 -171.252.205.69,1,2020-10-07,1 -115.77.195.4,1,2020-10-07,1 -115.76.26.173,1,2020-10-07,1 -192.241.232.150,1,2020-10-07,1 -192.42.116.28,1,2020-10-07,1 -51.38.32.230,1,2020-10-07,1 -171.224.213.245,1,2020-10-07,1 -192.241.239.247,1,2020-10-06,1 -182.58.163.228,1,2020-10-06,1 -27.69.169.22,1,2020-10-07,1 -116.103.68.37,1,2020-10-07,1 -186.71.79.221,1,2020-10-06,1 -116.97.0.9,1,2020-10-07,1 -192.241.238.98,1,2020-10-06,1 -27.69.177.238,1,2020-10-06,1 -192.241.236.138,1,2020-10-06,1 -196.52.43.115,1,2020-10-06,1 -49.235.75.158,1,2020-10-06,1 -125.70.25.245,1,2020-10-06,1 -171.246.47.140,1,2020-10-07,1 -35.188.58.72,1,2020-10-06,1 -115.73.197.150,1,2020-10-07,1 -116.100.221.17,1,2020-10-07,1 -178.62.53.14,1,2020-10-07,1 -120.11.111.65,1,2020-10-06,1 -120.131.9.167,1,2020-10-06,1 -104.206.128.2,1,2020-10-06,1 -116.100.221.14,1,2020-10-07,1 -218.161.19.129,1,2020-10-06,1 -27.77.196.159,1,2020-10-07,1 -221.120.37.190,1,2020-10-07,1 -116.97.59.95,1,2020-10-07,1 -27.106.62.130,1,2020-10-07,1 -71.6.231.83,1,2020-10-07,1 -27.69.188.190,1,2020-10-07,1 -27.68.19.81,1,2020-10-07,1 -115.74.7.156,1,2020-10-07,1 -171.246.59.216,1,2020-10-07,1 -171.243.125.164,1,2020-10-07,1 -60.220.185.61,1,2020-10-06,1 -97.107.148.113,1,2020-10-07,1 -171.243.113.113,1,2020-10-07,1 -95.216.117.151,1,2020-10-07,1 -171.225.239.126,1,2020-10-06,1 -162.158.179.7,1,2020-10-06,1 -192.241.221.242,1,2020-10-06,1 -185.254.229.2,1,2020-10-06,1 -37.55.17.88,1,2020-10-06,1 -110.164.77.59,1,2020-10-06,1 -114.226.23.70,1,2020-10-07,1 -115.77.195.17,1,2020-10-07,1 -171.246.39.192,1,2020-10-07,1 -171.243.114.185,1,2020-10-07,1 -171.252.202.89,1,2020-10-07,1 -27.77.233.184,1,2020-10-07,1 -171.244.93.82,1,2020-10-07,1 -151.115.34.227,1,2020-10-06,1 -27.68.31.245,1,2020-10-07,1 -27.68.174.125,1,2020-10-07,1 -209.17.96.162,1,2020-10-07,1 -51.15.36.171,1,2020-10-06,1 -27.69.165.107,1,2020-10-07,1 -117.1.43.27,1,2020-10-07,1 -116.97.2.135,1,2020-10-07,1 -116.103.74.83,1,2020-10-07,1 -117.1.157.203,1,2020-10-07,1 -93.78.147.133,1,2020-10-06,1 -52.249.186.225,1,2020-10-06,1 -162.158.165.95,1,2020-10-06,1 -171.237.157.32,1,2020-10-07,1 -179.222.215.167,1,2020-10-06,1 -27.66.119.37,1,2020-10-07,1 -198.199.95.17,1,2020-10-06,1 -35.166.184.37,1,2020-10-06,1 -115.76.25.170,1,2020-10-07,1 -171.232.112.191,1,2020-10-07,1 -103.56.239.5,1,2020-10-07,1 -171.246.50.200,1,2020-10-07,1 -190.155.249.98,1,2020-10-06,1 -171.246.50.53,1,2020-10-07,1 -38.229.33.47,1,2020-10-06,1 -171.248.58.223,1,2020-10-07,1 -174.4.13.231,1,2020-10-07,1 -171.225.233.61,1,2020-10-07,1 -59.153.97.133,1,2020-10-06,1 -170.238.115.17,1,2020-10-07,1 -171.252.171.81,1,2020-10-07,1 -27.68.18.226,1,2020-10-07,1 -156.96.157.238,1,2020-10-06,1 -171.252.200.34,1,2020-10-07,1 -123.141.94.2,1,2020-10-07,1 -171.253.87.72,1,2020-10-07,1 -79.137.7.51,1,2020-10-06,1 -189.8.108.50,1,2020-10-07,1 -61.80.114.221,1,2020-10-06,1 -171.232.114.5,1,2020-10-07,1 -171.233.43.216,1,2020-10-07,1 -84.21.170.210,1,2020-10-07,1 -179.243.193.193,1,2020-10-07,1 -203.6.225.46,1,2020-10-06,1 -171.233.45.67,1,2020-10-07,1 -27.69.180.254,1,2020-10-07,1 -171.225.239.36,1,2020-10-07,1 -169.239.39.15,1,2020-10-07,1 -27.77.227.135,1,2020-10-07,1 -115.77.207.95,1,2020-10-07,1 -115.77.202.136,1,2020-10-07,1 -171.242.187.50,1,2020-10-07,1 -45.229.193.8,1,2020-10-06,1 -115.96.105.52,1,2020-10-07,1 -171.229.103.120,1,2020-10-07,1 -220.134.61.246,1,2020-10-06,1 -162.243.128.220,1,2020-10-07,1 -36.85.39.59,1,2020-10-06,1 -192.241.237.31,1,2020-10-07,1 -27.68.170.162,1,2020-10-07,1 -171.227.161.90,1,2020-10-06,1 -103.25.72.62,1,2020-10-07,1 -66.42.48.232,1,2020-10-07,1 -220.132.223.184,1,2020-10-06,1 -171.245.19.234,1,2020-10-07,1 -115.96.129.58,1,2020-10-07,1 -221.9.238.217,1,2020-10-07,1 -85.105.243.119,1,2020-10-07,1 -171.229.86.177,1,2020-10-07,1 -27.65.28.141,1,2020-10-07,1 -192.241.234.212,1,2020-10-07,1 -192.241.235.219,1,2020-10-07,1 -193.107.96.32,1,2020-10-07,1 -115.77.198.215,1,2020-10-07,1 -218.161.66.236,1,2020-10-06,1 -49.235.207.127,1,2020-10-06,1 -171.252.94.97,1,2020-10-07,1 -103.82.147.33,1,2020-10-06,1 -116.100.9.11,1,2020-10-07,1 -116.100.12.203,1,2020-10-07,1 -24.90.119.172,1,2020-10-06,1 -171.229.70.162,1,2020-10-07,1 -27.65.29.119,1,2020-10-07,1 -117.1.41.174,1,2020-10-07,1 -146.88.240.12,1,2020-10-06,1 -171.237.149.243,1,2020-10-07,1 -115.76.19.134,1,2020-10-07,1 -171.227.169.222,1,2020-10-07,1 -51.178.176.12,1,2020-10-07,1 -187.56.139.93,1,2020-10-06,1 -103.90.226.99,1,2020-10-06,1 -86.123.182.225,1,2020-10-06,1 -171.232.116.152,1,2020-10-07,1 -171.229.132.52,1,2020-10-07,1 -162.158.178.34,1,2020-10-06,1 -93.77.104.69,1,2020-10-06,1 -167.248.133.19,1,2020-10-07,1 -103.108.146.96,1,2020-10-06,1 -51.15.138.86,1,2020-10-06,1 -220.134.222.19,1,2020-10-07,1 -212.126.123.21,1,2020-10-06,1 -209.17.96.34,1,2020-10-06,1 -220.130.167.97,1,2020-10-07,1 -171.249.54.253,1,2020-10-07,1 -47.244.218.30,1,2020-10-07,1 -171.253.81.104,1,2020-10-07,1 -27.69.163.184,1,2020-10-07,1 -192.241.218.92,1,2020-10-06,1 -185.202.1.122,1,2020-10-07,1 -180.76.152.157,1,2020-10-06,1 -171.245.12.68,1,2020-10-07,1 -122.117.203.28,1,2020-10-06,1 -52.172.49.158,1,2020-10-07,1 -219.68.1.75,1,2020-10-06,1 -13.66.170.207,1,2020-10-06,1 -50.226.78.173,1,2020-10-06,1 -27.65.30.81,1,2020-10-07,1 -51.158.21.116,1,2020-10-07,1 -45.117.112.34,1,2020-10-06,1 -171.242.173.77,1,2020-10-07,1 -76.80.3.171,1,2020-10-07,1 -171.229.77.208,1,2020-10-07,1 -116.104.193.236,1,2020-10-07,1 -156.196.80.193,1,2020-10-06,1 -116.105.47.144,1,2020-10-07,1 -103.124.173.212,1,2020-10-06,1 -171.225.225.214,1,2020-10-07,1 -94.180.25.59,1,2020-10-07,1 -27.68.31.183,1,2020-10-07,1 -162.158.179.141,1,2020-10-06,1 -122.116.36.239,1,2020-10-06,1 -116.100.222.21,1,2020-10-07,1 -171.233.44.202,1,2020-10-07,1 -171.245.239.227,1,2020-10-06,1 -117.0.235.98,1,2020-10-07,1 -162.241.115.172,1,2020-10-06,1 -171.246.60.235,1,2020-10-07,1 -171.249.48.11,1,2020-10-07,1 -171.227.170.22,1,2020-10-07,1 -27.68.175.162,1,2020-10-07,1 -119.129.115.1,1,2020-10-06,1 -171.246.51.158,1,2020-10-07,1 -183.157.168.219,1,2020-10-06,1 -45.168.248.9,1,2020-10-06,1 -49.233.143.87,1,2020-10-06,1 -114.33.71.160,1,2020-10-06,1 -59.126.110.72,1,2020-10-07,1 -117.0.164.210,1,2020-10-07,1 -171.243.98.3,1,2020-10-06,1 -116.101.6.93,1,2020-10-07,1 -221.214.225.30,1,2020-10-07,1 -106.13.173.137,1,2020-10-06,1 -51.195.148.67,1,2020-10-07,1 -192.241.210.61,1,2020-10-07,1 -171.253.82.186,1,2020-10-07,1 -171.232.115.14,1,2020-10-07,1 -171.246.45.87,1,2020-10-07,1 -198.46.171.4,1,2020-10-06,1 -192.241.239.55,1,2020-10-06,1 -171.224.184.98,1,2020-10-07,1 -104.180.91.81,1,2020-10-06,1 -142.93.69.116,1,2020-10-07,1 -23.129.64.208,1,2020-10-07,1 -54.166.150.237,1,2020-10-07,1 -27.77.197.67,1,2020-10-07,1 -120.132.13.206,1,2020-10-07,1 -23.129.64.188,1,2020-10-07,1 -115.77.194.92,1,2020-10-07,1 -117.5.69.227,1,2020-10-07,1 -171.243.121.110,1,2020-10-07,1 -77.121.81.204,1,2020-10-07,1 -168.121.224.132,1,2020-10-06,1 -182.75.117.126,1,2020-10-06,1 -59.126.183.117,1,2020-10-06,1 -103.117.152.208,1,2020-10-06,1 -119.77.172.231,1,2020-10-06,1 -103.79.154.65,1,2020-10-06,1 -171.253.112.127,1,2020-10-07,1 -49.233.51.48,1,2020-10-06,1 -59.127.97.58,1,2020-10-06,1 -117.5.68.30,1,2020-10-07,1 -91.201.174.31,1,2020-10-06,1 -27.68.21.75,1,2020-10-07,1 -171.228.202.188,1,2020-10-07,1 -162.243.128.91,1,2020-10-06,1 -103.25.84.12,1,2020-10-07,1 -171.242.250.158,1,2020-10-07,1 -27.68.23.155,1,2020-10-07,1 -27.69.171.185,1,2020-10-07,1 -116.104.233.27,1,2020-10-07,1 -27.68.27.9,1,2020-10-07,1 -171.253.64.14,1,2020-10-07,1 -27.73.18.239,1,2020-10-07,1 -171.246.46.25,1,2020-10-07,1 -171.246.38.130,1,2020-10-07,1 -104.206.128.26,1,2020-10-06,1 -171.252.207.1,1,2020-10-07,1 -162.142.125.31,1,2020-10-06,1 -171.245.234.72,1,2020-10-07,1 -117.0.233.234,1,2020-10-07,1 -208.68.39.220,1,2020-10-06,1 -27.76.164.204,1,2020-10-07,1 -171.229.119.188,1,2020-10-07,1 -171.246.55.226,1,2020-10-07,1 -189.84.207.223,1,2020-10-07,1 -116.105.44.165,1,2020-10-07,1 -5.133.109.2,1,2020-10-06,1 -171.242.251.58,1,2020-10-07,1 -222.114.43.115,1,2020-10-06,1 -211.213.215.81,1,2020-10-06,1 -27.76.171.76,1,2020-10-07,1 -27.77.236.2,1,2020-10-07,1 -114.33.122.99,1,2020-10-06,1 -171.234.128.90,1,2020-10-07,1 -175.210.234.123,1,2020-10-06,1 -171.246.54.60,1,2020-10-07,1 -115.76.30.250,1,2020-10-07,1 -117.1.124.177,1,2020-10-07,1 -193.169.254.37,1,2020-10-06,1 -185.88.199.97,1,2020-10-06,1 -171.232.118.33,1,2020-10-07,1 -104.206.128.18,1,2020-10-06,1 -171.229.132.75,1,2020-10-07,1 -1.34.27.52,1,2020-10-07,1 -171.242.185.199,1,2020-10-07,1 -186.66.152.171,1,2020-10-06,1 -197.34.47.38,1,2020-10-06,1 -186.66.75.93,1,2020-10-06,1 -184.105.139.106,1,2020-10-07,1 -180.226.42.98,1,2020-10-06,1 -27.77.194.57,1,2020-10-07,1 -210.210.110.124,1,2020-10-06,1 -117.1.32.89,1,2020-10-07,1 -171.248.57.197,1,2020-10-07,1 -192.241.217.38,1,2020-10-06,1 -197.49.43.100,1,2020-10-06,1 -85.133.130.132,1,2020-10-06,1 -192.241.234.242,1,2020-10-07,1 -162.142.125.25,1,2020-10-07,1 -88.15.35.139,1,2020-10-06,1 -115.76.31.157,1,2020-10-07,1 -51.15.194.164,1,2020-10-06,1 -172.69.135.13,1,2020-10-06,1 -171.242.150.19,1,2020-10-07,1 -180.76.174.39,1,2020-10-06,1 -41.58.170.179,1,2020-10-06,1 -62.234.156.221,1,2020-10-06,1 -171.246.41.160,1,2020-10-07,1 -171.232.118.250,1,2020-10-07,1 -116.101.223.10,1,2020-10-07,1 -171.229.141.108,1,2020-10-07,1 -116.100.221.21,1,2020-10-07,1 -117.1.224.21,1,2020-10-07,1 -200.111.120.180,1,2020-10-07,1 -122.51.40.61,1,2020-10-06,1 -104.140.188.46,1,2020-10-06,1 -103.59.105.70,1,2020-10-06,1 -49.206.27.233,1,2020-10-07,1 -171.252.95.6,1,2020-10-07,1 -82.185.252.122,1,2020-10-06,1 -116.101.212.155,1,2020-10-07,1 -171.242.24.97,1,2020-10-07,1 -116.100.40.180,1,2020-10-07,1 -116.100.47.84,1,2020-10-07,1 -118.163.180.2,1,2020-10-06,1 -115.76.96.198,1,2020-10-07,1 -167.71.171.143,1,2020-10-06,1 -171.246.50.221,1,2020-10-07,1 -171.246.43.152,1,2020-10-07,1 -168.226.35.118,1,2020-10-06,1 -92.118.160.45,1,2020-10-06,1 -220.186.138.6,1,2020-10-06,1 -45.143.221.113,1,2020-10-07,1 -94.180.25.215,1,2020-10-07,1 -171.247.6.105,1,2020-10-07,1 -162.243.128.177,1,2020-10-07,1 -27.68.29.72,1,2020-10-07,1 -45.71.241.174,1,2020-10-06,1 -209.141.54.239,1,2020-10-06,1 -103.223.12.33,1,2020-10-06,1 -162.158.166.196,1,2020-10-06,1 -213.231.17.101,1,2020-10-06,1 -182.226.213.215,1,2020-10-06,1 -115.76.99.179,1,2020-10-07,1 -186.251.244.96,1,2020-10-07,1 -50.253.212.106,1,2020-10-07,1 -171.248.57.73,1,2020-10-07,1 -176.59.141.102,1,2020-10-07,1 -220.248.49.229,1,2020-10-06,1 -171.252.206.176,1,2020-10-07,1 -81.215.198.186,1,2020-10-06,1 -115.77.203.55,1,2020-10-07,1 -27.68.26.149,1,2020-10-07,1 -87.98.219.59,1,2020-10-06,1 -192.42.116.25,1,2020-10-07,1 -171.248.56.46,1,2020-10-07,1 -27.68.171.170,1,2020-10-07,1 -85.241.61.251,1,2020-10-06,1 -219.143.155.45,1,2020-10-07,1 -171.242.196.245,1,2020-10-07,1 -115.165.214.46,1,2020-10-07,1 -192.241.239.39,1,2020-10-07,1 -184.175.52.167,1,2020-10-07,1 -27.68.19.206,1,2020-10-07,1 -223.19.73.184,1,2020-10-06,1 -171.236.126.191,1,2020-10-07,1 -171.242.175.157,1,2020-10-07,1 -171.246.49.62,1,2020-10-07,1 -134.209.223.106,1,2020-10-07,1 -94.180.25.165,1,2020-10-06,1 -192.241.218.169,1,2020-10-07,1 -106.52.22.64,1,2020-10-06,1 -116.100.44.201,1,2020-10-07,1 -27.69.163.115,1,2020-10-06,1 -171.224.146.175,1,2020-10-07,1 -27.77.35.117,1,2020-10-07,1 -116.101.217.154,1,2020-10-07,1 -171.246.39.155,1,2020-10-07,1 -5.182.211.56,1,2020-10-06,1 -171.246.54.243,1,2020-10-07,1 -116.98.246.55,1,2020-10-07,1 -114.34.147.88,1,2020-10-06,1 -161.35.230.3,1,2020-10-06,1 -171.246.35.22,1,2020-10-07,1 -190.171.213.185,1,2020-10-07,1 -106.75.64.169,1,2020-10-07,1 -27.77.195.119,1,2020-10-07,1 -115.231.122.37,1,2020-10-06,1 -14.252.181.89,1,2020-10-07,1 -27.68.17.68,1,2020-10-07,1 -186.71.81.128,1,2020-10-06,1 -136.243.16.36,1,2020-10-06,1 -114.33.147.177,1,2020-10-07,1 -200.75.233.144,1,2020-10-06,1 -117.1.236.202,1,2020-10-07,1 -147.135.104.185,1,2020-10-07,1 -84.255.195.6,1,2020-10-06,1 -27.68.24.222,1,2020-10-07,1 -171.246.52.209,1,2020-10-07,1 -94.154.27.235,1,2020-10-07,1 -103.117.36.2,1,2020-10-06,1 -189.127.158.154,1,2020-10-06,1 -93.118.98.189,1,2020-10-06,1 -114.36.176.6,1,2020-10-07,1 -103.119.58.28,1,2020-10-06,1 -209.141.53.217,1,2020-10-07,1 -171.245.225.126,1,2020-10-07,1 -171.243.121.36,1,2020-10-07,1 -106.75.106.221,1,2020-10-06,1 -59.180.182.55,1,2020-10-07,1 -196.52.43.91,1,2020-10-06,1 -116.96.58.255,1,2020-10-07,1 -171.242.158.24,1,2020-10-07,1 -27.77.192.249,1,2020-10-07,1 -192.241.232.227,1,2020-10-07,1 -116.97.19.137,1,2020-10-07,1 -172.68.189.58,1,2020-10-06,1 -41.44.163.1,1,2020-10-07,1 -171.246.57.68,1,2020-10-07,1 -116.100.216.236,1,2020-10-07,1 -171.238.72.173,1,2020-10-07,1 -209.13.97.83,1,2020-10-06,1 -97.68.70.75,1,2020-10-07,1 -37.189.128.142,1,2020-10-06,1 -115.76.111.61,1,2020-10-07,1 -27.68.168.25,1,2020-10-07,1 -128.199.148.33,1,2020-10-06,1 -171.246.55.59,1,2020-10-07,1 -27.77.231.254,1,2020-10-07,1 -171.246.43.33,1,2020-10-07,1 -1.34.193.191,1,2020-10-06,1 -27.69.189.249,1,2020-10-07,1 -192.241.236.156,1,2020-10-06,1 -171.252.203.9,1,2020-10-07,1 -115.76.103.119,1,2020-10-07,1 -27.68.170.193,1,2020-10-07,1 -27.69.171.125,1,2020-10-07,1 -69.166.111.133,1,2020-10-06,1 -171.243.118.138,1,2020-10-07,1 -88.129.67.38,1,2020-10-06,1 -27.77.198.134,1,2020-10-07,1 -162.158.167.67,1,2020-10-06,1 -162.158.165.151,1,2020-10-06,1 -115.76.111.180,1,2020-10-07,1 -171.242.230.27,1,2020-10-07,1 -186.4.191.249,1,2020-10-06,1 -116.100.10.46,1,2020-10-07,1 -5.79.66.86,1,2020-10-06,1 -27.68.20.149,1,2020-10-07,1 -116.100.44.173,1,2020-10-07,1 -171.243.111.160,1,2020-10-07,1 -171.246.41.235,1,2020-10-07,1 -116.232.201.153,1,2020-10-07,1 -103.73.70.2,1,2020-10-06,1 -74.82.47.10,1,2020-10-07,1 -220.86.96.97,1,2020-10-07,1 -119.45.213.145,1,2020-10-06,1 -171.233.32.137,1,2020-10-07,1 -192.241.218.199,1,2020-10-07,1 -128.201.66.186,1,2020-10-07,1 -171.234.128.31,1,2020-10-07,1 -115.76.16.101,1,2020-10-07,1 -171.232.116.18,1,2020-10-07,1 -27.77.192.78,1,2020-10-07,1 -27.68.170.101,1,2020-10-07,1 -27.69.179.44,1,2020-10-07,1 -123.192.97.22,1,2020-10-06,1 -27.68.173.219,1,2020-10-07,1 -171.246.39.106,1,2020-10-07,1 -74.120.14.19,1,2020-10-06,1 -176.241.95.142,1,2020-10-07,1 -192.241.217.10,1,2020-10-06,1 -146.88.240.13,1,2020-10-06,1 -171.242.192.113,1,2020-10-07,1 -115.77.202.144,1,2020-10-07,1 -115.77.196.199,1,2020-10-07,1 -27.69.177.66,1,2020-10-07,1 -192.241.218.158,1,2020-10-06,1 -27.68.23.176,1,2020-10-07,1 -116.101.31.156,1,2020-10-07,1 -161.35.26.90,1,2020-10-07,1 -185.220.102.253,1,2020-10-07,1 -192.241.234.116,1,2020-10-07,1 -171.246.74.180,1,2020-10-07,1 -216.198.92.72,1,2020-10-06,1 -171.242.80.51,1,2020-10-07,1 -27.76.1.59,1,2020-10-07,1 -49.234.81.14,1,2020-10-06,1 -171.252.200.62,1,2020-10-07,1 -116.131.179.158,1,2020-10-07,1 -117.1.149.111,1,2020-10-07,1 -27.68.18.141,1,2020-10-07,1 -220.134.218.77,1,2020-10-07,1 -116.100.41.51,1,2020-10-07,1 -72.80.131.2,1,2020-10-07,1 -171.224.208.81,1,2020-10-07,1 -77.247.181.165,1,2020-10-07,1 -171.253.88.80,1,2020-10-07,1 -87.251.74.54,1,2020-10-06,1 -171.247.42.35,1,2020-10-07,1 -116.100.11.137,1,2020-10-07,1 -190.85.235.78,1,2020-10-07,1 -107.189.10.174,1,2020-10-07,1 -52.53.215.224,1,2020-10-07,1 -139.186.69.226,1,2020-10-07,1 -116.101.212.239,1,2020-10-07,1 -111.206.250.236,1,2020-10-06,1 -171.252.95.67,1,2020-10-07,1 -27.76.20.162,1,2020-10-07,1 -171.242.182.109,1,2020-10-07,1 -171.252.95.229,1,2020-10-07,1 -192.241.214.142,1,2020-10-07,1 -171.229.141.10,1,2020-10-07,1 -201.163.1.66,1,2020-10-06,1 -180.246.92.79,1,2020-10-06,1 -3.121.225.76,1,2020-10-06,1 -192.241.238.225,1,2020-10-07,1 -171.229.150.55,1,2020-10-07,1 -27.69.160.224,1,2020-10-07,1 -27.76.154.169,1,2020-10-07,1 -186.10.94.93,1,2020-10-06,1 -123.206.255.181,1,2020-10-06,1 -171.228.112.216,1,2020-10-07,1 -124.10.208.60,1,2020-10-06,1 -192.241.218.123,1,2020-10-07,1 -92.118.160.49,1,2020-10-06,1 -121.66.35.37,1,2020-10-07,1 -103.192.116.98,1,2020-10-06,1 -162.243.128.84,1,2020-10-06,1 -171.245.116.124,1,2020-10-07,1 -171.229.131.32,1,2020-10-07,1 -27.77.203.80,1,2020-10-07,1 -27.77.201.95,1,2020-10-07,1 -186.29.181.174,1,2020-10-06,1 -116.100.5.188,1,2020-10-07,1 -162.158.167.35,1,2020-10-06,1 -171.229.135.164,1,2020-10-07,1 -42.81.143.222,1,2020-10-06,1 -116.107.19.101,1,2020-10-07,1 -115.76.231.209,1,2020-10-07,1 -186.69.213.180,1,2020-10-06,1 -171.246.58.197,1,2020-10-07,1 -27.77.224.234,1,2020-10-07,1 -171.232.119.35,1,2020-10-07,1 -103.133.109.116,1,2020-10-06,1 -172.68.254.31,1,2020-10-06,1 -84.53.237.140,1,2020-10-07,1 -116.100.216.71,1,2020-10-07,1 -171.232.112.55,1,2020-10-07,1 -115.76.17.99,1,2020-10-07,1 -31.163.182.153,1,2020-10-06,1 -82.239.230.76,1,2020-10-06,1 -171.224.247.15,1,2020-10-07,1 -192.241.231.227,1,2020-10-07,1 -171.246.55.50,1,2020-10-07,1 -106.12.96.23,1,2020-10-06,1 -171.252.168.75,1,2020-10-07,1 -209.17.96.154,1,2020-10-06,1 -171.229.138.209,1,2020-10-07,1 -171.245.9.200,1,2020-10-07,1 -115.76.31.151,1,2020-10-07,1 -91.92.184.170,1,2020-10-06,1 -68.183.151.126,1,2020-10-06,1 -114.35.219.181,1,2020-10-06,1 -176.62.254.134,1,2020-10-06,1 -180.167.126.126,1,2020-10-06,1 -115.76.102.123,1,2020-10-07,1 -171.244.80.11,1,2020-10-06,1 -171.242.176.49,1,2020-10-07,1 -115.76.105.207,1,2020-10-07,1 -171.246.41.187,1,2020-10-07,1 -219.89.127.122,1,2020-10-07,1 -41.32.58.147,1,2020-10-06,1 -23.81.180.2,1,2020-10-06,1 -171.243.127.66,1,2020-10-07,1 -45.148.122.19,1,2020-10-06,1 -116.104.137.56,1,2020-10-07,1 -101.99.81.155,1,2020-10-06,1 -171.252.203.105,1,2020-10-07,1 -116.104.122.197,1,2020-10-07,1 -72.186.162.37,1,2020-10-06,1 -95.46.164.229,1,2020-10-07,1 -27.69.191.154,1,2020-10-06,1 -180.76.53.42,1,2020-10-06,1 -193.118.53.218,1,2020-10-06,1 -27.76.4.45,1,2020-10-07,1 -27.69.172.74,1,2020-10-07,1 -37.59.222.64,1,2020-10-06,1 -27.77.230.60,1,2020-10-07,1 -122.117.79.17,1,2020-10-07,1 -27.64.171.46,1,2020-10-07,1 -180.169.129.78,1,2020-10-06,1 -116.107.173.65,1,2020-10-07,1 -27.65.30.177,1,2020-10-07,1 -139.99.66.210,1,2020-10-07,1 -172.69.134.138,1,2020-10-06,1 -27.68.171.120,1,2020-10-07,1 -115.75.240.174,1,2020-10-07,1 -74.82.47.42,1,2020-10-07,1 -192.241.219.56,1,2020-10-07,1 -145.220.24.215,1,2020-10-06,1 -116.105.35.74,1,2020-10-07,1 -187.23.86.108,1,2020-10-06,1 -202.166.219.136,1,2020-10-06,1 -178.124.217.197,1,2020-10-06,1 -115.74.141.36,1,2020-10-07,1 -138.122.12.217,1,2020-10-07,1 -120.52.157.131,1,2020-10-06,1 -116.107.239.28,1,2020-10-07,1 -112.35.62.225,1,2020-10-06,1 -196.52.43.57,1,2020-10-07,1 -171.229.106.177,1,2020-10-07,1 -181.175.160.9,1,2020-10-06,1 -116.105.46.247,1,2020-10-07,1 -171.252.204.57,1,2020-10-07,1 -196.52.43.96,1,2020-10-07,1 -27.65.31.19,1,2020-10-07,1 -85.209.0.230,1,2020-10-06,1 -171.242.99.105,1,2020-10-07,1 -192.241.232.192,1,2020-10-06,1 -116.100.222.94,1,2020-10-07,1 -27.68.30.93,1,2020-10-07,1 -175.140.43.246,1,2020-10-06,1 -27.77.205.182,1,2020-10-07,1 -203.222.16.66,1,2020-10-06,1 -149.115.209.221,1,2020-10-06,1 -171.224.136.141,1,2020-10-07,1 -171.252.204.69,1,2020-10-07,1 -116.109.166.90,1,2020-10-06,1 -173.33.65.93,1,2020-10-06,1 -209.17.97.58,1,2020-10-06,1 -196.52.43.88,1,2020-10-06,1 -103.225.207.51,1,2020-10-06,1 diff --git a/cyences_app_for_splunk/lookups/ip_range_blocked_list.csv b/cyences_app_for_splunk/lookups/ip_range_blocked_list.csv deleted file mode 100644 index d6d8bc1f..00000000 --- a/cyences_app_for_splunk/lookups/ip_range_blocked_list.csv +++ /dev/null @@ -1,2696 +0,0 @@ -ip,blocked -0.0.0.0/8,1 -1.10.16.0/20,1 -1.19.0.0/16,1 -1.32.128.0/18,1 -2.58.176.0/22,1 -2.59.200.0/22,1 -3.90.198.217,1 -5.44.248.0/21,1 -5.57.208.0/21,1 -5.63.155.65,1 -5.79.79.211,1 -5.134.128.0/19,1 -5.157.84.170,1 -5.172.176.0/21,1 -5.180.4.0/22,1 -5.180.102.147,1 -5.183.60.0/22,1 -5.188.10.0/23,1 -5.188.86.0/24,1 -10.0.0.0/8,1 -13.90.196.81,1 -14.128.136.68,1 -14.192.4.35,1 -18.213.250.117,1 -18.215.128.143,1 -18.218.40.17,1 -18.224.184.93,1 -23.89.20.107,1 -23.89.102.123,1 -23.89.102.127,1 -23.107.49.18,1 -23.107.124.53,1 -23.110.15.74,1 -23.135.225.0/24,1 -23.227.38.65,1 -23.229.213.5,1 -23.231.218.195,1 -23.236.62.147,1 -24.233.0.0/19,1 -27.112.32.0/19,1 -27.124.64.0/20,1 -27.126.160.0/20,1 -27.146.0.0/16,1 -31.11.32.144,1 -31.14.65.0/24,1 -31.14.66.0/23,1 -31.40.164.0/22,1 -31.132.36.0/22,1 -31.184.237.0/24,1 -31.186.169.41,1 -31.217.192.121,1 -31.217.248.0/21,1 -31.222.224.0/19,1 -34.197.76.50,1 -34.206.12.234,1 -34.225.182.233,1 -35.169.58.188,1 -35.186.238.101,1 -35.187.36.248,1 -35.209.70.88,1 -35.214.186.61,1 -35.224.11.86,1 -35.226.69.129,1 -36.0.8.0/21,1 -36.37.48.0/20,1 -36.50.0.0/16,1 -36.116.0.0/16,1 -36.119.0.0/16,1 -37.9.42.0/24,1 -37.16.72.0/21,1 -37.77.144.0/21,1 -37.140.216.0/21,1 -37.140.240.0/20,1 -37.152.88.55,1 -37.156.64.0/23,1 -37.156.173.0/24,1 -37.252.220.0/22,1 -38.39.160.0/20,1 -40.255.0.62,1 -41.77.240.0/21,1 -41.93.128.0/17,1 -42.0.32.0/19,1 -42.1.128.0/17,1 -42.96.0.0/18,1 -42.128.0.0/12,1 -42.160.0.0/12,1 -42.194.128.0/17,1 -42.208.0.0/12,1 -43.57.0.0/16,1 -43.181.0.0/16,1 -43.227.184.0/22,1 -43.228.164.0/22,1 -43.228.172.0/22,1 -43.229.52.0/22,1 -43.230.112.86,1 -43.230.142.125,1 -43.231.130.0/24,1 -43.236.0.0/16,1 -43.241.196.105,1 -43.241.244.0/22,1 -43.248.56.0/22,1 -43.250.116.0/22,1 -43.250.180.0/22,1 -43.252.80.0/22,1 -45.4.128.0/22,1 -45.4.136.0/22,1 -45.6.48.0/22,1 -45.9.148.0/22,1 -45.9.156.0/22,1 -45.11.184.0/21,1 -45.33.2.79,1 -45.33.23.183,1 -45.38.3.236,1 -45.41.0.0/18,1 -45.41.192.0/18,1 -45.43.128.0/18,1 -45.56.79.23,1 -45.59.128.0/18,1 -45.65.32.0/22,1 -45.65.56.0/23,1 -45.65.112.0/22,1 -45.65.120.0/22,1 -45.65.188.0/22,1 -45.77.226.209,1 -45.79.19.196,1 -45.80.216.0/22,1 -45.80.248.0/22,1 -45.82.253.244,1 -45.86.20.0/22,1 -45.88.202.115,1 -45.95.40.0/22,1 -45.95.168.0/24,1 -45.114.106.55,1 -45.114.240.0/22,1 -45.115.16.0/22,1 -45.117.52.0/22,1 -45.117.132.0/22,1 -45.117.208.0/22,1 -45.117.232.0/22,1 -45.121.204.0/22,1 -45.123.140.0/22,1 -45.126.40.0/22,1 -45.129.33.0/24,1 -45.130.100.0/22,1 -45.135.193.0/24,1 -45.136.245.235,1 -45.147.148.0/22,1 -45.150.108.0/22,1 -45.153.203.0/24,1 -45.159.56.0/22,1 -45.190.220.0/24,1 -45.202.208.234,1 -45.204.37.242,1 -45.204.41.153,1 -45.220.64.0/18,1 -45.227.61.0/24,1 -45.227.255.0/24,1 -45.249.224.0/22,1 -46.18.104.0/21,1 -46.28.105.107,1 -46.30.215.126,1 -46.30.215.145,1 -46.30.215.194,1 -46.102.177.0/24,1 -46.102.178.0/23,1 -46.102.180.0/24,1 -46.102.182.0/23,1 -46.102.190.0/24,1 -46.148.112.0/24,1 -46.148.120.0/24,1 -46.148.127.0/24,1 -46.165.220.141,1 -46.165.220.142/31,1 -46.165.220.144/29,1 -46.165.220.152/30,1 -46.165.221.136,1 -46.165.221.144,1 -46.165.221.154,1 -46.165.229.164/30,1 -46.165.254.193,1 -46.165.254.194/31,1 -46.165.254.196/30,1 -46.165.254.200/29,1 -46.165.254.208/30,1 -46.165.254.212/31,1 -46.165.254.214,1 -46.174.204.0/22,1 -46.226.120.0/21,1 -46.232.192.0/21,1 -46.242.242.252,1 -46.249.43.105,1 -46.254.104.0/21,1 -49.156.160.0/19,1 -49.213.32.0/19,1 -49.238.64.0/18,1 -50.63.103.1,1 -50.87.145.146,1 -50.87.146.132,1 -50.93.202.39,1 -50.118.129.167,1 -52.0.217.44,1 -52.4.209.250,1 -52.58.78.16,1 -52.63.118.238,1 -52.218.36.4,1 -52.218.98.4,1 -52.218.100.36,1 -54.72.11.253,1 -54.88.108.200,1 -54.208.77.124,1 -58.2.0.0/17,1 -58.14.0.0/15,1 -58.145.176.0/21,1 -59.153.60.0/22,1 -59.188.232.88,1 -59.191.232.0/21,1 -59.254.0.0/15,1 -60.233.0.0/16,1 -61.11.224.0/19,1 -61.45.251.0/24,1 -62.97.115.37,1 -62.112.16.0/21,1 -62.122.184.0/21,1 -62.129.200.14,1 -62.149.128.72,1 -62.149.128.74,1 -62.149.128.151,1 -62.149.128.154,1 -62.149.128.157,1 -62.149.128.160,1 -62.149.128.163,1 -62.149.128.166,1 -62.149.142.219,1 -62.153.122.95,1 -62.204.32.0/19,1 -62.233.32.0/19,1 -63.141.34.0/23,1 -63.141.36.0/23,1 -63.251.106.29,1 -64.21.149.167,1 -64.68.200.46,1 -64.95.103.189,1 -64.135.149.51,1 -64.207.140.209,1 -64.235.41.10,1 -65.127.154.211,1 -66.29.58.119,1 -66.96.149.31,1 -66.175.208.22,1 -67.20.112.155,1 -67.23.117.19,1 -67.59.157.51,1 -67.213.112.0/20,1 -67.229.184.183,1 -68.66.216.25,1 -68.71.58.245,1 -69.15.64.241,1 -69.41.162.77,1 -69.87.176.0/20,1 -69.103.233.16,1 -69.191.176.179,1 -69.195.124.132,1 -72.5.161.7,1 -72.26.218.70,1 -72.26.218.83,1 -74.114.148.0/22,1 -74.208.215.45,1 -74.208.236.219,1 -74.220.199.8,1 -75.5.255.185,1 -77.36.62.0/24,1 -77.72.80.0/21,1 -77.81.84.0/23,1 -77.81.86.0/24,1 -77.81.89.0/24,1 -77.81.90.0/23,1 -77.87.120.0/21,1 -77.111.240.32,1 -77.111.240.52,1 -77.246.240.0/21,1 -78.24.9.52,1 -78.46.156.194,1 -78.47.106.15,1 -79.110.22.0/24,1 -79.110.224.0/20,1 -79.170.40.236,1 -80.67.28.246,1 -80.71.144.0/20,1 -80.85.86.6,1 -80.237.132.180,1 -80.237.132.244,1 -81.2.194.62,1 -81.2.194.128,1 -81.2.194.176,1 -81.169.145.68,1 -81.169.145.83,1 -81.169.145.84,1 -81.169.145.88,1 -81.169.145.93,1 -81.169.145.94,1 -81.169.145.105,1 -81.169.145.144,1 -81.169.145.159,1 -81.169.145.160/31,1 -81.177.165.51,1 -82.98.135.43,1 -82.100.220.53,1 -82.112.184.197,1 -82.220.91.188,1 -83.97.20.0/24,1 -83.175.0.0/18,1 -84.38.224.155,1 -84.238.160.0/22,1 -84.246.80.0/21,1 -84.246.104.0/21,1 -85.13.129.76,1 -85.13.132.239,1 -85.13.158.14,1 -85.114.135.128,1 -85.121.39.0/24,1 -85.128.185.12,1 -85.153.47.0/24,1 -85.209.4.0/22,1 -85.236.47.218,1 -86.55.40.0/22,1 -86.104.0.0/23,1 -86.104.2.0/24,1 -86.104.212.0/23,1 -86.104.222.0/23,1 -86.104.224.0/23,1 -86.105.2.0/24,1 -86.105.6.0/24,1 -86.105.176.0/24,1 -86.105.178.0/24,1 -86.105.184.0/23,1 -86.105.186.0/24,1 -86.105.229.0/24,1 -86.105.230.0/24,1 -86.105.242.0/23,1 -86.106.10.0/24,1 -86.106.13.0/24,1 -86.106.14.0/23,1 -86.106.94.0/23,1 -86.106.105.0/24,1 -86.106.106.0/23,1 -86.106.109.0/24,1 -86.106.110.0/23,1 -86.106.114.0/23,1 -86.106.116.0/23,1 -86.106.118.0/24,1 -86.106.138.0/23,1 -86.106.140.0/23,1 -86.106.174.0/23,1 -86.107.72.0/24,1 -86.107.193.0/24,1 -86.107.194.0/23,1 -87.98.230.60,1 -87.236.144.0/21,1 -87.236.160.0/21,1 -87.251.74.0/24,1 -88.198.56.106,1 -88.214.26.0/24,1 -88.218.40.0/22,1 -88.218.148.0/22,1 -89.31.143.1,1 -89.32.43.0/24,1 -89.32.170.0/24,1 -89.32.202.0/24,1 -89.33.46.0/23,1 -89.33.116.0/24,1 -89.33.134.0/24,1 -89.33.198.0/23,1 -89.33.200.0/23,1 -89.33.206.0/24,1 -89.33.250.0/23,1 -89.33.254.0/23,1 -89.34.0.0/24,1 -89.34.4.0/24,1 -89.34.102.0/24,1 -89.34.104.0/23,1 -89.35.54.0/24,1 -89.35.89.0/24,1 -89.35.90.0/24,1 -89.36.38.0/23,1 -89.36.136.0/24,1 -89.36.138.0/23,1 -89.36.141.0/24,1 -89.37.92.0/23,1 -89.37.94.0/24,1 -89.37.96.0/24,1 -89.37.129.0/24,1 -89.37.130.0/23,1 -89.37.132.0/23,1 -89.37.134.0/24,1 -89.38.240.0/24,1 -89.39.69.0/24,1 -89.39.212.0/24,1 -89.39.215.0/24,1 -89.39.241.0/24,1 -89.40.138.0/24,1 -89.40.140.0/23,1 -89.40.207.0/24,1 -89.40.209.0/24,1 -89.41.27.0/24,1 -89.41.28.0/23,1 -89.41.49.0/24,1 -89.41.50.0/23,1 -89.41.189.0/24,1 -89.41.190.0/23,1 -89.42.10.0/24,1 -89.42.152.0/23,1 -89.42.154.0/24,1 -89.45.82.0/24,1 -89.46.47.0/24,1 -89.46.108.57,1 -89.107.8.0/21,1 -89.188.24.70,1 -89.223.109.60,1 -91.121.59.137,1 -91.121.154.229,1 -91.132.164.0/22,1 -91.174.205.10,1 -91.193.75.0/24,1 -91.195.240.13,1 -91.195.240.82,1 -91.195.240.87,1 -91.197.196.0/22,1 -91.199.77.50,1 -91.200.12.0/22,1 -91.200.81.0/24,1 -91.200.82.0/23,1 -91.200.133.0/24,1 -91.200.164.0/24,1 -91.200.248.0/22,1 -91.212.28.29,1 -91.216.3.0/24,1 -91.218.236.0/22,1 -91.220.163.0/24,1 -91.223.145.130,1 -91.232.18.0/24,1 -91.234.99.0/24,1 -91.235.130.0/23,1 -91.243.90.0/23,1 -91.243.93.0/24,1 -91.246.176.0/21,1 -91.246.200.0/24,1 -92.43.203.171,1 -92.53.96.22,1 -92.61.39.239,1 -92.63.197.0/24,1 -93.89.19.124,1 -93.93.200.0/21,1 -93.114.51.0/24,1 -93.114.52.0/23,1 -93.114.54.0/24,1 -93.114.58.0/23,1 -93.115.59.0/24,1 -93.119.118.0/23,1 -93.119.120.0/23,1 -93.119.124.0/23,1 -93.120.34.0/24,1 -93.120.46.0/24,1 -93.157.104.0/21,1 -93.185.103.42,1 -94.102.49.0/24,1 -94.102.51.0/24,1 -94.124.72.0/21,1 -94.130.109.30,1 -94.152.8.56,1 -94.154.32.0/22,1 -94.154.112.0/20,1 -94.229.72.116,1 -94.229.72.123,1 -94.247.136.0/21,1 -95.130.224.0/21,1 -96.30.52.60,1 -96.126.123.244,1 -100.64.0.0/10,1 -101.42.0.0/16,1 -101.101.96.0/22,1 -101.134.0.0/15,1 -101.192.0.0/14,1 -101.203.128.0/19,1 -101.248.0.0/15,1 -102.192.0.0/12,1 -102.208.0.0/13,1 -102.216.0.0/14,1 -102.220.0.0/16,1 -102.221.0.0/17,1 -102.221.132.0/22,1 -102.221.136.0/21,1 -102.221.144.0/21,1 -102.221.152.0/22,1 -102.221.164.0/22,1 -102.221.180.0/22,1 -102.221.248.0/22,1 -102.222.4.0/22,1 -102.222.12.0/22,1 -102.222.60.0/24,1 -102.222.172.0/24,1 -102.222.174.0/24,1 -102.223.180.0/22,1 -102.223.184.0/21,1 -102.228.0.0/16,1 -102.232.0.0/16,1 -102.240.0.0/16,1 -103.1.156.0/22,1 -103.4.76.0/22,1 -103.4.80.0/22,1 -103.4.135.0/24,1 -103.4.217.55,1 -103.5.149.0/24,1 -103.5.216.0/22,1 -103.6.119.0/24,1 -103.6.120.0/21,1 -103.6.160.0/23,1 -103.6.166.0/24,1 -103.6.232.0/22,1 -103.7.120.0/22,1 -103.7.192.0/22,1 -103.8.64.0/22,1 -103.8.184.0/22,1 -103.8.192.0/22,1 -103.9.140.0/22,1 -103.10.68.0/22,1 -103.10.108.0/24,1 -103.10.111.0/24,1 -103.10.127.0/24,1 -103.10.192.0/22,1 -103.11.196.0/22,1 -103.12.0.0/24,1 -103.12.85.0/24,1 -103.12.180.0/22,1 -103.12.204.0/22,1 -103.12.224.0/22,1 -103.12.244.0/24,1 -103.13.4.0/22,1 -103.13.72.0/23,1 -103.13.136.0/22,1 -103.13.164.0/22,1 -103.13.182.0/24,1 -103.13.192.0/22,1 -103.13.204.0/22,1 -103.13.232.0/22,1 -103.14.0.0/24,1 -103.14.22.0/23,1 -103.14.56.0/22,1 -103.14.148.0/24,1 -103.14.150.0/23,1 -103.14.154.0/23,1 -103.14.168.0/22,1 -103.14.208.0/22,1 -103.14.224.0/22,1 -103.15.12.0/22,1 -103.15.38.0/24,1 -103.15.88.0/21,1 -103.15.156.0/23,1 -103.15.160.0/22,1 -103.15.212.0/22,1 -103.15.220.0/22,1 -103.15.227.0/24,1 -103.16.4.0/23,1 -103.16.76.0/24,1 -103.16.116.0/22,1 -103.16.208.0/23,1 -103.16.212.0/22,1 -103.16.248.0/22,1 -103.17.4.0/22,1 -103.17.32.0/22,1 -103.17.148.0/22,1 -103.18.44.0/22,1 -103.18.112.0/22,1 -103.18.184.0/22,1 -103.18.188.0/24,1 -103.18.204.0/22,1 -103.18.232.0/22,1 -103.19.28.0/22,1 -103.19.48.0/22,1 -103.19.120.0/22,1 -103.19.156.0/22,1 -103.20.16.0/24,1 -103.20.50.0/24,1 -103.20.88.0/24,1 -103.20.96.0/21,1 -103.20.108.0/22,1 -103.20.198.0/23,1 -103.20.219.0/24,1 -103.20.228.0/22,1 -103.20.240.0/22,1 -103.21.4.0/22,1 -103.21.68.0/22,1 -103.21.96.0/22,1 -103.21.100.0/23,1 -103.21.102.0/24,1 -103.21.188.0/22,1 -103.21.195.0/24,1 -103.21.220.0/22,1 -103.22.96.0/22,1 -103.22.216.0/22,1 -103.23.8.0/22,1 -103.23.28.0/24,1 -103.23.68.0/23,1 -103.23.88.0/21,1 -103.23.124.0/22,1 -103.23.148.0/23,1 -103.23.172.0/23,1 -103.23.196.0/22,1 -103.23.252.0/22,1 -103.24.52.0/22,1 -103.24.68.0/22,1 -103.24.78.0/23,1 -103.24.88.0/22,1 -103.24.192.0/23,1 -103.24.196.0/22,1 -103.24.232.0/22,1 -103.25.164.0/24,1 -103.25.184.0/22,1 -103.25.220.0/24,1 -103.26.24.0/21,1 -103.26.116.0/22,1 -103.26.176.0/22,1 -103.26.188.0/22,1 -103.27.192.0/22,1 -103.27.255.0/24,1 -103.28.16.0/22,1 -103.29.0.0/22,1 -103.29.8.0/22,1 -103.29.29.0/24,1 -103.29.60.0/22,1 -103.29.80.0/22,1 -103.29.180.0/22,1 -103.29.236.0/22,1 -103.30.8.0/21,1 -103.30.60.0/22,1 -103.30.72.0/22,1 -103.30.104.0/22,1 -103.30.192.0/22,1 -103.30.212.0/24,1 -103.31.8.0/22,1 -103.31.40.0/22,1 -103.31.116.0/22,1 -103.32.0.0/16,1 -103.34.0.0/16,1 -103.35.114.0/23,1 -103.35.152.0/22,1 -103.35.176.0/22,1 -103.35.216.0/24,1 -103.35.219.0/24,1 -103.36.64.0/22,1 -103.36.70.0/24,1 -103.36.250.0/24,1 -103.37.4.0/22,1 -103.37.22.0/23,1 -103.37.88.0/22,1 -103.37.96.0/23,1 -103.37.98.0/24,1 -103.37.184.0/22,1 -103.37.202.0/23,1 -103.38.8.0/24,1 -103.38.52.0/22,1 -103.38.108.0/22,1 -103.38.180.0/22,1 -103.38.208.0/22,1 -103.38.216.0/23,1 -103.38.220.0/22,1 -103.38.236.0/22,1 -103.38.244.0/22,1 -103.38.248.0/22,1 -103.39.32.0/22,1 -103.39.68.0/22,1 -103.39.72.0/22,1 -103.39.120.0/23,1 -103.39.124.0/22,1 -103.39.144.0/22,1 -103.39.196.0/22,1 -103.40.52.0/23,1 -103.40.156.0/22,1 -103.40.166.0/23,1 -103.41.72.0/21,1 -103.41.92.0/22,1 -103.41.112.0/22,1 -103.41.168.0/24,1 -103.41.248.0/22,1 -103.42.4.0/22,1 -103.42.12.0/22,1 -103.42.18.0/24,1 -103.42.50.0/23,1 -103.42.52.0/22,1 -103.42.60.0/22,1 -103.42.128.0/22,1 -103.42.164.0/22,1 -103.42.200.0/22,1 -103.42.204.0/24,1 -103.42.220.0/22,1 -103.42.228.0/22,1 -103.42.240.0/21,1 -103.43.24.0/22,1 -103.43.60.0/22,1 -103.43.94.0/23,1 -103.43.164.0/22,1 -103.44.8.0/22,1 -103.44.19.0/24,1 -103.44.152.0/22,1 -103.46.4.0/22,1 -103.46.8.0/22,1 -103.46.184.0/22,1 -103.46.199.0/24,1 -103.47.8.0/22,1 -103.47.128.0/22,1 -103.47.180.0/22,1 -103.48.40.0/22,1 -103.48.117.0/24,1 -103.48.160.0/22,1 -103.48.200.0/24,1 -103.49.48.0/22,1 -103.49.70.0/23,1 -103.49.100.0/22,1 -103.49.112.0/22,1 -103.49.124.0/23,1 -103.49.146.0/24,1 -103.49.150.0/24,1 -103.49.164.0/22,1 -103.49.236.0/22,1 -103.50.20.0/22,1 -103.50.149.0/24,1 -103.51.62.0/23,1 -103.51.84.0/22,1 -103.51.88.0/22,1 -103.51.96.0/22,1 -103.51.104.0/22,1 -103.51.120.0/22,1 -103.51.129.0/24,1 -103.51.204.0/22,1 -103.52.4.0/23,1 -103.52.6.0/24,1 -103.52.63.0/24,1 -103.52.112.0/22,1 -103.52.133.0/24,1 -103.53.28.0/22,1 -103.53.156.0/22,1 -103.53.160.0/22,1 -103.54.76.0/22,1 -103.54.80.0/22,1 -103.54.108.0/23,1 -103.54.168.0/22,1 -103.54.176.0/22,1 -103.54.228.0/22,1 -103.55.4.0/22,1 -103.55.20.0/22,1 -103.55.178.0/24,1 -103.55.224.0/22,1 -103.55.240.0/22,1 -103.55.248.0/21,1 -103.56.0.0/22,1 -103.56.80.0/22,1 -103.56.92.0/22,1 -103.57.64.0/22,1 -103.57.96.0/22,1 -103.57.128.0/22,1 -103.57.224.0/23,1 -103.58.119.0/24,1 -103.58.180.0/23,1 -103.58.196.0/22,1 -103.59.160.0/22,1 -103.59.216.0/22,1 -103.60.4.0/22,1 -103.60.88.0/21,1 -103.60.97.0/24,1 -103.60.188.0/22,1 -103.60.204.0/22,1 -103.60.240.0/22,1 -103.61.4.0/22,1 -103.61.16.0/22,1 -103.61.40.0/24,1 -103.61.120.0/22,1 -103.61.232.0/22,1 -103.62.148.0/22,1 -103.63.24.0/23,1 -103.63.191.0/24,1 -103.63.232.0/24,1 -103.64.128.0/22,1 -103.65.116.0/22,1 -103.65.120.0/21,1 -103.65.128.0/20,1 -103.65.204.0/22,1 -103.65.220.0/22,1 -103.65.224.0/22,1 -103.65.240.0/22,1 -103.65.248.0/22,1 -103.66.38.0/24,1 -103.66.60.0/22,1 -103.66.168.0/23,1 -103.66.228.0/22,1 -103.66.236.0/22,1 -103.67.24.0/23,1 -103.67.40.0/21,1 -103.67.48.0/20,1 -103.67.64.0/19,1 -103.67.96.0/22,1 -103.67.160.0/22,1 -103.67.186.0/23,1 -103.68.24.0/24,1 -103.68.26.0/24,1 -103.68.56.0/23,1 -103.68.84.0/22,1 -103.68.95.0/24,1 -103.68.126.0/23,1 -103.68.139.0/24,1 -103.68.212.0/22,1 -103.68.232.0/22,1 -103.69.2.0/23,1 -103.69.60.0/22,1 -103.69.129.0/24,1 -103.69.160.0/22,1 -103.69.200.0/22,1 -103.69.236.0/22,1 -103.69.255.0/24,1 -103.70.12.0/22,1 -103.70.36.0/23,1 -103.70.176.0/22,1 -103.70.226.182,1 -103.71.25.0/24,1 -103.71.96.0/23,1 -103.71.188.0/24,1 -103.71.220.0/22,1 -103.72.89.0/24,1 -103.72.136.0/22,1 -103.72.196.0/22,1 -103.72.200.0/24,1 -103.72.212.0/22,1 -103.73.86.0/23,1 -103.73.158.0/23,1 -103.73.172.0/22,1 -103.73.184.0/22,1 -103.73.192.0/23,1 -103.73.216.0/22,1 -103.74.8.0/22,1 -103.74.65.0/24,1 -103.74.225.0/24,1 -103.75.36.0/22,1 -103.75.84.0/22,1 -103.76.0.0/23,1 -103.76.91.0/24,1 -103.76.96.0/22,1 -103.76.104.0/21,1 -103.76.116.0/22,1 -103.76.120.0/22,1 -103.76.128.0/22,1 -103.76.162.0/23,1 -103.76.178.0/24,1 -103.76.192.0/22,1 -103.77.14.0/24,1 -103.77.32.0/22,1 -103.77.81.0/24,1 -103.78.51.0/24,1 -103.78.186.0/23,1 -103.78.240.0/24,1 -103.79.48.0/22,1 -103.79.128.0/22,1 -103.79.229.0/24,1 -103.79.236.0/22,1 -103.79.244.0/22,1 -103.80.8.0/22,1 -103.80.78.0/23,1 -103.80.131.0/24,1 -103.80.212.0/22,1 -103.80.228.0/22,1 -103.81.28.0/22,1 -103.81.55.0/24,1 -103.81.103.0/24,1 -103.81.108.0/22,1 -103.81.245.0/24,1 -103.81.252.0/22,1 -103.82.92.0/22,1 -103.82.200.0/22,1 -103.82.246.0/24,1 -103.83.28.0/22,1 -103.83.132.0/22,1 -103.83.151.0/24,1 -103.83.162.0/23,1 -103.83.236.0/22,1 -103.84.56.0/22,1 -103.84.100.0/22,1 -103.84.104.0/22,1 -103.84.168.0/22,1 -103.84.196.0/22,1 -103.84.204.0/22,1 -103.85.52.0/22,1 -103.85.56.0/22,1 -103.85.132.0/23,1 -103.85.180.0/22,1 -103.85.184.0/22,1 -103.85.244.0/22,1 -103.86.116.0/22,1 -103.86.128.0/23,1 -103.87.148.0/22,1 -103.88.52.0/24,1 -103.88.79.0/24,1 -103.88.88.0/22,1 -103.88.139.0/24,1 -103.88.152.0/23,1 -103.89.36.0/24,1 -103.89.44.0/22,1 -103.89.240.0/22,1 -103.90.15.0/24,1 -103.90.60.0/22,1 -103.91.55.0/24,1 -103.91.60.0/23,1 -103.91.112.0/23,1 -103.91.137.0/24,1 -103.91.138.0/23,1 -103.91.195.0/24,1 -103.91.224.0/22,1 -103.92.16.0/24,1 -103.92.106.0/23,1 -103.93.18.0/24,1 -103.93.20.0/22,1 -103.93.27.0/24,1 -103.93.32.0/22,1 -103.93.93.0/24,1 -103.93.212.0/22,1 -103.94.100.0/23,1 -103.94.140.0/22,1 -103.94.245.0/24,1 -103.94.250.0/23,1 -103.95.4.0/23,1 -103.95.20.0/22,1 -103.96.52.0/22,1 -103.96.88.0/24,1 -103.96.144.0/22,1 -103.96.224.0/22,1 -103.97.87.0/24,1 -103.97.153.0/24,1 -103.97.196.0/22,1 -103.97.231.0/24,1 -103.98.0.0/22,1 -103.98.122.0/24,1 -103.98.192.0/22,1 -103.99.0.0/22,1 -103.99.27.0/24,1 -103.99.66.0/23,1 -103.99.132.0/22,1 -103.99.136.0/21,1 -103.99.144.0/22,1 -103.99.187.0/24,1 -103.100.168.0/22,1 -103.100.176.0/22,1 -103.100.245.0/24,1 -103.101.40.0/23,1 -103.101.96.0/22,1 -103.101.164.0/23,1 -103.101.216.0/22,1 -103.102.26.0/24,1 -103.102.48.0/23,1 -103.102.54.0/23,1 -103.103.4.0/23,1 -103.103.173.0/24,1 -103.103.216.0/23,1 -103.104.86.0/24,1 -103.104.176.0/24,1 -103.105.22.0/24,1 -103.106.73.0/24,1 -103.106.104.0/22,1 -103.107.136.0/22,1 -103.107.148.0/24,1 -103.107.240.0/22,1 -103.108.172.0/24,1 -103.108.174.0/23,1 -103.109.105.0/24,1 -103.109.149.0/24,1 -103.109.204.0/22,1 -103.110.41.0/24,1 -103.110.220.0/24,1 -103.111.4.0/22,1 -103.111.216.0/24,1 -103.112.194.0/23,1 -103.113.36.0/22,1 -103.113.166.0/23,1 -103.114.63.0/24,1 -103.114.252.0/22,1 -103.115.35.0/24,1 -103.115.88.0/22,1 -103.115.108.0/22,1 -103.116.80.0/22,1 -103.117.10.0/24,1 -103.117.30.0/23,1 -103.117.44.0/22,1 -103.119.80.0/22,1 -103.119.170.0/23,1 -103.120.83.30,1 -103.122.0.0/22,1 -103.122.144.0/22,1 -103.126.26.0/24,1 -103.130.236.0/22,1 -103.131.182.0/24,1 -103.133.182.0/23,1 -103.134.144.0/23,1 -103.135.144.0/24,1 -103.136.244.0/23,1 -103.137.151.0/24,1 -103.145.13.0/24,1 -103.151.129.0/24,1 -103.157.35.0/24,1 -103.157.38.0/23,1 -103.157.40.0/21,1 -103.157.48.0/20,1 -103.157.64.0/18,1 -103.157.128.0/17,1 -103.158.0.0/15,1 -103.160.0.0/11,1 -103.192.81.0/24,1 -103.192.174.0/24,1 -103.193.72.0/22,1 -103.193.164.0/24,1 -103.193.176.0/22,1 -103.194.46.0/23,1 -103.194.228.0/24,1 -103.195.17.0/24,1 -103.195.28.0/24,1 -103.196.0.0/22,1 -103.196.15.0/24,1 -103.196.26.0/23,1 -103.196.85.0/24,1 -103.196.144.0/22,1 -103.196.152.0/22,1 -103.196.164.0/22,1 -103.196.176.0/22,1 -103.196.184.0/22,1 -103.197.8.0/22,1 -103.197.50.0/24,1 -103.197.76.0/22,1 -103.197.90.0/23,1 -103.197.156.0/22,1 -103.197.184.0/23,1 -103.197.240.0/22,1 -103.197.252.0/22,1 -103.198.26.0/23,1 -103.198.94.0/23,1 -103.198.129.0/24,1 -103.198.152.0/22,1 -103.198.211.0/24,1 -103.199.88.0/22,1 -103.199.117.0/24,1 -103.199.140.0/22,1 -103.200.204.0/22,1 -103.202.226.0/24,1 -103.203.88.0/23,1 -103.203.90.0/24,1 -103.203.204.0/22,1 -103.204.44.0/22,1 -103.204.71.0/24,1 -103.204.92.0/22,1 -103.204.116.0/24,1 -103.204.216.0/23,1 -103.205.36.0/23,1 -103.205.60.0/22,1 -103.205.84.0/22,1 -103.205.185.0/24,1 -103.205.220.0/22,1 -103.206.16.0/22,1 -103.206.29.0/24,1 -103.206.72.0/23,1 -103.206.98.0/24,1 -103.206.154.0/23,1 -103.206.158.0/24,1 -103.207.17.0/24,1 -103.207.60.0/22,1 -103.207.88.0/22,1 -103.207.103.0/24,1 -103.207.160.0/22,1 -103.208.64.0/22,1 -103.208.88.0/22,1 -103.209.32.0/22,1 -103.209.60.0/22,1 -103.209.72.0/22,1 -103.209.92.0/23,1 -103.209.94.0/24,1 -103.209.108.0/23,1 -103.209.128.0/23,1 -103.209.132.0/22,1 -103.209.154.0/23,1 -103.209.212.0/22,1 -103.210.52.0/22,1 -103.210.68.0/22,1 -103.210.114.0/23,1 -103.210.126.0/23,1 -103.210.128.0/22,1 -103.210.209.0/24,1 -103.210.210.0/24,1 -103.210.224.0/22,1 -103.210.244.0/22,1 -103.210.250.0/24,1 -103.211.4.0/23,1 -103.211.26.0/23,1 -103.211.104.0/22,1 -103.211.160.0/22,1 -103.211.168.0/22,1 -103.211.196.0/24,1 -103.211.200.0/21,1 -103.212.152.0/22,1 -103.212.160.0/22,1 -103.212.172.0/22,1 -103.212.177.0/24,1 -103.212.178.0/23,1 -103.212.184.0/22,1 -103.212.210.0/24,1 -103.213.196.0/22,1 -103.213.229.0/24,1 -103.213.230.0/23,1 -103.213.232.0/22,1 -103.213.252.0/22,1 -103.214.40.0/24,1 -103.214.96.0/23,1 -103.214.160.0/22,1 -103.214.176.0/24,1 -103.214.178.0/23,1 -103.214.224.0/22,1 -103.215.60.0/22,1 -103.215.73.0/24,1 -103.215.75.0/24,1 -103.215.80.0/22,1 -103.215.112.0/22,1 -103.215.180.0/22,1 -103.215.232.0/23,1 -103.216.99.0/24,1 -103.216.134.0/24,1 -103.217.76.0/24,1 -103.217.98.0/23,1 -103.217.107.0/24,1 -103.218.104.0/22,1 -103.218.180.0/22,1 -103.219.224.0/22,1 -103.220.22.0/23,1 -103.220.44.0/23,1 -103.221.64.0/22,1 -103.221.236.0/22,1 -103.222.252.0/22,1 -103.224.16.0/22,1 -103.224.55.0/24,1 -103.224.76.0/22,1 -103.224.92.0/22,1 -103.224.124.0/23,1 -103.224.126.0/24,1 -103.224.172.0/22,1 -103.224.212.222,1 -103.225.44.0/23,1 -103.225.72.0/22,1 -103.225.97.0/24,1 -103.225.116.0/22,1 -103.225.128.0/22,1 -103.225.216.0/22,1 -103.225.243.0/24,1 -103.225.252.0/22,1 -103.226.24.0/22,1 -103.226.116.0/22,1 -103.226.192.0/22,1 -103.227.4.0/22,1 -103.227.92.0/22,1 -103.227.184.0/22,1 -103.227.248.0/22,1 -103.228.8.0/22,1 -103.228.18.0/24,1 -103.228.48.0/24,1 -103.228.60.0/22,1 -103.228.72.0/22,1 -103.228.103.0/24,1 -103.229.0.0/24,1 -103.229.14.0/23,1 -103.229.36.0/22,1 -103.229.52.0/22,1 -103.229.88.0/22,1 -103.229.97.0/24,1 -103.229.131.0/24,1 -103.229.188.0/22,1 -103.229.232.0/22,1 -103.230.40.0/22,1 -103.230.81.0/24,1 -103.230.82.0/24,1 -103.230.92.0/22,1 -103.230.128.0/22,1 -103.230.144.0/22,1 -103.230.176.0/22,1 -103.230.244.0/22,1 -103.231.24.0/23,1 -103.231.26.0/24,1 -103.231.236.0/24,1 -103.231.238.0/23,1 -103.231.248.0/23,1 -103.232.20.0/22,1 -103.232.136.0/22,1 -103.232.164.0/22,1 -103.232.172.0/22,1 -103.233.72.0/24,1 -103.233.162.0/23,1 -103.233.176.0/22,1 -103.234.12.0/24,1 -103.234.28.0/22,1 -103.234.32.0/22,1 -103.234.95.0/24,1 -103.234.124.0/22,1 -103.234.150.0/23,1 -103.234.160.0/23,1 -103.234.188.0/22,1 -103.235.160.0/22,1 -103.236.32.0/22,1 -103.236.104.0/22,1 -103.236.128.0/22,1 -103.236.140.0/22,1 -103.236.172.0/22,1 -103.236.194.0/23,1 -103.236.212.0/22,1 -103.236.224.0/22,1 -103.237.48.0/22,1 -103.237.84.0/22,1 -103.238.64.0/22,1 -103.238.112.0/22,1 -103.238.152.0/22,1 -103.238.216.0/22,1 -103.239.12.0/22,1 -103.239.20.0/22,1 -103.239.28.0/22,1 -103.239.40.0/22,1 -103.239.56.0/22,1 -103.239.64.0/22,1 -103.239.88.0/22,1 -103.239.148.0/22,1 -103.239.172.0/22,1 -103.239.214.0/23,1 -103.240.0.0/21,1 -103.240.24.0/22,1 -103.240.56.0/22,1 -103.240.68.0/22,1 -103.241.40.0/22,1 -103.241.149.0/24,1 -103.241.172.0/22,1 -103.241.192.0/22,1 -103.242.8.0/22,1 -103.242.76.0/22,1 -103.242.80.0/22,1 -103.242.86.0/24,1 -103.242.150.0/23,1 -103.242.234.0/24,1 -103.243.8.0/22,1 -103.243.19.0/24,1 -103.243.124.0/22,1 -103.243.168.0/22,1 -103.243.176.0/24,1 -103.243.228.0/22,1 -103.243.232.0/22,1 -103.243.238.0/24,1 -103.243.244.0/23,1 -103.244.20.0/22,1 -103.244.24.0/22,1 -103.244.49.0/24,1 -103.244.163.0/24,1 -103.244.188.0/23,1 -103.244.224.0/22,1 -103.245.36.0/22,1 -103.245.56.0/22,1 -103.245.156.0/22,1 -103.245.168.0/22,1 -103.245.178.0/23,1 -103.245.236.0/22,1 -103.246.60.0/22,1 -103.246.64.0/22,1 -103.246.72.0/22,1 -103.246.168.0/24,1 -103.247.28.0/22,1 -103.247.67.0/24,1 -103.247.80.0/22,1 -103.247.188.0/24,1 -103.247.240.0/22,1 -103.248.8.0/22,1 -103.248.48.0/22,1 -103.248.140.0/22,1 -103.248.228.0/22,1 -103.248.240.0/22,1 -103.248.250.0/24,1 -103.249.18.0/23,1 -103.249.116.0/22,1 -103.249.200.0/22,1 -103.250.28.0/23,1 -103.250.40.0/24,1 -103.250.62.0/24,1 -103.250.76.0/22,1 -103.250.96.0/21,1 -103.250.108.0/22,1 -103.250.120.0/22,1 -103.250.187.0/24,1 -103.250.196.0/23,1 -103.250.208.0/22,1 -103.250.220.0/23,1 -103.251.8.0/22,1 -103.251.68.0/22,1 -103.251.170.0/24,1 -103.251.252.0/22,1 -103.252.47.0/24,1 -103.252.48.0/24,1 -103.252.72.0/22,1 -103.252.86.0/23,1 -103.252.92.0/22,1 -103.252.120.0/22,1 -103.252.136.0/22,1 -103.252.160.0/24,1 -103.252.180.0/22,1 -103.252.192.0/22,1 -103.253.16.0/21,1 -103.253.100.0/22,1 -103.253.127.0/24,1 -103.253.176.0/22,1 -103.253.228.0/22,1 -103.253.244.0/22,1 -103.254.91.0/24,1 -103.254.124.0/23,1 -103.254.197.0/24,1 -103.254.212.0/22,1 -103.255.28.0/24,1 -103.255.40.0/22,1 -103.255.64.0/22,1 -103.255.96.0/22,1 -103.255.108.0/22,1 -103.255.132.0/22,1 -103.255.160.0/21,1 -103.255.192.0/21,1 -103.255.204.0/22,1 -103.255.208.0/22,1 -103.255.220.0/22,1 -104.18.40.160,1 -104.18.41.160,1 -104.18.58.253,1 -104.18.59.253,1 -104.24.108.81,1 -104.24.109.81,1 -104.27.180.130,1 -104.27.180.160,1 -104.27.181.130,1 -104.27.181.160,1 -104.27.184.30,1 -104.27.185.30,1 -104.28.26.243,1 -104.28.27.243,1 -104.28.28.252,1 -104.28.29.252,1 -104.143.16.0/20,1 -104.149.174.100,1 -104.153.244.0/22,1 -104.156.57.40,1 -104.166.96.0/19,1 -104.171.23.69,1 -104.171.23.70,1 -104.195.23.59,1 -104.197.104.56,1 -104.202.22.13,1 -104.202.87.74,1 -104.203.167.207,1 -104.206.78.18,1 -104.207.64.0/19,1 -104.233.0.0/18,1 -104.239.0.0/17,1 -104.243.192.0/20,1 -104.244.75.32,1 -104.247.96.0/19,1 -104.250.192.0/18,1 -106.95.0.0/16,1 -107.6.74.80,1 -107.6.74.93,1 -107.151.119.204,1 -107.180.41.146,1 -107.182.112.0/20,1 -107.182.240.0/20,1 -107.190.160.0/20,1 -108.59.12.98/31,1 -108.59.12.100,1 -108.61.19.11,1 -108.61.19.14,1 -108.179.252.199,1 -109.70.4.246,1 -109.71.54.17,1 -109.107.128.0/19,1 -109.205.56.0/21,1 -109.234.72.0/21,1 -109.248.10.176,1 -110.41.0.0/16,1 -110.172.24.0/21,1 -111.223.192.0/19,1 -112.78.125.29,1 -112.121.187.246,1 -113.192.0.0/18,1 -113.201.51.0/24,1 -113.212.128.0/19,1 -115.84.168.0/21,1 -115.187.16.0/20,1 -116.79.0.0/16,1 -116.119.0.0/17,1 -116.144.0.0/14,1 -116.199.200.0/21,1 -116.202.231.184,1 -117.58.0.0/17,1 -119.3.179.174,1 -119.58.0.0/16,1 -119.188.157.23,1 -119.227.224.0/19,1 -119.232.0.0/16,1 -120.46.0.0/15,1 -120.48.0.0/15,1 -120.64.0.0/16,1 -120.67.0.0/16,1 -120.107.3.165,1 -120.128.128.0/17,1 -120.129.0.0/16,1 -120.130.0.0/16,1 -120.227.100.34,1 -121.35.145.102,1 -121.40.153.149,1 -121.41.147.32,1 -121.46.72.0/22,1 -121.46.124.0/22,1 -121.54.175.96,1 -121.241.144.35,1 -121.254.178.252,1 -122.8.0.0/16,1 -122.10.99.22,1 -122.102.120.0/21,1 -122.129.0.0/18,1 -123.136.80.0/20,1 -123.254.108.81,1 -124.20.0.0/16,1 -124.68.0.0/15,1 -124.157.0.0/18,1 -124.242.0.0/16,1 -125.31.192.0/18,1 -125.58.0.0/18,1 -125.119.32.0/22,1 -125.169.0.0/16,1 -127.0.0.0/8,1 -128.24.0.0/16,1 -128.85.0.0/16,1 -129.181.96.164,1 -130.21.0.0/16,1 -130.148.0.0/16,1 -130.196.0.0/16,1 -130.211.40.170,1 -130.222.0.0/16,1 -130.229.91.0,1 -131.108.16.0/22,1 -131.143.0.0/16,1 -131.200.0.0/16,1 -132.148.25.127,1 -132.148.231.248,1 -132.213.126.70,1 -132.255.132.0/22,1 -133.37.107.164,1 -133.130.35.90,1 -133.242.195.32,1 -134.18.0.0/16,1 -134.22.0.0/15,1 -134.33.0.0/16,1 -134.73.61.187,1 -134.73.142.227,1 -134.73.209.244,1 -134.127.0.0/16,1 -134.172.0.0/16,1 -137.19.0.0/16,1 -137.31.0.0/16,1 -137.33.0.0/16,1 -137.55.0.0/16,1 -137.72.0.0/16,1 -137.74.151.103,1 -137.74.217.60,1 -137.76.0.0/16,1 -137.105.0.0/16,1 -137.114.0.0/16,1 -137.218.0.0/16,1 -138.31.0.0/16,1 -138.36.92.0/22,1 -138.36.136.0/22,1 -138.52.0.0/16,1 -138.59.4.0/22,1 -138.59.204.0/22,1 -138.68.142.109,1 -138.94.144.0/22,1 -138.94.216.0/22,1 -138.97.156.0/22,1 -138.122.192.0/22,1 -138.125.0.0/16,1 -138.185.116.0/22,1 -138.186.208.0/22,1 -138.216.0.0/16,1 -138.219.172.0/22,1 -138.249.0.0/16,1 -139.44.0.0/16,1 -139.81.0.0/16,1 -139.188.0.0/16,1 -140.167.0.0/16,1 -141.98.68.0/22,1 -141.98.81.0/24,1 -141.105.126.87,1 -141.136.22.0/24,1 -141.178.0.0/16,1 -141.253.0.0/16,1 -142.102.0.0/16,1 -142.111.199.16,1 -143.0.236.0/22,1 -143.49.0.0/16,1 -143.95.79.234,1 -143.135.0.0/16,1 -143.136.0.0/16,1 -143.215.15.199,1 -143.253.0.0/16,1 -145.131.10.247,1 -145.231.0.0/16,1 -146.3.0.0/16,1 -146.51.0.0/16,1 -146.148.34.125,1 -146.183.0.0/16,1 -146.202.0.0/16,1 -146.252.0.0/16,1 -146.255.184.0/21,1 -147.7.0.0/16,1 -147.16.0.0/14,1 -147.78.224.0/22,1 -147.119.0.0/16,1 -148.148.0.0/16,1 -148.154.0.0/16,1 -148.178.0.0/16,1 -148.185.0.0/16,1 -148.248.0.0/16,1 -149.118.0.0/16,1 -149.207.0.0/16,1 -149.216.106.61,1 -149.255.58.42,1 -150.10.0.0/16,1 -150.22.128.0/17,1 -150.25.0.0/16,1 -150.40.0.0/16,1 -150.95.255.38,1 -150.121.0.0/16,1 -150.129.212.0/22,1 -150.129.228.0/22,1 -150.141.0.0/16,1 -150.242.100.0/22,1 -150.242.120.0/22,1 -150.242.144.0/22,1 -150.242.176.0/22,1 -151.212.0.0/16,1 -152.89.228.0/22,1 -152.109.0.0/16,1 -152.147.0.0/16,1 -153.14.0.0/16,1 -153.52.0.0/14,1 -153.85.0.0/16,1 -153.93.0.0/16,1 -154.65.96.0/20,1 -154.80.242.31,1 -154.90.36.229,1 -154.90.37.102,1 -154.95.135.196,1 -154.195.209.90,1 -154.196.20.154,1 -154.198.219.27,1 -154.212.209.96,1 -154.214.250.73,1 -154.216.243.104,1 -155.11.0.0/16,1 -155.40.0.0/16,1 -155.66.0.0/16,1 -155.71.0.0/16,1 -155.73.0.0/16,1 -155.108.0.0/16,1 -155.159.0.0/16,1 -155.235.0.0/16,1 -155.249.0.0/16,1 -156.0.199.0/24,1 -156.96.0.0/16,1 -156.225.101.57,1 -156.232.185.254,1 -156.234.43.65,1 -156.238.79.182,1 -156.245.93.85,1 -157.7.44.219,1 -157.7.184.14,1 -157.7.184.17,1 -157.7.188.207,1 -157.10.0.0/16,1 -157.15.0.0/16,1 -157.20.0.0/16,1 -157.66.0.0/16,1 -157.115.0.0/16,1 -157.162.0.0/16,1 -157.186.0.0/16,1 -157.195.0.0/16,1 -157.230.67.179,1 -158.54.0.0/16,1 -158.90.0.0/17,1 -158.249.0.0/16,1 -159.8.210.35,1 -159.80.0.0/16,1 -159.85.0.0/16,1 -159.151.0.0/16,1 -159.174.0.0/16,1 -159.219.0.0/16,1 -159.229.0.0/16,1 -160.14.0.0/16,1 -160.16.199.126,1 -160.16.223.90,1 -160.19.16.0/22,1 -160.19.32.0/22,1 -160.19.40.0/22,1 -160.19.56.0/22,1 -160.19.68.0/22,1 -160.19.72.0/21,1 -160.19.80.0/21,1 -160.19.88.0/22,1 -160.19.108.0/22,1 -160.19.144.0/21,1 -160.19.156.0/22,1 -160.19.164.0/22,1 -160.19.176.0/22,1 -160.19.184.0/22,1 -160.19.204.0/22,1 -160.19.228.0/22,1 -160.20.4.0/22,1 -160.20.16.0/22,1 -160.20.36.0/22,1 -160.20.76.0/22,1 -160.20.104.0/22,1 -160.20.116.0/22,1 -160.20.120.0/21,1 -160.20.128.0/20,1 -160.20.212.0/24,1 -160.20.216.0/24,1 -160.20.220.0/24,1 -160.20.224.0/24,1 -160.20.228.0/24,1 -160.20.240.0/24,1 -160.20.244.0/24,1 -160.20.250.0/24,1 -160.21.0.0/16,1 -160.22.0.0/16,1 -160.25.0.0/16,1 -160.30.0.0/16,1 -160.115.0.0/16,1 -160.116.0.0/15,1 -160.121.0.0/16,1 -160.122.0.0/16,1 -160.180.0.0/16,1 -160.181.164.88,1 -160.184.0.0/16,1 -160.187.0.0/16,1 -160.188.0.0/16,1 -160.191.0.0/16,1 -160.200.0.0/16,1 -160.235.0.0/16,1 -160.240.0.0/16,1 -160.250.0.0/16,1 -160.255.0.0/16,1 -161.0.0.0/19,1 -161.0.68.0/22,1 -161.1.0.0/16,1 -161.248.0.0/16,1 -162.144.26.233,1 -162.208.124.0/22,1 -162.209.205.41,1 -162.210.102.66,1 -162.212.188.0/22,1 -162.217.99.132,1 -162.217.99.137,1 -162.222.128.0/21,1 -162.243.55.152,1 -162.255.119.102,1 -162.255.119.204,1 -163.43.102.74,1 -163.47.19.0/24,1 -163.47.22.0/24,1 -163.47.25.0/24,1 -163.47.26.0/23,1 -163.47.28.0/24,1 -163.47.30.0/23,1 -163.47.46.0/24,1 -163.50.0.0/16,1 -163.53.247.0/24,1 -163.59.0.0/16,1 -163.61.0.0/16,1 -163.127.224.0/19,1 -163.128.224.0/19,1 -163.172.86.124,1 -163.198.0.0/16,1 -163.216.0.0/19,1 -163.223.0.0/16,1 -163.227.0.0/24,1 -163.227.2.0/23,1 -163.227.4.0/22,1 -163.227.8.0/21,1 -163.227.16.0/24,1 -163.227.18.0/23,1 -163.227.20.0/22,1 -163.227.24.0/21,1 -163.227.32.0/19,1 -163.227.64.0/19,1 -163.227.96.0/20,1 -163.227.112.0/21,1 -163.227.120.0/22,1 -163.227.124.0/24,1 -163.227.126.0/23,1 -163.227.128.0/18,1 -163.227.192.0/20,1 -163.227.208.0/21,1 -163.227.216.0/22,1 -163.227.220.0/24,1 -163.227.222.0/23,1 -163.227.224.0/24,1 -163.227.228.0/22,1 -163.227.232.0/24,1 -163.227.235.0/24,1 -163.227.236.0/22,1 -163.227.240.0/24,1 -163.227.244.0/22,1 -163.227.248.0/22,1 -163.227.252.0/23,1 -163.227.255.0/24,1 -163.250.0.0/16,1 -163.254.0.0/16,1 -164.6.0.0/16,1 -164.79.0.0/16,1 -164.88.0.0/16,1 -164.137.0.0/16,1 -164.155.0.0/16,1 -165.3.0.0/16,1 -165.25.0.0/16,1 -165.52.0.0/14,1 -165.99.0.0/16,1 -165.101.4.0/22,1 -165.101.8.0/21,1 -165.101.16.0/20,1 -165.101.32.0/19,1 -165.101.64.0/18,1 -165.101.128.0/17,1 -165.102.0.0/16,1 -165.205.0.0/16,1 -165.209.0.0/16,1 -166.93.0.0/16,1 -166.117.0.0/16,1 -167.74.0.0/18,1 -167.97.0.0/16,1 -167.103.0.0/16,1 -167.158.0.0/16,1 -167.160.96.0/19,1 -167.162.0.0/16,1 -167.175.0.0/16,1 -167.224.0.0/19,1 -167.248.133.0/24,1 -167.249.200.0/22,1 -168.0.212.0/22,1 -168.64.0.0/16,1 -168.76.0.0/16,1 -168.80.0.0/15,1 -168.90.96.0/22,1 -168.129.0.0/16,1 -168.151.0.0/22,1 -168.151.4.0/23,1 -168.151.6.0/24,1 -168.151.32.0/21,1 -168.151.43.0/24,1 -168.151.44.0/22,1 -168.151.48.0/22,1 -168.151.52.0/23,1 -168.151.54.0/24,1 -168.151.56.0/21,1 -168.151.64.0/22,1 -168.151.68.0/23,1 -168.151.72.0/21,1 -168.151.80.0/20,1 -168.151.96.0/19,1 -168.151.128.0/20,1 -168.151.145.0/24,1 -168.151.146.0/23,1 -168.151.148.0/22,1 -168.151.152.0/22,1 -168.151.157.0/24,1 -168.151.158.0/23,1 -168.151.160.0/20,1 -168.151.176.0/21,1 -168.151.184.0/22,1 -168.151.192.0/20,1 -168.151.208.0/21,1 -168.151.216.0/22,1 -168.151.220.0/23,1 -168.151.232.0/21,1 -168.151.240.0/21,1 -168.151.248.0/22,1 -168.151.254.0/24,1 -168.181.52.0/22,1 -168.195.76.0/22,1 -168.196.236.0/22,1 -168.196.240.0/22,1 -168.198.0.0/16,1 -168.205.72.0/22,1 -168.206.0.0/16,1 -168.211.0.0/16,1 -168.227.128.0/22,1 -168.227.140.0/22,1 -169.50.13.61,1 -169.239.152.0/22,1 -169.254.0.0/16,1 -170.67.0.0/16,1 -170.83.232.0/22,1 -170.113.0.0/16,1 -170.114.0.0/16,1 -170.120.0.0/16,1 -170.179.0.0/16,1 -170.244.40.0/22,1 -170.244.240.0/22,1 -170.245.40.0/22,1 -170.247.220.0/22,1 -171.25.212.0/22,1 -171.26.0.0/16,1 -172.16.0.0/12,1 -172.98.0.0/18,1 -172.98.192.37,1 -172.104.243.27,1 -172.120.167.67,1 -172.120.168.177,1 -172.252.250.177,1 -173.231.184.61,1 -173.231.184.117,1 -173.231.184.123,1 -173.236.178.74,1 -173.239.5.6,1 -173.239.8.164,1 -174.136.192.0/18,1 -175.100.168.0/21,1 -175.103.64.0/18,1 -175.111.96.0/22,1 -176.56.32.0/21,1 -176.56.192.0/19,1 -176.96.88.0/21,1 -176.100.40.0/21,1 -176.102.120.0/21,1 -176.103.240.0/21,1 -176.116.0.0/19,1 -176.116.232.0/22,1 -176.118.32.0/21,1 -176.119.4.0/24,1 -176.119.7.0/24,1 -176.121.14.0/24,1 -176.126.192.0/23,1 -176.126.194.0/24,1 -176.223.116.0/23,1 -176.223.118.0/24,1 -176.223.160.0/23,1 -177.234.136.0/21,1 -178.22.59.66,1 -178.23.184.0/21,1 -178.159.97.0/24,1 -178.159.100.0/24,1 -178.159.107.0/24,1 -178.212.184.0/21,1 -178.213.176.0/22,1 -178.254.10.14,1 -179.63.0.0/17,1 -180.94.0.0/19,1 -180.131.128.0/21,1 -180.153.100.94,1 -180.178.192.0/18,1 -180.215.129.7,1 -180.236.0.0/14,1 -181.177.64.0/18,1 -185.0.96.0/19,1 -185.14.192.0/23,1 -185.14.195.0/24,1 -185.21.8.0/22,1 -185.26.105.244,1 -185.30.168.0/22,1 -185.39.8.0/22,1 -185.42.107.8,1 -185.51.65.38,1 -185.55.4.0/22,1 -185.55.140.0/22,1 -185.60.201.0/24,1 -185.60.202.0/23,1 -185.63.35.0/24,1 -185.64.23.0/24,1 -185.66.237.14,1 -185.71.0.0/22,1 -185.77.248.0/24,1 -185.80.112.0/22,1 -185.102.48.0/22,1 -185.104.45.33,1 -185.105.56.0/22,1 -185.105.188.0/22,1 -185.110.0.0/22,1 -185.114.108.15,1 -185.116.172.0/23,1 -185.116.175.0/24,1 -185.120.8.0/22,1 -185.120.16.0/22,1 -185.122.128.0/22,1 -185.123.144.0/20,1 -185.123.248.0/21,1 -185.124.0.0/22,1 -185.124.56.0/21,1 -185.126.68.0/22,1 -185.126.116.0/22,1 -185.126.136.0/22,1 -185.126.148.0/22,1 -185.126.160.0/21,1 -185.126.224.0/22,1 -185.126.236.0/22,1 -185.126.248.0/22,1 -185.127.44.0/22,1 -185.127.56.0/22,1 -185.127.68.0/22,1 -185.127.76.0/22,1 -185.127.92.0/22,1 -185.129.8.0/22,1 -185.129.208.0/22,1 -185.130.36.0/22,1 -185.130.40.0/22,1 -185.132.8.0/22,1 -185.134.48.0/22,1 -185.135.140.0/22,1 -185.135.241.4,1 -185.140.53.0/24,1 -185.143.220.0/24,1 -185.143.222.0/23,1 -185.144.180.0/22,1 -185.147.140.0/22,1 -185.156.88.0/21,1 -185.161.148.0/22,1 -185.165.24.0/22,1 -185.165.153.0/24,1 -185.175.93.0/24,1 -185.175.140.0/22,1 -185.176.27.0/24,1 -185.180.192.0/22,1 -185.181.104.74,1 -185.183.8.67,1 -185.184.192.0/22,1 -185.185.48.0/22,1 -185.187.236.0/22,1 -185.194.100.0/22,1 -185.195.188.0/22,1 -185.202.104.0/21,1 -185.203.64.0/22,1 -185.205.71.0/24,1 -185.205.200.0/22,1 -185.206.68.0/22,1 -185.206.120.0/22,1 -185.209.12.0/22,1 -185.209.80.0/22,1 -185.209.240.0/22,1 -185.210.156.0/22,1 -185.210.160.0/22,1 -185.212.32.0/22,1 -185.212.112.0/21,1 -185.213.44.0/22,1 -185.215.112.0/22,1 -185.215.132.0/22,1 -185.216.8.0/22,1 -185.216.48.0/22,1 -185.217.36.0/22,1 -185.217.60.0/22,1 -185.217.140.0/22,1 -185.217.164.0/22,1 -185.219.4.0/22,1 -185.220.80.0/22,1 -185.221.236.0/22,1 -185.222.20.0/22,1 -185.222.208.0/22,1 -185.223.52.0/22,1 -185.223.160.0/22,1 -185.223.204.0/22,1 -185.223.212.0/22,1 -185.224.212.0/22,1 -185.225.8.0/22,1 -185.225.124.0/22,1 -185.225.196.0/22,1 -185.226.96.0/22,1 -185.227.200.0/22,1 -185.228.248.0/22,1 -185.229.204.0/22,1 -185.229.248.0/22,1 -185.230.44.0/22,1 -185.230.100.0/22,1 -185.230.104.0/22,1 -185.230.196.0/22,1 -185.231.56.0/22,1 -185.231.64.0/22,1 -185.231.232.0/22,1 -185.232.40.0/21,1 -185.232.88.0/22,1 -185.232.96.0/22,1 -185.232.116.0/22,1 -185.232.232.0/22,1 -185.232.248.163,1 -185.233.32.0/22,1 -185.233.64.0/22,1 -185.234.8.0/21,1 -185.234.64.0/22,1 -185.234.100.0/22,1 -185.234.108.0/22,1 -185.234.112.0/22,1 -185.234.244.0/22,1 -185.234.252.0/22,1 -185.235.8.0/22,1 -185.235.32.0/22,1 -185.235.60.0/22,1 -185.235.76.0/22,1 -185.235.140.0/22,1 -185.235.144.0/22,1 -185.235.204.0/22,1 -185.235.228.0/22,1 -185.236.44.0/22,1 -185.236.52.0/22,1 -185.236.128.0/22,1 -185.236.140.0/22,1 -185.237.184.0/22,1 -185.237.226.0/23,1 -185.238.112.0/22,1 -185.238.176.0/22,1 -185.239.44.0/22,1 -185.241.8.0/22,1 -185.241.60.0/22,1 -185.241.108.0/22,1 -185.242.0.0/22,1 -185.242.176.0/22,1 -185.242.184.0/22,1 -185.243.0.0/22,1 -185.243.128.0/22,1 -185.244.29.0/24,1 -185.244.30.0/23,1 -185.244.224.0/22,1 -185.244.236.0/22,1 -185.248.32.0/22,1 -185.248.132.0/22,1 -185.249.252.0/22,1 -185.251.12.0/22,1 -185.251.16.0/21,1 -185.251.24.0/22,1 -185.251.36.0/22,1 -185.251.68.0/22,1 -185.251.180.0/22,1 -185.252.192.0/22,1 -185.252.200.0/22,1 -185.252.208.0/21,1 -185.253.0.0/21,1 -185.253.8.0/22,1 -185.253.52.0/22,1 -185.253.56.0/22,1 -185.253.108.0/22,1 -185.254.120.0/22,1 -185.254.164.0/22,1 -185.255.28.0/22,1 -185.255.136.0/22,1 -186.65.112.0/20,1 -186.179.0.0/18,1 -186.202.153.222,1 -188.64.136.0/21,1 -188.94.188.0/22,1 -188.95.64.0/21,1 -188.95.88.0/22,1 -188.165.143.5,1 -188.172.160.0/19,1 -188.208.48.0/21,1 -188.208.109.0/24,1 -188.208.220.0/22,1 -188.209.120.0/21,1 -188.212.254.0/24,1 -188.213.23.0/24,1 -188.213.206.0/23,1 -188.213.214.0/23,1 -188.213.248.0/21,1 -188.214.94.0/23,1 -188.214.140.0/24,1 -188.214.155.0/24,1 -188.214.193.0/24,1 -188.241.211.0/24,1 -188.247.230.0/24,1 -189.50.110.40,1 -190.123.208.0/20,1 -190.185.108.0/22,1 -192.0.0.0/24,1 -192.0.2.0/24,1 -192.5.103.0/24,1 -192.12.131.0/24,1 -192.22.0.0/16,1 -192.26.25.0/24,1 -192.31.212.0/23,1 -192.40.29.0/24,1 -192.43.160.0/24,1 -192.43.175.0/24,1 -192.43.176.0/21,1 -192.43.184.0/24,1 -192.51.172.0/22,1 -192.51.254.0/24,1 -192.54.110.0/24,1 -192.64.119.63,1 -192.64.119.107,1 -192.64.119.138,1 -192.64.147.231,1 -192.67.16.0/24,1 -192.74.245.227,1 -192.84.219.0/24,1 -192.88.101.0/24,1 -192.96.146.0/24,1 -192.101.44.0/24,1 -192.101.181.0/24,1 -192.101.200.0/21,1 -192.101.240.0/21,1 -192.101.248.0/23,1 -192.124.249.106,1 -192.133.3.0/24,1 -192.135.89.0/24,1 -192.135.92.0/24,1 -192.135.97.0/24,1 -192.135.98.0/24,1 -192.135.102.0/24,1 -192.145.52.0/22,1 -192.147.114.0/24,1 -192.152.194.0/24,1 -192.154.11.0/24,1 -192.155.198.18,1 -192.156.142.0/24,1 -192.156.152.0/23,1 -192.160.44.0/24,1 -192.161.80.0/20,1 -192.168.0.0/16,1 -192.172.245.0/24,1 -192.172.246.0/24,1 -192.185.72.119,1 -192.188.80.0/24,1 -192.188.85.0/24,1 -192.188.86.0/23,1 -192.188.89.0/24,1 -192.188.90.0/24,1 -192.190.49.0/24,1 -192.190.87.140,1 -192.190.97.0/24,1 -192.190.181.0/24,1 -192.195.150.0/24,1 -192.197.87.0/24,1 -192.203.252.0/24,1 -192.206.114.0/24,1 -192.219.120.0/21,1 -192.219.128.0/18,1 -192.219.192.0/20,1 -192.219.208.0/21,1 -192.226.16.0/20,1 -192.229.32.0/19,1 -192.231.66.0/24,1 -192.234.189.0/24,1 -192.245.101.0/24,1 -192.251.231.0/24,1 -193.3.16.0/21,1 -193.5.144.0/22,1 -193.17.32.0/22,1 -193.17.88.0/21,1 -193.22.12.0/22,1 -193.22.20.0/22,1 -193.25.48.0/20,1 -193.27.228.0/23,1 -193.30.116.0/22,1 -193.30.254.0/23,1 -193.32.66.0/23,1 -193.32.84.0/22,1 -193.32.92.0/22,1 -193.32.163.0/24,1 -193.34.80.0/22,1 -193.34.224.0/22,1 -193.35.48.0/22,1 -193.35.224.0/21,1 -193.36.88.0/22,1 -193.37.248.0/22,1 -193.38.244.0/22,1 -193.39.192.0/22,1 -193.41.64.176,1 -193.42.20.0/22,1 -193.43.40.0/22,1 -193.46.172.0/22,1 -193.56.0.0/22,1 -193.56.8.0/22,1 -193.56.132.0/22,1 -193.56.144.0/22,1 -193.84.108.0/22,1 -193.106.188.0/22,1 -193.139.0.0/16,1 -193.146.253.35,1 -193.146.253.36/31,1 -193.146.253.38,1 -193.146.253.51,1 -193.151.160.0/22,1 -193.162.78.0/23,1 -193.163.124.0/22,1 -193.168.216.0/22,1 -193.187.96.0/22,1 -193.201.8.0/21,1 -193.201.232.0/22,1 -193.221.208.0/22,1 -193.222.100.37,1 -193.228.91.0/24,1 -193.228.124.0/22,1 -193.228.136.0/22,1 -193.228.228.0/22,1 -193.238.84.0/22,1 -193.238.172.0/22,1 -193.243.0.0/17,1 -193.254.48.0/20,1 -194.5.94.0/23,1 -194.5.97.0/24,1 -194.5.98.0/23,1 -194.9.94.85,1 -194.9.94.86,1 -194.15.32.0/22,1 -194.15.44.0/22,1 -194.26.16.0/22,1 -194.26.25.0/24,1 -194.26.100.0/22,1 -194.26.116.0/22,1 -194.29.52.0/22,1 -194.31.8.0/22,1 -194.32.104.0/22,1 -194.39.108.0/22,1 -194.41.60.0/23,1 -194.56.148.0/22,1 -194.56.180.0/22,1 -194.62.16.0/22,1 -194.62.40.0/22,1 -194.63.144.0/22,1 -194.99.156.0/22,1 -194.150.76.0/22,1 -194.150.113.18,1 -194.150.113.50,1 -194.187.116.0/22,1 -194.242.61.31,1 -195.16.72.0/22,1 -195.18.24.0/22,1 -195.54.160.0/24,1 -195.60.236.0/22,1 -195.74.38.62,1 -195.96.128.0/19,1 -195.110.124.188,1 -195.123.216.248,1 -195.182.57.0/24,1 -195.210.96.0/19,1 -195.211.48.0/22,1 -195.225.80.0/22,1 -195.225.96.0/22,1 -196.1.109.0/24,1 -196.10.64.0/19,1 -196.15.64.0/18,1 -196.16.0.0/14,1 -196.22.132.17,1 -196.42.128.0/17,1 -196.45.120.0/21,1 -196.61.0.0/21,1 -196.61.192.0/20,1 -196.62.0.0/16,1 -196.192.192.0/18,1 -196.193.0.0/16,1 -196.194.0.0/15,1 -196.196.8.0/22,1 -196.207.64.0/18,1 -196.246.0.0/16,1 -197.154.0.0/16,1 -197.231.208.0/22,1 -197.242.100.0/22,1 -197.242.104.0/21,1 -197.242.112.0/23,1 -198.13.0.0/20,1 -198.17.1.0/24,1 -198.17.118.0/24,1 -198.18.0.0/15,1 -198.20.16.0/20,1 -198.23.48.104,1 -198.38.83.24,1 -198.45.32.0/20,1 -198.45.64.0/19,1 -198.51.100.0/24,1 -198.54.117.197,1 -198.54.117.198/31,1 -198.54.117.200,1 -198.54.121.133,1 -198.54.232.0/24,1 -198.56.16.0/21,1 -198.56.64.0/18,1 -198.57.64.0/20,1 -198.58.118.167,1 -198.62.70.0/24,1 -198.62.76.0/24,1 -198.96.224.0/20,1 -198.99.117.0/24,1 -198.102.222.0/24,1 -198.148.212.0/24,1 -198.151.16.0/20,1 -198.151.64.0/18,1 -198.151.152.0/22,1 -198.160.205.0/24,1 -198.169.201.0/24,1 -198.177.175.0/24,1 -198.177.176.0/22,1 -198.177.180.0/24,1 -198.177.214.0/24,1 -198.178.64.0/19,1 -198.179.22.0/24,1 -198.181.96.0/20,1 -198.183.32.0/19,1 -198.184.193.0/24,1 -198.184.208.0/24,1 -198.186.25.0/24,1 -198.187.64.0/18,1 -198.187.192.0/24,1 -198.190.173.0/24,1 -198.199.212.0/24,1 -198.200.0.0/21,1 -198.200.8.0/23,1 -198.202.237.0/24,1 -198.204.0.0/21,1 -198.206.140.0/24,1 -198.212.132.0/24,1 -199.5.152.0/23,1 -199.5.229.0/24,1 -199.26.137.0/24,1 -199.26.207.0/24,1 -199.26.251.0/24,1 -199.33.222.0/24,1 -199.34.128.0/18,1 -199.34.228.76,1 -199.46.32.0/19,1 -199.58.179.10,1 -199.59.242.153,1 -199.60.102.0/24,1 -199.71.192.0/20,1 -199.84.55.0/24,1 -199.84.56.0/22,1 -199.84.60.0/24,1 -199.84.64.0/19,1 -199.89.16.0/20,1 -199.89.198.0/24,1 -199.120.163.0/24,1 -199.165.32.0/19,1 -199.166.200.0/22,1 -199.184.82.0/24,1 -199.185.192.0/20,1 -199.196.192.0/19,1 -199.198.160.0/20,1 -199.198.176.0/21,1 -199.198.184.0/23,1 -199.198.188.0/22,1 -199.200.64.0/19,1 -199.212.96.0/20,1 -199.223.0.0/20,1 -199.230.64.0/19,1 -199.230.96.0/21,1 -199.233.85.0/24,1 -199.233.96.0/24,1 -199.241.64.0/19,1 -199.244.56.0/21,1 -199.245.138.0/24,1 -199.246.137.0/24,1 -199.246.213.0/24,1 -199.246.215.0/24,1 -199.249.64.0/19,1 -199.253.32.0/20,1 -199.253.48.0/21,1 -199.253.224.0/20,1 -199.254.32.0/20,1 -200.0.60.0/23,1 -200.22.0.0/16,1 -200.71.124.0/22,1 -200.189.44.0/22,1 -200.234.128.0/18,1 -201.148.168.0/22,1 -201.169.0.0/16,1 -202.0.152.0/24,1 -202.0.192.0/18,1 -202.1.16.0/20,1 -202.3.136.0/24,1 -202.12.122.0/23,1 -202.12.124.0/24,1 -202.14.187.0/24,1 -202.14.203.0/24,1 -202.20.32.0/19,1 -202.20.67.0/24,1 -202.20.110.0/24,1 -202.21.64.0/19,1 -202.27.96.0/21,1 -202.27.114.0/24,1 -202.27.120.0/22,1 -202.27.130.0/23,1 -202.27.161.0/24,1 -202.27.162.0/23,1 -202.27.164.0/22,1 -202.27.168.0/24,1 -202.27.205.0/24,1 -202.27.206.0/23,1 -202.27.229.0/24,1 -202.27.230.0/23,1 -202.36.28.0/24,1 -202.36.74.0/24,1 -202.36.87.0/24,1 -202.36.116.0/23,1 -202.36.122.0/23,1 -202.36.160.0/23,1 -202.37.40.0/23,1 -202.37.46.0/23,1 -202.37.52.0/23,1 -202.37.133.0/24,1 -202.37.152.0/24,1 -202.37.166.0/24,1 -202.37.199.0/24,1 -202.37.235.0/24,1 -202.39.112.0/20,1 -202.40.32.0/19,1 -202.40.64.0/18,1 -202.47.89.0/24,1 -202.47.160.0/19,1 -202.49.33.0/24,1 -202.49.114.0/24,1 -202.49.248.0/24,1 -202.50.48.0/24,1 -202.50.76.0/23,1 -202.50.242.0/24,1 -202.56.56.0/24,1 -202.61.80.0/22,1 -202.61.108.0/24,1 -202.68.0.0/18,1 -202.77.138.0/23,1 -202.83.0.0/22,1 -202.86.0.0/22,1 -202.124.241.178,1 -202.134.56.0/23,1 -202.137.252.0/22,1 -202.146.184.0/23,1 -202.148.32.0/20,1 -202.148.176.0/20,1 -202.158.248.0/22,1 -202.181.97.76,1 -202.183.0.0/19,1 -202.189.80.0/20,1 -202.254.234.152,1 -203.0.113.0/24,1 -203.1.91.0/24,1 -203.2.151.0/24,1 -203.2.200.0/22,1 -203.3.88.0/22,1 -203.5.199.0/24,1 -203.8.223.0/24,1 -203.9.0.0/19,1 -203.9.195.0/24,1 -203.9.196.0/22,1 -203.9.208.0/24,1 -203.9.210.0/23,1 -203.9.212.0/22,1 -203.9.216.0/23,1 -203.9.219.0/24,1 -203.11.91.0/24,1 -203.12.86.0/24,1 -203.12.252.0/22,1 -203.13.231.0/24,1 -203.14.18.0/24,1 -203.15.16.0/22,1 -203.16.11.0/24,1 -203.17.137.0/24,1 -203.17.177.0/24,1 -203.17.189.0/24,1 -203.18.39.0/24,1 -203.18.104.0/24,1 -203.18.111.0/24,1 -203.18.156.0/22,1 -203.19.5.0/24,1 -203.19.240.0/24,1 -203.20.42.0/24,1 -203.20.73.0/24,1 -203.22.108.0/23,1 -203.22.167.0/24,1 -203.23.1.0/24,1 -203.23.52.0/24,1 -203.23.70.0/24,1 -203.23.74.0/24,1 -203.23.77.0/24,1 -203.23.188.0/23,1 -203.24.38.0/24,1 -203.24.179.0/24,1 -203.24.188.0/24,1 -203.25.66.0/24,1 -203.25.136.0/24,1 -203.25.161.0/24,1 -203.26.47.0/24,1 -203.26.218.0/24,1 -203.26.240.0/23,1 -203.27.34.0/24,1 -203.28.53.0/24,1 -203.28.57.0/24,1 -203.28.134.0/23,1 -203.28.252.0/23,1 -203.29.200.0/22,1 -203.30.221.0/24,1 -203.31.88.0/23,1 -203.31.169.0/24,1 -203.31.210.0/24,1 -203.32.86.0/23,1 -203.32.188.0/24,1 -203.34.70.0/23,1 -203.34.82.0/24,1 -203.34.125.0/24,1 -203.34.238.0/24,1 -203.34.241.0/24,1 -203.55.68.0/24,1 -203.57.85.0/24,1 -203.86.252.0/22,1 -203.88.111.122,1 -203.99.144.0/21,1 -203.100.57.0/24,1 -203.111.252.0/22,1 -203.114.236.0/22,1 -203.145.32.0/19,1 -203.156.192.80,1 -203.156.197.0/24,1 -203.160.130.0/23,1 -203.169.0.0/22,1 -203.169.52.0/22,1 -203.175.96.0/20,1 -203.175.124.0/22,1 -203.191.64.0/18,1 -203.191.134.0/23,1 -203.195.0.0/18,1 -203.223.88.0/23,1 -204.2.189.0/24,1 -204.14.80.0/22,1 -204.19.38.0/23,1 -204.44.32.0/20,1 -204.44.224.0/20,1 -204.52.96.0/19,1 -204.52.255.0/24,1 -204.57.16.0/20,1 -204.75.147.0/24,1 -204.75.228.0/24,1 -204.80.198.0/24,1 -204.86.16.0/20,1 -204.87.199.0/24,1 -204.89.224.0/24,1 -204.106.128.0/18,1 -204.106.192.0/19,1 -204.107.208.0/24,1 -204.126.244.0/23,1 -204.128.151.0/24,1 -204.128.180.0/24,1 -204.130.16.0/20,1 -204.130.167.0/24,1 -204.141.204.0/24,1 -204.147.64.0/21,1 -204.194.64.0/21,1 -204.225.159.0/24,1 -204.225.210.0/24,1 -204.232.0.0/18,1 -204.238.137.0/24,1 -204.238.170.0/24,1 -204.238.183.0/24,1 -205.137.0.0/20,1 -205.142.104.0/22,1 -205.144.0.0/20,1 -205.144.171.124,1 -205.144.176.0/20,1 -205.148.128.0/17,1 -205.151.128.0/19,1 -205.159.45.0/24,1 -205.159.174.0/24,1 -205.159.180.0/24,1 -205.166.77.0/24,1 -205.166.84.0/24,1 -205.166.130.0/24,1 -205.166.168.0/24,1 -205.166.211.0/24,1 -205.172.244.0/22,1 -205.175.160.0/19,1 -205.189.71.0/24,1 -205.189.72.0/23,1 -205.203.0.0/19,1 -205.203.224.0/19,1 -205.207.134.0/24,1 -205.210.107.0/24,1 -205.210.139.0/24,1 -205.210.171.0/24,1 -205.210.172.0/22,1 -205.214.96.0/19,1 -205.214.128.0/19,1 -205.233.224.0/20,1 -205.236.185.0/24,1 -205.236.189.0/24,1 -205.237.88.0/21,1 -206.41.160.0/19,1 -206.51.29.0/24,1 -206.124.104.0/21,1 -206.130.188.0/24,1 -206.143.128.0/17,1 -206.189.61.126,1 -206.195.224.0/19,1 -206.197.28.0/23,1 -206.197.77.0/24,1 -206.197.165.0/24,1 -206.209.80.0/20,1 -206.223.17.0/24,1 -206.224.160.0/19,1 -206.226.0.0/18,1 -206.227.64.0/18,1 -207.10.232.16,1 -207.10.232.21,1 -207.22.192.0/18,1 -207.45.224.0/20,1 -207.90.0.0/18,1 -207.110.64.0/18,1 -207.110.128.0/18,1 -207.183.192.0/19,1 -208.12.64.0/19,1 -208.73.208.0/22,1 -208.90.32.0/21,1 -208.91.197.26/31,1 -208.91.197.66,1 -208.91.197.91,1 -208.93.4.0/22,1 -208.109.80.14,1 -209.66.128.0/19,1 -209.95.192.0/19,1 -209.99.40.222/31,1 -209.99.64.33,1 -209.99.128.0/18,1 -209.140.30.61,1 -209.145.0.0/19,1 -209.160.65.66,1 -209.161.96.0/20,1 -209.182.64.0/19,1 -209.242.192.0/19,1 -210.56.144.0/21,1 -210.57.128.0/18,1 -210.57.192.0/20,1 -210.79.128.0/18,1 -210.87.64.0/18,1 -210.172.183.32,1 -211.43.203.53,1 -212.12.54.87,1 -212.18.96.0/19,1 -212.23.192.0/19,1 -212.57.32.149,1 -212.85.106.71,1 -212.95.144.0/22,1 -212.162.152.0/22,1 -213.109.144.0/20,1 -213.109.192.0/20,1 -213.130.88.0/22,1 -213.173.36.0/22,1 -213.176.20.0/22,1 -213.176.50.208,1 -213.186.33.5,1 -213.186.33.19,1 -213.186.33.87,1 -213.247.0.0/19,1 -213.247.47.190,1 -216.40.47.17,1 -216.179.128.0/17,1 -217.8.116.0/22,1 -217.20.116.129,1 -217.20.116.130/31,1 -217.20.116.132/30,1 -217.20.116.136/29,1 -217.20.116.145,1 -217.20.116.146/31,1 -217.20.116.148/30,1 -217.20.116.152/31,1 -217.26.53.16,1 -217.26.63.20,1 -217.70.184.38,1 -217.74.71.168,1 -217.114.32.0/20,1 -217.116.16.235,1 -217.119.128.0/20,1 -217.160.0.27,1 -217.160.0.59,1 -217.160.0.169,1 -217.160.0.225,1 -217.160.0.231,1 -217.160.0.239,1 -217.160.122.61,1 -217.160.223.127,1 -217.160.233.84,1 -219.94.129.157,1 -219.235.5.224,1 -220.154.0.0/16,1 -220.158.225.187,1 -221.132.192.0/18,1 -223.0.0.0/15,1 -223.130.8.0/22,1 -223.169.0.0/16,1 -223.173.0.0/16,1 -223.254.0.0/16,1 -224.0.0.0/3,1