prelude-correlator-5.2.0/0000755000000000000000000000000013726164430015274 5ustar rootroot00000000000000prelude-correlator-5.2.0/data/0000755000000000000000000000000013726164430016205 5ustar rootroot00000000000000prelude-correlator-5.2.0/data/conf.d/0000755000000000000000000000000013726164430017354 5ustar rootroot00000000000000prelude-correlator-5.2.0/data/conf.d/README0000644000000000000000000000007313726164407020240 0ustar rootroot00000000000000You may install your configuration files in this directory prelude-correlator-5.2.0/prelude_correlator.egg-info/0000755000000000000000000000000013726164430022662 5ustar rootroot00000000000000prelude-correlator-5.2.0/prelude_correlator.egg-info/PKG-INFO0000644000000000000000000000300413726164427023762 0ustar rootroot00000000000000Metadata-Version: 1.1 Name: prelude-correlator Version: 5.2.0 Summary: Prelude-Correlator perform real time correlation of events received by Prelude Home-page: https://www.prelude-siem.org Author: Prelude Team Author-email: support.prelude@csgroup.eu License: GPL Download-URL: https://www.prelude-siem.org/projects/prelude/files Description: Prelude-Correlator perform real time correlation of events received by Prelude. Several isolated alerts, generated from different sensors, can thus trigger a single CorrelationAlert should the events be related. This CorrelationAlert then appears within the Prewikka interface and indicates the potential target information via the set of correlation rules. Signature creation with Prelude-Correlator is based on the Python programming language. Prelude's integrated correlation engine is distributed with a default set of correlation rules, yet you still have the opportunity to modify and create any correlation rule that suits your needs. Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Console Classifier: Intended Audience :: System Administrators Classifier: License :: OSI Approved :: GNU General Public License (GPL) Classifier: Natural Language :: English Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Topic :: Security Classifier: Topic :: System :: Monitoring prelude-correlator-5.2.0/prelude_correlator.egg-info/SOURCES.txt0000644000000000000000000000220213726164427024550 0ustar rootroot00000000000000AUTHORS COPYING HACKING.README INSTALL MANIFEST.in NEWS README prelude-correlator.conf setup.cfg setup.py data/conf.d/README prelude_correlator.egg-info/PKG-INFO prelude_correlator.egg-info/SOURCES.txt prelude_correlator.egg-info/dependency_links.txt prelude_correlator.egg-info/entry_points.txt prelude_correlator.egg-info/requires.txt prelude_correlator.egg-info/top_level.txt preludecorrelator/__init__.py preludecorrelator/config.py preludecorrelator/context.py preludecorrelator/download.py preludecorrelator/error.py preludecorrelator/idmef.py preludecorrelator/log.py preludecorrelator/main.py preludecorrelator/pluginmanager.py preludecorrelator/require.py preludecorrelator/rule.py preludecorrelator/utils.py preludecorrelator/plugins/__init__.py rules/BruteForcePlugin.py rules/BusinessHourPlugin.py rules/CIArmyPlugin.py rules/DshieldPlugin.py rules/EventScanPlugin.py rules/EventStormPlugin.py rules/EventSweepPlugin.py rules/FirewallPlugin.py rules/OpenSSHAuthPlugin.py rules/SpamhausDropPlugin.py rules/WormPlugin.py rules/__init__.py rules/ciarmy.dat rules/dshield.dat rules/spamhaus_drop.dat selinux/Makefile selinux/prelude-correlator.teprelude-correlator-5.2.0/prelude_correlator.egg-info/dependency_links.txt0000644000000000000000000000000113726164427026736 0ustar rootroot00000000000000 prelude-correlator-5.2.0/prelude_correlator.egg-info/entry_points.txt0000644000000000000000000000014213726164427026163 0ustar rootroot00000000000000[preludecorrelator.plugins] [console_scripts] prelude-correlator = preludecorrelator.main:main prelude-correlator-5.2.0/prelude_correlator.egg-info/requires.txt0000644000000000000000000000002013726164427025260 0ustar rootroot00000000000000prelude >= 5.2.0prelude-correlator-5.2.0/prelude_correlator.egg-info/top_level.txt0000644000000000000000000000002213726164427025414 0ustar rootroot00000000000000preludecorrelator prelude-correlator-5.2.0/preludecorrelator/0000755000000000000000000000000013726164430021031 5ustar rootroot00000000000000prelude-correlator-5.2.0/preludecorrelator/plugins/0000755000000000000000000000000013726164430022512 5ustar rootroot00000000000000prelude-correlator-5.2.0/preludecorrelator/plugins/__init__.py0000644000000000000000000000007013726164407024624 0ustar rootroot00000000000000__import__('pkg_resources').declare_namespace(__name__) prelude-correlator-5.2.0/preludecorrelator/__init__.py0000644000000000000000000000164013726164407023147 0ustar rootroot00000000000000# Copyright (C) 2009-2020 CS GROUP - France. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. __import__('pkg_resources').declare_namespace(__name__) prelude-correlator-5.2.0/preludecorrelator/config.py0000644000000000000000000000531713726164407022662 0ustar rootroot00000000000000# Copyright (C) 2009-2020 CS GROUP - France. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import glob import io import os try: import configparser except: import ConfigParser as configparser class Config(configparser.ConfigParser): def __init__(self, filename): configparser.ConfigParser.__init__(self, allow_no_value=True) self.read(filename) # Allow inclusion of additional configuration files in # prelude-correlator.conf. # These additional configuration files can be used by plugins. if self.has_section('include'): dataset = [] includes = self.items('include') confdir = os.path.dirname(os.path.abspath(filename)) for fpattern, _dummy in includes: fpattern = os.path.join(confdir, fpattern) # Files are loaded in alphabetical order for fname in sorted(glob.glob(fpattern)): dataset.append(fname) self.read(dataset) def get(self, section, option, raw=None, vars=None, fallback=None, type=str): try: return type(configparser.ConfigParser.get(self, section, option, raw=raw, vars=vars)) except configparser.NoSectionError: return fallback except configparser.NoOptionError: return fallback def getAsBool(self, section, option, raw=None, vars=None, fallback=None): b = self.get(section, option, raw, vars, fallback) if type(b) is bool: return b b = b.strip().lower() if b == "true" or b == "yes": return True return False def read(self, filename): if not isinstance(filename, list): filename = [filename] for fname in filename: try: with io.open(fname, 'r') as f: self.readfp(io.StringIO('[prelude]\n' + f.read())) except IOError: continue prelude-correlator-5.2.0/preludecorrelator/context.py0000644000000000000000000003040413726164407023074 0ustar rootroot00000000000000# Copyright (C) 2009-2020 CS GROUP - France. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import os import time import pickle import sys from prelude import IDMEFTime from preludecorrelator.idmef import IDMEF from preludecorrelator import require, log _last_wakeup = 0 _next_wakeup = 0 _TIMER_LIST = [] _CONTEXT_TABLE = {} logger = log.getLogger(__name__) _IDMEF_QUEUE_LIMIT = 256 class Timer: def __setstate__(self, dict): self.__dict__.update(dict) if self._timer_start: _TIMER_LIST.append(self) def __init__(self, expire, cb_func=None): self._timer_start = None self._timer_expire = expire self._timer_cb = cb_func def _timerExpireCallback(self): self.stop() try: self._timer_cb(self) except Exception as e: logger.exception("on timer expiration: '%s'", e) def hasExpired(self, now=None): if not now: now = time.time() return self.elapsed(now) >= self._timer_expire def check(self, now=None): if not self._timer_start: return if not now: now = time.time() elapsed = self.elapsed(now) if elapsed >= self._timer_expire: self._timerExpireCallback() # Return None in case the timer is stopped, and the time # remaining if it is already active (expired, or timer reset from the callback). if self._timer_start: return self._timer_expire - elapsed def elapsed(self, now=None): if not now: now = time.time() return now - self._timer_start def running(self): return self._timer_start is not None def setExpire(self, expire): self._timer_expire = expire def start(self, reset=False): if not self._timer_expire or self.running() and not reset: return if not reset: _TIMER_LIST.append(self) self._timer_start = time.time() global _next_wakeup _next_wakeup = min(_next_wakeup, self._timer_expire) def stop(self): self._timer_start = None def reset(self): self.start(reset=True) class Context(IDMEF, Timer): FORMAT_VERSION = 0.2 def __setstate__(self, dict): IDMEF.__setstate__(self, dict) Timer.__setstate__(self, dict) def __init__(self, name, options={}, overwrite=True, update=False, idmef=None, ruleid=None, timer_rst=False): already_initialized = (update or not overwrite) and hasattr(self, "_name") if already_initialized is True: return IDMEF.__init__(self, ruleid) Timer.__init__(self, 0) self._version = self.FORMAT_VERSION self._options = {"threshold": -1, "expire": 0, "alert_on_expire": False} name = getName(name) self._name = name self._update_count = 0 self.setOptions(options) if isinstance(idmef, IDMEF): self.addAlertReference(idmef) t = self._getTime(idmef) self._time_min = t - self._options["expire"] if self._options["expire"] > 0: self._time_max = t + self._options["expire"] else: self._time_max = -1 if name not in _CONTEXT_TABLE: _CONTEXT_TABLE[name] = [] _CONTEXT_TABLE[name].append(self) logger.debug("[add]%s", self.getStat(), level=3) x = self._mergeIntersect(debug=False) if x > 0: logger.critical( "A context merge happened on initialization. This should NOT happen : please report this error.") def __getnewargs__(self): return self._name, def __new__(cls, name, options={}, overwrite=True, update=False, idmef=None, ruleid=None, timer_rst=False): if idmef: path, value = env.prelude_client.get_grouping(idmef) if value: name = "%s_%s" % (name, value) if update or not overwrite: ctx = search(name, idmef, update=True) if ctx: if update: ctx.update(options, idmef, timer_rst) # If a context was updated, check intersection ctx._mergeIntersect() return ctx else: ctx = search(name, idmef, update=False) if ctx: ctx.destroy() return super(Context, cls).__new__(cls) def _getTime(self, idmef=None): if not idmef: return time.time() if isinstance(idmef, IDMEFTime): return int(idmef) return int(idmef.getTime()) def _updateTime(self, itime): self._time_min = min(itime - self._options["expire"], self._time_min) if self._time_max != -1: self._time_max = max(itime + self._options["expire"], self._time_max) def _intersect(self, idmef, debug=False): if isinstance(idmef, Context): itmin = idmef._time_min itmax = idmef._time_max else: itime = self._getTime(idmef) itmin = itime - self._options["expire"] itmax = itime + self._options["expire"] if (itmin <= self._time_min and (self._time_max == -1 or itmax >= self._time_min)) or \ (itmin >= self._time_min and (self._time_max == -1 or itmin <= self._time_max)): return min(itmin, self._time_min), max(itmax, self._time_max) return None def _mergeIntersect(self, debug=False): for ctx in _CONTEXT_TABLE[self._name]: if ctx == self: continue if self._intersect(ctx, debug): self.merge(ctx) return True return False def merge(self, ctx): self._update_count += ctx._update_count self._time_min = min(self._time_min, ctx._time_min) self._time_max = max(self._time_max, ctx._time_max) self.set("alert.source(>>)", ctx.get("alert.source")) self.set("alert.target(>>)", ctx.get("alert.target")) self.set("alert.correlation_alert.alertident(>>)", ctx.get("alert.correlation_alert.alertident")) ctx.destroy() def checkTimeWindow(self, idmef, update=True): i = self._intersect(idmef) if not i: return False if update: self._time_min = i[0] if self._time_max != -1: self._time_max = i[1] return True def _alert(self): alert_on_expire = self._options["alert_on_expire"] if callable(alert_on_expire): alert_on_expire(self) else: self.alert() self.destroy() def _timerExpireCallback(self): threshold = self._options["threshold"] if self._options["alert_on_expire"]: if threshold == -1 or (self._update_count + 1) >= threshold: return self._alert() self.destroy() def isVersionCompatible(self): version = self.__dict__.get("_version", None) return self.FORMAT_VERSION == version def update(self, options={}, idmef=None, timer_rst=False): self._update_count += 1 if idmef: self.addAlertReference(idmef) if self._options["alert_on_expire"] and self._update_count >= _IDMEF_QUEUE_LIMIT: return self._alert() if timer_rst and self.running(): self.reset() self.setOptions(options) logger.debug("[update]%s", self.getStat(), level=3) def getStat(self, now=None): string = "" if not now: now = time.time() if self._options["threshold"] != -1: string += " threshold=%d/%d" % (self._update_count + 1, self._options["threshold"]) if self._timer_start: string += " expire=%d/%d" % (self.elapsed(now), self._options["expire"]) tmin = time.strftime("%X", time.localtime(self._time_min)) if self._time_max == -1: tmax = "" else: tmax = time.strftime("%X", time.localtime(self._time_max)) return "[%s]: tmin=%s tmax=%s update=%d%s" % (self._name, tmin, tmax, self._update_count, string) def getOptions(self): return self._options def setOptions(self, options): self._options.update(options) Timer.setExpire(self, self._options.get("expire", 0)) Timer.start(self) # will only start the timer if not already running def getUpdateCount(self): return self._update_count def destroy(self): if isinstance(self, Timer): self.stop() logger.debug("[del]%s", self.getStat(), level=3) _CONTEXT_TABLE[self._name].remove(self) if not _CONTEXT_TABLE[self._name]: _CONTEXT_TABLE.pop(self._name) def getName(arg): def escape(s): return s.replace("_", "\\_") if type(arg) is str: return escape(arg) cnt = 0 name = "" for i in arg: if cnt > 0: name += "_" name += escape(str(i)) cnt += 1 return name def search(name, idmef=None, update=False): name = getName(name) for ctx in _CONTEXT_TABLE.get(name, ()): ctime = ctx.checkTimeWindow(idmef, update) if ctime: return ctx return None class _Dummy: pass class ContextUnpickler(pickle.Unpickler): def find_class(self, module, name): try: return pickle.Unpickler.find_class(self, module, name) except (ImportError, AttributeError) as e: logger.warning(e) return _Dummy def save(profile): ctxt_filename = require.get_data_filename("context.dat", profile=profile) fd = open(ctxt_filename, "wb") pickle.dump(_CONTEXT_TABLE, fd, -1) fd.close() def load(profile): ctxt_filename = require.get_data_filename("context.dat", profile=profile) if os.path.exists(ctxt_filename): global _TIMER_LIST global _CONTEXT_TABLE fd = open(ctxt_filename, "rb") try: _CONTEXT_TABLE.update(ContextUnpickler(fd).load()) except EOFError: return logger.debug("[load]: %d context loaded", len(_CONTEXT_TABLE)) for ctxlist in _CONTEXT_TABLE.values(): for ctx in ctxlist[:]: # Destroy the context in case of incompatibility or import failure. # Check the alert_on_expire option because it can contain # some external reference that will be called from the core. if not ctx.isVersionCompatible() or ctx.getOptions()["alert_on_expire"] is _Dummy: ctx.destroy() def wakeup(now): global _TIMER_LIST, _next_wakeup, _last_wakeup if now - _last_wakeup < _next_wakeup: return _next_wakeup = sys.maxsize i = 0 tlen = len(_TIMER_LIST) need_delete = False for timer in _TIMER_LIST: ret = timer.check(now) if ret: _next_wakeup = min(ret, _next_wakeup) else: i += 1 need_delete = True if need_delete: _TIMER_LIST = [x for x in _TIMER_LIST if x._timer_start is not None] logger.debug("woke-up %d/%d timer, next wake-up in %.2f seconds", i, tlen, _next_wakeup) _last_wakeup = now def stats(): now = time.time() with_threshold = [] for ctxlist in _CONTEXT_TABLE.values(): for ctx in ctxlist: if ctx._options["threshold"] == -1: logger.info(ctx.getStat(now)) else: with_threshold.append(ctx) with_threshold.sort(key=lambda x: x.getUpdateCount()) for ctx in with_threshold: logger.info(ctx.getStat(now)) prelude-correlator-5.2.0/preludecorrelator/download.py0000644000000000000000000001116013726164407023215 0ustar rootroot00000000000000# Copyright (C) 2014-2020 CS GROUP - France. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. try: import urllib.request as urlreq except: import urllib2 as urlreq import os import time from preludecorrelator import error from preludecorrelator.context import Timer class DownloadCache: def _checkPermissions(self): dirname = os.path.dirname(self._filename) if not os.access(dirname, os.R_OK | os.W_OK | os.X_OK): raise error.UserError("DownloadCache directory '%s' does not exist or has wrong permissions" % dirname) if os.path.exists(self._filename) and not os.access(self._filename, os.R_OK | os.W_OK): raise error.UserError("DownloadCache file '%s' cannot be opened in read-write mode" % self._filename) def __init__(self, name, filename, reload, logger, bindata=False): self._name = name self._filename = filename self._reload = reload self.__data = None self.logger = logger self._bindata = bindata self._checkPermissions() age = self._doInit() if self._reload > 0: Timer(self._reload - age, self._download).start() def _doInit(self): age = False try: st = os.stat(self._filename) age = time.time() - st.st_mtime # If the data didn't expire, we're good to go if self._reload <= 0 or age < self._reload: self._load(age) return age except OSError: pass try: self._download() except Exception: # There was an error downloading newer data, use any older data that we have, even if it's expired # If we don't have any older data available, then this is an error, and there is no fallback. if not age: raise error.UserError("%s data couldn't be retrieved, and no previous data available" % self._name) self._load(age) return 0 def _download(self, timer=None): status = "Downloading" if not timer else "Updating" self.logger.info("%s %s report, this might take some time...", status, self._name) try: unparsed_data = self.download() self.__data = self.parse(unparsed_data) fd = open(self._filename, "wb" if self._bindata else "w") self.write(fd, unparsed_data) fd.close() self.logger.info("%s %s report done.", status, self._name) except Exception as e: self.logger.error("error %s %s report : %s", status.lower(), self._name, e) if not timer: raise if timer: timer.setExpire(self._reload) timer.reset() def _load(self, age): self.__data = self.parse(self.read(open(self._filename, "rb" if self._bindata else "r"))) self.logger.info("Loaded %s data from a previous run (age=%.2f hours)", self._name, age / 60 / 60) def download(self): pass def parse(self, data): return data def get(self): return self.__data class HTTPDownloadCache(DownloadCache): def __init__(self, name, filename, uri, timeout, reload, logger, bindata=False): self.__uri = uri self.__timeout = timeout DownloadCache.__init__(self, name, filename, reload, logger, bindata) def read(self, fd): return fd.read() def write(self, fd, data): fd.write(data) def download(self, headers=None): if headers is None: headers = {'User-Agent': "Prelude-Correlator"} con = urlreq.urlopen(urlreq.Request(self.__uri, headers=headers), timeout=self.__timeout) data = con.read() if not self._bindata: _mime_type, _sep, encoding = con.headers['content-type'].partition('charset=') data = data.decode(encoding or 'ascii') return data prelude-correlator-5.2.0/preludecorrelator/error.py0000644000000000000000000000004513726164407022537 0ustar rootroot00000000000000class UserError(Exception): pass prelude-correlator-5.2.0/preludecorrelator/idmef.py0000644000000000000000000002027113726164407022475 0ustar rootroot00000000000000# Copyright (C) 2009-2020 CS GROUP - France. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from collections import defaultdict import re import itertools import operator import prelude from preludecorrelator import utils _RegexType = type(re.compile("")) class IDMEF(prelude.IDMEF): def __init__(self, ruleid=None): prelude.IDMEF.__init__(self) if ruleid: self.set("alert.additional_data(>>).meaning", "Rule ID") self.set("alert.additional_data(-1).type", "string") self.set("alert.additional_data(-1).data", ruleid) def getTime(self): itime = self.get("alert.detect_time") if not itime: itime = self.get("alert.create_time") return itime def get(self, path, flatten=True, replacement=None): path = prelude.IDMEFPath(path) value = path.get(self) if value is None: return replacement if flatten and type(value) is tuple: value = utils.flatten(value) return value def _match(self, path, needle): value = self.get(path) if not isinstance(needle, _RegexType): ret = value == needle else: m = needle.search(value or "") if not m: return False ret = m.groups() return ret def match(self, *args): if (len(args) % 2) != 0: raise Exception("Invalid number of arguments.") ret = [] i = 0 while i < len(args): r = self._match(args[i], args[i + 1]) if r is False: return None elif isinstance(r, tuple): ret.extend(r) i += 2 if ret: return ret return True def alert(self): global prelude_client self.set("alert.create_time", prelude.IDMEFTime()) prelude_client.correlationAlert(self) def _getMergeList(self, path, idmef): newset = [] sharedset = [] curvalues = prelude.IDMEF.get(self, path) for newidx, newval in enumerate(prelude.IDMEF.get(idmef, path) or ()): have_match = False for curidx, curval in enumerate(curvalues): if curval == newval: sharedset.append((curidx, newidx)) have_match = True if not have_match: newset.append((newidx, newval)) unmodified_set = set(range(len(curvalues))) unmodified_set -= set([curidx for curidx, newidx in sharedset]) return list(unmodified_set), sharedset, newset def _mergePort(self, fpath, value): strl = [] has_range = False for k, g in itertools.groupby(enumerate(sorted(set(value))), lambda i_x: i_x[0] - i_x[1]): ilist = list(map(operator.itemgetter(1), g)) if len(ilist) > 1: has_range = True strl.append('%d-%d' % (ilist[0], ilist[-1])) else: strl.append('%d' % ilist[0]) if has_range or len(strl) > 1: return "service.portlist", ",".join(strl) else: return "service.port", value[0] def _parsePortlist(self, portlist): ranges = (x.split("-") for x in portlist.split(",")) plist = [i for r in ranges for i in range(int(r[0].strip()), int(r[-1].strip()) + 1)] return "service.port", plist def _defaultMerge(self, fpath, value): return fpath, value[0] def _getFilteredValue(self, basepath, fpath, reqval, idmef, preproc_func, filtered): for idx, value in enumerate(prelude.IDMEF.get(idmef, basepath + "." + fpath) or ()): if value: if value == reqval or reqval is None: prelude.IDMEF.set(idmef, basepath + "(%d)." % idx + fpath, None) fpath2 = fpath if value and preproc_func: fpath2, value = preproc_func(value) if idx not in filtered: filtered[idx] = {} if fpath2 not in filtered[idx]: filtered[idx][fpath2] = [] if value: filtered[idx][fpath2] += value if isinstance(value, list) else [value] return fpath def _mergeSet(self, path, idmef, filtered_path=()): filtered_new = {} filtered_cur = {} postproc = {} for (fpath, reqval), preproc_func, postproc_func in filtered_path: r1 = self._getFilteredValue(path, fpath, reqval, self, preproc_func, filtered_cur) r2 = self._getFilteredValue(path, fpath, reqval, idmef, preproc_func, filtered_new) postproc[r1 or r2] = postproc_func if postproc_func else self._defaultMerge unmodified_set, sharedset, newset = self._getMergeList(path, idmef) for idx, value in newset: prelude.IDMEF.set(self, path + "(>>)", value) for fpath, value in filtered_new.get(idx, {}).items(): if value and fpath in postproc: fpath, value = postproc[fpath](fpath, value) if value: prelude.IDMEF.set(self, path + "(-1)." + fpath, value) for idx in unmodified_set: for fpath, value in filtered_cur.get(idx, {}).items(): if value and fpath in postproc: fpath, value = postproc[fpath](fpath, value) if value: prelude.IDMEF.set(self, path + "(%d)." % idx + fpath, value) for idx, nidx in sharedset: common = defaultdict(list) for a, b in list(filtered_new.get(nidx, {}).items()) + list(filtered_cur.get(idx, {}).items()): common[a] += b for fpath, value in common.items(): if value and fpath in postproc: fpath, value = postproc[fpath](fpath, value) if value: prelude.IDMEF.set(self, path + "(%d)." % idx + fpath, value) for idx, values in filtered_new.items(): for fpath, value in values.items(): if value and fpath in postproc: fpath, value = postproc[fpath](fpath, value) if value: prelude.IDMEF.set(idmef, path + "(%d)." % (idx) + fpath, value) def addAlertReference(self, idmef, auto_set_detect_time=True): if auto_set_detect_time is True: intime = idmef.getTime() curtime = self.getTime() if not curtime or intime < curtime: self.set("alert.detect_time", intime) st_filters = [(("process.pid", None), None, None), (("service.name", "unknown"), None, None), (("service.port", None), None, self._mergePort), (("service.portlist", None), self._parsePortlist, self._mergePort)] self._mergeSet("alert.source", idmef, st_filters) self._mergeSet("alert.target", idmef, st_filters) self.set("alert.correlation_alert.alertident(>>).alertident", idmef.get("alert.messageid")) for analyzer in reversed(idmef.get("alert.analyzer")): analyzerid = analyzer.get("analyzerid") if analyzerid: self.set("alert.correlation_alert.alertident(-1).analyzerid", analyzerid) break path, value = env.prelude_client.get_grouping(idmef) if path: self.set(path, value) def set_prelude_client(client): global prelude_client prelude_client = client prelude-correlator-5.2.0/preludecorrelator/log.py0000644000000000000000000000561613726164407022200 0ustar rootroot00000000000000# Copyright (C) 2009-2020 CS GROUP - France. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import prelude import logging import logging.config import logging.handlers import sys import os import stat debug_level = 0 def _debug(self, msg, *args, **kwargs): level = kwargs.pop("level", 0) if debug_level and level <= debug_level: self.log(logging.DEBUG, msg, *args, **kwargs) logging.Logger.debug = _debug def __C_log_callback(level, log): log = log.rstrip('\n') logger = getLogger("libprelude") if level == prelude.PreludeLog.DEBUG: logger.debug(log) elif level == prelude.PreludeLog.INFO: logger.info(log) elif level == prelude.PreludeLog.WARNING: logger.warning(log) elif level == prelude.PreludeLog.ERROR: logger.error(log) elif level == prelude.PreludeLog.CRITICAL: logger.critical(log) else: logger.warning(("[unknown:%d] " % level) + log) def getSyslogHandlerAddress(): for f in ("/dev/log", "/var/run/log", "/var/run/syslog"): try: if stat.S_ISSOCK(os.stat(f).st_mode): return f except: pass return "localhost", 514 def initLogger(options): global debug_level debug_level = options.debug try: prelude.PreludeLog.setCallback(__C_log_callback) except: # PreludeLog is available in recent libprelude version, we do not want to fail if it's not. pass try: logging.config.fileConfig(options.config) except Exception: DATEFMT = "%d %b %H:%M:%S" FORMAT = "%(asctime)s %(name)s (pid:%(process)d) %(levelname)s: %(message)s" logging.basicConfig(level=logging.DEBUG, format=FORMAT, datefmt=DATEFMT, stream=sys.stderr) if options.daemon is True: hdlr = logging.handlers.SysLogHandler(getSyslogHandlerAddress(), facility=logging.handlers.SysLogHandler.LOG_DAEMON) hdlr.setFormatter(logging.Formatter('%(name)s: %(levelname)s: %(message)s')) logging.getLogger().addHandler(hdlr) def getLogger(name=__name__): return logging.getLogger(name) prelude-correlator-5.2.0/preludecorrelator/main.py0000644000000000000000000002503613726164407022341 0ustar rootroot00000000000000# Copyright (C) 2009-2020 CS GROUP - France. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import argparse import sys import os import time import signal import pkg_resources import errno import itertools from prelude import ClientEasy, checkVersion, IDMEFCriteria, IDMEFPath from preludecorrelator import idmef, pluginmanager, context, log, config, require, error if sys.version_info >= (3, 0): import builtins else: import __builtin__ as builtins logger = log.getLogger(__name__) VERSION = pkg_resources.get_distribution('prelude-correlator').version LIBPRELUDE_REQUIRED_VERSION = "1.2.6" _DEFAULT_PROFILE = "prelude-correlator" def _init_profile_dir(profile): filename = require.get_data_filename("context.dat", profile=profile) try: os.makedirs(os.path.dirname(filename), mode=0o700) except OSError as e: if e.errno != errno.EEXIST: raise class Env: def __init__(self, options): self.prelude_client = None log.initLogger(options) self.config = config.Config(options.config) self.profile = options.profile def load_plugins(self): self.pluginmanager = pluginmanager.PluginManager() # restore previous context # (this need to be called after logger is setup, and before plugin loading). context.load(self.profile) # Since we can launch different instances of prelude-correlator with different profiles, # we need to separate their context and specific rules data files # (this need to be called before plugin loading) _init_profile_dir(self.profile) self.pluginmanager.load() self.pluginmanager.check_dependencies() logger.info("%d plugins have been loaded.", self.pluginmanager.getPluginCount()) class SignalHandler: def __init__(self): signal.signal(signal.SIGTERM, self._handle_signal) signal.signal(signal.SIGINT, self._handle_signal) signal.signal(signal.SIGQUIT, self._handle_signal) def _handle_signal(self, signum, frame): logger.info("caught signal %d", signum) env.pluginmanager.signal(signum, frame) if signum == signal.SIGUSR1: context.save(env.profile) env.pluginmanager.save() elif signum == signal.SIGQUIT: context.stats() env.pluginmanager.stats() if env.prelude_client: env.prelude_client.stats() else: env.prelude_client.stop() class GenericReader(object): _messages = iter([]) def run(self): pass def inject(self, idmef): self._messages = itertools.chain(self._messages, [idmef]) class ClientReader(GenericReader): def __init__(self, prelude_client): self.prelude_client = prelude_client def run(self): while True: for msg in self._messages: yield msg msg = idmef.IDMEF() try: ret = self.prelude_client.client.recvIDMEF(msg, 1000) except Exception: ret = None if ret: yield msg else: yield None class FileReader(GenericReader): def __init__(self, filename, offset=0, limit=-1): self.filename = filename self.offset = offset self.limit = limit def run(self): count = 0 with open(self.filename, 'r') as input_file: while self.limit == -1 or count < self.limit + self.offset: for msg in self._messages: yield msg msg = idmef.IDMEF() try: msg << input_file except EOFError: break count += 1 if count >= self.offset: yield msg class PreludeClient(object): def __init__(self, options, print_input=None, print_output=None, dry_run=False): self._events_processed = 0 self._alert_generated = 0 self._print_input = print_input self._print_output = print_output self._continue = True self._dry_run = dry_run self._criteria = self._parse_criteria(env.config.get("general", "criteria")) self._grouping = self._parse_path(env.config.get("general", "grouping")) if not options.input_file: self._receiver = ClientReader(self) else: self._receiver = FileReader(options.input_file, options.input_offset, options.input_limit) self.client = ClientEasy( options.profile, ClientEasy.PERMISSION_IDMEF_READ | ClientEasy.PERMISSION_IDMEF_WRITE, "Prelude Correlator", "Correlator", "CS GROUP", VERSION) self.client.setConfigFilename(options.config) self.client.start() def _handle_event(self, idmef): if self._print_input: self._print_input.write(str(idmef)) env.pluginmanager.run(idmef) self._events_processed += 1 def stats(self): logger.info("%d events received, %d correlationAlerts generated.", self._events_processed, self._alert_generated) def get_grouping(self, idmef): if self._grouping: value = idmef.get(self._grouping) if isinstance(value, list): value = value[0] else: value = None return self._grouping, value def correlationAlert(self, idmef): self._alert_generated = self._alert_generated + 1 if not self._dry_run: self.client.sendIDMEF(idmef) if self._print_output: self._print_output.write(str(idmef)) # Reinject correlation alerts for meta-correlation self._receiver.inject(idmef) def run(self): last = time.time() for msg in self._receiver.run(): if msg and self._criteria.match(msg): self._handle_event(msg) now = time.time() if now - last >= 1: context.wakeup(now) last = now if not self._continue: break def stop(self): self._continue = False @staticmethod def _parse_criteria(criteria): if not criteria: return IDMEFCriteria("alert") criteria = "alert && (%s)" % criteria try: return IDMEFCriteria(criteria) except Exception as e: raise error.UserError("Invalid criteria provided '%s': %s" % (criteria, e)) @staticmethod def _parse_path(path): if not path: return None try: IDMEFPath(path) except Exception as e: raise error.UserError("Invalid path provided '%s': %s" % (path, e)) return path def runCorrelator(): checkVersion(LIBPRELUDE_REQUIRED_VERSION) config_filename = require.get_config_filename("prelude-correlator.conf") parser = argparse.ArgumentParser() parser.add_argument("-c", "--config", default=config_filename, metavar="FILE", help="Configuration file to use") parser.add_argument("--dry-run", action="store_true", help="No report to the specified Manager will occur") parser.add_argument("-d", "--daemon", action="store_true", help="Run in daemon mode") parser.add_argument("-P", "--pidfile", metavar="FILE", help="Write Prelude Correlator PID to specified file") parser.add_argument("--print-input", metavar="FILE", help="Dump alert input from manager to the specified file") parser.add_argument("--print-output", metavar="FILE", help="Dump alert output to the specified file") parser.add_argument("-D", "--debug", type=int, default=0, metavar="LEVEL", nargs="?", const=1, help="Enable debugging output (level from 1 to 10)") parser.add_argument("-v", "--version", action="version", version=VERSION) group = parser.add_argument_group("IDMEF Input", "Read IDMEF events from file") group.add_argument("--input-file", metavar="FILE", help="Read IDMEF events from the specified file") group.add_argument("--input-offset", type=int, default=0, metavar="OFFSET", help="Start processing events starting at the given offset") group.add_argument("--input-limit", type=int, default=-1, metavar="LIMIT", help="Read events until the given limit is reached") group = parser.add_argument_group("Prelude", "Prelude generic options") group.add_argument("--profile", default=_DEFAULT_PROFILE, help="Profile to use for this analyzer") options = parser.parse_args() builtins.env = Env(options) env.load_plugins() SignalHandler() ifd = None if options.print_input: if options.print_input == "-": ifd = sys.stdout else: ifd = open(options.print_input, "w") ofd = None if options.print_output: if options.print_output == "-": ofd = sys.stdout else: ofd = open(options.print_output, "w") if options.daemon: if os.fork(): os._exit(0) os.setsid() if os.fork(): os._exit(0) os.umask(0o77) fd = os.open('/dev/null', os.O_RDWR) for i in range(3): os.dup2(fd, i) os.close(fd) if options.pidfile: open(options.pidfile, "w").write(str(os.getpid())) try: env.prelude_client = PreludeClient(options, print_input=ifd, print_output=ofd) except Exception as e: raise error.UserError(e) idmef.set_prelude_client(env.prelude_client) env.prelude_client.run() # save existing context context.save(options.profile) env.pluginmanager.save() def main(): try: runCorrelator() except error.UserError as e: logger.error("error caught while starting prelude-correlator : %s", e) sys.exit(1) except: raise prelude-correlator-5.2.0/preludecorrelator/pluginmanager.py0000644000000000000000000002064613726164407024250 0ustar rootroot00000000000000# Copyright (C) 2009-2020 CS GROUP - France. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import pkg_resources import os import imp from preludecorrelator import log, error, require, rule from preludecorrelator import plugins # noqa : used in rules (flake8 will ignore "unused import") logger = log.getLogger(__name__) class Plugin(rule.AbstractRule): enable = True autoload = True conflict = [] def getConfigValue(self, option, fallback=None, type=str): return env.config.get(self.__class__.__name__, option, fallback=fallback, type=type) def __init__(self, env): # Keep the deprecated argument env for backward compatibility self.name = self.__class__.__name__ env.pluginmanager.register_dependencies(self.name, self.depends) def save(self): pass def stats(self): pass def signal(self, signo, frame): pass def run(self, idmef): pass def run_safe(self, idmef): if self._can_correlate(idmef): self.run(idmef) class PluginDependenciesError(ImportError): pass class PluginManager(object): _default_entrypoint = 'preludecorrelator.plugins' def __init__(self, entrypoint=None): self._count = 0 self.__plugins_instances = [] self.__plugins_classes = [] self._conflict = {} self._force_enable = {} self._dependencies = {} entry_points = pkg_resources.iter_entry_points(entrypoint if entrypoint else self._default_entrypoint) plugin_entries = [(entry.name, entry, self._load_entrypoint) for entry in entry_points] if entrypoint is None: plugin_entries += [(u[0], u, self._load_userpoint) for u in self._get_userpoints()] for pname, e, fct in plugin_entries: logger.debug("loading point %s", pname, level=1) enable_s = env.config.get(pname, "enable", fallback=None) if enable_s: enable_s = enable_s.lower() enable = enable_s in ("true", "yes", "force", None) disable = env.config.getAsBool(pname, "disable", fallback=False) # do not load if the user specifically used disable=true, or enable=false if not enable or disable: logger.info("[%s]: disabled on user request", pname) continue plugin_class = fct(e) if plugin_class is None: continue if not enable_s: enable = plugin_class.enable if enable: if disable: enable = False elif enable_s == "force": self._force_enable[pname] = enable if not enable: logger.info("[%s]: disabled by default", pname) continue for reason, namelist in plugin_class.conflict: self._conflict.update([(name, (pname, reason)) for name in namelist]) self.__plugins_classes.append(plugin_class) def load(self): for plugin_class in self.getPluginsClassesList(): pname = plugin_class.__name__ if pname in self._conflict and pname not in self._force_enable: logger.info("[%s]: disabled by plugin '%s' reason:%s", pname, self._conflict[pname][0], self._conflict[pname][1]) continue if plugin_class.autoload: try: pi = plugin_class(env) except error.UserError as e: logger.error("[%s]: %s", pname, e) raise error.UserError("Plugin '%s' failed to load, please fix the issue or disable the plugin" % pname) self.__plugins_instances.append(pi) self._count += 1 def _get_userpoints(self): if not env.config.has_section("python_rules"): python_rules_dirs = require.get_config_filename("rules/python") else: python_rules_dirs = env.config.get("python_rules", "paths", fallback="") for pathdir in python_rules_dirs.splitlines(): if not os.access(pathdir, os.R_OK) or not os.path.isdir(pathdir): logger.warning("Can not load %s python rules dir" % pathdir) continue for f in os.listdir(pathdir): if not f.endswith('.py') or f == '__init__.py': continue if os.path.isdir(os.path.join(pathdir, f)): continue yield (f.rpartition('.')[0], pathdir) def _load_entrypoint(self, entrypoint): try: return entrypoint.load() except ImportError as e: logger.error("[%s]: import error: %s", entrypoint.name, e) return None except Exception as e: logger.exception("[%s]: loading error: %s", entrypoint.name, e) return None def _load_userpoint(self, args): name, path = args try: mod_info = imp.find_module(name, [path]) except ImportError: logger.warning('Invalid plugin "%s" in "%s"' % (name, path)) return None try: return getattr(imp.load_module(self._default_entrypoint + '.' + name, *mod_info), name) except Exception as e: logger.warning("Unable to load %(file)s: %(error)s" % {'file': name, 'error': str(e)}) return None def getPluginCount(self): return self._count def getPluginList(self): return self.getPluginsInstancesList() def getPluginsInstancesList(self): return self.__plugins_instances def getPluginsClassesList(self): return self.__plugins_classes def register_dependencies(self, plugin, dependencies): self._dependencies[plugin] = list(dependencies) def check_dependencies(self): """Check that the dependency graph is acyclic.""" all_plugins = list(self._dependencies.keys()) while all_plugins: for plugin in all_plugins: if self._dependencies[plugin]: continue all_plugins.remove(plugin) for p, depends in self._dependencies.items(): try: depends.remove(plugin) except ValueError: pass break else: raise error.UserError("Circular dependencies detected for rules %s" % ", ".join(all_plugins)) def save(self): for plugin in self.getPluginsInstancesList(): try: plugin.save() except Exception: logger.exception("[%s]: exception occurred while saving state", plugin.name) def stats(self): for plugin in self.getPluginsInstancesList(): try: plugin.stats() except Exception: logger.exception("[%s]: exception occurred while retrieving statistics", plugin.name) def signal(self, signo, frame): for plugin in self.getPluginsInstancesList(): try: plugin.signal(signo, frame) except Exception: logger.exception("[%s]: exception occurred while signaling", plugin.name) def run(self, idmef): for plugin in self.getPluginsInstancesList(): try: plugin.run_safe(idmef) except error.UserError as e: logger.error("[%s]: error running plugin : %s", plugin.name, e) except Exception: logger.exception("[%s]: exception occurred while running", plugin.name) prelude-correlator-5.2.0/preludecorrelator/require.py0000644000000000000000000000335513726164407023071 0ustar rootroot00000000000000# Copyright (C) 2009-2020 CS GROUP - France. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. try: import os from preludecorrelator import siteconfig def get_config_filename(fname, module=None, package="prelude-correlator"): return os.path.join(siteconfig.conf_dir, fname) def get_data_filename(fname, module=None, package="prelude-correlator", profile=None): return os.path.join(siteconfig.lib_dir, profile or "", fname) except: import pkg_resources def get_config_filename(fname, module=None, package="prelude-correlator"): if module is None: module = pkg_resources.Requirement.parse(package) return pkg_resources.resource_filename(module, fname) def get_data_filename(fname, module=None, package="prelude-correlator", profile=None): if module is None: module = pkg_resources.Requirement.parse(package) return pkg_resources.resource_filename(module, os.path.join(profile or "", fname)) prelude-correlator-5.2.0/preludecorrelator/rule.py0000644000000000000000000000236413726164407022363 0ustar rootroot00000000000000# Copyright (C) 2018-2020 CS GROUP - France. All Rights Reserved. # Author: Antoine Luong # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. class AbstractRule(object): depends = [] def _can_correlate(self, idmef): """ Return a boolean indicating if a rule is allowed to correlate an alert. """ if idmef.get("alert.analyzer(0).model") != "Prelude Correlator": return True ruleid = idmef.get("alert.additional_data('Rule ID').data") return ruleid and ruleid[0] in self.depends prelude-correlator-5.2.0/preludecorrelator/utils.py0000644000000000000000000000277613726164407022563 0ustar rootroot00000000000000# Copyright (C) 2009-2020 CS GROUP - France. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import collections def flatten(x): """flatten(sequence) -> list Returns a single, flat list which contains all elements retrieved from the sequence and all recursively contained sub-sequences (iterables). Examples: >>> [1, 2, [3,4], (5,6)] [1, 2, [3, 4], (5, 6)] >>> flatten([[[1,2,3], (42,None)], [4,5], [6], 7, MyVector(8,9,10)]) [1, 2, 3, 42, None, 4, 5, 6, 7, 8, 9, 10]""" if not x: return [] result = [] for el in x: if isinstance(el, collections.Iterable) and not isinstance(el, str): result.extend(flatten(el)) else: result.append(el) return result prelude-correlator-5.2.0/rules/0000755000000000000000000000000013726164430016426 5ustar rootroot00000000000000prelude-correlator-5.2.0/rules/BruteForcePlugin.py0000644000000000000000000000672113726164407022231 0ustar rootroot00000000000000# VERSION: 1.0 # AUTHOR: Prelude Team # DESCRIPTION: Triggered by multiple failed login attempts # Copyright (C) 2006 G Ramon Gomez # Copyright (C) 2009-2020 CS GROUP - France # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import re from preludecorrelator.pluginmanager import Plugin from preludecorrelator.context import Context class BruteForcePlugin(Plugin): def _BruteForce(self, idmef): sadd = [sorted(node.get('node.address(*).address')) for node in idmef.get('alert.source(*)', False)] tadd = [sorted(node.get('node.address(*).address')) for node in idmef.get('alert.target(*)', False)] for source in sadd: if not source: continue for target in tadd: if not target: continue ctx = Context(("BRUTE ST", source, target), {"expire": 120, "threshold": 5, "alert_on_expire": True}, update=True, idmef=idmef, ruleid=self.name) if ctx.getUpdateCount() == 0: ctx.set("alert.classification.text", "Brute Force attack") ctx.set("alert.correlation_alert.name", "Multiple failed login") ctx.set("alert.assessment.impact.severity", "high") ctx.set("alert.assessment.impact.description", "Multiple failed attempts have been made to login using different account") def _BruteUserForce(self, idmef): userid = idmef.get("alert.target(*).user.user_id(*).name") if not userid: return for user in userid: ctx = Context(("BRUTE USER", user), {"expire": 120, "threshold": 5, "alert_on_expire": True}, update=True, idmef=idmef, ruleid=self.name) if ctx.getUpdateCount() == 0: ctx.set("alert.classification.text", "Brute Force attack") ctx.set("alert.correlation_alert.name", "Multiple failed login against a single account") ctx.set("alert.assessment.impact.severity", "high") ctx.set("alert.assessment.impact.description", "Multiple failed attempts have been made to login to a user account") def run(self, idmef): if not idmef.match("alert.classification.text", re.compile("[Ll]ogin|[Aa]uthentication")): return # FIXME: In the future, we might want to include successfull authentication # following a number of failed events, so that generated CorrelationAlert # includes full details. if idmef.get("alert.assessment.impact.completion") == "succeeded": return self._BruteForce(idmef) self._BruteUserForce(idmef) prelude-correlator-5.2.0/rules/BusinessHourPlugin.py0000644000000000000000000000336613726164407022624 0ustar rootroot00000000000000# VERSION: 1.0 # AUTHOR: Prelude Team # DESCRIPTION: Triggered by a successful action happening outside of business hours # Copyright (C) 2009-2020 CS GROUP - France. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import time from preludecorrelator.idmef import IDMEF from preludecorrelator.pluginmanager import Plugin # Alert only on saturday and sunday, and everyday from 6:00pm to 9:00am. class BusinessHourPlugin(Plugin): def run(self, idmef): t = time.localtime(int(idmef.get("alert.create_time"))) if not (t.tm_wday == 5 or t.tm_wday == 6 or t.tm_hour < 9 or t.tm_hour > 17): return if idmef.get("alert.assessment.impact.completion") != "succeeded": return ca = IDMEF(ruleid=self.name) ca.addAlertReference(idmef) ca.set("alert.classification", idmef.get("alert.classification")) ca.set("alert.correlation_alert.name", "Critical system activity on day off") ca.alert() prelude-correlator-5.2.0/rules/CIArmyPlugin.py0000644000000000000000000000623413726164407021314 0ustar rootroot00000000000000# VERSION: 1.0 # AUTHOR: Prelude Team # DESCRIPTION: Triggered when the source IP is present in the CIArmy reputation database # CATEGORY: CTI # Copyright (C) 2015-2020 CS GROUP - France. All Rights Reserved. # Author: Thomas Andrejak # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from preludecorrelator import context, require, log, download from preludecorrelator.pluginmanager import Plugin logger = log.getLogger(__name__) class CIArmyDownloader(download.HTTPDownloadCache): def __init__(self, filename, uri, timeout, reload): download.HTTPDownloadCache.__init__(self, "CIArmy", filename, uri, timeout, reload, logger) def __ipNormalize(self, ip): return ".".join([i.lstrip("0") for i in ip.split(".")]) def parse(self, data): ret = [] for line in data.split("\n"): if not line or line[0] == '#': continue ip = line ret.append(self.__ipNormalize(ip)) return ret class CIArmyPlugin(Plugin): CIARMY_RELOAD = 7 * 24 * 60 * 60 CIARMY_URI = "http://cinsscore.com/list/ci-badguys.txt" CIARMY_TIMEOUT = 10 def __init__(self, env): Plugin.__init__(self, env) uri = self.getConfigValue("uri", self.CIARMY_URI) timeout = self.getConfigValue("timeout", self.CIARMY_TIMEOUT, type=float) reload = self.getConfigValue("reload", self.CIARMY_RELOAD, type=int) filename = self.getConfigValue("filename", require.get_data_filename("ciarmy.dat", module=__name__, profile=env.profile)) self.__data = CIArmyDownloader(filename, uri, timeout, reload) def run(self, idmef): data = self.__data.get() for source in idmef.get("alert.source(*).node.address(*).address"): if source in data: ca = context.Context(("CIARMY", source), {"expire": 20, "alert_on_expire": True}, update=True, idmef=idmef, ruleid=self.name) if ca.getUpdateCount() == 0: ca.set("alert.classification.text", "Source IP matching a CTI database") ca.set("alert.correlation_alert.name", "Source IP matching a CTI database") ca.set("alert.assessment.impact.description", "CIArmy gathered this IP address from firewall drop logs (%s)" % source) ca.set("alert.assessment.impact.severity", "high") prelude-correlator-5.2.0/rules/DshieldPlugin.py0000644000000000000000000000675313726164407021552 0ustar rootroot00000000000000# VERSION: 1.0 # AUTHOR: Prelude Team # DESCRIPTION: Triggered when the source IP is present in the DShield reputation database # CATEGORY: CTI # Copyright (C) 2009-2020 CS GROUP - France. All Rights Reserved. # Author: Yoann Vandoorselaere # Author: Sebastien Tricaud # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from preludecorrelator import context, require, log, download from preludecorrelator.pluginmanager import Plugin logger = log.getLogger(__name__) class DShieldDownloader(download.HTTPDownloadCache): def __init__(self, filename, uri, timeout, reload): download.HTTPDownloadCache.__init__(self, "DShield", filename, uri, timeout, reload, logger) def __ipNormalize(self, ip): return ".".join([i.lstrip("0") for i in ip.split(".")]) def parse(self, data): ret = {} for line in data.split("\n"): if not line or line[0] == '#': continue ip, reports, attacks, first_seen, last_seen = line.split('\t') ret[self.__ipNormalize(ip)] = (int(reports), int(attacks), first_seen, last_seen) return ret class DshieldPlugin(Plugin): DSHIELD_RELOAD = 7 * 24 * 60 * 60 DSHIELD_URI = "http://www.dshield.org/ipsascii.html?limit=10000" DSHIELD_TIMEOUT = 10 def __init__(self, env): Plugin.__init__(self, env) uri = self.getConfigValue("uri", self.DSHIELD_URI) timeout = self.getConfigValue("timeout", self.DSHIELD_TIMEOUT, type=float) reload = self.getConfigValue("reload", self.DSHIELD_RELOAD, type=int) filename = self.getConfigValue("filename", require.get_data_filename("dshield.dat", module=__name__, profile=env.profile)) self.__data = DShieldDownloader(filename, uri, timeout, reload) def run(self, idmef): data = self.__data.get() for source in idmef.get("alert.source(*).node.address(*).address"): entry = data.get(source, None) if entry: ca = context.Context(("DSHIELD", source), {"expire": 20, "alert_on_expire": True}, update=True, idmef=idmef, ruleid=self.name) if ca.getUpdateCount() == 0: ca.set("alert.classification.text", "Source IP matching a CTI database") ca.set("alert.correlation_alert.name", "Source IP matching a CTI database") ca.set("alert.assessment.impact.description", "Dshield gathered this IP address from firewall drops logs (%s - reports: %d, attacks: %d, " "first/last seen: %s - %s)" % (source, entry[0], entry[1], entry[2], entry[3])) ca.set("alert.assessment.impact.severity", "high") prelude-correlator-5.2.0/rules/EventScanPlugin.py0000644000000000000000000000421713726164407022055 0ustar rootroot00000000000000# VERSION: 1.0 # AUTHOR: Prelude Team # DESCRIPTION: Triggered by a single host being the source of many actions on a single target # Copyright (C) 2006 G Ramon Gomez # Copyright (C) 2009-2020 CS GROUP - France # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # Detect Eventscan: # Playing multiple events from a single host against another single host from preludecorrelator.context import Context from preludecorrelator.pluginmanager import Plugin class EventScanPlugin(Plugin): def run(self, idmef): source = idmef.get("alert.source(*).node.address(*).address") target = idmef.get("alert.target(*).node.address(*).address") if not source or not target: return for saddr in source: for daddr in target: ctx = Context(("SCAN EVENTSCAN", saddr, daddr), {"expire": 60, "threshold": 30, "alert_on_expire": True}, update=True, idmef=idmef, ruleid=self.name) if ctx.getUpdateCount() == 0: ctx.set("alert.correlation_alert.name", "A single host has played many events against a single target. This may be a vulnerability " "scan") ctx.set("alert.classification.text", "Eventscan") ctx.set("alert.assessment.impact.severity", "high") prelude-correlator-5.2.0/rules/EventStormPlugin.py0000644000000000000000000000367313726164407022302 0ustar rootroot00000000000000# VERSION: 1.0 # AUTHOR: Prelude Team # DESCRIPTION: Triggered by a single host being the source of an unusual amount of alerts # Copyright (C) 2006 G Ramon Gomez # Copyright (C) 2009-2020 CS GROUP - France # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # Detect Eventscan: # Playing multiple events from a single host against another single host from preludecorrelator.context import Context from preludecorrelator.pluginmanager import Plugin # Detect Eventstorm: # Playing excessive events by a single host class EventStormPlugin(Plugin): def run(self, idmef): source = idmef.get("alert.source(*).node.address(*).address") if not source: return for saddr in source: ctx = Context(("SCAN EVENTSTORM", saddr), {"expire": 120, "threshold": 150, "alert_on_expire": True}, update=True, idmef=idmef, ruleid=self.name) if ctx.getUpdateCount() == 0: ctx.set("alert.correlation_alert.name", "A single host is producing an unusual amount of events") ctx.set("alert.classification.text", "Eventstorm") ctx.set("alert.assessment.impact.severity", "high") prelude-correlator-5.2.0/rules/EventSweepPlugin.py0000644000000000000000000000502113726164407022246 0ustar rootroot00000000000000# VERSION: 1.0 # AUTHOR: Prelude Team # DESCRIPTION: Triggered by a single host being the source of many similar actions on multiple targets # Copyright (C) 2006 G Ramon Gomez # Copyright (C) 2009-2020 CS GROUP - France # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # Detect Eventscan: # Playing multiple events from a single host against another single host from preludecorrelator.context import Context from preludecorrelator.pluginmanager import Plugin # Detect Eventsweep: # Playing the same event from a single host against multiple hosts class EventSweepPlugin(Plugin): def run(self, idmef): classification = idmef.get("alert.classification.text") source = idmef.get("alert.source(*).node.address(*).address") target = idmef.get("alert.target(*).node.address(*).address") if not source or not target or not classification: return for saddr in source: ctx = Context(("SCAN EVENTSWEEP", classification, saddr), {"expire": 60, "threshold": 30, "alert_on_expire": True}, overwrite=False, ruleid=self.name) if ctx.getUpdateCount() == 0: ctx.set("alert.correlation_alert.name", "A single host has played the same event against multiple targets. This may be a network scan " "for a specific vulnerability") ctx.set("alert.classification.text", "Eventsweep") ctx.set("alert.assessment.impact.severity", "high") cur = ctx.get("alert.target(*).node.address(*).address") if cur: for address in target: if address in cur: return ctx.update(idmef=idmef, timer_rst=ctx.getUpdateCount()) prelude-correlator-5.2.0/rules/FirewallPlugin.py0000644000000000000000000001046713726164407021740 0ustar rootroot00000000000000# VERSION: 1.0 # AUTHOR: Prelude Team # DESCRIPTION: Triggered when events have not been dropped for a host known to be protected by a firewall # Copyright (C) 2009-2020 CS GROUP - France. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import re import time from preludecorrelator import context from preludecorrelator.pluginmanager import Plugin def _evict(ctx): now = time.time() for target, values in ctx._protected_hosts.items(): if now - values[0] > ctx._flush_protected_hosts: ctx._protected_hosts.pop(target) ctx.reset() def _alert(ctx): cnt = 0 fw = context.search("FIREWALL INFOS") for idmef in ctx.candidates: source = idmef.get("alert.source(0).node.address(0).address") target = idmef.get("alert.target(0).node.address(0).address") dport = str(idmef.get("alert.target(0).service.port", 0)) if target not in fw._protected_hosts: continue if (source + dport) in fw._protected_hosts[target][1]: continue cnt += 1 ctx.addAlertReference(idmef) if cnt > 0: ctx.set("alert.classification.text", "Events hit target") ctx.set("alert.assessment.impact.severity", "medium") ctx.set("alert.assessment.impact.description", "The target are known to be protected by a Firewall device, but a set of event have not been dropped") ctx.set("alert.correlation_alert.name", "No firewall block observed") ctx.alert() ctx.destroy() class FirewallPlugin(Plugin): def __init__(self, env): Plugin.__init__(self, env) self._flush_protected_hosts = self.getConfigValue("flush-protected-hosts", 3600, type=int) def run(self, idmef): source = idmef.get("alert.source(0).node.address(0).address") scat = idmef.get("alert.source(0).node.address(0).category") target = idmef.get("alert.target(0).node.address(0).address") tcat = idmef.get("alert.target(0).node.address(0).category") dport = idmef.get("alert.target(0).service.port") if not source or not target or not dport: return if scat not in ("ipv4-addr", "ipv6-addr") or tcat not in ("ipv4-addr", "ipv6-addr"): return ctx = context.Context("FIREWALL INFOS", {"expire": self._flush_protected_hosts, "alert_on_expire": _evict}, update=True, ruleid=self.name) if ctx.getUpdateCount() == 0: ctx._protected_hosts = {} ctx._flush_protected_hosts = self._flush_protected_hosts if idmef.match("alert.classification.text", re.compile("[Pp]acket [Dd]ropped|[Dd]enied")): if target not in ctx._protected_hosts: ctx._protected_hosts[target] = [0, {}] ctx._protected_hosts[target][0] = float(idmef.getTime()) ctx._protected_hosts[target][1][source + str(dport)] = True else: if target not in ctx._protected_hosts: return if time.time() - ctx._protected_hosts[target][0] > self._flush_protected_hosts: ctx._protected_hosts.pop(target) return if (source + str(dport)) in ctx._protected_hosts[target][1]: return ctx = context.Context(("FIREWALL", source), {"expire": 120, "alert_on_expire": _alert}, update=True, ruleid=self.name) if ctx.getUpdateCount() == 0: ctx.candidates = [] ctx.candidates.append(idmef) prelude-correlator-5.2.0/rules/OpenSSHAuthPlugin.py0000644000000000000000000000526513726164407022274 0ustar rootroot00000000000000# VERSION: 1.0 # AUTHOR: Prelude Team # DESCRIPTION: Triggered by two SSH attempts happening to the same target and user but through different methods # Copyright (C) 2009-2020 CS GROUP - France. All Rights Reserved. # Author: Sebastien Tricaud # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from preludecorrelator.pluginmanager import Plugin from preludecorrelator.context import Context def alert(ctx): if len(ctx.authtype) > 1: ctx.set("alert.classification.text", "Multiple authentication methods") ctx.set("alert.correlation_alert.name", "Multiple authentication methods") ctx.set("alert.assessment.impact.severity", "medium") ctx.set("alert.assessment.impact.description", "Multiple ways of authenticating a single user have been found over SSH. If passphrase is the only " "allowed method, make sure you disable passwords.") ctx.alert() ctx.destroy() class OpenSSHAuthPlugin(Plugin): def run(self, idmef): if idmef.get("alert.analyzer(-1).manufacturer") != "OpenSSH": return if idmef.get("alert.assessment.impact.completion") != "succeeded": return data = idmef.get("alert.additional_data('Authentication method').data") if not data: return data = data[0] for username in idmef.get("alert.target(*).user.user_id(*).name"): for target in idmef.get("alert.target(*).node.address(*).address"): ctx = Context(("SSHAUTH", target, username), {"expire": 30, "alert_on_expire": alert}, update=True, ruleid=self.name) if ctx.getUpdateCount() == 0: ctx.authtype = {data: True} ctx.addAlertReference(idmef) elif data not in ctx.authtype: ctx.authtype[data] = True ctx.addAlertReference(idmef) prelude-correlator-5.2.0/rules/SpamhausDropPlugin.py0000644000000000000000000001017113726164407022571 0ustar rootroot00000000000000# VERSION: 1.0 # AUTHOR: Prelude Team # DESCRIPTION: Triggered when the source IP is present in the Spamhaus reputation database # CATEGORY: CTI # Copyright (C) 2009-2020 CS GROUP - France. All Rights Reserved. # Author: Yoann Vandoorselaere # Author: Wes Young # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from preludecorrelator import require, log, download from preludecorrelator.pluginmanager import Plugin, PluginDependenciesError from preludecorrelator.context import Context try: # Note: # Versions 0.7.10 to 0.7.15 (inclusive) are known to be very slow # due to a bug in python-netaddr. # See https://github.com/drkjam/netaddr/issues/94 for more information import netaddr except: raise PluginDependenciesError("missing netaddr module, https://pypi.python.org/pypi/netaddr") logger = log.getLogger(__name__) if tuple(int(x) for x in netaddr.__version__.split(".")) >= (0, 7): from netaddr import IPAddress, IPNetwork, IPSet else: from netaddr import IP as IPAddress from netaddr import CIDR as IPNetwork class IPSet(list): def __contains__(self, y): for i in iter(self): if y in i: return True return False def add(self, obj): self.append(obj) class SpamhausDownload(download.HTTPDownloadCache): def __init__(self, filename, uri, timeout, reload): download.HTTPDownloadCache.__init__(self, "SpamhausDrop", filename, uri, timeout, reload, logger) def parse(self, data): mynets = IPSet() for line in data.split("\n"): if not line or line[0] == ';': continue ip, sbl = line.split(';') ip = IPNetwork(ip.strip()) mynets.add(ip) return mynets class SpamhausDropPlugin(Plugin): RELOAD = 7 * 24 * 60 * 60 URI = "http://www.spamhaus.org/drop/drop.txt" TIMEOUT = 10 def __init__(self, env): Plugin.__init__(self, env) reload = self.getConfigValue("reload", self.RELOAD, type=int) filename = self.getConfigValue("filename", require.get_data_filename("spamhaus_drop.dat", module=__name__, profile=env.profile)) uri = self.getConfigValue("uri", self.URI) timeout = self.getConfigValue("timeout", self.TIMEOUT, type=float) self.__data = SpamhausDownload(filename, uri, timeout, reload) def run(self, idmef): for source in idmef.get("alert.source(*).node.address(*).address"): try: addr = IPAddress(source) except: continue if addr in self.__data.get(): ca = Context(("SPAMHAUS", source), {"expire": 20, "alert_on_expire": True}, update=True, idmef=idmef, ruleid=self.name) if ca.getUpdateCount() == 0: ca.set("alert.classification.text", "Source IP matching a CTI database") ca.set("alert.correlation_alert.name", "Source IP matching a CTI database") ca.set("alert.assessment.impact.description", "Spamhaus gathered this IP address in their DROP list - %s" % source) ca.set("alert.assessment.impact.severity", "medium") prelude-correlator-5.2.0/rules/WormPlugin.py0000644000000000000000000000646113726164407021116 0ustar rootroot00000000000000# VERSION: 1.0 # AUTHOR: Prelude Team # DESCRIPTION: Triggered by a host becoming the source of many alerts after having been the target of similar alerts # Copyright (C) 2006 G Ramon Gomez # Copyright (C) 2009-2020 CS GROUP - France # All Rights Reserved. # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # This rule looks for events against a host, records the messageid, then sets # a timer of 600 seconds. If the host then replays the event against # other hosts multiple times, an event is generated. from preludecorrelator import context from preludecorrelator.pluginmanager import Plugin class WormPlugin(Plugin): REPEAT = 5 def __init__(self, env): Plugin.__init__(self, env) self.__repeat_target = self.getConfigValue("repeat-target", self.REPEAT, type=int) def run(self, idmef): ctxt = idmef.get("alert.classification.text") if not ctxt: return # Create context for classification combined with all the target. tlist = {} for target in idmef.get("alert.target(*).node.address(*).address"): ctx = context.Context(("WORM HOST", ctxt, target), {"expire": 300}, overwrite=False, idmef=idmef, ruleid=self.name) if ctx.getUpdateCount() == 0: ctx._target_list = {} tlist[target] = True for source in idmef.get("alert.source(*).node.address(*).address"): # We are trying to see whether a previous target is now attacking other hosts # thus, we check whether a context exist with this classification combined to # this source. ctx = context.search(("WORM HOST", ctxt, source)) if not ctx: continue plen = len(ctx._target_list) ctx._target_list.update(tlist) nlen = len(ctx._target_list) if nlen > plen: ctx.update(idmef=idmef) if nlen >= self.__repeat_target: ctx.set("alert.classification.text", "Possible Worm Activity") ctx.set("alert.correlation_alert.name", "Source host is repeating actions taken against it recently") ctx.set("alert.assessment.impact.severity", "high") ctx.set("alert.assessment.impact.description", source + " has repeated actions taken against it recently at least %d times. It may have been " "infected with a worm." % self.__repeat_target) ctx.alert() ctx.destroy() prelude-correlator-5.2.0/rules/__init__.py0000644000000000000000000000000013726164407020531 0ustar rootroot00000000000000prelude-correlator-5.2.0/rules/ciarmy.dat0000644000000000000000000064544513726164427020434 0ustar rootroot000000000000001.119.132.130 1.159.47.68 1.162.123.55 1.172.128.153 1.174.0.64 1.174.234.220 1.175.7.130 1.177.162.3 1.179.128.124 1.179.153.18 1.179.169.218 1.179.173.2 1.179.236.131 1.183.190.86 1.189.55.213 1.192.131.153 1.192.159.87 1.192.192.4 1.192.192.6 1.192.192.8 1.192.195.11 1.192.195.5 1.192.218.179 1.192.219.208 1.194.237.94 1.197.121.129 1.20.151.55 1.202.240.163 1.203.103.10 1.203.161.58 1.203.93.254 1.214.245.27 1.215.226.220 1.22.230.30 1.22.54.211 1.221.137.107 1.224.162.214 1.227.37.35 1.227.57.126 1.24.210.102 1.245.178.252 1.245.218.13 1.246.42.251 1.247.76.76 1.248.75.9 1.25.0.78 1.254.47.75 1.254.47.97 1.27.164.65 1.28.80.121 1.29.176.11 1.32.210.108 1.34.100.170 1.34.100.34 1.34.100.44 1.34.101.158 1.34.10.75 1.34.111.252 1.34.118.87 1.34.127.61 1.34.130.247 1.34.134.111 1.34.135.208 1.34.171.205 1.34.172.165 1.34.177.251 1.34.18.123 1.34.182.193 1.34.183.217 1.34.19.27 1.34.193.181 1.34.193.251 1.34.194.96 1.34.195.131 1.34.19.58 1.34.196.18 1.34.196.211 1.34.197.93 1.34.199.15 1.34.200.167 1.34.202.8 1.34.221.108 1.34.233.170 1.34.241.9 1.34.242.95 1.34.246.166 1.34.254.153 1.34.254.164 1.34.254.165 1.34.27.52 1.34.30.76 1.34.3.153 1.34.32.243 1.34.4.56 1.34.54.246 1.34.6.151 1.34.6.238 1.34.62.74 1.34.63.252 1.34.76.101 1.34.82.86 1.34.85.65 1.34.9.80 1.34.99.249 1.36.190.77 1.36.196.213 1.36.207.222 1.36.36.132 1.42.66.177 1.43.216.132 1.48.226.194 1.54.12.54 1.54.55.158 1.54.69.254 1.55.103.200 1.58.126.190 1.58.250.134 1.60.17.28 1.6.187.33 1.61.75.139 1.63.102.121 1.63.226.82 1.63.54.37 1.64.13.128 1.64.195.132 1.64.208.219 1.65.140.241 1.65.150.7 1.71.191.178 1.9.196.82 2.115.195.178 2.121.85.110 2.132.249.34 2.136.182.204 2.136.228.219 2.139.155.90 2.15.32.125 2.185.149.129 2.187.249.106 2.226.156.242 2.229.123.30 2.229.125.21 2.229.16.100 2.229.19.58 2.229.42.152 2.233.69.183 2.234.154.2 2.237.29.22 2.238.32.42 2.32.49.28 2.35.179.112 2.35.240.145 2.39.33.240 2.42.129.20 2.42.196.30 2.45.100.120 2.47.136.66 2.47.198.217 2.50.47.165 2.57.122.111 2.57.122.113 2.57.122.168 2.57.122.169 2.57.122.170 2.57.122.172 2.57.122.173 2.57.122.174 2.57.122.177 2.57.122.178 2.57.122.181 2.57.122.183 2.57.122.184 2.57.122.186 2.57.122.187 2.57.122.196 2.57.122.207 2.57.122.210 2.57.122.211 2.57.122.212 2.57.122.213 2.57.122.215 2.57.122.98 2.59.154.124 2.81.219.150 3.136.176.118 3.83.228.55 3.86.68.17 4.71.37.45 4.71.37.46 4.78.193.226 5.103.118.110 5.104.28.98 5.11.138.149 5.133.168.15 5.135.230.131 5.140.53.14 5.14.133.5 5.141.80.242 5.149.205.230 5.149.206.240 5.150.247.231 5.15.203.109 5.15.239.146 5.151.118.100 5.152.207.195 5.160.50.50 5.172.17.90 5.182.211.17 5.182.99.11 5.183.200.70 5.188.102.188 5.188.156.81 5.188.156.85 5.188.156.92 5.188.158.135 5.188.158.147 5.188.158.195 5.188.158.196 5.188.206.220 5.188.210.190 5.188.210.46 5.189.140.178 5.189.141.39 5.189.171.172 5.196.127.124 5.200.64.54 5.200.69.153 5.200.92.182 5.225.219.71 5.249.147.224 5.32.71.134 5.34.160.38 5.39.117.247 5.44.197.24 5.50.5.223 5.53.138.156 5.56.27.145 5.62.43.151 5.63.8.205 5.80.118.213 5.88.130.165 5.89.124.242 5.89.243.30 5.89.59.163 5.95.35.109 5.95.59.42 8.209.67.241 8.242.225.106 8.27.118.34 8.30.197.230 8.40.183.187 8.42.212.10 12.156.112.9 12.157.96.67 12.166.193.125 12.176.88.117 12.178.187.6 12.178.187.7 12.178.187.9 12.190.55.35 12.192.4.168 12.217.40.157 12.218.61.83 12.233.159.194 12.48.236.66 12.69.203.124 13.48.140.83 13.54.125.181 13.64.89.147 13.65.190.193 13.68.168.194 13.68.213.123 13.68.216.44 13.71.118.153 13.72.102.159 13.73.181.52 13.75.132.108 13.76.132.123 13.76.189.191 13.76.190.188 13.76.212.215 13.76.254.94 13.79.225.151 13.80.46.69 13.93.216.56 13.95.2.167 14.102.101.102 14.102.254.230 14.112.35.138 14.116.146.217 14.116.148.37 14.116.149.222 14.116.186.14 14.116.191.124 14.116.195.245 14.116.207.212 14.117.237.27 14.118.212.146 14.118.253.241 14.120.181.96 14.120.186.17 14.121.147.56 14.127.251.13 14.136.249.138 14.139.171.142 14.139.62.138 14.141.24.110 14.141.67.86 14.142.151.178 14.142.197.114 14.152.95.133 14.156.50.118 14.161.1.46 14.161.9.31 14.17.100.33 14.17.100.57 14.17.114.203 14.17.114.65 14.17.70.74 14.175.208.146 14.176.18.87 14.176.231.214 14.176.231.63 14.18.101.26 14.18.120.33 14.18.236.43 14.18.238.142 14.183.126.38 14.184.73.30 14.187.68.169 14.188.155.38 14.189.33.152 14.199.219.9 14.200.138.14 14.207.43.165 14.21.7.199 14.21.81.13 14.21.85.18 14.225.2.208 14.228.132.227 14.23.110.173 14.232.208.115 14.232.245.125 14.234.40.158 14.241.231.6 14.241.232.126 14.241.39.247 14.251.150.175 14.254.197.7 14.29.178.242 14.29.179.228 14.29.184.206 14.29.197.120 14.29.198.213 14.29.201.50 14.29.205.61 14.29.215.211 14.29.215.240 14.29.218.116 14.29.221.26 14.29.222.191 14.29.222.37 14.29.241.58 14.29.242.40 14.29.245.135 14.29.249.107 14.32.43.193 14.33.252.133 14.34.189.136 14.37.141.231 14.39.92.133 14.40.10.202 14.42.56.203 14.45.230.149 14.46.233.198 14.47.77.176 14.48.187.74 14.48.22.215 14.48.243.15 14.51.116.56 14.52.106.157 14.52.50.28 14.54.143.73 14.54.42.152 14.54.6.26 14.99.41.42 15.206.229.223 20.1.2.2 20.185.231.189 20.188.61.90 20.42.89.168 20.42.89.182 20.43.56.138 23.100.34.224 23.102.137.41 23.102.152.162 23.102.153.229 23.116.185.114 23.152.32.242 23.19.78.105 23.19.78.8 23.228.73.50 23.228.89.34 23.239.17.252 23.243.149.241 23.250.91.2 23.251.93.206 23.27.126.122 23.90.145.46 23.91.210.249 23.95.80.151 23.95.94.202 23.97.96.35 23.98.152.191 23.98.69.49 23.99.100.154 24.102.240.91 24.106.125.38 24.112.107.7 24.138.37.197 24.138.5.245 24.143.136.16 24.165.30.138 24.172.15.26 24.172.15.58 24.18.160.5 24.184.1.41 24.187.18.67 24.187.94.95 24.188.228.243 24.207.67.160 24.21.177.155 24.213.8.101 24.22.93.204 24.222.248.59 24.226.148.214 24.231.46.233 24.232.177.8 24.232.234.187 24.234.3.38 24.243.239.122 24.244.132.3 24.248.1.186 24.35.245.52 24.42.17.103 24.42.229.143 24.48.220.145 24.49.217.10 24.51.56.8 24.90.119.172 24.98.168.148 27.0.48.227 27.105.131.21 27.105.132.115 27.105.183.230 27.105.194.90 27.105.199.53 27.113.68.229 27.115.124.10 27.115.124.74 27.115.124.75 27.115.124.9 27.115.189.103 27.115.52.210 27.118.108.203 27.118.96.112 27.12.38.83 27.123.0.153 27.123.221.170 27.124.42.145 27.126.11.60 27.126.47.7 27.127.136.116 27.128.165.131 27.128.176.144 27.128.180.42 27.128.233.104 27.128.243.112 27.131.178.119 27.147.142.50 27.147.142.53 27.147.222.212 27.148.211.131 27.148.211.137 27.148.211.247 27.150.22.155 27.15.154.220 27.151.0.160 27.151.115.81 27.154.70.135 27.156.70.203 27.158.29.223 27.17.35.34 27.184.247.41 27.187.120.203 27.19.177.146 27.191.210.15 27.193.11.19 27.193.113.130 27.193.45.178 27.194.141.192 27.196.254.25 27.199.205.37 27.200.34.127 27.2.157.101 27.2.86.187 27.201.26.98 27.204.156.54 27.204.51.136 27.211.88.33 27.213.118.95 27.213.176.198 27.213.248.32 27.213.7.106 27.214.114.206 27.216.246.176 27.217.220.149 27.217.57.0 27.218.218.54 27.219.113.88 27.219.66.55 27.220.21.182 27.221.219.28 27.221.25.235 27.221.58.21 27.221.78.227 27.222.49.248 27.223.107.146 27.223.143.244 27.223.67.202 27.223.71.6 27.223.78.164 27.223.78.168 27.224.179.28 27.24.159.28 27.24.31.92 27.254.34.181 27.254.38.122 27.254.67.161 27.30.4.24 27.3.134.8 27.35.23.5 27.37.75.109 27.41.176.255 27.46.67.3 27.49.160.7 27.49.160.9 27.49.232.9 27.50.169.21 27.66.127.0 27.70.191.225 27.71.231.169 27.72.80.126 27.75.217.58 27.8.110.206 27.96.240.22 31.0.224.191 31.125.165.95 31.129.127.155 31.129.82.101 31.134.123.251 31.148.127.91 31.156.113.161 31.156.235.72 31.163.131.174 31.163.131.238 31.163.133.106 31.163.133.68 31.163.134.121 31.163.135.235 31.163.137.144 31.163.140.197 31.163.143.43 31.163.144.236 31.163.147.201 31.163.148.5 31.163.149.15 31.163.149.175 31.163.151.210 31.163.154.214 31.163.157.24 31.163.163.38 31.163.163.82 31.163.169.0 31.163.173.47 31.163.174.113 31.163.174.213 31.163.175.111 31.163.175.6 31.163.177.171 31.163.180.208 31.163.184.131 31.163.185.34 31.163.189.62 31.163.191.14 31.167.133.107 31.167.73.193 31.168.120.3 31.168.65.233 31.170.137.179 31.170.185.182 31.170.22.12 31.173.125.143 31.186.48.172 31.186.53.122 31.186.53.214 31.208.110.174 31.208.233.30 31.208.236.116 31.208.236.165 31.208.236.235 31.209.16.200 31.214.160.15 31.214.240.201 31.40.151.105 31.42.165.227 31.42.186.98 31.45.93.132 31.46.173.21 31.47.43.139 34.107.13.225 34.107.31.61 34.73.136.216 34.75.240.129 34.80.135.20 34.85.5.129 34.87.17.222 34.87.181.193 34.87.251.150 34.87.254.164 34.90.154.181 34.90.40.23 34.91.73.146 34.96.160.246 35.138.179.20 35.178.28.30 35.187.233.244 35.187.239.32 35.187.2.55 35.189.125.67 35.195.161.121 35.196.27.61 35.197.203.96 35.198.95.212 35.199.77.1 35.203.92.194 35.205.163.208 35.215.242.150 35.224.146.137 35.225.146.248 35.225.173.185 35.226.189.158 35.228.151.206 35.228.207.215 35.228.242.112 35.228.243.135 35.228.246.186 35.228.25.205 35.232.69.246 35.233.15.74 35.234.74.69 35.237.149.50 35.242.128.84 35.244.88.157 35.246.250.86 36.103.222.114 36.103.222.28 36.103.222.42 36.103.241.148 36.103.245.204 36.104.145.203 36.108.171.123 36.110.182.30 36.110.218.194 36.110.29.74 36.110.3.50 36.111.150.124 36.111.181.248 36.111.182.126 36.111.182.133 36.111.182.36 36.111.182.37 36.111.182.49 36.111.33.173 36.111.47.193 36.112.11.174 36.112.118.154 36.112.128.193 36.112.128.203 36.112.131.191 36.112.136.33 36.112.172.125 36.112.26.35 36.112.26.48 36.112.41.194 36.112.59.142 36.112.74.3 36.134.4.246 36.134.5.7 36.152.32.87 36.152.65.134 36.153.181.155 36.154.117.210 36.154.210.162 36.154.210.166 36.154.210.177 36.154.73.54 36.154.8.103 36.154.8.112 36.154.8.5 36.158.206.218 36.158.57.151 36.224.85.9 36.227.85.149 36.228.205.171 36.230.161.174 36.232.199.8 36.233.183.170 36.234.82.156 36.237.215.109 36.237.69.103 36.238.111.187 36.239.77.4 36.248.182.228 36.250.229.115 36.250.75.44 36.251.145.231 36.26.146.213 36.26.68.41 36.37.115.106 36.45.148.78 36.46.135.38 36.48.159.58 36.48.166.77 36.48.175.158 36.48.175.161 36.67.163.146 36.67.206.55 36.7.107.157 36.7.107.172 36.7.138.214 36.7.159.62 36.7.168.201 36.7.185.155 36.7.80.168 36.7.82.194 36.7.87.6 36.80.250.189 36.81.255.151 36.83.64.46 36.91.111.31 36.91.12.35 36.92.138.25 36.92.23.18 36.92.6.114 36.92.67.165 36.94.90.98 36.97.143.123 36.99.46.128 37.1.218.23 37.109.56.169 37.110.143.248 37.111.42.18 37.117.255.141 37.120.148.78 37.120.249.77 37.139.16.229 37.139.17.137 37.139.7.127 37.148.209.105 37.148.209.168 37.151.190.39 37.156.146.132 37.157.40.4 37.183.126.124 37.187.146.116 37.187.220.207 37.19.86.225 37.191.130.66 37.191.184.203 37.191.190.146 37.193.175.55 37.193.65.172 37.193.86.120 37.194.122.6 37.202.78.220 37.204.15.207 37.210.175.126 37.211.85.154 37.224.58.105 37.228.138.150 37.230.206.15 37.233.12.58 37.233.55.0 37.235.142.10 37.238.136.74 37.247.103.68 37.247.92.253 37.252.69.104 37.252.79.223 37.255.198.206 37.255.229.128 37.26.0.38 37.26.2.122 37.29.82.227 37.37.100.139 37.44.116.190 37.49.225.102 37.49.225.107 37.49.225.129 37.49.225.166 37.49.227.202 37.49.229.237 37.53.100.154 37.59.196.138 37.60.190.98 38.104.215.130 38.117.96.180 38.130.198.145 38.77.16.239 39.101.186.65 39.105.149.234 39.107.74.87 39.109.197.68 39.109.223.10 39.118.111.86 39.119.127.152 39.129.132.130 39.152.112.110 39.152.133.169 39.152.148.31 39.152.67.245 39.155.212.114 39.155.246.2 39.155.255.94 39.164.205.16 39.175.92.86 39.3.70.95 39.46.87.81 39.68.174.255 39.69.64.106 39.69.77.142 39.74.93.8 39.75.57.48 39.77.117.109 39.77.251.90 39.78.176.107 39.79.127.239 39.81.175.9 39.82.52.228 39.83.176.33 39.87.142.112 39.87.254.46 39.89.138.198 39.89.2.121 39.89.234.86 39.89.99.101 39.90.39.231 39.97.44.193 39.97.96.96 39.98.43.71 40.113.76.76 40.114.108.138 40.114.109.168 40.114.111.115 40.114.36.85 40.115.24.141 40.115.49.104 40.121.135.179 40.123.204.131 40.124.32.105 40.134.4.94 40.65.126.191 40.71.86.87 40.73.103.7 40.73.114.170 40.73.114.247 40.73.1.54 40.74.235.109 40.76.66.247 40.76.70.217 40.77.18.220 40.84.17.104 40.84.238.168 40.84.36.103 40.86.223.86 40.88.131.110 41.128.168.39 41.139.164.167 41.143.254.58 41.149.156.93 41.188.47.82 41.189.179.190 41.190.226.190 41.204.93.22 41.208.73.21 41.21.233.230 41.213.138.16 41.214.185.29 41.221.251.19 41.222.172.57 41.222.7.157 41.226.18.215 41.230.25.62 41.231.228.21 41.231.87.69 41.242.142.195 41.32.133.153 41.32.146.187 41.32.196.42 41.32.211.164 41.32.62.74 41.32.82.147 41.33.210.78 41.33.240.117 41.34.57.135 41.38.121.79 41.38.135.86 41.38.164.88 41.38.165.34 41.38.183.239 41.38.202.189 41.38.27.174 41.38.27.2 41.38.50.50 41.39.119.209 41.39.234.190 41.39.70.201 41.39.70.95 41.39.79.196 41.41.104.150 41.41.37.219 41.41.71.195 41.46.93.143 41.59.202.12 41.63.10.12 41.65.218.72 41.65.68.70 41.66.24.247 41.67.53.4 41.72.193.18 41.72.61.50 41.72.61.67 41.75.92.98 41.76.169.8 41.76.42.75 41.76.8.12 41.78.118.2 41.78.172.77 41.78.174.227 41.79.4.156 41.86.155.5 41.86.254.8 41.86.34.45 41.89.198.239 41.89.51.22 41.92.133.214 41.93.45.140 41.94.22.6 42.101.34.67 42.101.34.85 42.112.36.13 42.112.36.20 42.115.151.163 42.115.68.209 42.117.4.118 42.118.254.101 42.127.253.65 42.157.9.38 42.176.124.67 42.176.30.103 42.177.131.216 42.177.51.188 42.178.22.172 42.178.229.46 42.179.187.254 42.179.249.86 42.180.254.49 42.194.189.207 42.194.225.106 42.200.118.211 42.200.135.228 42.200.150.157 42.200.182.127 42.200.71.68 42.200.92.134 42.2.233.226 42.2.69.57 42.227.36.59 42.228.2.150 42.228.54.98 42.230.229.65 42.230.43.108 42.233.236.40 42.234.109.143 42.236.10.107 42.236.10.108 42.236.10.109 42.236.10.112 42.236.10.121 42.236.10.122 42.236.10.123 42.236.10.69 42.236.10.70 42.236.10.71 42.236.10.72 42.236.10.73 42.236.10.76 42.236.10.77 42.236.10.83 42.236.73.90 42.236.74.70 42.239.168.125 42.240.129.58 42.242.81.132 42.247.16.105 42.247.5.68 42.247.5.69 42.247.5.70 42.247.5.72 42.247.5.73 42.247.5.74 42.247.5.75 42.247.5.76 42.247.5.77 42.247.5.79 42.247.5.85 42.247.5.87 42.247.5.88 42.247.5.91 42.247.5.92 42.247.5.94 42.247.5.95 42.247.7.169 42.4.69.177 42.48.16.242 42.48.60.89 42.49.90.136 42.5.117.74 42.5.121.168 42.51.225.175 42.54.130.87 42.54.162.79 42.56.19.14 42.56.212.35 42.57.119.68 42.58.4.66 42.59.185.103 42.59.48.172 42.59.89.203 42.59.90.2 42.59.93.217 42.60.49.240 42.61.189.182 42.62.107.209 42.62.18.252 42.62.96.36 42.7.119.143 42.7.82.22 42.81.123.232 42.82.179.128 42.82.224.83 42.82.237.144 42.85.170.115 42.85.17.133 42.86.151.159 42.87.138.54 42.97.47.198 42.98.106.123 42.98.222.141 42.98.7.35 42.98.8.73 43.224.212.50 43.225.110.36 43.228.38.174 43.228.77.131 43.228.79.40 43.231.150.78 43.231.96.108 43.231.96.109 43.240.136.228 43.240.137.16 43.241.252.98 43.242.210.142 43.242.214.183 43.243.130.4 43.243.136.253 43.243.168.98 43.245.185.66 43.245.222.163 43.247.184.225 43.247.185.98 43.248.188.78 43.249.192.83 43.250.186.162 43.250.187.130 43.251.255.83 43.252.230.148 43.254.156.214 43.254.240.150 43.254.240.34 45.10.235.34 45.10.35.138 45.112.160.110 45.113.202.6 45.113.68.179 45.113.69.175 45.113.70.144 45.113.70.146 45.113.70.213 45.113.70.223 45.113.70.231 45.113.70.37 45.113.71.101 45.113.71.103 45.113.71.209 45.113.71.219 45.113.71.23 45.113.71.236 45.114.85.202 45.115.236.30 45.115.243.34 45.116.160.31 45.116.173.125 45.117.42.125 45.121.144.114 45.121.216.130 45.122.221.69 45.122.46.2 45.123.12.57 45.124.86.155 45.125.217.217 45.125.239.54 45.125.44.209 45.125.46.222 45.125.47.93 45.127.186.21 45.129.33.10 45.129.33.101 45.129.33.12 45.129.33.13 45.129.33.14 45.129.33.141 45.129.33.142 45.129.33.143 45.129.33.144 45.129.33.145 45.129.33.147 45.129.33.148 45.129.33.149 45.129.33.15 45.129.33.151 45.129.33.152 45.129.33.153 45.129.33.156 45.129.33.16 45.129.33.17 45.129.33.18 45.129.33.19 45.129.33.20 45.129.33.21 45.129.33.22 45.129.33.23 45.129.33.24 45.129.33.40 45.129.33.41 45.129.33.43 45.129.33.44 45.129.33.45 45.129.33.46 45.129.33.48 45.129.33.5 45.129.33.50 45.129.33.51 45.129.33.52 45.129.33.53 45.129.33.54 45.129.33.55 45.129.33.57 45.129.33.59 45.129.33.6 45.129.33.8 45.129.33.81 45.129.33.82 45.129.33.84 45.13.161.115 45.132.210.36 45.134.179.238 45.134.179.243 45.140.17.150 45.140.17.151 45.140.17.152 45.140.17.153 45.140.17.154 45.140.17.50 45.140.17.51 45.140.17.52 45.140.17.53 45.140.17.54 45.140.17.55 45.140.17.56 45.140.17.57 45.140.17.58 45.140.17.59 45.140.17.60 45.140.17.61 45.140.17.62 45.140.17.63 45.140.17.64 45.140.17.65 45.140.17.66 45.140.17.67 45.14.149.38 45.14.150.130 45.14.150.133 45.14.150.140 45.14.150.51 45.14.150.86 45.14.224.176 45.14.44.2 45.141.156.200 45.141.71.131 45.141.84.99 45.143.220.250 45.143.220.59 45.143.221.239 45.143.221.53 45.143.221.83 45.143.221.84 45.143.222.131 45.143.99.69 45.145.185.196 45.145.66.104 45.145.66.21 45.145.66.22 45.145.66.90 45.145.66.91 45.145.66.96 45.145.67.182 45.145.67.226 45.145.67.39 45.145.67.74 45.148.10.11 45.148.10.15 45.148.10.184 45.148.10.19 45.148.10.28 45.148.121.28 45.148.121.3 45.148.121.83 45.148.121.89 45.148.122.152 45.148.122.170 45.155.205.150 45.155.205.151 45.155.205.152 45.155.205.153 45.155.205.154 45.155.205.155 45.155.205.156 45.155.205.157 45.155.205.158 45.155.205.159 45.155.205.160 45.155.205.161 45.155.205.162 45.155.205.164 45.155.205.50 45.155.205.51 45.155.205.52 45.162.229.170 45.164.73.5 45.165.168.254 45.165.214.53 45.165.214.9 45.166.33.128 45.166.69.170 45.167.144.11 45.170.221.6 45.171.205.22 45.172.232.232 45.178.144.234 45.179.223.26 45.182.161.4 45.182.84.5 45.184.74.67 45.184.77.101 45.185.164.116 45.185.164.130 45.185.164.136 45.185.164.182 45.185.164.212 45.185.164.255 45.185.17.216 45.186.145.158 45.186.196.21 45.187.43.203 45.2.251.126 45.201.195.191 45.201.200.44 45.225.110.193 45.225.110.195 45.225.184.82 45.227.254.30 45.227.255.59 45.230.191.103 45.230.191.104 45.230.191.106 45.230.200.101 45.230.200.189 45.230.201.138 45.230.201.180 45.230.201.197 45.230.201.90 45.230.202.215 45.230.203.43 45.230.203.55 45.230.240.107 45.231.145.101 45.232.215.204 45.235.145.83 45.235.16.88 45.235.35.136 45.236.94.8 45.239.106.5 45.248.71.153 45.248.94.195 45.249.235.165 45.25.36.248 45.26.142.184 45.3.143.206 45.3.187.214 45.32.195.43 45.32.5.237 45.33.72.173 45.33.7.49 45.40.228.204 45.4.140.37 45.5.18.32 45.5.203.41 45.51.183.239 45.55.179.132 45.55.32.34 45.55.58.104 45.55.70.60 45.55.88.16 45.55.92.115 45.56.91.118 45.58.135.114 45.61.136.146 45.61.136.48 45.61.136.79 45.62.200.29 45.62.211.176 45.62.240.116 45.63.15.68 45.64.126.103 45.65.215.74 45.66.216.184 45.7.138.40 45.71.202.114 45.71.73.225 45.74.155.229 45.74.175.50 45.74.207.31 45.79.106.170 45.79.168.68 45.80.64.230 45.83.64.53 45.83.64.90 45.83.66.95 45.83.67.223 45.84.184.174 45.84.196.236 45.84.196.242 45.84.196.36 45.88.209.55 45.9.148.123 45.9.148.29 45.91.226.66 45.95.168.132 45.95.168.137 45.95.168.171 45.95.168.77 45.95.168.82 45.95.168.86 45.95.168.98 46.100.62.19 46.101.109.182 46.101.143.148 46.101.164.27 46.101.164.33 46.101.165.62 46.101.181.165 46.101.181.170 46.101.189.37 46.101.210.156 46.101.211.196 46.101.212.57 46.101.220.225 46.101.253.249 46.101.253.9 46.101.35.88 46.101.40.21 46.105.130.230 46.105.148.212 46.12.137.182 46.12.144.31 46.12.174.124 46.121.195.133 46.130.63.205 46.146.228.39 46.148.20.25 46.149.182.124 46.149.72.20 46.151.10.52 46.160.179.117 46.160.33.98 46.161.27.150 46.161.27.48 46.161.27.75 46.166.201.147 46.17.121.19 46.173.172.103 46.174.191.28 46.174.191.29 46.174.191.30 46.174.191.31 46.174.191.32 46.176.221.87 46.177.221.177 46.182.6.101 46.19.225.236 46.209.150.82 46.21.101.66 46.219.113.59 46.219.126.85 46.22.120.82 46.225.126.139 46.233.28.137 46.233.57.76 46.235.219.130 46.236.84.196 46.236.86.181 46.238.134.247 46.238.41.201 46.24.14.169 46.24.59.39 46.242.131.31 46.243.12.99 46.243.68.119 46.243.71.157 46.243.71.225 46.243.71.247 46.249.32.221 46.249.32.234 46.249.32.35 46.253.95.33 46.27.181.85 46.29.214.7 46.29.255.147 46.31.79.105 46.32.252.149 46.37.82.101 46.39.215.129 46.42.48.55 46.55.92.244 46.59.24.123 46.59.25.81 46.59.52.76 46.63.22.16 46.8.158.130 46.8.178.124 46.8.39.98 46.97.241.238 46.99.158.235 47.103.89.11 47.103.93.68 47.115.142.99 47.153.188.246 47.17.187.4 47.17.216.7 47.196.147.90 47.20.181.193 47.21.15.202 47.217.122.253 47.22.10.18 47.23.4.36 47.23.70.10 47.234.210.235 47.240.20.214 47.240.49.112 47.24.143.195 47.241.10.157 47.241.26.71 47.241.29.56 47.241.34.42 47.241.61.131 47.241.62.238 47.241.63.146 47.241.63.196 47.244.220.143 47.254.131.234 47.254.151.241 47.254.178.40 47.254.197.133 47.34.164.211 47.46.248.82 47.47.57.222 47.57.0.238 47.57.126.63 47.57.181.13 47.57.182.206 47.57.184.253 47.57.6.243 47.57.74.239 47.61.184.45 47.74.148.237 47.74.223.226 47.74.3.113 47.74.44.224 47.74.48.159 47.75.1.243 47.75.167.17 47.75.216.136 47.75.42.203 47.90.96.169 47.91.44.93 47.93.53.162 47.95.214.106 47.95.239.170 47.98.190.243 47.99.130.196 49.113.113.235 49.118.185.223 49.128.174.248 49.128.60.115 49.142.41.204 49.142.82.60 49.143.165.171 49.143.32.6 49.143.42.53 49.158.13.28 49.159.20.138 49.159.27.182 49.161.238.225 49.174.199.165 49.176.242.163 49.192.66.69 49.198.222.169 49.204.143.215 49.207.14.51 49.212.128.149 49.213.162.208 49.213.176.115 49.213.178.207 49.213.182.136 49.213.186.67 49.213.188.132 49.213.204.44 49.231.66.20 49.232.14.216 49.232.142.68 49.232.148.45 49.232.153.169 49.232.16.241 49.232.162.53 49.232.16.47 49.232.191.178 49.232.209.212 49.232.23.108 49.232.31.217 49.232.33.182 49.232.34.247 49.232.42.135 49.232.54.96 49.232.6.28 49.232.64.97 49.232.69.39 49.232.73.231 49.232.95.250 49.233.10.41 49.233.111.193 49.233.144.220 49.233.147.188 49.233.150.127 49.233.152.245 49.233.153.154 49.233.153.71 49.233.160.103 49.233.173.72 49.233.173.90 49.233.180.38 49.233.182.177 49.233.183.15 49.233.186.66 49.233.199.240 49.233.200.37 49.233.202.149 49.233.202.231 49.233.204.37 49.233.208.45 49.233.213.214 49.233.42.247 49.233.43.87 49.233.61.51 49.233.69.121 49.233.74.239 49.233.92.166 49.234.10.48 49.234.106.48 49.234.11.240 49.234.115.11 49.234.116.125 49.234.117.137 49.234.119.42 49.234.124.120 49.234.155.82 49.234.182.55 49.234.182.99 49.234.192.145 49.234.195.122 49.234.196.225 49.234.219.31 49.234.224.245 49.234.229.235 49.234.239.70 49.234.25.49 49.234.42.108 49.234.52.166 49.234.64.200 49.234.81.14 49.234.99.227 49.235.107.14 49.235.108.92 49.235.109.205 49.235.114.186 49.235.124.125 49.235.131.133 49.235.14.125 49.235.142.96 49.235.143.244 49.235.152.169 49.235.192.120 49.235.199.42 49.235.201.242 49.235.216.127 49.235.239.238 49.235.253.61 49.235.48.191 49.235.49.150 49.235.54.129 49.235.73.150 49.235.74.86 49.235.83.136 49.235.93.87 49.236.193.70 49.248.106.61 49.248.84.138 49.248.99.243 49.3.44.137 49.49.187.231 49.51.10.125 49.51.10.180 49.51.10.24 49.51.10.61 49.51.11.133 49.51.11.210 49.51.11.68 49.51.12.169 49.51.12.179 49.51.12.205 49.51.12.221 49.51.12.230 49.51.12.241 49.51.12.244 49.51.12.44 49.51.12.60 49.51.12.61 49.51.13.14 49.51.13.40 49.51.134.254 49.51.150.122 49.51.153.23 49.51.153.85 49.51.155.120 49.51.159.98 49.51.160.107 49.51.160.139 49.51.160.173 49.51.160.240 49.51.160.252 49.51.160.31 49.51.160.47 49.51.160.77 49.51.160.84 49.51.160.91 49.51.161.114 49.51.161.141 49.51.161.145 49.51.161.183 49.51.161.186 49.51.161.209 49.51.161.236 49.51.161.252 49.51.161.77 49.51.161.95 49.51.162.151 49.51.162.172 49.51.172.33 49.51.230.78 49.51.232.87 49.51.241.239 49.51.242.196 49.51.242.225 49.51.243.251 49.51.244.189 49.51.252.116 49.51.252.209 49.51.253.158 49.51.253.249 49.51.34.136 49.51.34.227 49.51.49.117 49.51.50.208 49.51.51.24 49.51.51.53 49.51.52.89 49.51.8.104 49.51.8.17 49.51.8.172 49.51.8.188 49.51.8.195 49.51.8.24 49.51.8.99 49.51.90.173 49.51.90.60 49.51.9.105 49.51.9.134 49.51.9.157 49.51.9.19 49.51.9.196 49.51.9.204 49.51.9.206 49.51.9.216 49.51.9.77 49.51.9.87 49.64.248.176 49.64.51.79 49.66.111.65 49.67.179.65 49.67.237.68 49.68.234.122 49.69.187.57 49.7.14.184 49.7.58.243 49.71.124.210 49.71.65.249 49.72.212.22 49.74.121.107 49.83.138.244 49.83.23.88 49.83.36.234 49.88.112.109 49.88.118.250 49.88.137.189 49.88.151.35 49.88.196.141 49.88.218.185 50.101.240.25 50.117.26.66 50.196.27.214 50.199.81.66 50.200.136.108 50.202.44.35 50.205.206.94 50.207.163.12 50.220.86.228 50.233.148.74 50.234.173.102 50.234.212.4 50.241.229.220 50.244.25.90 50.244.78.69 50.31.116.6 50.31.87.253 50.7.133.242 50.79.242.21 50.84.120.122 50.90.45.100 51.116.177.209 51.140.100.22 51.140.203.77 51.140.95.34 51.141.12.71 51.141.39.94 51.143.23.82 51.144.60.77 51.15.2.112 51.15.231.237 51.158.171.106 51.159.23.78 51.161.54.149 51.161.54.251 51.178.225.194 51.195.167.73 51.195.26.196 51.195.33.40 51.210.15.231 51.210.222.5 51.211.160.34 51.211.173.214 51.254.156.114 51.254.248.18 51.254.49.100 51.254.49.101 51.254.49.102 51.254.49.103 51.254.49.105 51.254.49.106 51.254.49.107 51.254.49.108 51.254.49.109 51.254.49.110 51.254.49.111 51.254.49.96 51.254.49.97 51.254.49.98 51.254.49.99 51.254.75.176 51.254.75.188 51.255.109.160 51.255.109.161 51.255.109.162 51.255.109.163 51.255.109.164 51.255.109.165 51.255.109.166 51.255.109.169 51.255.109.170 51.255.109.171 51.255.109.172 51.255.109.173 51.255.109.174 51.255.109.175 51.38.225.124 51.38.57.199 51.4.147.32 51.75.145.188 51.75.242.129 51.75.52.127 51.75.86.211 51.77.226.68 51.79.153.197 51.79.184.131 51.79.184.132 51.79.184.133 51.79.184.136 51.79.35.114 51.81.80.121 51.81.80.82 51.81.82.36 51.83.171.12 51.83.171.14 51.83.208.185 51.89.115.80 51.89.153.182 51.89.37.51 51.89.52.209 51.91.102.99 51.91.158.178 51.91.45.12 52.136.120.188 52.136.121.121 52.141.17.229 52.141.60.178 52.142.164.243 52.142.45.207 52.143.164.67 52.143.64.68 52.146.36.72 52.147.177.224 52.152.226.185 52.157.154.150 52.163.220.144 52.172.157.44 52.172.45.72 52.175.248.102 52.177.238.151 52.177.238.35 52.183.3.69 52.186.84.111 52.187.190.83 52.187.69.98 52.188.10.248 52.188.69.174 52.231.54.27 52.232.188.182 52.233.184.83 52.234.178.149 52.247.31.166 52.252.56.58 52.254.74.78 52.73.169.169 52.80.107.56 52.80.47.233 52.82.57.129 54.223.61.142 54.36.109.237 54.39.133.91 54.39.193.68 54.39.215.32 54.39.215.38 54.39.237.144 54.39.237.154 54.39.237.158 54.39.237.159 54.39.72.83 54.88.75.182 54.92.175.228 58.108.254.205 58.114.246.150 58.118.39.228 58.119.1.250 58.119.172.10 58.119.3.58 58.119.3.70 58.119.86.245 58.122.119.36 58.125.191.4 58.126.223.166 58.131.104.7 58.141.232.44 58.144.151.64 58.152.128.146 58.152.32.179 58.152.37.235 58.153.157.146 58.153.34.214 58.16.186.6 58.16.209.251 58.16.252.14 58.164.204.22 58.17.121.223 58.177.5.220 58.18.102.140 58.18.133.165 58.18.215.26 58.18.250.82 58.18.36.130 58.182.160.223 58.183.158.203 58.187.242.60 58.20.41.53 58.209.119.46 58.210.136.84 58.210.172.118 58.210.193.22 58.210.239.86 58.210.89.180 58.211.134.18 58.211.153.58 58.211.235.138 58.211.245.181 58.211.96.226 58.213.48.218 58.213.48.219 58.213.51.35 58.213.51.38 58.213.51.39 58.213.51.43 58.213.91.13 58.213.91.6 58.213.91.8 58.213.91.9 58.214.11.123 58.214.27.130 58.215.12.226 58.215.142.167 58.215.182.162 58.215.201.86 58.215.235.146 58.215.57.240 58.215.61.68 58.215.65.99 58.215.75.19 58.215.76.226 58.215.9.158 58.216.101.113 58.216.176.178 58.216.176.179 58.216.176.206 58.216.176.211 58.216.176.214 58.216.207.110 58.216.8.133 58.216.8.83 58.217.157.209 58.217.157.233 58.217.157.46 58.217.157.7 58.217.157.90 58.218.185.20 58.218.199.80 58.218.200.113 58.218.201.11 58.218.239.75 58.219.206.11 58.219.243.117 58.220.248.187 58.220.25.2 58.220.253.162 58.220.46.62 58.220.56.13 58.220.56.3 58.22.218.108 58.221.140.187 58.221.149.92 58.221.161.10 58.221.220.6 58.221.2.210 58.221.44.224 58.221.60.119 58.221.60.232 58.221.62.214 58.222.1.178 58.222.118.98 58.222.229.70 58.228.159.253 58.23.213.184 58.23.222.242 58.240.39.7 58.240.96.50 58.242.30.12 58.242.68.178 58.244.181.154 58.245.246.117 58.245.96.74 58.246.4.50 58.248.225.28 58.251.218.28 58.251.218.97 58.252.68.5 58.253.84.146 58.254.35.146 58.255.77.17 58.26.4.68 58.27.231.67 58.29.26.73 58.29.84.41 58.30.80.209 58.32.252.162 58.32.4.68 58.33.124.4 58.33.174.50 58.33.84.10 58.33.98.130 58.35.212.165 58.37.146.172 58.37.36.163 58.39.23.35 58.40.66.150 58.42.237.23 58.48.84.81 58.48.87.13 58.49.101.151 58.49.58.199 58.49.59.146 58.49.94.230 58.56.22.117 58.56.244.22 58.56.56.174 58.57.4.199 58.59.176.3 58.59.176.4 58.59.54.78 58.59.55.178 58.60.109.242 58.64.155.101 58.64.171.69 58.64.200.176 58.64.200.178 58.65.153.246 58.69.60.253 58.76.176.42 58.87.114.217 58.87.89.251 58.88.44.40 59.0.84.78 59.10.99.194 59.103.138.87 59.103.180.84 59.108.47.88 59.11.209.212 59.11.215.130 59.11.230.27 59.120.182.173 59.120.239.204 59.120.55.33 59.124.223.138 59.124.226.199 59.124.230.138 59.124.25.69 59.124.27.97 59.124.84.112 59.124.90.112 59.124.90.113 59.125.0.204 59.125.103.155 59.125.133.99 59.125.198.105 59.125.2.3 59.126.100.65 59.126.11.115 59.126.116.161 59.126.116.231 59.126.117.160 59.126.118.91 59.126.119.185 59.126.120.138 59.126.120.161 59.126.13.214 59.126.134.181 59.126.135.11 59.126.140.156 59.126.144.140 59.126.146.69 59.126.148.109 59.126.148.6 59.126.149.208 59.126.150.99 59.126.152.146 59.126.159.8 59.126.16.179 59.126.164.130 59.126.168.225 59.126.169.135 59.126.169.60 59.126.171.17 59.126.172.176 59.126.175.178 59.126.177.171 59.126.177.85 59.126.179.204 59.126.180.81 59.126.18.101 59.126.181.104 59.126.182.115 59.126.18.213 59.126.183.162 59.126.188.124 59.126.189.30 59.126.189.87 59.126.193.89 59.126.195.141 59.126.196.162 59.126.197.146 59.126.198.147 59.126.201.207 59.126.201.87 59.126.202.3 59.126.202.95 59.126.203.198 59.126.204.76 59.126.204.97 59.126.208.228 59.126.211.148 59.126.213.105 59.126.220.62 59.126.223.32 59.126.225.13 59.126.225.219 59.126.227.185 59.126.22.88 59.126.231.10 59.126.233.108 59.126.233.194 59.126.237.125 59.126.237.39 59.126.238.145 59.126.238.176 59.126.241.41 59.126.243.193 59.126.24.75 59.126.251.114 59.126.251.230 59.126.251.70 59.126.253.122 59.126.254.252 59.126.26.207 59.126.26.49 59.126.26.73 59.126.27.168 59.126.27.37 59.126.27.63 59.126.27.78 59.126.28.107 59.126.29.54 59.126.31.4 59.126.3.148 59.126.36.249 59.126.37.27 59.126.38.35 59.126.40.106 59.126.41.9 59.126.53.44 59.126.60.88 59.126.63.23 59.126.65.141 59.126.67.79 59.126.69.87 59.126.70.163 59.126.72.204 59.126.72.69 59.126.73.4 59.126.74.67 59.126.75.136 59.126.78.105 59.126.78.24 59.126.81.233 59.126.8.136 59.126.82.121 59.126.82.62 59.126.8.35 59.126.84.81 59.126.90.19 59.126.90.2 59.126.90.23 59.126.92.112 59.126.93.19 59.126.98.138 59.127.11.89 59.127.123.112 59.127.128.184 59.127.129.52 59.127.131.106 59.127.13.161 59.127.133.242 59.127.140.48 59.127.142.101 59.127.143.145 59.127.146.107 59.127.147.110 59.127.147.146 59.127.15.151 59.127.152.183 59.127.155.164 59.127.165.252 59.127.170.1 59.127.17.46 59.127.178.198 59.127.181.133 59.127.182.148 59.127.188.97 59.127.189.11 59.127.191.152 59.127.198.157 59.127.198.202 59.127.199.235 59.127.20.123 59.127.213.2 59.127.224.87 59.127.228.140 59.127.23.87 59.127.241.58 59.127.243.44 59.127.244.80 59.127.245.67 59.127.24.75 59.127.251.94 59.127.252.139 59.127.2.53 59.127.253.45 59.127.31.7 59.127.34.40 59.127.38.99 59.127.40.79 59.127.42.112 59.127.43.73 59.127.45.61 59.127.53.167 59.127.57.125 59.127.65.196 59.127.73.150 59.127.80.39 59.127.88.33 59.127.89.36 59.127.94.62 59.127.96.179 59.127.97.41 59.127.98.206 59.13.182.88 59.138.17.33 59.14.39.128 59.14.53.184 59.144.160.102 59.148.19.1 59.148.20.65 59.15.16.138 59.151.43.20 59.152.251.30 59.170.221.53 59.173.12.166 59.173.12.193 59.173.19.66 59.175.135.158 59.175.148.91 59.175.175.10 59.175.228.60 59.18.107.68 59.18.234.87 59.188.254.22 59.188.254.31 59.188.7.109 59.188.73.200 59.191.152.100 59.2.36.193 59.21.12.38 59.21.49.74 59.25.201.127 59.25.57.48 59.26.81.82 59.26.90.68 59.27.78.16 59.28.153.218 59.28.179.65 59.30.66.64 59.33.44.94 59.34.233.229 59.36.148.69 59.38.100.118 59.40.79.114 59.42.192.195 59.42.192.90 59.45.27.187 59.46.0.36 59.46.13.252 59.46.19.83 59.46.53.210 59.46.96.12 59.46.96.14 59.46.96.48 59.46.96.7 59.47.118.113 59.47.121.133 59.47.19.21 59.47.36.157 59.48.174.4 59.48.219.162 59.48.38.210 59.49.38.158 59.50.102.242 59.50.85.195 59.5.70.226 59.52.78.185 59.52.8.217 59.56.103.91 59.56.74.16 59.60.31.210 59.6.147.79 59.63.163.165 59.63.166.89 59.63.208.191 59.63.212.100 59.63.25.151 59.63.25.180 59.8.249.179 59.84.226.80 59.90.230.85 59.90.29.2 59.9.237.142 59.94.176.30 60.10.182.29 60.10.56.169 60.10.57.137 60.10.65.178 60.10.65.23 60.10.72.80 60.11.18.176 60.12.155.223 60.12.174.45 60.12.221.84 60.12.33.9 60.12.64.13 60.13.194.158 60.13.194.71 60.13.218.82 60.13.219.11 60.13.240.104 60.144.22.38 60.15.194.186 60.15.249.175 60.15.80.131 60.160.21.37 60.161.189.176 60.164.175.199 60.164.249.51 60.164.250.12 60.165.100.122 60.165.242.196 60.165.53.184 60.165.53.185 60.167.189.120 60.167.189.172 60.167.239.99 60.167.71.8 60.168.150.207 60.169.66.243 60.169.77.181 60.170.101.25 60.170.110.43 60.170.152.14 60.170.166.189 60.170.187.244 60.170.189.102 60.170.189.7 60.170.189.85 60.170.204.100 60.170.27.76 60.17.148.145 60.171.124.70 60.171.124.72 60.171.94.91 60.172.200.98 60.172.48.159 60.172.8.10 60.173.241.134 60.173.255.176 60.173.29.83 60.173.65.6 60.174.21.251 60.174.217.211 60.174.232.44 60.175.1.242 60.175.124.27 60.175.90.102 60.178.119.29 60.178.119.62 60.178.140.138 60.178.154.187 60.18.128.4 60.18.184.72 60.182.234.14 60.189.51.223 60.189.70.56 60.190.125.246 60.190.128.41 60.190.128.43 60.190.143.82 60.190.239.210 60.190.24.225 60.190.249.119 60.190.249.121 60.190.58.252 60.19.61.115 60.19.63.103 60.191.107.132 60.191.119.99 60.191.125.35 60.191.14.122 60.191.19.35 60.191.227.224 60.191.64.190 60.194.241.128 60.194.241.132 60.194.241.141 60.199.132.31 60.199.223.17 60.199.223.81 60.20.231.203 60.2.154.228 60.2.240.94 60.2.245.166 60.2.26.206 60.2.37.210 60.206.193.1 60.208.128.251 60.208.131.178 60.209.136.34 60.210.168.142 60.210.7.222 60.210.98.35 60.21.137.218 60.211.236.14 60.211.240.122 60.213.109.29 60.213.168.137 60.214.107.162 60.214.107.2 60.214.132.222 60.214.143.78 60.215.179.37 60.216.119.134 60.216.249.20 60.217.244.2 60.218.191.175 60.218.191.203 60.219.171.134 60.219.23.26 60.220.185.64 60.220.187.113 60.220.226.102 60.22.161.184 60.22.72.209 60.223.171.117 60.223.235.71 60.223.239.164 60.227.194.108 60.23.54.94 60.240.146.166 60.24.87.114 60.246.164.233 60.247.3.140 60.248.118.217 60.248.139.169 60.248.154.99 60.248.49.235 60.248.49.70 60.249.145.25 60.249.186.41 60.249.4.140 60.249.4.218 60.250.110.35 60.250.53.2 60.250.71.3 60.251.111.30 60.251.137.215 60.251.151.168 60.251.154.152 60.251.183.90 60.251.198.91 60.251.203.79 60.251.219.120 60.251.229.205 60.251.32.127 60.255.171.4 60.255.41.184 60.31.180.229 60.31.241.147 60.4.215.9 60.48.83.58 60.5.255.100 60.6.158.54 60.7.93.102 60.8.118.83 60.8.177.210 60.8.216.98 60.8.232.210 60.9.20.115 60.9.84.212 61.109.243.91 61.111.14.115 61.111.14.117 61.111.14.123 61.111.14.125 61.115.80.106 61.129.70.155 61.130.110.198 61.130.28.203 61.130.98.66 61.131.20.133 61.131.207.66 61.131.228.76 61.132.225.37 61.132.228.110 61.132.52.19 61.132.52.29 61.132.52.35 61.132.87.130 61.134.23.202 61.135.215.237 61.135.28.154 61.136.101.103 61.136.101.248 61.136.143.165 61.136.144.163 61.136.184.75 61.139.105.98 61.140.110.146 61.14.210.107 61.141.235.210 61.141.250.14 61.142.29.2 61.142.7.234 61.143.138.194 61.143.152.13 61.143.152.14 61.143.152.2 61.143.152.3 61.143.152.4 61.143.152.5 61.144.211.235 61.145.216.2 61.146.199.186 61.147.103.107 61.147.103.122 61.147.103.174 61.147.115.149 61.147.198.90 61.147.69.71 61.147.70.249 61.147.70.67 61.147.93.154 61.148.149.130 61.148.16.94 61.148.238.4 61.148.90.42 61.150.106.246 61.150.88.220 61.152.90.81 61.153.181.218 61.154.127.253 61.155.0.253 61.155.150.30 61.155.209.51 61.155.238.88 61.155.65.42 61.157.1.20 61.157.168.132 61.157.91.111 61.158.167.184 61.158.170.180 61.158.198.137 61.159.167.45 61.160.196.28 61.160.200.58 61.160.215.36 61.160.221.2 61.160.245.66 61.160.251.29 61.160.89.198 61.161.149.246 61.161.198.99 61.161.232.237 61.161.250.202 61.162.66.193 61.163.104.156 61.163.192.28 61.163.216.136 61.163.218.33 61.163.89.27 61.164.161.12 61.164.34.77 61.164.57.108 61.164.66.170 61.164.96.82 61.164.96.98 61.167.211.175 61.174.16.174 61.174.50.171 61.174.50.188 61.174.60.170 61.176.67.104 61.177.172.96 61.177.183.197 61.177.72.251 61.178.103.138 61.178.103.148 61.178.108.175 61.178.190.219 61.178.222.83 61.178.29.50 61.178.32.88 61.181.255.152 61.181.255.77 61.181.80.105 61.181.80.106 61.181.80.107 61.181.80.108 61.181.80.109 61.181.80.75 61.183.247.75 61.183.52.106 61.183.52.133 61.183.52.5 61.183.74.26 61.183.9.155 61.183.9.17 61.184.203.26 61.184.249.124 61.184.77.70 61.184.80.4 61.185.131.172 61.185.28.125 61.185.77.118 61.189.42.58 61.190.123.15 61.190.18.46 61.19.109.140 61.19.116.53 61.19.254.40 61.19.30.156 61.19.64.9 61.191.130.42 61.191.150.107 61.191.23.19 61.191.27.122 61.2.3.174 61.216.104.177 61.216.122.244 61.216.28.214 61.216.40.209 61.216.44.125 61.216.51.177 61.218.134.110 61.218.134.112 61.218.28.65 61.219.11.153 61.219.126.133 61.220.101.99 61.220.128.67 61.220.157.65 61.220.175.79 61.220.183.217 61.220.191.235 61.220.196.1 61.220.200.183 61.220.243.251 61.220.35.110 61.220.65.126 61.221.223.218 61.221.225.172 61.221.64.176 61.222.59.232 61.224.83.34 61.230.141.225 61.230.187.220 61.231.182.125 61.238.90.1 61.240.12.110 61.240.30.230 61.244.206.38 61.244.247.105 61.245.137.223 61.31.108.193 61.39.234.182 61.48.20.118 61.48.20.58 61.48.217.219 61.49.105.170 61.49.29.177 61.49.49.22 61.50.117.74 61.50.195.4 61.51.122.18 61.51.122.22 61.51.122.26 61.52.130.79 61.54.2.103 61.54.231.129 61.54.96.167 61.55.140.231 61.55.159.151 61.56.183.55 61.57.89.252 61.61.216.184 61.62.157.233 61.62.212.201 61.62.24.129 61.62.8.89 61.63.182.245 61.69.109.70 61.70.110.48 61.70.111.72 61.71.116.104 61.74.234.245 61.75.239.55 61.77.34.77 61.79.139.181 61.79.150.239 61.80.232.217 61.80.30.151 61.81.131.75 61.82.44.181 61.83.73.164 61.84.138.57 61.91.109.66 61.91.109.77 61.93.27.197 61.96.244.193 62.109.10.127 62.114.122.175 62.117.75.250 62.12.113.126 62.122.233.26 62.141.37.53 62.148.150.183 62.149.12.172 62.150.126.58 62.150.192.1 62.152.2.154 62.152.7.219 62.171.161.187 62.171.163.94 62.173.154.220 62.192.52.86 62.210.101.46 62.210.103.33 62.210.172.8 62.210.70.74 62.212.235.238 62.213.82.18 62.219.17.134 62.231.163.161 62.234.106.112 62.234.124.107 62.234.126.132 62.234.137.26 62.234.152.250 62.234.178.25 62.234.190.206 62.234.218.151 62.234.29.41 62.234.59.145 62.234.62.206 62.234.68.31 62.234.87.235 62.234.89.176 62.248.185.110 62.28.135.104 62.33.241.37 62.4.55.67 62.60.176.194 62.60.176.215 62.60.176.218 62.60.176.228 62.60.176.230 62.60.178.196 62.68.50.134 62.94.231.39 63.140.98.25 63.143.110.211 63.168.21.195 63.172.40.73 63.228.44.74 63.237.48.34 63.251.210.32 64.118.201.6 64.135.140.23 64.183.249.110 64.188.21.55 64.215.81.2 64.225.106.12 64.225.106.89 64.225.1.4 64.225.35.135 64.225.39.69 64.225.47.162 64.225.64.96 64.225.66.251 64.225.67.93 64.225.73.59 64.225.74.6 64.227.110.183 64.227.125.204 64.227.126.134 64.227.15.121 64.227.19.127 64.227.5.37 64.227.54.59 64.227.95.231 64.239.137.146 64.30.37.40 64.4.90.225 64.46.83.194 64.53.101.72 64.57.124.245 64.64.104.10 64.68.236.225 64.69.43.203 64.91.249.201 64.91.249.207 64.91.64.222 64.91.76.97 65.122.183.157 65.124.192.170 65.126.27.58 65.127.136.154 65.132.139.90 65.181.123.41 65.19.174.248 65.255.219.242 65.49.20.100 65.49.20.101 65.49.20.105 65.49.20.106 65.49.20.107 65.49.20.108 65.49.20.109 65.49.20.110 65.49.20.113 65.49.20.114 65.49.20.115 65.49.20.116 65.49.20.117 65.49.20.118 65.49.20.119 65.49.20.120 65.49.20.121 65.49.20.122 65.49.20.125 65.49.20.66 65.49.20.67 65.49.20.68 65.49.20.69 65.49.20.70 65.49.20.71 65.49.20.72 65.49.20.73 65.49.20.74 65.49.20.75 65.49.20.77 65.49.20.78 65.49.20.79 65.49.20.80 65.49.20.81 65.49.20.82 65.49.20.83 65.49.20.85 65.49.20.86 65.49.20.87 65.49.20.88 65.49.20.89 65.49.20.90 65.49.20.92 65.49.20.93 65.49.20.94 65.49.20.95 65.49.20.98 65.49.20.99 65.49.52.162 65.50.174.136 65.50.174.137 65.50.174.139 65.52.161.7 65.75.115.99 65.91.52.175 66.0.236.194 66.117.12.196 66.130.183.142 66.152.179.100 66.176.8.135 66.177.185.204 66.18.7.162 66.183.182.22 66.212.195.79 66.220.12.90 66.223.209.18 66.227.46.10 66.227.46.183 66.228.48.114 66.240.192.138 66.240.205.34 66.240.219.146 66.240.236.119 66.254.164.242 66.42.56.40 66.50.31.249 66.55.248.5 66.76.196.108 66.76.27.71 66.97.181.216 66.98.45.243 67.100.158.69 67.149.124.250 67.149.241.196 67.166.252.126 67.198.12.128 67.198.128.174 67.198.180.98 67.198.98.119 67.200.151.42 67.204.227.233 67.205.138.198 67.205.139.102 67.205.141.165 67.205.162.223 67.205.180.70 67.206.200.122 67.207.82.47 67.207.87.14 67.207.88.180 67.212.177.132 67.213.88.27 67.214.176.163 67.217.9.160 67.219.148.170 67.223.9.98 67.227.152.142 67.229.134.114 67.229.237.178 67.231.21.21 67.49.89.233 67.61.124.225 67.78.106.21 67.78.173.90 67.78.238.66 67.82.195.36 67.82.240.176 67.87.240.44 68.107.171.130 68.114.95.61 68.148.214.10 68.150.109.112 68.15.122.17 68.168.211.249 68.173.19.24 68.183.107.155 68.183.137.173 68.183.150.201 68.183.178.111 68.183.180.203 68.183.199.238 68.183.203.30 68.183.205.23 68.183.205.48 68.183.210.212 68.183.215.157 68.183.219.181 68.183.224.249 68.183.230.117 68.183.55.223 68.183.82.166 68.183.86.26 68.183.90.130 68.192.21.94 68.193.34.13 68.196.44.255 68.199.200.59 68.232.62.69 68.236.212.86 68.255.154.241 68.51.173.120 68.67.210.86 68.84.140.111 68.84.56.147 68.94.186.136 68.99.206.195 69.10.35.48 69.10.35.57 69.1.128.209 69.1.3.244 69.112.37.174 69.113.170.135 69.118.182.115 69.146.134.2 69.172.94.21 69.172.94.25 69.175.71.237 69.175.97.170 69.175.97.171 69.175.97.172 69.175.97.173 69.175.97.174 69.42.66.94 69.42.89.216 69.63.68.194 69.64.84.78 69.74.165.132 69.76.196.64 69.8.34.165 69.84.113.8 70.15.193.224 70.165.71.149 70.181.144.8 70.183.27.154 70.35.141.234 70.71.243.196 70.73.140.92 70.77.78.120 70.81.245.174 70.82.241.89 70.89.57.206 70.91.60.25 71.100.73.66 71.11.143.231 71.14.237.124 71.147.49.79 71.150.220.154 71.183.79.85 71.187.147.239 71.203.83.242 71.245.113.74 71.41.76.58 71.41.76.62 71.42.105.34 71.42.226.210 71.42.90.161 71.44.215.18 71.47.3.29 71.57.171.18 71.60.74.147 71.6.146.130 71.6.146.185 71.6.146.186 71.6.147.254 71.6.158.166 71.6.165.200 71.6.167.142 71.6.199.23 71.6.231.186 71.6.231.80 71.6.231.81 71.6.231.83 71.6.231.86 71.6.231.87 71.6.232.5 71.6.232.8 71.93.180.247 71.94.131.149 72.132.116.138 72.138.45.190 72.139.81.46 72.167.220.140 72.170.208.105 72.17.22.30 72.17.60.150 72.183.88.73 72.187.238.18 72.20.91.172 72.229.10.88 72.252.196.30 72.255.1.235 72.37.212.230 72.38.192.163 72.4.44.28 72.66.59.247 72.76.187.90 72.9.63.246 73.100.238.60 73.120.13.102 73.138.94.193 73.143.70.179 73.156.166.223 73.160.76.213 73.163.180.189 73.171.234.114 73.181.248.111 73.185.5.86 73.205.95.188 73.247.159.79 73.253.108.150 73.27.250.175 73.7.177.47 73.98.34.104 73.98.51.107 74.101.171.253 74.102.28.162 74.102.39.43 74.104.179.101 74.106.249.155 74.119.146.212 74.120.14.16 74.120.14.17 74.120.14.18 74.120.14.19 74.120.14.21 74.120.14.22 74.120.14.23 74.120.14.24 74.120.14.25 74.120.14.26 74.120.14.27 74.120.14.28 74.120.14.29 74.120.14.30 74.120.14.31 74.135.160.193 74.143.196.174 74.203.87.157 74.204.163.90 74.205.87.8 74.207.253.197 74.208.166.142 74.220.169.212 74.221.64.5 74.255.67.50 74.56.213.35 74.56.81.27 74.65.216.49 74.68.114.97 74.75.165.81 74.82.47.10 74.82.47.11 74.82.47.12 74.82.47.13 74.82.47.14 74.82.47.15 74.82.47.16 74.82.47.17 74.82.47.18 74.82.47.19 74.82.47.2 74.82.47.20 74.82.47.21 74.82.47.22 74.82.47.23 74.82.47.24 74.82.47.25 74.82.47.26 74.82.47.27 74.82.47.28 74.82.47.29 74.82.47.3 74.82.47.30 74.82.47.32 74.82.47.33 74.82.47.34 74.82.47.35 74.82.47.36 74.82.47.37 74.82.47.38 74.82.47.39 74.82.47.4 74.82.47.40 74.82.47.41 74.82.47.43 74.82.47.44 74.82.47.45 74.82.47.46 74.82.47.47 74.82.47.48 74.82.47.49 74.82.47.5 74.82.47.50 74.82.47.51 74.82.47.52 74.82.47.53 74.82.47.54 74.82.47.55 74.82.47.56 74.82.47.57 74.82.47.58 74.82.47.59 74.82.47.60 74.82.47.61 74.82.47.62 74.82.47.7 74.82.47.9 75.141.185.50 75.143.172.32 75.150.9.174 75.66.160.230 75.67.246.162 76.122.98.25 76.127.99.120 76.169.233.168 76.173.250.27 76.176.81.246 76.182.189.111 76.231.147.191 76.79.220.181 76.81.242.230 76.89.176.203 76.91.242.134 76.92.197.133 77.104.102.230 77.107.41.121 77.107.41.175 77.107.41.216 77.110.63.57 77.120.101.75 77.139.74.184 77.167.12.43 77.198.121.130 77.211.16.26 77.223.204.190 77.231.136.127 77.232.184.4 77.235.219.73 77.237.87.207 77.239.65.206 77.242.20.190 77.243.181.54 77.245.110.212 77.246.101.4 77.247.108.77 77.247.226.42 77.252.18.186 77.28.103.97 77.37.246.150 77.39.135.73 77.40.2.125 77.41.123.213 77.43.13.8 77.53.144.115 77.53.145.97 77.53.92.9 77.75.129.35 77.75.147.81 77.76.143.97 77.79.132.10 77.81.30.221 77.89.244.198 77.93.47.146 78.108.177.50 78.108.177.51 78.108.177.53 78.109.196.138 78.111.243.19 78.118.214.134 78.12.138.215 78.128.113.42 78.133.126.100 78.137.4.123 78.137.5.138 78.140.48.91 78.145.91.215 78.152.161.133 78.153.101.189 78.156.226.189 78.167.69.42 78.168.123.109 78.170.252.134 78.173.1.9 78.180.151.49 78.186.115.78 78.186.126.171 78.186.135.187 78.186.187.184 78.186.196.202 78.186.202.212 78.186.214.135 78.186.244.78 78.186.248.243 78.186.39.211 78.187.197.135 78.187.211.119 78.187.236.154 78.187.43.145 78.187.94.5 78.188.131.85 78.188.215.146 78.188.23.168 78.188.59.183 78.188.5.92 78.188.59.87 78.188.60.5 78.189.128.19 78.189.176.181 78.189.188.62 78.189.194.217 78.189.202.253 78.189.222.69 78.192.61.77 78.20.48.91 78.214.48.106 78.22.14.42 78.227.38.86 78.231.165.26 78.231.187.19 78.242.243.35 78.25.22.178 78.25.94.91 78.29.37.215 78.38.99.10 78.39.193.36 78.41.95.10 78.61.219.49 78.66.209.110 78.66.209.22 78.67.213.148 78.68.121.208 78.71.122.9 78.71.234.246 78.72.222.170 78.84.181.172 78.90.65.47 78.96.142.24 78.96.151.179 78.96.32.107 79.10.10.226 79.10.127.180 79.10.172.251 79.10.74.233 79.1.154.24 79.1.159.69 79.104.50.82 79.104.59.202 79.11.57.169 79.121.92.108 79.124.103.208 79.124.49.200 79.124.62.242 79.124.62.86 79.133.160.199 79.134.195.74 79.135.72.36 79.135.73.38 79.136.11.91 79.137.116.232 79.137.2.239 79.138.10.109 79.138.8.183 79.140.228.108 79.142.211.176 79.143.25.181 79.154.122.100 79.164.24.50 79.164.59.221 79.166.241.242 79.175.152.160 79.180.26.26 79.180.51.52 79.229.29.21 79.26.15.134 79.49.128.114 79.55.149.132 79.56.209.204 79.58.80.77 79.59.244.47 79.6.124.241 79.6.54.148 79.61.213.106 79.69.188.220 79.76.31.25 79.79.28.43 79.8.32.58 79.88.76.57 79.9.140.41 79.9.39.122 80.114.130.156 80.153.141.224 80.157.192.53 80.172.235.40 80.178.98.181 80.180.41.48 80.184.26.241 80.191.223.242 80.210.36.62 80.210.37.34 80.21.126.234 80.211.2.202 80.229.112.190 80.232.171.241 80.241.45.244 80.246.2.153 80.253.20.94 80.253.244.101 80.38.139.178 80.4.56.37 80.42.232.223 80.55.161.1 80.55.175.172 80.59.97.209 80.65.29.139 80.67.223.41 80.73.91.130 80.74.69.80 80.75.14.93 80.78.69.195 80.82.64.208 80.82.64.219 80.82.64.93 80.82.65.213 80.82.65.40 80.82.65.74 80.82.68.217 80.82.70.118 80.82.77.139 80.82.77.212 80.82.77.227 80.82.77.33 80.82.78.100 80.82.78.39 80.82.78.82 80.90.80.117 80.97.66.135 81.1.244.18 81.105.223.91 81.12.94.122 81.137.213.157 81.148.109.72 81.153.90.80 81.16.6.38 81.167.205.200 81.169.154.76 81.170.148.166 81.170.148.242 81.17.92.4 81.174.131.22 81.182.246.50 81.183.132.171 81.185.199.225 81.190.248.217 81.190.32.21 81.192.53.131 81.192.53.154 81.198.117.110 81.209.69.152 81.213.219.8 81.215.200.148 81.215.208.11 81.218.199.121 81.224.226.238 81.225.160.78 81.234.93.184 81.243.152.143 81.250.161.242 81.253.115.248 81.253.99.178 81.29.254.138 81.30.156.105 81.45.73.129 81.68.103.135 81.68.115.196 81.68.125.236 81.68.126.54 81.68.128.244 81.68.137.119 81.68.137.19 81.68.137.90 81.68.142.128 81.68.145.65 81.68.156.78 81.68.169.84 81.68.67.173 81.68.72.231 81.68.74.171 81.68.77.53 81.68.78.48 81.68.85.195 81.68.90.10 81.68.95.246 81.70.22.3 81.70.26.240 81.70.30.161 81.70.40.171 81.71.2.77 81.84.67.94 81.89.79.232 81.91.154.195 81.91.51.246 82.102.173.93 82.103.90.198 82.112.62.181 82.114.224.186 82.116.38.167 82.117.196.30 82.117.239.183 82.127.237.205 82.127.92.201 82.132.88.195 82.133.19.74 82.135.148.92 82.147.220.206 82.154.209.76 82.159.200.114 82.169.227.38 82.186.120.234 82.186.251.25 82.193.110.177 82.193.124.117 82.194.18.14 82.196.25.20 82.198.187.191 82.200.142.22 82.200.174.6 82.200.202.66 82.202.197.233 82.208.122.166 82.21.95.63 82.211.185.49 82.212.103.10 82.213.228.198 82.213.235.86 82.214.224.30 82.223.19.45 82.233.232.25 82.253.141.54 82.37.7.40 82.49.223.119 82.57.199.228 82.61.60.195 82.62.19.40 82.62.240.142 82.64.81.51 82.65.130.63 82.66.81.44 82.77.115.10 82.77.17.223 82.77.172.31 82.81.108.230 82.81.20.80 83.102.172.104 83.110.198.218 83.110.251.195 83.110.5.234 83.110.76.216 83.111.205.146 83.12.148.202 83.12.179.10 83.13.208.170 83.134.112.93 83.136.114.154 83.142.167.139 83.143.246.30 83.15.162.141 83.154.31.9 83.166.1.65 83.167.1.169 83.169.197.13 83.169.222.126 83.169.245.34 83.169.41.201 83.171.110.58 83.172.101.139 83.206.174.83 83.208.253.10 83.208.46.190 83.209.121.52 83.209.139.50 83.209.248.201 83.209.253.134 83.209.7.251 83.220.172.181 83.221.222.154 83.227.15.88 83.228.60.224 83.233.181.209 83.235.176.144 83.239.46.124 83.249.206.181 83.249.249.243 83.251.141.129 83.254.161.80 83.255.211.227 83.3.151.42 83.61.74.149 83.68.237.104 83.69.222.102 83.97.20.114 83.97.20.115 83.97.20.116 83.97.20.117 83.97.20.118 83.97.20.130 83.97.20.165 83.97.20.252 83.97.20.31 83.97.20.35 83.97.20.90 83.97.20.96 84.10.26.58 84.110.47.54 84.126.177.81 84.192.145.209 84.208.149.74 84.214.97.17 84.217.118.226 84.217.92.220 84.22.139.99 84.22.35.210 84.228.120.132 84.228.123.246 84.231.0.179 84.232.147.211 84.232.226.77 84.232.243.108 84.238.68.172 84.242.49.78 84.246.226.195 84.33.119.193 84.33.87.89 84.38.184.53 84.38.185.29 84.38.95.147 84.39.186.3 84.40.122.204 84.52.85.238 84.53.236.55 84.54.144.151 84.54.146.184 84.70.63.133 85.0.156.157 85.104.109.37 85.105.11.106 85.105.164.41 85.105.197.145 85.105.218.243 85.105.218.37 85.105.23.141 85.105.243.119 85.105.29.239 85.105.31.183 85.112.44.170 85.113.0.202 85.113.18.130 85.122.7.151 85.126.41.178 85.132.79.170 85.143.106.73 85.159.27.40 85.165.177.124 85.172.10.110 85.172.122.134 85.185.200.161 85.185.75.243 85.185.82.97 85.186.63.31 85.187.102.46 85.194.102.234 85.209.0.100 85.209.0.101 85.209.0.102 85.209.0.103 85.209.0.11 85.209.0.12 85.209.0.143 85.209.0.180 85.209.0.214 85.209.0.221 85.209.0.229 85.209.0.247 85.209.0.251 85.209.0.252 85.209.0.253 85.209.0.97 85.214.57.49 85.224.237.206 85.224.71.160 85.228.102.85 85.234.124.147 85.234.145.20 85.235.52.78 85.24.187.193 85.255.203.42 85.29.136.63 85.61.0.123 85.62.34.210 85.66.155.115 85.75.197.174 85.89.170.99 85.90.194.206 85.93.20.247 85.93.20.250 85.93.20.62 85.95.126.174 85.95.153.59 85.99.98.182 86.1.239.116 86.108.24.238 86.120.157.154 86.122.102.99 86.122.48.133 86.123.182.87 86.123.234.68 86.136.141.244 86.138.254.237 86.139.66.175 86.16.163.180 86.181.85.106 86.183.217.156 86.34.72.210 86.53.237.88 86.60.36.170 86.61.77.254 86.62.5.233 86.98.80.55 86.98.94.34 87.103.206.93 87.103.208.30 87.107.124.36 87.110.185.78 87.117.45.19 87.118.38.242 87.119.66.147 87.119.67.168 87.121.175.91 87.126.166.107 87.126.80.52 87.13.122.96 87.150.123.248 87.19.32.235 87.200.7.118 87.21.170.189 87.225.106.80 87.226.165.143 87.229.237.126 87.241.105.148 87.241.105.71 87.241.106.15 87.247.97.189 87.251.112.117 87.251.247.238 87.251.73.238 87.251.74.31 87.251.74.60 87.251.74.73 87.251.80.10 87.253.70.139 87.255.194.126 87.255.198.166 87.255.217.154 87.26.56.98 87.26.80.230 87.3.143.206 87.65.254.251 87.66.219.63 87.7.13.39 87.76.9.176 87.9.209.186 87.96.130.53 87.98.253.31 88.119.29.163 88.120.205.151 88.12.55.17 88.126.229.107 88.129.208.35 88.129.208.44 88.129.208.46 88.129.208.50 88.129.67.38 88.132.191.6 88.132.197.51 88.135.38.250 88.135.38.66 88.135.39.26 88.147.144.31 88.148.12.134 88.149.172.26 88.204.158.206 88.204.245.146 88.213.81.201 88.214.26.53 88.214.57.94 88.218.17.103 88.218.17.148 88.218.193.65 88.246.140.165 88.246.215.122 88.247.181.145 88.247.211.219 88.247.218.247 88.247.236.227 88.247.78.116 88.248.135.166 88.248.2.16 88.249.185.108 88.249.56.14 88.249.56.226 88.44.100.106 88.79.208.11 88.83.53.165 88.83.63.220 88.84.131.90 88.84.206.42 88.84.57.3 89.106.108.187 89.109.53.65 89.120.3.67 89.121.133.208 89.121.149.42 89.122.187.54 89.122.86.223 89.133.113.145 89.140.72.40 89.142.194.47 89.144.47.244 89.144.47.246 89.144.47.247 89.149.12.87 89.153.105.179 89.165.3.29 89.165.9.96 89.17.137.136 89.178.206.37 89.188.125.250 89.200.182.10 89.203.220.98 89.208.146.99 89.210.134.162 89.212.227.136 89.218.118.22 89.218.191.26 89.218.218.202 89.218.72.154 89.218.72.157 89.218.8.26 89.233.219.121 89.233.219.172 89.233.219.180 89.233.219.46 89.233.219.57 89.233.219.93 89.240.216.106 89.248.160.150 89.248.160.178 89.248.162.247 89.248.167.131 89.248.167.141 89.248.168.112 89.248.168.157 89.248.168.217 89.248.168.220 89.248.168.51 89.248.169.12 89.248.169.143 89.248.172.16 89.248.172.196 89.248.172.85 89.248.174.193 89.248.174.3 89.25.80.202 89.32.163.122 89.33.192.101 89.33.192.102 89.33.192.168 89.33.192.205 89.33.192.207 89.33.192.224 89.33.192.23 89.33.192.231 89.33.192.235 89.33.192.236 89.33.192.238 89.33.192.239 89.33.192.24 89.33.192.240 89.33.192.241 89.33.192.243 89.37.120.214 89.40.73.127 89.41.153.101 89.9.92.243 89.96.55.139 90.118.229.119 90.12.66.131 90.145.215.170 90.150.19.247 90.150.198.195 90.150.204.25 90.157.135.219 90.176.241.202 90.177.244.100 90.180.12.4 90.213.254.186 90.214.130.79 90.215.236.125 90.230.95.7 90.45.110.69 90.62.211.212 90.70.93.10 90.80.134.84 90.84.233.84 90.87.97.151 91.102.155.145 91.103.110.54 91.103.96.249 91.105.152.193 91.105.31.245 91.107.10.69 91.121.249.36 91.126.232.176 91.126.33.226 91.126.88.98 91.134.185.80 91.134.185.81 91.134.185.82 91.134.185.85 91.134.185.86 91.134.185.87 91.134.185.88 91.134.185.90 91.134.185.91 91.134.185.92 91.134.185.93 91.134.185.94 91.134.185.95 91.135.193.146 91.136.48.27 91.143.61.18 91.144.21.200 91.144.30.132 91.145.237.255 91.154.122.37 91.168.50.1 91.185.206.66 91.185.212.7 91.185.216.4 91.185.40.183 91.185.40.4 91.187.194.212 91.192.56.7 91.193.253.129 91.196.100.35 91.196.132.127 91.196.222.194 91.197.174.16 91.199.223.110 91.200.126.90 91.200.57.218 91.201.188.240 91.202.16.63 91.203.61.191 91.204.188.218 91.204.199.73 91.207.244.212 91.207.249.244 91.214.115.100 91.214.69.88 91.218.19.106 91.221.221.21 91.223.242.238 91.225.22.45 91.225.76.231 91.226.116.217 91.227.0.208 91.227.183.111 91.229.112.10 91.229.112.11 91.229.112.12 91.229.112.14 91.229.112.15 91.229.112.16 91.229.112.17 91.229.112.18 91.229.112.2 91.229.112.3 91.229.112.4 91.229.112.5 91.229.112.6 91.229.112.7 91.229.112.9 91.231.121.54 91.232.165.112 91.234.255.20 91.234.62.18 91.234.62.19 91.234.62.21 91.234.62.25 91.234.62.27 91.234.62.28 91.234.62.30 91.235.186.212 91.235.187.132 91.236.116.89 91.236.172.4 91.236.177.162 91.236.61.166 91.239.97.246 91.240.118.100 91.240.118.101 91.240.118.103 91.240.118.110 91.240.118.113 91.240.118.60 91.241.19.135 91.250.28.207 91.250.47.173 91.80.128.180 91.90.79.62 91.92.186.2 91.92.214.64 91.93.120.188 91.98.115.174 91.98.250.179 92.1.101.239 92.111.55.84 92.112.174.217 92.112.245.7 92.114.16.5 92.118.160.1 92.118.160.13 92.118.160.17 92.118.160.21 92.118.160.25 92.118.160.29 92.118.160.33 92.118.160.37 92.118.160.41 92.118.160.45 92.118.160.49 92.118.160.53 92.118.160.57 92.118.160.61 92.118.160.9 92.118.161.1 92.118.161.13 92.118.161.17 92.118.161.21 92.118.161.29 92.118.161.33 92.118.161.37 92.118.161.41 92.118.161.45 92.118.161.49 92.118.161.5 92.118.161.57 92.118.161.61 92.118.161.9 92.124.140.155 92.13.242.194 92.154.68.171 92.17.175.117 92.204.168.3 92.22.81.200 92.233.191.181 92.242.207.18 92.247.36.221 92.252.185.166 92.253.135.50 92.27.196.33 92.34.253.71 92.38.45.250 92.43.187.34 92.45.192.235 92.46.127.238 92.51.78.66 92.53.65.141 92.53.65.40 92.57.150.133 92.63.194.104 92.63.194.238 92.63.194.35 92.63.196.23 92.63.196.33 92.63.196.47 92.63.196.6 92.63.196.8 92.63.197.53 92.63.197.55 92.63.197.66 92.63.197.71 92.63.197.95 92.63.197.97 92.63.197.99 92.81.10.126 92.81.118.133 92.81.119.26 92.81.23.31 92.82.208.71 92.82.71.42 92.86.131.233 92.86.141.160 93.100.195.242 93.114.146.35 93.114.183.4 93.115.28.149 93.122.192.214 93.122.197.119 93.122.198.202 93.122.232.227 93.122.233.221 93.122.239.141 93.123.43.2 93.123.96.141 93.125.121.170 93.125.82.37 93.126.33.104 93.142.138.243 93.144.211.134 93.144.211.236 93.148.22.156 93.148.24.171 93.150.108.207 93.150.76.177 93.150.97.129 93.157.62.102 93.174.93.195 93.174.93.68 93.174.95.106 93.175.127.69 93.184.14.87 93.185.207.150 93.190.205.140 93.191.40.33 93.25.179.36 93.37.246.230 93.38.113.240 93.38.59.220 93.39.122.60 93.41.242.160 93.46.241.37 93.46.62.173 93.47.149.16 93.47.195.161 93.55.209.172 93.57.30.14 93.62.253.230 93.62.253.231 93.63.167.100 93.63.167.107 93.67.134.47 93.70.174.37 93.71.247.71 93.76.241.240 93.79.102.220 93.92.131.194 93.94.89.46 93.95.137.228 93.97.180.253 93.97.219.82 94.0.165.5 94.100.221.22 94.1.83.140 94.102.48.54 94.102.49.190 94.102.49.191 94.102.49.193 94.102.50.137 94.102.50.155 94.102.50.181 94.102.51.28 94.102.51.29 94.102.51.95 94.102.52.57 94.102.54.221 94.102.54.225 94.102.54.252 94.102.54.83 94.102.56.151 94.102.56.216 94.102.56.238 94.124.214.112 94.126.8.1 94.127.217.200 94.130.217.35 94.138.221.106 94.139.167.62 94.139.240.216 94.140.230.171 94.14.131.8 94.142.35.130 94.156.64.175 94.156.65.31 94.178.174.67 94.182.196.110 94.182.227.14 94.182.53.2 94.183.131.154 94.183.231.81 94.183.235.232 94.183.87.121 94.187.148.21 94.190.187.9 94.191.119.31 94.191.18.102 94.191.38.203 94.191.53.248 94.191.62.195 94.191.66.227 94.198.141.163 94.200.149.186 94.200.206.10 94.200.76.222 94.20.200.122 94.20.49.26 94.20.64.42 94.21.0.251 94.228.198.44 94.228.26.22 94.228.29.41 94.230.128.59 94.23.160.207 94.23.176.17 94.23.225.175 94.231.130.172 94.231.164.168 94.243.239.74 94.253.3.208 94.253.61.176 94.254.3.84 94.255.207.167 94.255.246.112 94.255.246.218 94.255.247.17 94.255.247.18 94.255.247.223 94.255.247.4 94.43.10.214 94.49.183.72 94.50.162.191 94.53.196.70 94.59.152.97 94.67.154.166 94.71.107.66 94.73.222.50 94.76.184.130 94.76.81.58 94.77.225.243 94.95.236.83 95.104.25.41 95.110.149.183 95.111.242.245 95.120.203.6 95.12.169.71 95.12.173.169 95.129.4.19 95.134.195.166 95.14.78.237 95.141.135.171 95.141.142.46 95.142.84.234 95.155.36.152 95.156.115.227 95.156.255.167 95.158.36.113 95.158.45.121 95.165.13.239 95.165.219.222 95.167.212.219 95.168.234.109 95.169.214.169 95.181.157.16 95.181.172.39 95.189.101.81 95.211.111.49 95.219.133.231 95.227.100.138 95.237.143.85 95.237.166.38 95.238.43.197 95.244.225.204 95.253.36.138 95.255.106.123 95.255.204.221 95.31.73.96 95.38.61.167 95.46.141.123 95.46.157.238 95.56.243.207 95.57.218.103 95.58.164.130 95.58.216.82 95.59.116.66 95.6.23.68 95.6.77.61 95.6.86.149 95.65.43.3 95.65.98.184 95.67.101.94 95.70.166.137 95.70.174.200 95.76.58.183 95.77.118.131 95.79.101.229 95.84.235.204 95.86.40.6 95.9.236.25 95.9.245.56 96.127.158.234 96.127.158.236 96.127.158.237 96.127.158.238 96.224.32.210 96.233.154.220 96.241.84.252 96.242.174.18 96.249.218.51 96.250.217.92 96.250.3.36 96.30.124.51 96.30.194.91 96.44.178.78 96.48.158.15 96.48.241.255 96.53.74.110 96.57.103.85 96.71.40.62 96.73.100.58 96.73.47.18 96.73.56.75 96.77.141.182 96.78.175.33 96.78.58.97 96.80.251.85 96.84.101.250 96.84.165.93 96.86.107.113 96.87.163.118 96.87.228.250 96.91.63.198 96.95.255.137 97.105.129.229 97.105.15.251 97.107.132.120 97.68.70.75 97.74.229.113 97.74.236.154 97.75.145.76 97.75.255.253 97.79.1.218 97.97.94.71 98.113.37.59 98.114.51.235 98.126.7.234 98.128.217.99 98.151.19.47 98.152.87.108 98.191.240.106 98.191.6.172 98.23.122.25 98.232.44.20 98.249.199.131 98.251.161.58 98.254.86.7 98.30.152.139 98.30.212.211 99.126.19.81 99.144.117.165 99.199.77.251 99.232.32.215 99.243.162.115 99.249.117.215 99.44.78.234 99.6.250.218 99.65.106.210 99.67.57.104 100.3.129.59 100.33.112.5 100.33.153.106 100.37.240.194 101.1.220.76 101.109.119.106 101.114.104.136 101.116.32.90 101.128.72.157 101.128.74.27 101.140.124.31 101.16.112.238 101.17.25.44 101.201.50.1 101.203.172.89 101.203.173.119 101.203.175.192 101.207.227.41 101.22.19.158 101.226.241.74 101.227.214.80 101.230.203.42 101.23.227.157 101.231.202.130 101.234.76.51 101.234.76.77 101.25.46.153 101.251.219.100 101.251.72.132 101.251.72.209 101.251.72.210 101.251.99.179 101.254.115.179 101.254.192.54 101.254.208.9 101.255.115.122 101.255.122.9 101.26.116.238 101.26.69.253 101.29.117.2 101.31.167.217 101.32.28.88 101.32.45.10 101.36.179.159 101.39.226.100 101.39.226.113 101.39.226.178 101.39.229.164 101.50.57.47 101.51.190.3 101.53.100.155 101.53.101.16 101.53.248.70 101.64.33.4 101.66.111.125 101.71.158.30 101.71.158.53 101.72.178.54 101.72.4.227 101.73.197.78 101.78.1.124 101.78.3.247 101.78.3.29 101.89.110.204 101.89.135.171 101.89.208.91 101.89.219.59 101.91.119.172 101.91.207.208 101.93.150.86 101.93.223.54 101.94.189.22 101.95.148.10 101.96.143.135 101.99.81.155 102.131.57.29 102.165.30.1 102.165.30.13 102.165.30.17 102.165.30.21 102.165.30.25 102.165.30.33 102.165.30.37 102.165.30.41 102.165.30.45 102.165.30.49 102.165.30.5 102.165.30.53 102.165.30.57 102.165.30.61 102.165.30.9 102.177.193.222 102.177.198.82 102.182.62.14 102.223.209.38 102.39.111.112 102.68.137.139 103.100.209.222 103.10.84.60 103.10.87.54 103.101.81.138 103.102.120.68 103.104.121.231 103.104.61.101 103.104.61.167 103.105.130.136 103.105.201.155 103.105.58.150 103.105.59.80 103.107.190.51 103.107.245.45 103.108.146.96 103.112.85.246 103.113.35.92 103.114.104.233 103.114.104.68 103.114.107.129 103.115.242.2 103.117.122.228 103.118.157.59 103.118.222.122 103.118.222.64 103.118.53.148 103.120.220.37 103.122.180.6 103.123.112.2 103.124.145.210 103.124.147.22 103.124.92.55 103.126.101.79 103.127.207.30 103.130.201.19 103.133.105.229 103.133.105.65 103.133.107.234 103.133.109.122 103.133.109.23 103.133.109.40 103.133.110.47 103.135.32.237 103.138.10.6 103.138.114.4 103.138.22.212 103.139.212.18 103.139.212.208 103.139.212.211 103.139.212.212 103.139.212.213 103.140.250.119 103.141.74.10 103.142.218.152 103.143.228.199 103.145.12.14 103.145.12.225 103.145.13.108 103.145.13.11 103.145.13.111 103.145.13.114 103.145.13.12 103.145.13.124 103.145.13.129 103.145.13.153 103.145.13.163 103.145.13.189 103.145.13.197 103.145.13.20 103.145.13.21 103.145.13.22 103.145.13.50 103.145.13.86 103.145.13.9 103.145.13.99 103.145.253.87 103.146.23.132 103.148.21.72 103.148.76.24 103.149.12.127 103.149.90.182 103.15.140.126 103.15.140.185 103.15.241.112 103.151.123.176 103.152.244.254 103.16.199.133 103.18.71.130 103.192.179.244 103.193.149.4 103.193.174.185 103.193.174.195 103.193.191.26 103.193.242.25 103.194.104.90 103.194.251.201 103.196.127.210 103.197.68.148 103.197.70.138 103.199.113.41 103.20.60.15 103.201.140.246 103.204.79.174 103.205.180.57 103.205.5.158 103.205.5.179 103.206.129.35 103.206.170.30 103.207.11.10 103.207.168.229 103.209.100.238 103.209.17.22 103.210.21.57 103.21.149.102 103.21.149.92 103.213.116.84 103.214.229.236 103.216.216.167 103.216.216.206 103.216.216.4 103.216.218.183 103.216.218.216 103.216.218.64 103.219.112.31 103.219.112.63 103.219.31.174 103.226.187.224 103.227.96.23 103.228.204.87 103.228.53.59 103.230.152.101 103.230.218.115 103.23.144.53 103.231.252.120 103.233.68.9 103.233.76.246 103.234.21.3 103.235.210.38 103.235.254.172 103.236.252.80 103.236.252.98 103.236.254.101 103.236.254.18 103.239.165.42 103.239.165.45 103.239.252.66 103.240.16.227 103.240.245.95 103.240.35.195 103.24.99.18 103.242.173.118 103.243.252.244 103.244.36.246 103.244.90.174 103.245.188.218 103.245.208.199 103.246.113.9 103.246.161.146 103.247.142.178 103.247.23.201 103.249.192.70 103.249.192.87 103.250.147.252 103.250.69.86 103.25.136.49 103.25.200.185 103.25.81.4 103.251.48.38 103.253.107.247 103.253.146.142 103.253.238.234 103.254.113.98 103.254.73.98 103.255.176.151 103.255.178.211 103.26.77.235 103.26.78.98 103.26.96.46 103.27.237.5 103.27.7.85 103.28.161.26 103.28.60.143 103.28.65.201 103.30.226.135 103.3.76.211 103.35.173.132 103.35.65.54 103.36.103.48 103.38.235.44 103.39.109.38 103.40.123.18 103.40.172.174 103.40.172.189 103.40.172.190 103.41.164.91 103.42.127.65 103.44.144.4 103.44.239.217 103.44.243.45 103.44.243.72 103.45.101.107 103.45.109.97 103.45.173.252 103.45.179.189 103.45.179.39 103.45.179.52 103.45.182.108 103.45.183.101 103.45.183.104 103.45.183.129 103.45.183.174 103.45.250.88 103.45.251.148 103.46.12.190 103.46.12.209 103.46.12.211 103.47.83.99 103.5.132.130 103.5.84.6 103.52.135.48 103.52.216.127 103.52.216.136 103.52.216.170 103.52.216.181 103.52.216.216 103.52.216.40 103.52.216.52 103.52.216.85 103.52.217.100 103.52.217.123 103.52.217.136 103.52.217.139 103.52.217.150 103.52.217.157 103.52.217.17 103.52.217.172 103.52.217.227 103.52.217.231 103.52.217.236 103.52.217.57 103.52.217.65 103.52.217.89 103.53.208.186 103.53.208.207 103.53.208.224 103.53.208.235 103.53.209.32 103.53.44.85 103.53.45.130 103.53.53.14 103.57.208.144 103.59.134.183 103.59.151.97 103.59.53.34 103.6.185.84 103.6.6.90 103.61.39.15 103.63.215.38 103.65.181.106 103.65.183.52 103.65.236.30 103.66.76.43 103.67.153.94 103.68.176.74 103.68.9.150 103.70.167.213 103.7.247.228 103.7.248.222 103.73.68.219 103.73.98.32 103.74.123.137 103.76.101.254 103.76.208.111 103.76.22.115 103.76.22.118 103.76.26.106 103.78.137.54 103.78.39.90 103.78.9.44 103.79.52.130 103.80.28.34 103.82.141.199 103.83.241.86 103.84.108.109 103.84.109.18 103.84.110.170 103.84.38.243 103.85.162.62 103.86.158.210 103.87.173.139 103.87.214.100 103.89.252.123 103.89.89.242 103.89.89.248 103.89.91.247 103.90.242.143 103.91.176.162 103.91.90.99 103.92.26.148 103.93.181.23 103.94.112.22 103.95.99.10 103.96.128.17 103.96.128.53 103.96.129.49 103.97.213.136 103.97.33.96 103.97.63.5 103.98.112.218 103.98.112.58 103.98.17.94 103.99.115.103 104.131.189.185 104.131.41.43 104.131.62.14 104.140.188.10 104.140.188.14 104.140.188.18 104.140.188.2 104.140.188.22 104.140.188.26 104.140.188.30 104.140.188.34 104.140.188.38 104.140.188.42 104.140.188.54 104.140.188.58 104.140.188.6 104.14.34.44 104.143.38.34 104.143.83.242 104.148.5.120 104.148.5.125 104.148.90.102 104.162.247.238 104.165.192.2 104.167.85.18 104.168.99.148 104.171.172.246 104.175.67.100 104.183.197.177 104.195.1.130 104.200.16.116 104.205.227.69 104.206.128.10 104.206.128.14 104.206.128.18 104.206.128.2 104.206.128.22 104.206.128.26 104.206.128.30 104.206.128.34 104.206.128.42 104.206.128.46 104.206.128.50 104.206.128.54 104.206.128.58 104.206.128.6 104.206.128.62 104.206.128.66 104.206.128.70 104.206.128.74 104.206.128.78 104.220.59.139 104.221.238.18 104.226.31.66 104.233.163.250 104.233.199.100 104.233.228.176 104.236.115.5 104.236.134.112 104.236.228.46 104.236.230.191 104.236.55.217 104.236.72.182 104.237.154.253 104.237.240.6 104.243.107.134 104.243.32.10 104.244.79.181 104.248.121.165 104.248.121.227 104.248.122.143 104.248.145.254 104.248.174.254 104.248.176.159 104.248.176.46 104.248.205.67 104.248.22.27 104.248.62.182 104.248.70.191 104.248.80.221 104.248.90.77 104.34.205.25 104.40.197.65 104.42.149.170 104.43.133.226 104.43.217.180 105.203.240.6 105.96.111.37 106.0.4.31 106.0.5.69 106.0.6.236 106.0.6.240 106.0.6.33 106.1.112.52 106.1.113.10 106.1.144.126 106.1.152.8 106.1.156.218 106.1.185.81 106.1.18.85 106.1.188.97 106.1.189.67 106.1.3.36 106.1.5.250 106.1.6.185 106.1.81.24 106.1.89.99 106.1.92.31 106.1.94.110 106.104.121.8 106.104.124.194 106.104.132.137 106.104.134.115 106.104.140.226 106.104.162.244 106.104.169.249 106.104.171.40 106.104.181.118 106.104.3.35 106.105.174.76 106.105.192.95 106.107.243.48 106.107.244.117 106.110.228.152 106.110.236.37 106.111.122.52 106.111.228.226 106.111.70.13 106.114.191.218 106.116.118.111 106.12.102.210 106.12.106.221 106.12.106.34 106.12.108.170 106.12.110.2 106.12.112.120 106.12.11.245 106.12.112.49 106.12.113.111 106.12.115.245 106.12.119.1 106.12.122.138 106.12.12.242 106.12.123.239 106.12.123.48 106.12.126.114 106.12.130.189 106.12.13.185 106.12.142.137 106.12.148.201 106.12.149.253 106.12.15.239 106.12.153.107 106.12.153.161 106.12.155.254 106.12.161.86 106.12.171.65 106.12.176.2 106.12.18.125 106.12.186.130 106.12.190.254 106.12.193.217 106.12.197.52 106.12.20.15 106.12.20.195 106.12.205.137 106.12.205.237 106.12.209.57 106.12.210.115 106.12.217.128 106.12.217.176 106.12.22.202 106.12.22.208 106.12.24.225 106.12.252.122 106.12.252.212 106.12.26.160 106.12.26.181 106.12.28.157 106.12.29.123 106.12.30.41 106.12.30.87 106.12.3.29 106.12.33.78 106.12.36.3 106.12.36.90 106.12.37.20 106.12.4.158 106.12.45.32 106.12.51.110 106.12.5.190 106.12.52.98 106.12.5.48 106.12.57.149 106.12.57.165 106.12.59.23 106.12.60.40 106.12.68.244 106.12.69.156 106.12.69.250 106.12.69.53 106.12.69.68 106.12.69.90 106.12.70.112 106.12.70.99 106.12.71.159 106.12.73.204 106.12.74.23 106.12.74.99 106.12.77.212 106.12.80.246 106.12.8.125 106.12.82.89 106.12.83.246 106.12.8.39 106.12.87.83 106.12.88.121 106.12.88.165 106.12.88.232 106.12.88.95 106.12.89.206 106.12.91.102 106.12.94.186 106.12.96.23 106.124.131.194 106.124.137.103 106.124.141.229 106.13.102.154 106.13.104.8 106.13.107.196 106.13.110.36 106.13.110.74 106.13.125.159 106.13.134.142 106.13.138.162 106.13.139.79 106.13.140.200 106.13.142.115 106.13.146.59 106.13.149.57 106.13.160.249 106.13.161.250 106.13.163.236 106.13.164.39 106.13.167.77 106.13.172.108 106.13.17.250 106.13.173.73 106.13.174.171 106.13.175.126 106.13.181.242 106.13.183.216 106.13.184.174 106.13.185.97 106.13.189.143 106.13.197.35 106.13.198.167 106.13.201.44 106.13.201.85 106.13.20.229 106.13.203.240 106.13.207.159 106.13.209.80 106.13.213.76 106.13.215.94 106.13.218.105 106.13.223.100 106.13.226.152 106.13.227.19 106.13.228.133 106.13.229.254 106.13.229.99 106.13.232.19 106.13.232.67 106.13.232.79 106.13.233.102 106.13.233.5 106.13.235.57 106.13.236.70 106.13.238.73 106.13.27.235 106.13.3.238 106.13.35.176 106.13.35.87 106.13.41.25 106.13.46.123 106.13.48.122 106.13.49.133 106.13.50.145 106.13.52.83 106.13.56.204 106.13.65.207 106.13.68.145 106.13.69.24 106.13.70.60 106.13.73.189 106.13.73.210 106.13.73.227 106.13.73.235 106.13.75.158 106.13.78.198 106.13.82.151 106.13.82.49 106.13.87.145 106.13.89.5 106.13.93.252 106.13.95.42 106.13.97.228 106.14.199.121 106.14.79.212 106.201.238.227 106.201.238.98 106.225.211.248 106.240.150.190 106.247.255.163 106.3.136.52 106.3.137.169 106.3.44.116 106.3.45.140 106.37.108.162 106.37.172.42 106.37.240.20 106.37.74.142 106.38.70.178 106.39.16.17 106.39.16.2 106.39.1.69 106.44.95.27 106.51.16.120 106.52.114.125 106.52.135.239 106.52.152.168 106.52.155.213 106.52.16.21 106.52.175.224 106.52.213.68 106.52.231.125 106.52.236.23 106.52.249.148 106.52.79.201 106.52.84.201 106.52.85.42 106.52.96.247 106.53.100.5 106.53.108.249 106.53.119.143 106.53.14.244 106.53.20.226 106.53.202.86 106.53.218.169 106.53.223.71 106.53.238.15 106.53.40.211 106.53.66.103 106.53.84.238 106.53.9.137 106.53.97.54 106.54.10.188 106.54.108.8 106.54.109.98 106.54.111.75 106.54.11.34 106.54.121.117 106.54.133.103 106.54.141.196 106.54.189.93 106.54.194.189 106.54.194.35 106.54.206.184 106.54.220.54 106.54.227.32 106.54.229.115 106.54.229.142 106.54.233.175 106.54.236.226 106.54.241.104 106.54.242.239 106.54.34.121 106.54.37.9 106.54.42.129 106.54.44.202 106.54.47.102 106.54.48.208 106.54.48.241 106.54.48.79 106.54.50.49 106.54.55.209 106.54.62.168 106.54.75.144 106.54.76.189 106.55.148.138 106.55.167.157 106.55.167.169 106.55.243.41 106.55.246.168 106.55.254.160 106.55.30.139 106.55.41.76 106.55.45.168 106.55.47.184 106.55.60.190 106.58.215.95 106.68.49.127 106.74.78.196 106.75.103.4 106.75.129.76 106.75.13.173 106.75.13.192 106.75.132.222 106.75.138.38 106.75.141.155 106.75.141.223 106.75.143.233 106.75.152.124 106.75.165.127 106.75.190.98 106.75.21.25 106.75.216.180 106.75.22.216 106.75.240.46 106.75.249.8 106.75.254.144 106.75.30.102 106.75.3.35 106.75.34.41 106.75.4.19 106.75.52.43 106.75.55.46 106.75.61.203 106.75.63.218 106.75.74.225 106.75.78.135 106.75.8.155 106.75.84.197 106.75.86.156 106.75.92.239 106.75.92.78 106.76.71.139 106.8.14.40 106.8.14.42 106.8.85.17 106.91.17.6 107.148.130.10 107.148.130.108 107.150.119.151 107.151.184.138 107.155.132.172 107.170.204.148 107.172.197.123 107.172.249.111 107.172.79.63 107.172.80.130 107.172.90.100 107.173.137.113 107.173.219.152 107.174.146.158 107.174.233.133 107.175.130.159 107.175.33.38 107.175.87.103 107.179.13.141 107.185.105.187 107.190.207.63 107.3.128.2 107.6.169.250 107.6.169.251 107.6.169.252 107.6.169.253 107.6.171.130 107.6.171.131 107.6.171.132 107.6.171.133 107.6.171.134 107.6.183.162 107.6.183.163 107.6.183.165 107.6.183.166 107.6.183.226 107.6.183.227 107.6.183.228 107.6.183.230 108.161.136.243 108.162.4.138 108.178.61.58 108.178.61.59 108.178.61.60 108.178.61.61 108.178.61.62 108.207.11.152 108.211.115.210 108.211.154.53 108.216.61.173 108.26.234.213 108.27.36.189 108.29.130.72 108.29.3.190 108.31.246.142 108.41.212.125 108.41.51.17 108.50.246.206 108.56.184.98 108.56.225.252 108.62.121.180 108.62.123.167 108.82.250.227 108.85.84.173 109.100.148.103 109.100.182.30 109.102.31.54 109.102.39.254 109.102.91.167 109.103.107.104 109.103.174.2 109.103.178.85 109.103.212.216 109.107.178.203 109.110.51.31 109.116.204.251 109.117.165.131 109.121.212.233 109.157.75.105 109.160.179.188 109.166.172.180 109.172.57.68 109.173.131.67 109.175.11.139 109.175.155.94 109.194.27.178 109.195.215.52 109.197.195.19 109.202.23.185 109.203.117.121 109.205.112.66 109.224.60.228 109.228.153.119 109.228.18.203 109.236.219.228 109.237.108.50 109.242.154.107 109.242.226.205 109.242.232.39 109.244.100.99 109.244.35.42 109.244.96.201 109.248.235.181 109.254.211.37 109.50.162.159 109.50.184.157 109.74.128.154 109.74.206.144 109.86.255.206 109.87.131.244 109.87.224.76 109.92.180.85 109.92.26.3 109.95.96.234 109.96.132.184 109.96.255.17 109.99.112.176 109.99.181.38 109.99.225.214 109.99.228.142 110.141.249.250 110.147.205.29 110.154.127.146 110.157.232.4 110.157.232.46 110.16.79.74 110.164.129.40 110.164.163.10 110.164.73.18 110.165.49.232 110.166.87.119 110.167.231.171 110.17.162.191 110.172.170.237 110.172.191.74 110.18.148.250 110.182.255.200 110.184.196.192 110.184.212.193 110.185.160.106 110.185.164.133 110.185.171.194 110.187.80.44 110.188.137.213 110.189.152.59 110.19.240.142 110.20.93.199 110.227.248.39 110.229.97.125 110.240.136.115 110.244.129.239 110.244.243.12 110.247.130.16 110.249.149.101 110.249.179.146 110.249.192.38 110.249.216.130 110.249.251.154 110.249.36.193 110.250.51.179 110.252.14.70 110.34.120.98 110.34.230.126 110.35.10.120 110.35.11.212 110.35.63.37 110.36.216.218 110.36.216.62 110.36.219.62 110.37.223.206 110.37.224.154 110.39.160.141 110.39.163.2 110.39.23.154 110.42.98.4 110.43.49.148 110.43.50.203 110.44.116.2 110.44.117.232 110.44.240.196 110.45.179.177 110.50.52.65 110.52.230.57 110.52.243.178 110.52.29.164 110.53.23.148 110.53.23.151 110.53.23.153 110.6.137.25 110.7.183.54 110.74.179.67 110.78.4.26 110.81.102.179 110.83.51.25 110.84.220.231 110.85.5.210 110.87.57.54 110.88.160.179 110.93.205.114 110.93.207.211 110.93.219.122 110.93.219.91 111.10.19.16 111.1.62.189 111.11.107.130 111.113.27.30 111.118.40.200 111.119.215.193 111.119.234.215 111.122.175.73 111.122.232.6 111.123.206.44 111.125.216.99 111.164.186.130 111.165.48.90 111.170.204.137 111.170.80.69 111.17.181.27 111.17.181.30 111.176.154.184 111.177.16.5 111.177.18.25 111.185.150.44 111.185.174.4 111.185.224.13 111.185.50.21 111.185.6.146 111.185.6.51 111.19.164.38 111.19.255.10 111.19.255.22 111.19.255.23 111.19.255.9 111.192.3.68 111.194.239.207 111.197.249.115 111.198.140.2 111.198.3.54 111.200.197.227 111.200.244.226 111.20.116.166 111.20.151.82 111.20.187.130 111.202.12.190 111.202.66.123 111.203.185.38 111.203.196.62 111.203.239.163 111.204.110.202 111.204.119.227 111.204.16.35 111.204.176.252 111.204.189.40 111.204.215.181 111.204.244.123 111.205.13.85 111.205.156.18 111.206.120.250 111.206.170.99 111.206.87.226 111.206.87.229 111.207.1.144 111.207.1.151 111.207.1.42 111.207.1.43 111.207.1.55 111.207.167.147 111.207.167.151 111.207.231.250 111.21.176.72 111.21.176.77 111.21.176.78 111.21.176.79 111.21.185.67 111.21.47.135 111.21.66.42 111.223.34.205 111.223.49.131 111.223.49.140 111.223.49.147 111.225.205.11 111.225.216.67 111.227.233.67 111.229.101.82 111.229.104.94 111.229.119.2 111.229.122.21 111.229.128.136 111.229.128.9 111.229.130.46 111.229.131.83 111.229.147.125 111.229.147.229 111.229.148.198 111.229.157.211 111.229.190.8 111.229.192.122 111.229.19.221 111.229.19.254 111.229.199.67 111.229.204.148 111.229.204.204 111.229.207.104 111.229.211.66 111.229.215.174 111.229.216.155 111.229.222.7 111.229.232.29 111.229.239.203 111.229.242.156 111.229.251.35 111.229.252.23 111.229.25.25 111.229.253.8 111.229.27.180 111.229.32.56 111.229.39.146 111.229.4.66 111.229.49.247 111.229.58.117 111.229.63.21 111.229.78.121 111.229.78.212 111.229.84.77 111.229.92.17 111.230.148.82 111.230.204.113 111.230.226.124 111.230.231.145 111.230.244.199 111.230.247.243 111.230.249.88 111.230.67.250 111.231.101.176 111.231.110.149 111.231.119.188 111.231.119.93 111.231.135.232 111.231.137.83 111.231.141.141 111.231.164.168 111.231.226.87 111.231.55.203 111.231.74.105 111.231.77.115 111.231.93.242 111.241.192.97 111.246.8.214 111.250.21.249 111.251.143.221 111.252.44.44 111.254.92.28 111.26.163.169 111.26.163.180 111.30.102.226 111.30.35.162 111.3.105.155 111.34.117.69 111.38.216.93 111.40.111.206 111.40.3.34 111.40.34.59 111.40.7.67 111.40.7.84 111.40.7.85 111.40.89.167 111.40.91.117 111.4.120.225 111.42.102.140 111.42.14.212 111.42.37.234 111.42.71.33 111.43.104.225 111.43.115.15 111.43.138.59 111.43.96.51 111.44.164.66 111.47.171.44 111.48.129.253 111.51.65.46 111.53.119.184 111.53.40.7 111.56.143.72 111.56.37.78 111.56.44.126 111.59.24.2 111.59.36.147 111.59.83.16 111.6.96.73 111.6.96.77 111.61.64.71 111.61.75.147 111.61.81.13 111.63.22.72 111.65.156.56 111.67.159.3 111.68.101.231 111.68.103.248 111.7.186.38 111.73.41.24 111.74.153.234 111.74.46.185 111.75.158.207 111.75.208.138 111.75.210.58 111.75.248.5 111.75.54.114 111.75.54.86 111.8.183.145 111.8.237.125 111.85.191.131 111.91.71.176 111.92.104.105 111.93.133.133 111.95.224.163 112.102.225.157 112.103.198.2 112.103.201.177 112.105.63.232 112.109.195.97 112.11.109.113 112.11.220.38 112.11.77.168 112.111.249.31 112.113.208.206 112.116.155.205 112.118.152.218 112.118.153.100 112.120.167.56 112.120.18.118 112.120.79.94 112.12.63.62 112.122.102.208 112.122.189.56 112.122.189.8 112.122.5.6 112.122.58.248 112.132.144.15 112.133.222.158 112.133.244.172 112.138.123.61 112.14.184.94 112.14.45.199 112.154.4.155 112.16.197.77 112.16.35.157 112.16.75.225 112.16.81.235 112.161.111.172 112.162.42.32 112.163.240.254 112.164.13.186 112.164.67.234 112.165.92.131 112.167.37.73 112.170.113.211 112.170.196.160 112.17.107.86 112.17.156.234 112.17.83.144 112.17.91.213 112.173.232.103 112.173.96.26 112.18.27.169 112.194.138.3 112.196.31.218 112.197.113.32 112.198.47.58 112.20.179.106 112.2.216.222 112.212.109.100 112.212.167.5 112.212.60.88 112.213.105.24 112.215.113.10 112.215.113.11 112.217.207.130 112.220.17.82 112.220.236.170 112.220.236.187 112.220.89.114 112.225.220.19 112.225.228.145 112.226.185.194 112.229.63.165 112.230.196.22 112.230.196.24 112.230.26.12 112.23.7.224 112.231.171.125 112.233.180.58 112.235.78.145 112.236.30.66 112.237.205.155 112.238.34.170 112.239.18.106 112.241.232.173 112.243.215.69 112.244.217.209 112.245.175.131 112.246.22.65 112.249.252.162 112.250.221.165 112.25.11.42 112.25.170.221 112.251.130.196 112.252.67.32 112.253.2.79 112.254.131.1 112.26.92.246 112.26.98.122 112.27.142.41 112.27.98.92 112.28.32.124 112.28.54.153 112.28.74.38 112.29.170.222 112.29.171.156 112.29.171.34 112.29.172.101 112.29.172.102 112.29.172.134 112.29.174.10 112.29.174.226 112.29.174.55 112.29.245.22 112.29.66.53 112.30.128.112 112.30.213.192 112.30.214.240 112.30.38.42 112.30.61.183 112.3.20.155 112.31.218.39 112.35.133.231 112.35.184.193 112.4.116.70 112.4.119.50 112.4.132.173 112.4.209.190 112.4.97.41 112.44.118.2 112.5.179.25 112.53.206.165 112.53.233.53 112.53.236.114 112.53.84.94 112.6.40.5 112.6.94.179 112.64.136.62 112.65.131.190 112.65.214.63 112.65.9.247 112.66.253.68 112.69.138.93 112.73.67.137 112.78.11.31 112.78.15.81 112.78.185.146 112.78.7.175 112.82.223.34 112.82.223.35 112.82.223.36 112.82.223.37 112.90.217.199 112.91.120.20 112.91.132.202 112.95.225.156 113.0.83.70 113.100.255.36 113.10.207.50 113.10.246.16 113.102.19.166 113.103.59.24 113.104.5.197 113.105.170.52 113.105.185.4 113.106.0.114 113.106.11.6 113.106.58.99 113.106.8.55 113.107.139.68 113.107.155.195 113.107.53.100 113.108.126.11 113.108.126.7 113.108.127.25 113.108.127.7 113.108.88.78 113.116.89.83 113.120.74.197 113.12.66.62 113.12.81.116 113.122.139.105 113.122.186.41 113.123.242.222 113.125.67.184 113.128.128.159 113.130.166.202 113.130.212.8 113.130.223.5 113.130.247.67 113.13.161.151 113.131.125.138 113.131.125.143 113.131.156.158 113.131.169.46 113.131.169.48 113.131.177.231 113.131.182.69 113.131.183.11 113.131.183.18 113.131.183.2 113.131.183.20 113.131.200.2 113.131.200.22 113.131.200.32 113.131.200.35 113.131.201.10 113.131.201.11 113.131.201.2 113.133.176.204 113.134.203.6 113.134.211.28 113.134.211.42 113.137.39.88 113.140.25.250 113.140.29.46 113.14.181.203 113.14.181.218 113.141.64.146 113.141.64.224 113.141.64.23 113.141.64.31 113.141.64.40 113.141.65.9 113.141.66.18 113.141.66.96 113.141.67.127 113.141.67.162 113.141.67.184 113.141.70.115 113.141.70.125 113.141.70.131 113.141.70.147 113.141.70.184 113.141.70.214 113.141.70.227 113.141.70.240 113.141.70.91 113.142.73.214 113.15.230.68 113.160.151.29 113.160.16.194 113.160.1.70 113.16.195.189 113.161.160.8 113.161.197.130 113.161.211.120 113.161.237.151 113.161.60.164 113.161.88.252 113.162.46.152 113.167.214.155 113.17.17.90 113.177.27.165 113.190.255.114 113.193.226.66 113.193.241.182 113.193.30.171 113.195.105.6 113.200.219.2 113.20.205.56 113.20.86.138 113.201.59.38 113.208.119.2 113.209.128.30 113.209.197.236 113.21.232.52 113.214.20.179 113.214.26.202 113.214.34.90 113.215.222.230 113.22.237.134 113.222.148.46 113.225.4.16 113.226.124.106 113.229.30.167 113.229.59.84 113.230.139.90 113.230.237.7 113.230.253.27 113.23.106.247 113.232.187.189 113.232.8.160 113.233.115.229 113.233.72.234 113.236.160.217 113.239.6.175 113.240.227.123 113.242.25.237 113.253.26.98 113.254.181.86 113.254.39.175 113.28.89.237 113.53.29.185 113.56.107.67 113.57.195.18 113.57.224.135 113.59.160.42 113.59.224.149 113.59.224.45 113.59.224.77 113.61.17.85 113.61.204.190 113.61.205.22 113.65.7.89 113.69.25.253 113.71.208.158 113.73.247.25 113.77.24.137 113.8.237.196 113.88.210.98 113.9.19.122 113.93.224.56 113.96.138.6 113.96.138.7 114.104.164.233 114.112.72.130 114.112.79.17 114.112.98.147 114.118.5.243 114.118.7.153 114.119.115.40 114.134.187.236 114.141.132.88 114.143.149.26 114.160.83.4 114.198.240.246 114.207.177.43 114.218.4.84 114.220.76.79 114.221.154.34 114.221.224.155 114.225.106.6 114.226.205.142 114.226.54.202 114.227.146.193 114.229.207.219 114.232.1.218 114.232.174.215 114.234.45.34 114.235.114.38 114.236.155.47 114.236.205.121 114.236.26.205 114.237.10.204 114.237.114.152 114.237.9.22 114.239.9.165 114.240.34.130 114.24.233.130 114.242.125.163 114.242.125.190 114.242.16.32 114.242.48.250 114.242.79.14 114.246.9.18 114.248.121.40 114.250.24.122 114.25.224.73 114.253.9.226 114.254.41.234 114.255.188.49 114.255.216.123 114.255.90.162 114.31.15.118 114.32.10.36 114.32.118.74 114.32.124.17 114.32.127.26 114.32.129.167 114.32.131.220 114.32.131.24 114.32.131.6 114.32.133.224 114.32.134.95 114.32.13.70 114.32.137.150 114.32.141.85 114.32.145.159 114.32.153.40 114.32.153.65 114.32.156.113 114.32.165.227 114.32.174.210 114.32.177.142 114.32.177.215 114.32.181.165 114.32.184.138 114.32.185.126 114.32.192.155 114.32.196.199 114.32.196.71 114.32.198.198 114.32.200.188 114.32.200.226 114.32.201.60 114.32.20.49 114.32.206.251 114.32.210.30 114.32.210.98 114.32.218.242 114.32.225.13 114.32.225.80 114.32.229.125 114.32.235.242 114.32.236.169 114.32.237.202 114.32.237.73 114.32.238.110 114.32.239.126 114.32.239.219 114.32.240.12 114.32.241.154 114.32.242.218 114.32.244.120 114.32.246.27 114.32.30.213 114.32.30.25 114.32.34.11 114.32.36.138 114.32.39.141 114.32.40.16 114.32.40.243 114.32.46.185 114.32.55.243 114.32.57.16 114.32.61.42 114.32.63.148 114.32.63.94 114.32.64.155 114.32.73.115 114.32.73.37 114.32.74.144 114.32.79.34 114.32.82.239 114.32.89.13 114.32.89.32 114.32.91.181 114.32.91.243 114.32.9.242 114.32.98.169 114.33.0.20 114.33.100.153 114.33.10.107 114.33.101.245 114.33.103.223 114.33.10.64 114.33.106.55 114.33.107.162 114.33.108.122 114.33.110.251 114.33.112.164 114.33.112.165 114.33.11.237 114.33.112.67 114.33.113.108 114.33.113.192 114.33.113.53 114.33.117.11 114.33.118.234 114.33.1.186 114.33.11.99 114.33.120.153 114.33.12.185 114.33.1.231 114.33.123.146 114.33.124.232 114.33.125.163 114.33.125.38 114.33.126.111 114.33.126.4 114.33.128.86 114.33.128.95 114.33.129.124 114.33.129.211 114.33.131.221 114.33.13.154 114.33.133.135 114.33.138.236 114.33.139.74 114.33.140.30 114.33.143.95 114.33.147.241 114.33.147.81 114.33.148.83 114.33.150.51 114.33.150.61 114.33.151.224 114.33.15.128 114.33.15.153 114.33.161.159 114.33.161.238 114.33.165.124 114.33.166.108 114.33.169.143 114.33.170.231 114.33.171.131 114.33.174.14 114.33.174.60 114.33.174.68 114.33.176.62 114.33.178.104 114.33.178.192 114.33.178.6 114.33.179.130 114.33.181.210 114.33.181.215 114.33.182.44 114.33.184.128 114.33.184.136 114.33.184.222 114.33.186.12 114.33.186.122 114.33.186.136 114.33.191.2 114.33.193.197 114.33.194.157 114.33.195.240 114.33.196.127 114.33.1.99 114.33.20.56 114.33.209.172 114.33.210.252 114.33.211.229 114.33.213.71 114.33.214.114 114.33.219.81 114.33.220.240 114.33.2.203 114.33.22.230 114.33.224.112 114.33.227.50 114.33.228.72 114.33.229.242 114.33.231.42 114.33.232.3 114.33.23.232 114.33.233.118 114.33.233.85 114.33.234.11 114.33.237.155 114.33.237.55 114.33.238.51 114.33.239.118 114.33.239.96 114.33.240.143 114.33.240.151 114.33.240.62 114.33.240.77 114.33.241.74 114.33.244.9 114.33.245.218 114.33.246.157 114.33.248.68 114.33.249.79 114.33.25.112 114.33.251.92 114.33.252.124 114.33.252.29 114.33.253.2 114.33.25.44 114.33.254.70 114.33.27.191 114.33.28.136 114.33.28.86 114.33.29.122 114.33.29.153 114.33.30.171 114.33.30.86 114.33.3.132 114.33.32.111 114.33.32.165 114.33.34.236 114.33.37.90 114.33.41.115 114.33.41.33 114.33.43.19 114.33.45.181 114.33.45.5 114.33.46.89 114.33.47.66 114.33.51.100 114.33.51.130 114.33.51.47 114.33.55.169 114.33.56.37 114.33.57.88 114.33.58.242 114.33.5.86 114.33.63.170 114.33.63.209 114.33.66.70 114.33.68.233 114.33.69.208 114.33.7.203 114.33.72.45 114.33.72.50 114.33.7.37 114.33.74.173 114.33.74.231 114.33.75.123 114.33.75.215 114.33.79.5 114.33.80.51 114.33.82.124 114.33.85.170 114.33.85.233 114.33.85.253 114.33.86.166 114.33.88.10 114.33.88.29 114.33.90.113 114.33.91.133 114.33.9.168 114.33.92.146 114.33.95.39 114.33.95.68 114.33.96.17 114.33.96.94 114.33.97.221 114.33.97.222 114.33.98.72 114.33.99.116 114.34.0.54 114.34.101.9 114.34.107.111 114.34.107.147 114.34.107.6 114.34.111.30 114.34.115.51 114.34.118.91 114.34.120.229 114.34.134.55 114.34.138.220 114.34.142.145 114.34.147.79 114.34.149.49 114.34.160.41 114.34.161.26 114.34.166.65 114.34.173.220 114.34.183.217 114.34.185.118 114.34.187.125 114.34.191.152 114.34.191.35 114.34.19.182 114.34.194.242 114.34.195.145 114.34.195.150 114.34.195.25 114.34.203.250 114.34.205.82 114.34.207.28 114.34.214.34 114.34.225.149 114.34.229.27 114.34.232.189 114.34.232.238 114.34.236.173 114.34.241.158 114.34.241.42 114.34.33.165 114.34.38.238 114.34.42.169 114.34.47.139 114.34.47.182 114.34.50.134 114.34.50.141 114.34.50.150 114.34.50.24 114.34.5.245 114.34.5.248 114.34.54.135 114.34.54.90 114.34.55.114 114.34.57.1 114.34.57.192 114.34.59.110 114.34.64.14 114.34.74.116 114.34.78.235 114.34.78.40 114.34.7.88 114.34.87.13 114.34.88.246 114.34.89.251 114.34.91.118 114.34.94.6 114.34.96.249 114.34.99.62 114.35.0.93 114.35.101.125 114.35.10.114 114.35.10.197 114.35.102.101 114.35.105.181 114.35.106.26 114.35.109.135 114.35.113.6 114.35.114.75 114.35.116.186 114.35.117.128 114.35.117.170 114.35.118.206 114.35.118.93 114.35.12.49 114.35.125.49 114.35.12.74 114.35.128.47 114.35.135.118 114.35.137.139 114.35.139.55 114.35.140.228 114.35.143.128 114.35.143.137 114.35.145.81 114.35.150.128 114.35.152.62 114.35.154.195 114.35.155.90 114.35.161.215 114.35.163.187 114.35.16.46 114.35.166.117 114.35.167.253 114.35.170.236 114.35.172.215 114.35.174.136 114.35.175.32 114.35.179.124 114.35.179.4 114.35.181.145 114.35.200.190 114.35.203.94 114.35.204.177 114.35.204.70 114.35.205.225 114.35.205.48 114.35.205.99 114.35.208.33 114.35.2.114 114.35.21.225 114.35.214.217 114.35.221.18 114.35.22.149 114.35.223.252 114.35.224.8 114.35.225.2 114.35.227.53 114.35.231.122 114.35.231.80 114.35.23.184 114.35.231.88 114.35.232.104 114.35.232.171 114.35.236.10 114.35.236.59 114.35.242.143 114.35.249.25 114.35.253.42 114.35.253.61 114.35.26.83 114.35.27.175 114.35.30.124 114.35.3.103 114.35.31.194 114.35.31.96 114.35.32.155 114.35.32.167 114.35.3.228 114.35.3.49 114.35.43.136 114.35.46.126 114.35.47.113 114.35.47.244 114.35.47.30 114.35.47.83 114.35.49.53 114.35.5.107 114.35.51.172 114.35.5.160 114.35.52.89 114.35.54.23 114.35.56.172 114.35.57.170 114.35.58.160 114.35.60.150 114.35.60.208 114.35.61.36 114.35.61.60 114.35.62.97 114.35.63.223 114.35.64.125 114.35.68.72 114.35.70.80 114.35.71.248 114.35.7.3 114.35.74.179 114.35.74.19 114.35.74.60 114.35.76.1 114.35.79.130 114.35.79.241 114.35.79.63 114.35.8.22 114.35.8.246 114.35.85.178 114.35.85.189 114.35.85.19 114.35.88.163 114.35.89.9 114.35.90.148 114.35.90.235 114.35.91.97 114.35.92.207 114.35.92.215 114.35.95.169 114.35.95.191 114.36.179.113 114.38.19.247 114.4.227.194 114.42.22.41 114.43.133.232 114.43.210.239 114.5.198.101 114.57.33.222 114.67.113.78 114.67.117.93 114.67.168.255 114.67.252.234 114.67.67.11 114.67.80.134 114.67.88.223 114.79.136.69 114.80.118.153 114.80.62.205 114.86.40.5 114.88.62.176 114.92.249.74 114.95.169.59 114.96.70.21 114.98.231.143 115.124.113.43 115.126.214.44 115.126.238.120 115.126.242.29 115.126.242.95 115.134.90.18 115.148.71.114 115.149.160.180 115.149.182.19 115.152.253.34 115.159.157.103 115.159.196.214 115.159.203.90 115.159.33.215 115.159.77.174 115.159.93.67 115.159.96.160 115.160.242.110 115.165.199.198 115.165.200.200 115.165.211.14 115.165.214.140 115.171.85.222 115.178.119.110 115.182.53.13 115.182.8.30 115.182.90.3 115.186.146.208 115.195.97.208 115.199.183.17 115.20.211.42 115.208.98.163 115.210.13.107 115.216.26.191 115.217.18.156 115.217.19.191 115.217.19.65 115.217.253.245 115.218.100.121 115.23.223.56 115.231.104.190 115.231.176.170 115.231.19.187 115.231.221.129 115.231.231.3 115.236.174.43 115.236.30.75 115.236.52.122 115.236.62.43 115.236.83.114 115.238.158.84 115.238.164.123 115.238.181.22 115.238.46.69 115.238.49.107 115.238.62.154 115.240.114.113 115.242.8.153 115.29.5.153 115.31.167.28 115.42.127.133 115.45.121.183 115.53.248.118 115.58.126.107 115.58.4.115 115.61.101.44 115.61.14.189 115.63.112.16 115.66.249.184 115.68.1.14 115.68.220.10 115.69.210.107 115.69.247.242 115.73.234.249 115.75.54.24 115.76.82.249 115.77.25.28 115.77.25.5 115.79.31.56 115.84.183.130 115.85.192.91 115.85.32.210 115.86.108.221 115.86.17.133 115.90.121.189 116.1.235.57 116.1.80.201 116.102.1.3 116.102.243.164 116.102.58.152 116.106.82.144 116.108.7.225 116.108.74.7 116.109.136.38 116.110.83.118 116.113.30.26 116.114.95.128 116.114.95.172 116.115.14.80 116.117.157.241 116.118.119.218 116.138.143.193 116.138.31.212 116.138.34.142 116.140.185.81 116.15.176.48 116.15.50.51 116.171.246.174 116.177.10.113 116.177.233.5 116.192.32.112 116.193.159.66 116.193.216.74 116.193.217.139 116.196.104.168 116.196.105.232 116.198.162.228 116.198.163.223 116.198.198.71 116.206.94.26 116.209.58.196 116.211.118.242 116.211.118.246 116.211.145.5 116.222.44.191 116.225.72.21 116.227.190.105 116.228.198.133 116.233.61.171 116.236.17.59 116.236.222.106 116.236.30.222 116.236.32.218 116.236.41.164 116.238.148.248 116.241.146.33 116.241.71.251 116.242.232.2 116.252.36.92 116.252.54.230 116.252.80.130 116.254.101.173 116.255.131.3 116.255.156.112 116.255.168.78 116.255.175.252 116.255.198.57 116.255.242.20 116.255.248.139 116.255.96.97 116.26.124.236 116.30.221.122 116.31.18.132 116.31.75.162 116.40.5.211 116.48.155.39 116.48.20.106 116.49.242.189 116.52.10.198 116.52.115.63 116.52.128.79 116.55.227.143 116.55.227.177 116.55.227.209 116.55.243.113 116.55.243.36 116.55.248.101 116.58.207.190 116.6.195.84 116.6.195.85 116.6.195.86 116.7.226.66 116.72.136.91 116.72.16.217 116.72.16.83 116.73.24.9 116.76.56.173 116.8.106.5 116.85.15.85 116.85.27.232 116.85.65.68 116.86.133.115 116.87.18.113 116.90.234.162 116.90.82.185 116.90.87.11 116.90.87.208 116.90.87.210 116.94.221.56 116.94.97.200 116.99.166.94 117.10.211.26 117.102.195.228 117.102.209.198 117.114.161.11 117.114.161.2 117.114.171.227 117.117.149.13 117.117.96.24 117.119.97.82 117.121.9.115 117.122.208.146 117.135.226.96 117.139.126.202 117.139.162.180 117.139.86.217 117.141.104.13 117.141.105.44 117.141.117.229 117.141.224.31 117.141.244.71 117.141.97.237 117.144.119.102 117.144.200.236 117.146.245.122 117.146.253.222 117.148.157.48 117.148.159.17 117.149.164.157 117.149.186.24 117.156.119.39 117.158.116.104 117.158.152.86 117.158.155.44 117.158.55.136 117.159.242.215 117.159.246.44 117.159.94.102 117.160.140.233 117.161.11.93 117.161.127.10 117.172.165.152 117.173.159.59 117.173.215.73 117.174.24.186 117.175.160.70 117.176.113.102 117.176.241.173 117.184.199.40 117.187.230.18 117.187.251.82 117.188.56.212 117.190.233.103 117.192.45.44 117.195.153.240 117.20.219.31 117.2.97.232 117.21.246.46 117.211.75.123 117.218.174.250 117.22.230.94 117.221.254.109 117.221.254.90 117.23.5.151 117.236.181.51 117.236.182.36 117.239.238.70 117.240.160.178 117.240.77.50 117.241.127.144 117.248.110.129 117.25.145.169 117.25.149.208 117.25.182.90 117.251.21.23 117.254.50.51 117.26.105.16 117.27.143.206 117.27.154.44 117.28.255.165 117.30.38.45 117.33.225.111 117.33.245.16 117.33.253.49 117.34.105.42 117.34.118.137 117.34.70.47 117.34.70.53 117.34.74.252 117.34.87.54 117.35.118.214 117.36.198.91 117.39.28.190 117.40.128.234 117.40.194.166 117.40.83.114 117.43.81.173 117.50.101.117 117.50.104.206 117.50.109.99 117.50.115.156 117.50.116.16 117.50.117.53 117.50.117.98 117.50.126.4 117.50.137.36 117.50.23.52 117.50.2.38 117.50.3.142 117.50.39.62 117.50.44.5 117.50.63.253 117.50.65.167 117.50.93.75 117.51.141.233 117.51.145.81 117.51.153.70 117.6.162.47 117.6.78.253 117.63.39.203 117.63.48.206 117.70.61.114 117.70.61.151 117.71.54.55 117.71.58.159 117.73.1.221 117.79.152.238 117.80.166.116 117.80.87.37 117.81.104.141 117.81.212.58 117.82.198.40 117.83.13.52 117.83.83.235 117.88.119.138 117.88.137.126 117.88.98.83 117.89.173.234 117.90.148.224 117.90.153.200 117.92.116.7 117.92.118.139 117.92.120.57 117.92.141.47 117.92.149.230 117.92.151.191 117.93.14.174 117.93.34.20 117.94.224.40 118.101.227.241 118.101.47.235 118.112.186.58 118.113.17.7 118.116.11.249 118.116.8.215 118.120.212.141 118.122.117.181 118.122.119.226 118.122.124.85 118.122.246.211 118.123.12.8 118.123.147.185 118.123.15.235 118.123.15.236 118.123.15.247 118.123.167.107 118.123.168.142 118.123.168.143 118.123.213.250 118.123.231.250 118.123.244.134 118.123.249.143 118.123.249.150 118.123.249.177 118.125.205.18 118.125.226.51 118.126.113.29 118.126.116.101 118.126.88.254 118.126.97.243 118.130.234.194 118.13.88.30 118.140.187.226 118.145.0.112 118.145.3.146 118.151.221.99 118.159.82.102 118.160.16.127 118.160.94.107 118.163.149.66 118.163.158.4 118.163.204.63 118.163.240.150 118.163.34.206 118.163.45.178 118.163.47.69 118.165.174.127 118.168.7.119 118.170.125.79 118.170.196.230 118.170.36.48 118.174.79.50 118.175.46.191 118.179.168.206 118.181.108.8 118.182.122.109 118.182.148.124 118.182.20.42 118.182.21.13 118.182.65.82 118.186.203.145 118.186.203.146 118.186.203.148 118.186.203.149 118.186.203.151 118.186.203.152 118.186.203.153 118.186.203.154 118.186.203.156 118.186.203.157 118.186.203.158 118.186.203.34 118.186.211.27 118.186.211.28 118.186.244.152 118.187.65.147 118.190.40.252 118.193.21.186 118.193.28.58 118.193.31.179 118.193.31.182 118.194.128.14 118.194.51.162 118.200.210.234 118.200.210.66 118.200.78.74 118.200.79.74 118.212.143.46 118.213.225.102 118.216.209.85 118.219.188.8 118.22.108.101 118.232.12.100 118.232.12.228 118.232.12.50 118.232.125.80 118.232.162.232 118.232.173.22 118.232.208.157 118.232.223.85 118.232.56.195 118.232.96.34 118.232.96.46 118.233.192.58 118.233.192.66 118.233.193.250 118.233.208.174 118.233.208.30 118.233.209.42 118.233.220.66 118.233.220.96 118.233.221.25 118.233.80.118 118.24.116.78 118.24.119.49 118.24.12.102 118.24.121.69 118.24.149.173 118.24.150.71 118.24.153.214 118.24.156.209 118.24.214.45 118.24.22.5 118.24.241.97 118.24.35.5 118.24.8.99 118.243.61.146 118.243.95.37 118.244.128.20 118.244.192.13 118.250.65.86 118.25.103.178 118.25.108.201 118.25.111.26 118.25.114.3 118.25.123.42 118.25.125.17 118.25.133.220 118.25.14.19 118.25.155.233 118.25.55.155 118.25.57.184 118.25.64.152 118.25.74.248 118.251.114.62 118.35.151.155 118.36.21.147 118.43.100.125 118.43.14.94 118.44.225.23 118.44.70.160 118.46.104.164 118.47.3.136 118.67.250.13 118.68.135.30 118.68.153.113 118.69.36.83 118.70.177.235 118.70.72.95 118.72.238.160 118.77.137.140 118.79.30.192 118.81.7.146 118.83.71.81 118.89.105.232 118.89.111.225 118.89.116.13 118.89.120.110 118.89.140.16 118.89.144.131 118.89.153.32 118.89.157.43 118.89.173.215 118.89.177.212 118.91.234.47 118.91.34.20 118.97.13.146 118.97.221.251 118.99.183.234 118.99.192.90 119.100.88.53 119.102.140.51 119.108.59.168 119.109.194.171 119.109.69.44 119.109.81.149 119.109.86.188 119.112.149.126 119.115.111.159 119.115.206.79 119.115.31.63 119.115.39.138 119.115.53.71 119.116.136.219 119.116.143.61 119.117.174.213 119.117.176.242 119.117.235.133 119.126.157.18 119.129.97.46 119.130.114.236 119.131.209.234 119.135.183.114 119.139.196.11 119.145.101.190 119.145.29.160 119.145.70.196 119.147.137.79 119.147.139.244 119.147.144.22 119.147.144.35 119.147.211.178 119.147.213.62 119.147.71.174 119.148.160.109 119.15.136.244 119.15.136.245 119.15.184.124 119.152.246.150 119.160.234.16 119.161.98.132 119.161.98.139 119.161.98.141 119.165.118.195 119.165.7.47 119.166.180.105 119.167.151.104 119.17.7.68 119.176.169.221 119.177.222.133 119.179.142.147 119.18.194.168 119.18.52.235 119.182.108.172 119.182.112.201 119.183.126.125 119.183.240.142 119.183.243.63 119.183.58.180 119.183.78.167 119.183.99.73 119.184.210.230 119.185.236.116 119.187.120.38 119.188.242.19 119.189.239.158 119.190.144.214 119.190.85.117 119.191.229.223 119.192.77.31 119.193.58.95 119.194.144.51 119.194.75.229 119.198.161.159 119.198.244.159 119.199.188.236 119.199.25.164 119.200.203.116 119.202.209.232 119.204.53.101 119.207.81.194 119.236.18.35 119.236.245.103 119.236.57.246 119.236.91.153 119.237.238.138 119.237.54.33 119.237.75.119 119.245.91.241 119.246.7.94 119.246.80.179 119.247.152.226 119.247.35.8 119.247.74.182 119.250.136.231 119.253.84.105 119.254.65.12 119.254.78.216 119.27.191.172 119.28.100.67 119.28.102.86 119.28.115.13 119.28.149.239 119.28.152.128 119.28.152.247 119.28.157.230 119.28.160.192 119.28.160.239 119.28.163.155 119.28.2.174 119.28.232.240 119.28.233.140 119.28.234.30 119.28.239.222 119.28.239.239 119.28.239.36 119.28.51.99 119.28.7.77 119.29.156.173 119.29.251.76 119.29.56.139 119.29.86.132 119.3.132.75 119.3.155.157 119.36.107.24 119.41.16.239 119.42.115.17 119.45.120.116 119.45.138.160 119.45.149.82 119.45.18.31 119.45.200.136 119.45.204.7 119.45.212.188 119.45.214.232 119.45.34.13 119.45.42.241 119.45.47.99 119.45.53.248 119.45.55.249 119.45.57.81 119.45.6.190 119.46.176.222 119.47.59.130 119.47.89.187 119.48.172.157 119.49.146.179 119.49.250.182 119.50.112.19 119.50.246.209 119.50.3.181 119.50.96.113 119.52.146.87 119.52.20.129 119.53.141.202 119.53.142.76 119.53.49.195 119.54.207.227 119.54.226.157 119.54.241.245 119.55.60.194 119.57.116.152 119.57.116.174 119.57.117.222 119.57.117.246 119.57.142.10 119.57.44.114 119.57.89.126 119.60.2.249 119.63.135.116 119.63.74.19 119.82.224.75 119.84.66.170 119.86.32.7 119.90.100.200 119.96.109.21 119.96.124.131 119.96.130.116 119.96.155.102 119.96.157.188 119.96.158.238 119.96.158.87 119.96.159.237 119.96.172.95 119.96.173.202 119.96.173.87 119.96.174.75 119.96.175.156 119.96.175.184 119.96.175.185 119.96.175.244 119.96.189.177 119.96.193.246 119.96.213.159 119.96.230.103 119.96.230.32 119.96.231.110 119.96.235.35 119.96.237.94 119.96.242.254 119.96.71.21 119.96.86.193 119.96.93.33 119.97.221.88 119.97.221.94 119.99.231.130 120.10.160.168 120.11.159.51 120.11.163.74 120.11.185.215 120.131.14.68 120.131.5.2 120.131.6.200 120.132.103.67 120.132.11.151 120.132.124.179 120.132.17.44 120.132.22.30 120.132.38.222 120.133.1.16 120.133.35.4 120.138.9.185 120.14.176.46 120.14.46.108 120.150.152.201 120.150.188.199 120.192.31.171 120.192.31.173 120.192.73.218 120.193.155.140 120.193.184.98 120.193.72.110 120.194.104.162 120.194.104.164 120.194.177.249 120.194.212.85 120.194.227.16 120.194.42.194 120.194.98.74 120.194.98.76 120.195.122.42 120.195.128.102 120.195.161.2 120.196.251.51 120.197.17.118 120.197.176.138 120.197.57.237 120.198.146.228 120.198.219.69 120.198.64.4 120.201.126.242 120.202.46.37 120.203.15.155 120.205.198.158 120.209.62.38 120.211.145.66 120.214.186.55 120.221.130.109 120.221.160.150 120.224.214.34 120.224.222.37 120.224.32.24 120.224.55.8 120.234.210.158 120.236.117.171 120.236.214.164 120.236.251.175 120.236.87.3 120.237.45.85 120.238.111.142 120.238.130.210 120.25.147.62 120.26.38.159 120.28.111.215 120.31.132.35 120.31.56.111 120.39.243.192 120.39.243.84 120.39.243.92 120.4.44.147 120.41.45.72 120.43.228.143 120.50.13.98 120.52.152.3 120.52.93.106 120.52.93.50 120.53.10.102 120.53.15.134 120.53.17.156 120.53.24.140 120.53.243.163 120.53.243.211 120.53.9.188 120.53.9.99 120.68.110.155 120.70.100.89 120.70.103.239 120.7.232.135 120.71.146.45 120.76.140.189 120.78.79.85 120.79.202.67 120.79.217.10 120.80.183.3 120.86.123.211 120.9.245.220 120.9.40.132 120.92.102.213 120.92.109.191 120.92.109.29 120.92.109.69 120.92.111.13 120.92.111.92 120.92.122.249 120.92.191.14 120.92.253.6 120.92.33.68 120.92.80.15 121.10.139.68 121.101.134.186 121.12.117.35 121.12.252.10 121.121.138.33 121.122.102.227 121.122.62.15 121.123.148.211 121.123.148.220 121.123.88.41 121.128.208.2 121.128.254.146 121.13.252.50 121.132.233.221 121.135.217.207 121.140.216.75 121.14.17.168 121.14.17.172 121.142.250.26 121.145.54.134 121.148.47.130 121.149.54.9 121.15.137.137 121.15.170.60 121.154.155.24 121.154.186.117 121.155.70.86 121.156.143.152 121.157.131.104 121.159.4.173 121.16.109.222 121.163.131.224 121.164.87.206 121.168.3.208 121.169.25.46 121.169.7.88 121.17.180.136 121.17.65.151 121.171.218.204 121.172.238.1 121.173.126.110 121.173.126.111 121.173.254.184 121.175.191.243 121.175.70.221 121.176.180.152 121.179.39.53 121.180.22.45 121.181.147.9 121.181.94.33 121.182.5.227 121.183.37.47 121.186.147.16 121.187.11.177 121.187.138.81 121.191.15.3 121.191.175.100 121.20.254.241 121.201.108.7 121.201.124.41 121.201.3.121 121.204.247.95 121.207.226.21 121.21.224.225 121.22.158.62 121.224.241.178 121.227.153.232 121.227.31.162 121.229.117.180 121.229.15.146 121.229.20.121 121.229.26.104 121.229.30.197 121.229.9.72 121.230.205.232 121.23.18.213 121.23.35.209 121.234.120.180 121.238.252.46 121.239.32.164 121.239.79.92 121.24.237.21 121.25.127.83 121.254.120.199 121.26.195.166 121.26.226.94 121.26.230.170 121.27.56.39 121.28.10.116 121.28.131.226 121.28.131.229 121.28.133.226 121.28.199.78 121.28.255.240 121.28.56.246 121.28.95.243 121.31.110.41 121.31.126.78 121.31.66.220 121.31.69.131 121.33.254.10 121.35.240.245 121.36.131.57 121.36.245.96 121.37.237.23 121.46.22.1 121.46.29.198 121.52.150.219 121.52.154.216 121.52.157.112 121.52.158.221 121.52.214.63 121.58.212.108 121.61.157.146 121.61.58.247 121.61.99.184 121.61.99.238 121.69.135.6 121.69.40.234 121.69.93.226 121.7.45.3 121.78.147.110 121.78.66.52 121.8.164.114 121.8.219.186 121.9.225.86 121.99.182.19 122.100.104.74 122.100.64.53 122.100.65.193 122.100.67.207 122.100.76.229 122.102.186.131 122.110.21.191 122.11.132.169 122.112.71.214 122.114.10.66 122.114.131.124 122.114.157.103 122.114.157.45 122.114.167.2 122.114.185.153 122.114.206.30 122.114.228.243 122.114.228.30 122.114.240.252 122.114.30.111 122.114.70.12 122.114.72.60 122.115.225.170 122.115.227.192 122.115.46.82 122.116.100.82 122.116.106.207 122.116.112.139 122.116.116.154 122.116.11.86 122.116.119.93 122.116.12.134 122.116.12.39 122.116.132.182 122.116.135.1 122.116.135.29 122.116.139.108 122.116.146.200 122.116.148.58 122.116.155.110 122.116.160.161 122.116.160.47 122.116.161.107 122.116.161.134 122.116.164.249 122.116.172.64 122.116.1.82 122.116.185.179 122.116.194.73 122.116.200.180 122.116.203.12 122.116.203.31 122.116.206.25 122.116.207.70 122.116.208.90 122.116.211.189 122.116.212.17 122.116.219.154 122.116.219.174 122.116.221.221 122.116.22.182 122.116.222.107 122.116.223.19 122.116.226.165 122.116.226.167 122.116.232.160 122.116.232.61 122.116.232.83 122.116.234.217 122.116.234.72 122.116.239.110 122.116.239.242 122.116.239.83 122.116.240.165 122.116.242.161 122.116.244.131 122.116.244.18 122.116.244.206 122.116.244.252 122.116.244.26 122.116.245.242 122.116.246.170 122.116.246.192 122.116.247.11 122.116.247.37 122.116.247.59 122.116.248.13 122.116.252.14 122.116.252.167 122.116.253.71 122.116.27.159 122.116.29.96 122.116.30.60 122.116.34.116 122.116.39.166 122.116.40.183 122.116.40.250 122.116.44.129 122.116.45.3 122.116.51.152 122.116.5.156 122.116.54.220 122.116.56.51 122.116.56.81 122.116.58.216 122.116.59.29 122.116.60.210 122.116.61.40 122.116.63.26 122.116.72.156 122.116.80.154 122.116.84.200 122.116.94.51 122.116.99.145 122.117.102.115 122.117.102.184 122.117.104.127 122.117.105.218 122.117.106.126 122.117.10.75 122.117.107.52 122.117.107.63 122.117.108.188 122.117.109.86 122.117.11.183 122.117.112.137 122.117.113.197 122.117.114.91 122.117.117.230 122.117.121.105 122.117.124.30 122.117.128.248 122.117.128.54 122.117.129.11 122.117.129.224 122.117.130.113 122.117.130.159 122.117.13.187 122.117.132.243 122.117.13.23 122.117.133.237 122.117.134.109 122.117.135.76 122.117.138.43 122.117.141.48 122.117.141.94 122.117.142.249 122.117.148.179 122.117.148.4 122.117.15.106 122.117.151.120 122.117.151.98 122.117.154.90 122.117.155.173 122.117.155.196 122.117.157.80 122.117.15.81 122.117.161.214 122.117.161.51 122.117.164.243 122.117.166.101 122.117.167.230 122.117.169.144 122.117.169.252 122.117.171.221 122.117.171.5 122.117.17.240 122.117.18.105 122.117.181.211 122.117.181.88 122.117.183.174 122.117.185.37 122.117.186.6 122.117.188.79 122.117.191.183 122.117.192.117 122.117.192.119 122.117.19.228 122.117.193.210 122.117.19.52 122.117.195.49 122.117.196.143 122.117.20.181 122.117.20.36 122.117.205.186 122.117.206.45 122.117.206.78 122.117.209.183 122.117.210.239 122.117.211.73 122.117.216.61 122.117.217.105 122.117.219.228 122.117.219.98 122.117.222.39 122.117.223.59 122.117.224.253 122.117.226.123 122.117.229.19 122.117.238.132 122.117.238.142 122.117.242.243 122.117.244.252 122.117.244.40 122.117.250.85 122.117.251.243 122.117.2.52 122.117.28.154 122.117.28.171 122.117.28.96 122.117.30.162 122.117.30.45 122.117.36.146 122.117.37.85 122.117.38.203 122.117.40.205 122.117.43.145 122.117.47.59 122.117.48.50 122.117.48.63 122.117.62.152 122.117.62.197 122.117.62.56 122.117.63.144 122.117.6.52 122.117.66.169 122.117.67.44 122.117.69.91 122.117.74.185 122.117.74.87 122.117.76.147 122.117.76.207 122.117.78.173 122.117.88.78 122.117.91.206 122.117.92.243 122.117.9.249 122.117.93.148 122.117.93.78 122.117.97.128 122.118.28.27 122.118.32.60 122.128.211.132 122.13.16.133 122.136.23.75 122.138.214.61 122.140.80.161 122.140.95.51 122.14.213.71 122.14.214.107 122.14.228.229 122.141.177.112 122.141.234.178 122.141.234.179 122.142.226.15 122.143.114.155 122.143.12.8 122.143.167.156 122.143.34.105 122.144.131.74 122.144.131.75 122.144.199.114 122.15.202.50 122.152.196.222 122.152.204.42 122.152.211.189 122.152.212.188 122.154.178.202 122.154.253.20 122.155.164.118 122.155.187.152 122.155.93.23 122.157.180.39 122.165.181.252 122.165.247.254 122.166.171.166 122.176.32.194 122.176.37.7 122.176.70.232 122.176.95.179 122.180.243.13 122.183.17.66 122.192.5.82 122.193.254.27 122.194.145.100 122.199.119.32 122.200.93.45 122.201.19.99 122.204.161.122 122.223.66.124 122.224.111.30 122.224.126.58 122.224.131.115 122.224.20.214 122.224.204.18 122.224.222.58 122.224.83.242 122.225.228.90 122.225.77.122 122.225.85.59 122.225.85.61 122.225.91.14 122.225.96.157 122.226.122.7 122.226.178.62 122.226.220.112 122.226.240.180 122.226.73.22 122.226.73.50 122.227.100.42 122.227.160.110 122.227.174.246 122.227.183.126 122.227.188.90 122.227.189.42 122.227.198.250 122.227.214.155 122.227.9.146 122.228.118.47 122.228.120.190 122.228.177.28 122.228.19.79 122.228.19.80 122.239.140.163 122.248.33.1 122.252.234.203 122.254.10.218 122.254.1.254 122.254.26.189 122.49.30.172 122.51.100.180 122.51.101.136 122.51.102.135 122.51.102.227 122.51.104.166 122.51.119.18 122.51.12.198 122.51.129.198 122.51.130.21 122.51.133.232 122.51.143.132 122.51.149.86 122.51.150.134 122.51.161.231 122.51.176.111 122.51.191.69 122.51.194.44 122.51.202.157 122.51.204.51 122.51.207.33 122.51.208.128 122.51.210.116 122.51.22.134 122.51.226.213 122.51.227.216 122.51.233.63 122.51.238.27 122.51.250.3 122.51.252.15 122.51.252.45 122.51.31.171 122.51.41.44 122.51.44.126 122.51.57.14 122.51.57.78 122.51.66.91 122.51.67.249 122.51.68.119 122.51.68.196 122.51.81.247 122.51.82.153 122.51.91.2 122.51.97.151 122.52.145.247 122.52.183.184 122.53.122.163 122.53.137.2 122.53.62.68 122.54.143.156 122.54.200.48 122.55.108.14 122.6.247.40 122.70.150.10 122.70.178.5 122.7.82.158 122.77.244.176 122.96.207.128 122.97.216.52 123.0.46.85 123.100.162.118 123.1.157.166 123.1.189.249 123.108.97.50 123.110.118.91 123.110.128.251 123.110.137.143 123.110.152.108 123.110.179.122 123.110.198.96 123.110.213.36 123.110.31.236 123.110.97.191 123.11.248.186 123.114.245.46 123.118.111.188 123.118.66.39 123.119.39.104 123.124.21.253 123.124.21.254 123.124.71.107 123.126.24.126 123.127.226.216 123.127.226.217 123.128.11.194 123.128.127.24 123.129.250.150 123.129.96.137 123.13.221.191 123.13.40.122 123.131.165.105 123.132.88.64 123.133.78.120 123.133.84.163 123.136.29.99 123.139.189.43 123.139.189.45 123.139.243.37 123.139.243.8 123.145.86.105 123.149.23.39 123.149.23.43 123.150.254.222 123.151.147.66 123.152.189.45 123.152.50.88 123.153.57.168 123.154.166.139 123.157.102.179 123.16.18.54 123.162.12.94 123.170.249.63 123.176.38.66 123.178.214.180 123.178.30.66 123.184.16.66 123.185.222.135 123.189.24.63 123.189.4.106 123.189.87.211 123.19.99.228 123.192.164.190 123.192.192.112 123.192.208.68 123.192.31.172 123.192.66.248 123.193.144.253 123.193.145.111 123.193.148.93 123.193.160.14 123.193.21.119 123.193.228.38 123.194.113.128 123.194.114.131 123.194.119.78 123.194.185.224 123.194.185.83 123.194.216.31 123.194.52.39 123.194.60.213 123.194.96.109 123.194.97.27 123.195.106.186 123.195.112.13 123.195.113.160 123.195.113.70 123.195.161.182 123.195.173.234 123.195.180.217 123.195.57.235 123.195.61.146 123.195.84.188 123.195.85.183 123.195.85.82 123.195.96.190 123.199.40.146 123.201.150.244 123.202.3.226 123.203.19.157 123.204.228.37 123.204.89.68 123.205.103.179 123.205.107.160 123.205.134.50 123.205.149.146 123.205.185.248 123.205.223.72 123.206.118.216 123.206.45.179 123.206.46.250 123.206.51.192 123.206.65.38 123.206.71.71 123.206.74.50 123.206.87.233 123.207.147.158 123.207.149.93 123.207.153.52 123.207.155.210 123.207.161.37 123.207.213.249 123.207.241.226 123.207.248.196 123.207.34.86 123.207.85.150 123.207.88.57 123.208.23.100 123.209.6.225 123.22.108.41 123.231.165.251 123.231.248.178 123.232.104.253 123.232.38.50 123.233.116.36 123.235.140.133 123.235.18.142 123.240.144.211 123.240.224.115 123.240.237.177 123.240.246.40 123.240.38.184 123.240.49.241 123.240.62.241 123.240.64.185 123.240.85.125 123.24.51.130 123.241.140.248 123.241.2.242 123.241.32.184 123.241.8.188 123.25.204.233 123.25.238.100 123.25.30.146 123.252.197.154 123.28.171.255 123.29.0.114 123.29.69.17 123.30.100.180 123.30.109.56 123.30.127.4 123.30.176.62 123.30.181.234 123.30.235.108 123.30.237.51 123.30.237.88 123.30.246.169 123.3.82.79 123.31.17.69 123.31.43.116 123.31.43.238 123.48.126.36 123.49.47.238 123.49.47.241 123.49.52.134 123.51.164.188 123.52.43.128 123.55.203.105 123.56.145.243 123.58.33.249 123.58.5.36 123.59.155.63 123.59.1.82 123.59.182.184 123.59.194.116 123.59.194.242 123.59.194.253 123.59.194.42 123.59.195.34 123.59.230.66 123.59.232.151 123.59.28.230 123.59.61.147 123.6.49.36 123.6.49.38 123.6.49.4 123.6.51.133 123.7.114.134 123.7.118.111 123.7.118.133 123.7.118.149 123.7.118.165 123.7.118.22 123.7.66.13 124.10.156.66 124.10.208.77 124.107.57.216 124.112.114.111 124.114.128.90 124.114.177.237 124.114.98.117 124.114.98.182 124.115.16.13 124.115.189.53 124.115.220.123 124.117.248.14 124.118.16.178 124.119.31.58 124.120.46.150 124.12.48.7 124.121.237.231 124.121.240.150 124.126.244.50 124.127.35.42 124.127.35.46 124.127.40.202 124.128.90.220 124.130.164.173 124.130.37.16 124.13.136.169 124.13.201.68 124.13.47.93 124.131.45.248 124.132.151.53 124.133.2.13 124.133.2.16 124.133.23.206 124.133.88.120 124.135.170.94 124.135.206.137 124.135.90.226 124.140.123.33 124.152.108.35 124.152.47.154 124.155.186.23 124.156.136.112 124.156.192.221 124.156.194.166 124.156.196.246 124.156.197.29 124.156.198.92 124.156.200.106 124.156.200.237 124.156.204.178 124.156.208.90 124.156.210.134 124.156.210.20 124.156.211.137 124.156.211.97 124.156.218.111 124.156.218.232 124.156.227.100 124.156.240.118 124.156.240.138 124.156.240.14 124.156.240.194 124.156.240.215 124.156.240.219 124.156.240.58 124.156.240.79 124.156.241.168 124.156.241.17 124.156.241.170 124.156.241.180 124.156.241.185 124.156.241.217 124.156.241.236 124.156.241.237 124.156.241.29 124.156.241.4 124.156.241.52 124.156.241.62 124.156.241.88 124.156.244.126 124.156.244.173 124.156.244.21 124.156.244.4 124.156.244.69 124.156.245.149 124.156.245.155 124.156.245.159 124.156.245.194 124.156.245.248 124.156.245.249 124.156.50.108 124.156.50.110 124.156.50.111 124.156.50.118 124.156.50.120 124.156.50.129 124.156.50.145 124.156.50.148 124.156.50.149 124.156.50.158 124.156.50.171 124.156.50.191 124.156.50.196 124.156.50.229 124.156.50.239 124.156.50.241 124.156.50.249 124.156.50.36 124.156.50.43 124.156.50.51 124.156.50.52 124.156.50.64 124.156.50.77 124.156.50.82 124.156.50.88 124.156.50.89 124.156.50.94 124.156.50.96 124.156.51.16 124.156.54.103 124.156.54.111 124.156.54.114 124.156.54.162 124.156.54.177 124.156.54.190 124.156.54.209 124.156.54.234 124.156.54.244 124.156.54.249 124.156.54.68 124.156.54.74 124.156.54.88 124.156.55.107 124.156.55.143 124.156.55.156 124.156.55.167 124.156.55.172 124.156.55.181 124.156.55.20 124.156.55.202 124.156.55.205 124.156.55.21 124.156.55.214 124.156.55.222 124.156.55.225 124.156.55.236 124.156.55.244 124.156.55.248 124.156.55.36 124.156.55.45 124.156.55.67 124.156.55.99 124.156.62.116 124.156.62.138 124.156.62.15 124.156.62.183 124.156.62.201 124.156.63.188 124.156.63.192 124.156.63.221 124.156.64.176 124.156.64.185 124.156.64.22 124.156.64.236 124.156.64.50 124.156.64.88 124.158.171.107 124.160.165.27 124.16.183.248 124.16.77.22 124.162.19.51 124.163.199.31 124.164.91.198 124.165.205.126 124.165.210.78 124.165.227.18 124.166.254.253 124.167.226.22 124.167.71.15 124.176.46.152 124.189.239.168 124.193.212.34 124.193.218.66 124.193.236.144 124.193.74.242 124.200.190.42 124.202.197.22 124.202.208.122 124.204.54.60 124.204.74.226 124.205.118.165 124.205.131.139 124.205.183.42 124.205.183.45 124.205.194.34 124.205.211.194 124.205.226.1 124.205.230.78 124.205.29.18 124.205.34.199 124.206.0.227 124.207.137.144 124.207.55.171 124.219.105.17 124.225.26.12 124.226.29.146 124.232.147.109 124.232.147.86 124.232.150.139 124.232.153.232 124.234.141.247 124.234.2.112 124.235.240.146 124.236.24.218 124.236.24.220 124.236.24.252 124.236.24.71 124.236.50.110 124.239.148.63 124.239.173.242 124.239.176.178 124.24.223.108 124.248.48.106 124.250.236.5 124.25.179.234 124.29.209.22 124.29.211.53 124.29.217.210 124.29.220.158 124.29.232.205 124.29.235.8 124.29.242.190 124.31.204.116 124.31.204.119 124.31.244.89 124.40.232.204 124.42.9.16 124.43.129.107 124.47.2.194 124.47.8.10 124.6.0.143 124.6.0.97 124.6.157.245 124.6.184.131 124.6.7.146 124.65.120.30 124.65.122.162 124.65.130.234 124.65.130.94 124.65.141.110 124.65.18.102 124.65.244.6 124.65.50.126 124.67.216.64 124.67.89.36 124.67.89.50 124.67.89.76 124.70.148.198 124.70.154.73 124.7.139.210 124.71.130.73 124.74.10.122 124.78.0.248 124.78.43.185 124.81.84.130 124.88.188.3 124.88.218.227 124.94.241.29 124.95.141.149 124.95.165.217 124.95.171.244 125.112.87.36 125.114.120.167 125.118.160.79 125.119.236.123 125.121.194.207 125.123.240.130 125.124.117.226 125.124.147.191 125.124.166.101 125.124.30.186 125.124.70.22 125.124.82.173 125.124.91.206 125.124.97.15 125.128.122.164 125.128.241.71 125.129.74.248 125.132.90.208 125.134.168.91 125.134.189.159 125.136.225.170 125.138.73.59 125.140.200.164 125.141.56.231 125.142.131.114 125.142.174.184 125.163.162.49 125.165.76.238 125.165.86.223 125.178.227.57 125.19.16.194 125.19.44.2 125.209.75.222 125.211.197.145 125.211.197.28 125.211.216.217 125.211.216.221 125.211.222.99 125.212.192.7 125.212.217.214 125.212.244.109 125.219.48.53 125.22.82.194 125.224.107.141 125.224.86.226 125.227.134.55 125.227.140.91 125.227.219.120 125.227.24.10 125.227.64.128 125.227.76.81 125.230.223.42 125.236.233.97 125.253.126.175 125.26.15.28 125.26.179.135 125.32.145.115 125.32.169.235 125.33.56.26 125.36.92.10 125.40.22.177 125.42.155.57 125.46.11.67 125.46.207.214 125.46.23.166 125.46.32.112 125.46.88.101 125.46.97.138 125.59.128.195 125.62.178.185 125.62.218.142 125.62.218.188 125.62.222.105 125.64.209.113 125.64.94.133 125.64.94.135 125.64.94.136 125.65.42.38 125.66.113.91 125.66.2.157 125.67.228.232 125.69.149.161 125.69.67.116 125.69.78.131 125.70.242.107 125.71.216.50 125.71.238.182 125.71.239.135 125.71.239.216 125.72.148.242 125.72.209.78 125.72.29.91 125.72.34.125 125.73.131.213 125.74.27.36 125.75.114.6 125.75.119.106 125.75.120.12 125.75.128.231 125.75.8.68 125.76.228.32 125.76.246.18 125.76.246.24 125.76.246.46 125.78.49.82 125.79.23.210 125.82.218.73 125.89.130.222 125.91.106.231 125.91.111.197 125.91.126.92 125.93.180.194 125.93.183.178 125.93.55.34 125.94.149.125 125.94.149.135 125.94.149.58 125.94.219.188 125.99.24.231 126.110.121.128 126.115.241.178 126.121.233.209 126.31.216.40 128.1.91.203 128.1.91.204 128.1.91.205 128.1.91.206 128.106.132.157 128.106.136.112 128.106.181.92 128.106.223.152 128.106.72.17 128.106.80.41 128.106.98.60 128.116.134.251 128.134.0.72 128.14.133.58 128.14.134.134 128.14.134.170 128.14.137.179 128.14.137.180 128.14.137.181 128.14.137.182 128.14.152.42 128.14.152.43 128.14.152.44 128.14.152.45 128.14.152.46 128.199.101.113 128.199.110.226 128.199.114.138 128.199.134.165 128.199.143.19 128.199.15.46 128.199.158.12 128.199.15.87 128.199.160.225 128.199.169.90 128.199.193.246 128.199.207.238 128.199.214.208 128.199.22.36 128.199.239.204 128.199.33.67 128.199.5.192 128.199.72.250 128.199.73.213 128.199.73.25 128.199.84.251 128.199.85.49 128.199.92.187 128.199.96.1 128.201.98.156 128.232.21.75 128.53.67.48 128.90.163.59 128.92.64.172 129.122.127.225 129.126.161.131 129.126.202.99 129.126.221.37 129.144.181.142 129.146.250.165 129.204.148.56 129.204.164.84 129.204.169.82 129.204.177.133 129.204.181.118 129.204.203.218 129.204.225.65 129.204.231.225 129.204.238.250 129.204.248.191 129.204.28.39 129.204.33.164 129.204.39.220 129.204.8.130 129.204.88.17 129.205.118.115 129.211.10.111 129.211.130.66 129.211.13.226 129.211.137.239 129.211.168.50 129.211.171.112 129.211.174.145 129.211.185.246 129.211.187.67 129.211.19.147 129.211.37.91 129.211.65.188 129.211.66.107 129.211.74.252 129.211.85.214 129.226.114.97 129.226.117.160 129.226.134.112 129.226.149.146 129.226.150.37 129.226.154.67 129.226.156.168 129.226.170.181 129.226.170.25 129.226.190.18 129.226.190.74 129.226.62.150 129.226.67.92 129.227.129.173 129.227.129.174 129.28.187.11 130.25.125.174 130.25.35.33 130.61.96.72 131.0.164.46 131.0.23.168 131.100.38.226 131.100.78.22 131.108.124.253 131.108.142.6 131.108.166.217 131.148.13.222 131.148.180.189 131.148.66.76 131.161.205.117 131.161.54.50 131.221.174.82 131.255.152.2 131.255.163.132 132.145.165.9 132.145.94.79 132.232.14.159 132.232.161.51 132.232.21.19 132.232.21.72 132.232.222.117 132.232.26.124 132.232.29.131 132.232.31.157 132.232.37.63 132.232.41.170 132.232.4.140 132.232.47.59 132.232.66.128 133.123.60.24 133.155.230.171 133.155.33.24 133.232.70.160 134.119.206.3 134.122.101.181 134.122.101.207 134.122.101.91 134.122.105.23 134.122.105.9 134.122.108.194 134.122.110.78 134.122.112.119 134.122.113.59 134.122.131.164 134.122.53.154 134.122.72.221 134.175.128.155 134.175.161.251 134.175.170.87 134.175.174.38 134.175.216.112 134.175.59.125 134.175.83.105 134.19.215.196 134.209.111.46 134.209.148.107 134.209.150.94 134.209.154.74 134.209.159.10 134.209.164.184 134.209.169.202 134.209.179.18 134.209.187.43 134.209.22.239 134.209.223.106 134.209.236.252 134.209.241.80 134.209.24.61 134.209.35.77 134.209.63.140 134.228.236.136 134.249.158.124 134.249.96.246 134.41.179.228 134.73.73.57 135.84.220.89 136.228.128.145 136.228.128.166 136.228.129.156 136.228.129.90 136.228.131.157 136.228.131.40 136.228.131.46 136.228.131.76 136.228.162.150 136.228.163.150 136.232.118.34 136.232.186.6 136.24.78.125 136.244.77.84 136.28.194.181 136.29.17.198 136.55.86.110 137.116.146.201 137.117.192.55 137.118.107.88 137.118.108.10 137.135.118.189 137.135.127.50 137.135.242.205 137.175.30.60 137.220.135.50 137.220.185.22 137.59.225.234 137.74.50.116 138.0.224.232 138.0.92.193 138.0.92.253 138.117.60.163 138.117.81.45 138.118.234.92 138.118.56.22 138.121.104.49 138.121.104.68 138.128.174.234 138.186.177.212 138.186.7.185 138.186.88.86 138.197.151.213 138.197.152.148 138.197.165.47 138.197.171.79 138.197.175.236 138.197.202.45 138.197.222.141 138.197.222.97 138.197.36.189 138.197.89.186 138.197.89.212 138.204.121.75 138.204.145.47 138.204.226.186 138.204.227.14 138.204.227.212 138.207.174.248 138.219.14.181 138.219.161.1 138.255.75.96 138.68.226.234 138.68.247.104 138.68.40.92 138.68.4.131 138.68.79.102 138.68.81.162 138.68.94.142 138.68.95.204 138.68.96.104 138.75.192.123 138.94.45.122 138.97.212.245 138.97.241.37 138.97.37.225 138.99.216.104 138.99.216.92 139.101.151.210 139.155.105.217 139.155.123.84 139.155.23.172 139.155.25.68 139.155.30.122 139.155.68.58 139.155.70.21 139.155.72.168 139.155.74.147 139.155.75.8 139.155.89.11 139.159.195.21 139.162.104.208 139.162.106.178 139.162.108.62 139.162.109.43 139.162.110.42 139.162.112.248 139.162.113.212 139.162.115.221 139.162.116.22 139.162.118.251 139.162.121.165 139.162.121.251 139.162.161.120 139.162.16.60 139.162.173.162 139.162.248.235 139.162.32.240 139.162.4.14 139.162.65.76 139.162.69.98 139.162.72.191 139.162.75.99 139.162.77.6 139.162.84.112 139.162.86.84 139.162.90.220 139.162.98.244 139.162.99.58 139.170.229.124 139.180.191.167 139.180.208.42 139.186.67.159 139.186.69.133 139.186.69.92 139.186.73.19 139.186.73.65 139.186.76.101 139.192.237.42 139.198.120.226 139.198.17.135 139.199.10.43 139.199.104.65 139.199.108.83 139.199.204.61 139.199.224.42 139.199.248.156 139.199.25.110 139.199.26.219 139.199.44.125 139.199.74.92 139.199.89.157 139.208.88.79 139.209.233.244 139.209.34.34 139.215.195.61 139.217.233.15 139.217.236.198 139.219.9.247 139.226.75.82 139.255.17.194 139.255.86.19 139.28.218.34 139.5.152.81 139.59.116.115 139.59.116.243 139.59.150.201 139.59.17.15 139.59.32.51 139.59.46.226 139.59.58.115 139.59.59.102 139.59.61.103 139.59.67.82 139.59.70.186 139.59.8.10 139.59.83.179 139.59.90.0 139.59.92.19 139.59.95.60 139.9.69.82 139.99.120.194 139.99.141.237 140.143.125.123 140.143.128.66 140.143.13.177 140.143.141.86 140.143.189.58 140.143.208.213 140.143.228.67 140.143.233.133 140.143.236.227 140.143.236.54 140.143.238.108 140.143.32.56 140.143.57.159 140.143.5.72 140.143.90.154 140.143.9.175 140.143.95.201 140.143.9.88 140.148.247.241 140.206.168.198 140.206.223.15 140.206.86.124 140.206.86.125 140.207.170.187 140.238.224.192 140.246.156.179 140.246.225.169 140.246.84.46 140.249.169.213 140.249.20.167 140.249.213.243 140.255.232.127 141.105.66.163 141.134.41.64 141.136.37.245 141.149.36.27 141.226.1.11 141.85.192.53 141.98.80.22 141.98.80.227 141.98.80.242 141.98.81.182 141.98.81.212 141.98.81.88 141.98.9.163 142.11.212.83 142.129.214.26 142.217.191.175 142.44.138.213 142.44.142.226 142.44.206.116 142.59.220.68 142.59.220.69 142.93.101.46 142.93.112.41 142.93.120.47 142.93.121.47 142.93.130.58 142.93.143.112 142.93.151.3 142.93.153.111 142.93.154.174 142.93.158.170 142.93.163.152 142.93.183.128 142.93.186.206 142.93.187.179 142.93.195.15 142.93.196.20 142.93.200.206 142.93.202.82 142.93.211.52 142.93.212.213 142.93.235.47 142.93.238.233 142.93.242.246 142.93.246.42 142.93.34.237 142.93.47.124 142.93.48.191 142.93.56.57 142.93.68.181 142.93.77.12 143.0.112.166 143.189.125.213 143.202.12.42 143.208.128.42 143.255.140.174 143.255.198.242 143.255.241.53 143.92.43.230 143.92.56.232 144.123.1.234 144.132.144.210 144.137.28.13 144.139.195.70 144.163.19.126 144.217.207.37 144.217.207.56 144.217.211.2 144.217.248.6 144.217.248.65 144.217.34.151 144.217.42.212 144.217.50.88 144.22.110.77 144.255.147.55 144.7.127.175 144.91.113.96 144.91.118.124 144.91.123.140 144.91.77.202 144.91.78.118 144.91.87.106 145.239.6.55 146.158.194.8 146.247.241.242 146.255.81.98 146.88.240.4 146.88.78.130 147.0.22.179 147.203.238.18 148.153.37.2 148.163.173.16 148.222.45.3 148.229.3.242 148.240.92.126 148.243.243.65 148.244.120.68 148.247.195.159 148.70.14.121 148.70.154.10 148.70.171.31 148.70.33.136 148.70.50.244 148.70.68.36 148.70.93.176 148.72.132.87 148.72.158.192 148.72.168.4 148.72.208.36 148.77.34.194 149.115.208.41 149.115.209.221 149.129.59.71 149.156.171.206 149.200.160.42 149.202.79.125 149.248.39.31 149.255.36.175 149.255.36.176 149.3.105.207 149.3.124.102 149.3.85.81 149.34.6.172 149.56.160.32 149.56.186.152 149.56.23.18 149.56.234.191 149.56.250.246 149.56.26.173 149.56.28.100 150.107.149.11 150.107.2.106 150.109.100.65 150.109.104.153 150.109.11.232 150.109.113.40 150.109.120.253 150.109.147.145 150.109.164.127 150.109.164.133 150.109.164.15 150.109.164.235 150.109.167.106 150.109.167.136 150.109.167.155 150.109.167.20 150.109.167.218 150.109.167.235 150.109.167.243 150.109.167.32 150.109.167.75 150.109.170.100 150.109.170.114 150.109.170.115 150.109.170.124 150.109.170.179 150.109.170.203 150.109.170.254 150.109.170.49 150.109.170.60 150.109.170.68 150.109.170.73 150.109.170.84 150.109.170.97 150.109.180.100 150.109.180.125 150.109.180.126 150.109.180.135 150.109.180.156 150.109.180.237 150.109.181.149 150.109.181.212 150.109.181.217 150.109.181.25 150.109.181.254 150.109.181.27 150.109.181.99 150.109.182.127 150.109.182.140 150.109.182.163 150.109.182.166 150.109.182.197 150.109.182.55 150.109.183.223 150.109.183.239 150.109.183.94 150.109.194.59 150.109.203.21 150.109.203.239 150.109.205.242 150.109.205.70 150.109.229.166 150.109.229.30 150.109.230.162 150.109.230.219 150.109.231.12 150.109.231.201 150.109.231.21 150.109.23.183 150.109.231.90 150.109.23.216 150.109.23.36 150.109.234.173 150.109.235.105 150.109.236.199 150.109.237.188 150.109.238.123 150.109.238.211 150.109.239.89 150.109.45.228 150.109.47.167 150.109.52.213 150.109.5.248 150.109.61.134 150.109.63.204 150.117.193.63 150.136.192.92 150.136.253.34 150.136.81.55 150.138.92.202 150.147.237.121 150.158.110.27 150.158.113.106 150.158.120.81 150.158.181.16 150.158.186.50 150.223.13.155 150.249.157.17 151.0.218.243 151.1.181.72 151.1.181.74 151.16.27.19 151.177.184.180 151.177.243.232 151.182.29.25 151.236.219.189 151.236.39.106 151.236.59.142 151.237.207.10 151.250.116.134 151.28.252.147 151.31.50.203 151.33.204.210 151.50.220.148 151.58.46.3 151.63.220.103 151.70.119.96 151.76.181.20 151.93.209.158 152.136.104.57 152.136.11.110 152.136.126.129 152.136.127.178 152.136.127.207 152.136.131.171 152.136.145.188 152.136.150.115 152.136.151.194 152.136.156.14 152.136.157.34 152.136.188.87 152.136.210.84 152.136.21.80 152.136.219.146 152.136.220.127 152.136.237.229 152.136.34.209 152.136.96.220 152.169.147.48 152.169.208.63 152.200.139.12 152.200.139.13 152.249.181.3 152.32.139.75 152.32.202.198 153.0.150.42 153.101.226.188 153.127.4.110 153.142.49.250 153.172.137.239 153.232.29.168 153.35.217.243 154.124.43.96 154.124.61.96 154.16.145.216 154.206.62.95 154.211.5.109 154.211.5.26 154.211.5.91 154.221.19.223 154.66.11.89 154.68.195.101 154.72.193.254 154.8.213.126 154.8.227.109 154.8.232.34 154.83.15.91 155.138.159.234 155.4.18.118 156.146.60.7 156.214.53.142 156.215.100.200 156.237.27.150 156.96.116.248 156.96.118.53 156.96.119.148 156.96.119.28 156.96.155.246 156.96.156.138 156.96.44.176 156.96.45.237 156.96.47.41 156.96.62.68 156.96.62.75 157.119.234.144 157.119.250.57 157.122.180.18 157.131.251.138 157.185.156.157 157.185.156.158 157.185.158.52 157.185.158.53 157.185.160.190 157.185.160.191 157.185.163.230 157.185.169.194 157.185.169.195 157.185.170.119 157.185.170.120 157.185.172.93 157.185.175.63 157.185.179.67 157.230.226.7 157.230.239.99 157.230.240.140 157.230.243.172 157.230.244.147 157.230.245.243 157.230.245.91 157.230.249.90 157.230.31.237 157.230.38.102 157.230.46.26 157.230.53.57 157.230.62.221 157.245.100.226 157.245.10.196 157.245.104.214 157.245.163.0 157.245.172.7 157.245.218.105 157.245.252.225 157.245.255.113 157.245.45.99 157.245.69.97 157.245.78.30 157.52.252.112 157.52.255.137 157.55.214.174 157.56.9.9 157.65.229.242 158.177.128.27 158.181.76.58 158.69.226.175 158.69.62.214 158.69.96.96 159.117.65.167 159.18.94.65 159.192.131.197 159.192.133.212 159.192.89.211 159.203.102.122 159.203.128.47 159.203.13.59 159.203.165.156 159.203.184.19 159.203.192.134 159.203.242.122 159.203.25.76 159.203.30.50 159.203.60.236 159.203.74.227 159.203.81.28 159.203.85.196 159.224.184.179 159.226.89.97 159.45.146.135 159.45.99.71 159.65.100.44 159.65.131.92 159.65.133.150 159.65.136.141 159.65.136.196 159.65.137.122 159.65.138.161 159.65.147.235 159.65.154.48 159.65.157.17 159.65.163.59 159.65.216.161 159.65.224.137 159.65.230.103 159.65.236.182 159.65.33.243 159.65.64.76 159.89.115.108 159.89.129.36 159.89.145.59 159.89.146.218 159.89.154.79 159.89.157.126 159.89.167.80 159.89.231.172 159.89.236.71 159.89.38.228 159.89.47.115 159.89.53.183 159.89.53.210 159.89.88.119 159.89.94.13 160.120.188.23 160.124.140.153 160.124.157.76 160.124.50.93 160.238.181.9 160.242.88.48 161.117.186.48 161.35.100.118 161.35.11.118 161.35.140.204 161.35.158.247 161.35.200.85 161.35.225.1 161.35.233.187 161.35.24.85 161.35.29.223 161.35.54.135 161.35.58.145 161.35.61.129 161.35.7.230 161.43.204.55 161.43.204.57 161.81.173.220 161.97.104.94 161.97.91.44 161.97.98.200 162.14.134.114 162.14.134.116 162.142.125.16 162.142.125.17 162.142.125.18 162.142.125.19 162.142.125.21 162.142.125.22 162.142.125.23 162.142.125.24 162.142.125.25 162.142.125.26 162.142.125.27 162.142.125.28 162.142.125.29 162.142.125.30 162.142.125.31 162.144.150.118 162.144.38.240 162.209.246.91 162.212.13.60 162.214.111.167 162.214.120.25 162.214.97.24 162.217.55.161 162.217.84.104 162.221.91.114 162.241.142.103 162.241.200.72 162.241.75.116 162.241.76.74 162.241.94.40 162.243.128.105 162.243.128.122 162.243.128.134 162.243.128.140 162.243.128.179 162.243.128.191 162.243.128.198 162.243.128.252 162.243.128.63 162.243.128.78 162.243.128.8 162.243.129.126 162.243.129.130 162.243.129.133 162.243.129.135 162.243.129.174 162.243.129.186 162.243.129.228 162.243.129.26 162.243.129.47 162.243.129.68 162.243.129.70 162.243.129.8 162.243.129.99 162.243.130.32 162.243.130.40 162.243.130.41 162.243.130.42 162.243.130.43 162.243.130.48 162.243.130.49 162.243.130.66 162.243.130.67 162.243.130.68 162.243.130.70 162.243.130.79 162.243.130.88 162.243.130.97 162.243.172.42 162.243.232.174 162.243.42.225 162.245.81.36 162.248.243.62 162.251.203.212 162.252.57.170 162.252.57.206 162.253.168.86 162.255.22.70 162.62.15.18 162.62.16.10 162.62.16.102 162.62.16.131 162.62.16.15 162.62.16.235 162.62.17.103 162.62.17.164 162.62.17.202 162.62.17.216 162.62.17.226 162.62.17.230 162.62.17.42 162.62.17.83 162.62.19.137 162.62.19.220 162.62.19.79 162.62.20.10 162.62.20.238 162.62.20.74 162.62.26.10 162.62.26.113 162.62.26.128 162.62.26.17 162.62.26.192 162.62.26.206 162.62.26.207 162.62.26.223 162.62.26.228 162.62.26.238 162.62.26.240 162.62.26.56 162.62.27.117 162.83.167.169 163.171.198.22 163.171.71.31 163.172.147.100 163.172.212.138 163.172.44.39 163.172.50.168 163.177.24.120 163.177.40.85 163.179.97.16 163.43.103.196 163.47.32.110 163.53.185.226 164.132.145.70 164.132.70.104 164.132.73.220 164.163.25.207 164.52.24.165 164.52.24.166 164.52.24.167 164.52.24.168 164.52.24.170 164.52.24.171 164.52.24.172 164.52.24.173 164.52.24.174 164.52.24.175 164.52.24.176 164.52.24.177 164.52.24.178 164.52.24.179 164.52.24.181 164.52.24.182 164.52.24.189 164.68.110.55 164.68.112.178 164.68.97.154 164.68.98.88 164.77.221.125 164.77.87.82 164.90.145.170 164.90.189.13 164.90.190.60 164.90.192.79 164.90.200.100 164.90.202.158 164.90.208.135 164.90.214.5 164.90.233.75 165.16.37.150 165.22.103.237 165.22.104.182 165.22.200.17 165.22.215.192 165.22.223.121 165.22.252.126 165.22.27.240 165.22.32.60 165.22.40.147 165.22.50.164 165.22.70.101 165.22.77.163 165.22.82.135 165.22.88.129 165.227.117.255 165.227.133.181 165.227.181.9 165.227.214.37 165.227.225.195 165.227.3.109 165.227.4.106 165.227.45.249 165.227.72.166 165.227.87.8 165.227.88.131 165.227.95.163 165.228.23.22 165.231.33.10 165.232.106.24 166.70.202.88 166.70.83.208 167.114.188.40 167.114.24.177 167.114.24.178 167.114.24.179 167.114.24.181 167.114.24.182 167.114.24.183 167.114.24.184 167.114.24.185 167.114.24.186 167.114.24.187 167.114.24.188 167.114.24.189 167.114.24.191 167.114.79.9 167.157.38.136 167.172.133.221 167.172.156.227 167.172.196.255 167.172.219.196 167.172.231.211 167.172.238.159 167.172.239.118 167.172.38.238 167.172.43.117 167.172.44.239 167.172.61.169 167.172.69.52 167.179.13.185 167.248.133.16 167.248.133.17 167.248.133.18 167.248.133.19 167.248.133.20 167.248.133.21 167.248.133.22 167.248.133.23 167.248.133.24 167.248.133.25 167.248.133.26 167.248.133.27 167.248.133.28 167.248.133.29 167.248.133.31 167.249.211.60 167.250.99.232 167.71.102.181 167.71.102.95 167.71.127.128 167.71.13.196 167.71.134.241 167.71.145.201 167.71.14.75 167.71.154.158 167.71.159.195 167.71.161.200 167.71.175.10 167.71.175.107 167.71.186.157 167.71.195.173 167.71.197.10 167.71.209.2 167.71.222.34 167.71.223.11 167.71.234.134 167.71.38.104 167.71.48.211 167.71.63.130 167.71.7.175 167.71.78.146 167.71.80.171 167.71.96.148 167.88.161.92 167.99.108.74 167.99.144.50 167.99.146.47 167.99.155.36 167.99.166.195 167.99.168.64 167.99.170.91 167.99.172.181 167.99.185.216 167.99.235.68 167.99.67.209 167.99.69.130 167.99.7.149 167.99.8.129 167.99.86.148 167.99.93.5 168.0.149.89 168.121.223.92 168.138.137.117 168.167.50.254 168.181.105.149 168.181.111.155 168.181.120.21 168.181.254.241 168.181.254.253 168.181.36.135 168.181.56.38 168.194.229.55 168.195.252.190 168.195.32.4 168.197.209.90 168.205.220.135 168.232.113.235 168.232.115.166 168.232.15.162 168.232.20.5 168.232.7.55 168.243.53.201 168.62.163.154 168.63.151.21 168.70.37.71 168.90.114.136 169.239.120.11 169.255.26.53 170.0.155.219 170.0.236.142 170.106.33.194 170.106.33.94 170.106.36.137 170.106.36.178 170.106.36.196 170.106.36.200 170.106.36.227 170.106.36.232 170.106.36.26 170.106.36.31 170.106.36.56 170.106.36.63 170.106.36.64 170.106.36.87 170.106.36.89 170.106.36.97 170.106.37.110 170.106.37.121 170.106.37.136 170.106.37.143 170.106.37.186 170.106.37.189 170.106.37.194 170.106.37.222 170.106.37.231 170.106.37.63 170.106.38.178 170.106.38.205 170.106.38.214 170.106.38.23 170.106.38.241 170.106.38.36 170.106.38.84 170.106.38.97 170.106.64.219 170.106.64.65 170.106.65.90 170.106.67.19 170.106.67.243 170.106.67.55 170.106.72.214 170.106.74.169 170.106.74.33 170.106.76.105 170.106.76.152 170.106.76.163 170.106.76.171 170.106.76.219 170.106.76.22 170.106.76.40 170.106.76.57 170.106.80.142 170.106.80.169 170.106.80.172 170.106.80.52 170.106.80.86 170.106.81.113 170.106.81.117 170.106.81.129 170.106.81.157 170.106.81.188 170.106.81.19 170.106.81.211 170.106.81.217 170.106.81.221 170.106.81.231 170.106.81.247 170.106.81.25 170.106.81.251 170.106.81.28 170.106.81.36 170.106.81.53 170.106.84.100 170.106.84.58 170.106.84.83 170.238.120.126 170.238.51.116 170.238.74.20 170.239.128.7 170.245.248.167 170.246.0.164 170.247.158.23 170.249.178.19 170.254.204.86 170.78.172.46 170.78.232.96 170.79.232.70 170.80.29.107 170.80.51.206 170.81.149.210 170.81.231.187 170.82.181.7 170.82.28.18 170.82.7.250 170.83.139.245 170.84.69.27 171.100.91.24 171.104.156.14 171.104.223.70 171.109.118.40 171.111.153.171 171.113.37.24 171.113.39.27 171.117.129.246 171.117.81.36 171.118.9.169 171.119.6.84 171.119.75.139 171.120.59.229 171.13.14.55 171.13.14.75 171.13.14.76 171.13.14.83 171.13.14.84 171.15.132.54 171.15.16.116 171.15.162.190 171.220.181.165 171.220.243.213 171.221.209.252 171.221.236.226 171.221.242.23 171.221.38.87 171.224.28.233 171.233.99.83 171.234.119.221 171.235.114.86 171.236.118.200 171.236.242.138 171.239.47.4 171.243.119.114 171.244.10.218 171.244.188.221 171.244.38.118 171.244.9.26 171.246.34.221 171.247.175.158 171.251.159.3 171.34.42.155 171.5.53.95 171.95.49.184 171.97.32.218 171.97.44.21 171.97.67.103 172.104.109.160 172.104.112.244 172.104.116.36 172.104.122.237 172.104.124.229 172.104.125.180 172.104.137.8 172.104.138.118 172.104.178.114 172.104.208.206 172.104.242.173 172.104.39.113 172.104.65.226 172.104.76.217 172.104.92.168 172.104.92.209 172.104.94.253 172.105.103.153 172.105.106.64 172.105.11.150 172.105.192.195 172.105.197.151 172.105.20.169 172.105.207.40 172.105.210.107 172.105.217.71 172.105.219.236 172.105.224.78 172.105.225.204 172.105.226.61 172.105.239.183 172.105.28.83 172.105.29.176 172.105.48.241 172.105.51.69 172.105.79.79 172.105.84.32 172.105.89.161 172.105.9.55 172.105.96.30 172.105.97.157 172.105.97.82 172.111.192.141 172.113.36.71 172.114.244.127 172.117.48.126 172.172.23.202 172.172.23.208 172.172.23.217 172.172.26.135 172.172.26.140 172.172.26.160 172.172.26.166 172.172.30.131 172.172.30.137 172.172.30.144 172.172.30.148 172.172.30.16 172.172.30.210 172.172.30.7 172.223.231.64 172.245.180.180 172.245.36.168 172.245.38.196 172.247.157.251 172.72.14.144 172.81.227.243 172.81.235.131 172.81.239.252 172.81.241.252 172.83.64.47 172.93.148.217 172.93.4.78 172.97.187.85 173.13.190.147 173.178.89.119 173.188.200.178 173.208.218.93 173.209.136.130 173.212.225.214 173.212.230.20 173.212.235.133 173.212.241.131 173.220.200.3 173.230.149.21 173.233.82.236 173.249.32.150 173.249.6.245 173.255.192.249 173.255.211.252 173.255.225.162 173.47.21.42 173.54.247.22 173.56.119.71 173.68.147.70 173.8.95.45 174.138.39.241 174.138.42.143 174.138.48.152 174.32.120.186 174.35.6.80 174.4.117.8 174.4.5.185 174.44.66.186 174.53.156.188 174.63.161.36 174.71.159.170 174.79.115.90 174.82.62.96 174.84.148.29 174.85.47.2 174.94.154.9 175.0.235.156 175.100.20.14 175.100.74.202 175.101.78.37 175.107.196.29 175.11.70.200 175.117.40.19 175.138.96.59 175.138.99.100 175.139.229.157 175.141.247.32 175.148.219.145 175.148.60.222 175.149.214.70 175.151.235.196 175.151.242.192 175.152.11.199 175.153.168.189 175.165.151.59 175.166.86.137 175.167.165.115 175.167.43.27 175.172.52.0 175.173.111.184 175.173.72.38 175.174.252.22 175.176.193.130 175.176.193.234 175.176.194.18 175.176.195.10 175.180.136.91 175.180.249.232 175.18.191.166 175.18.32.187 175.18.73.199 175.181.33.19 175.182.107.224 175.182.238.199 175.182.238.23 175.182.91.46 175.183.6.160 175.19.172.45 175.19.204.2 175.19.204.4 175.192.128.217 175.194.38.230 175.195.185.13 175.198.65.138 175.200.3.32 175.20.147.211 175.20.54.65 175.20.56.195 175.202.139.224 175.203.169.123 175.203.57.172 175.205.194.153 175.206.147.232 175.208.251.32 175.210.134.46 175.21.208.70 175.211.135.151 175.211.202.131 175.211.251.173 175.211.89.172 175.212.120.145 175.213.104.25 175.213.156.139 175.213.178.78 175.214.158.238 175.215.114.134 175.22.14.11 175.23.185.102 175.23.21.145 175.24.107.201 175.24.122.67 175.24.132.108 175.24.138.183 175.24.138.30 175.24.42.136 175.24.45.114 175.24.50.165 175.24.51.238 175.24.64.17 175.24.67.217 175.24.72.167 175.24.74.107 175.24.81.253 175.24.88.227 175.24.90.42 175.24.95.170 175.24.95.209 175.25.16.25 175.29.161.117 175.31.172.238 175.37.108.29 175.37.149.77 175.43.1.71 175.6.108.125 175.6.108.213 175.6.148.219 175.6.27.209 175.6.32.230 175.6.35.166 175.6.35.197 175.6.35.228 175.6.35.93 175.6.67.24 175.6.70.180 175.6.73.4 175.6.77.131 175.8.60.198 176.100.102.195 176.10.116.204 176.10.163.85 176.10.196.27 176.102.196.162 176.103.106.131 176.104.10.178 176.113.115.81 176.114.209.115 176.117.237.121 176.118.51.144 176.119.224.74 176.119.30.33 176.121.235.236 176.126.175.49 176.126.244.211 176.131.197.254 176.197.174.158 176.20.199.178 176.205.245.102 176.221.48.214 176.223.37.149 176.235.159.225 176.241.140.22 176.253.118.174 176.31.207.10 176.31.225.213 176.31.225.231 176.31.226.188 176.31.40.155 176.37.60.16 176.40.226.109 176.43.171.219 176.57.71.116 176.58.125.104 176.62.182.26 176.65.241.165 176.88.201.210 177.10.60.44 177.1.202.137 177.103.12.10 177.104.83.16 177.105.192.121 177.105.192.76 177.106.55.27 177.11.136.66 177.12.29.222 177.124.40.7 177.124.74.93 177.124.93.55 177.125.43.19 177.126.186.146 177.130.247.12 177.135.177.18 177.137.233.62 177.139.224.55 177.140.219.187 177.152.124.23 177.152.54.12 177.152.54.6 177.154.49.27 177.155.134.68 177.157.73.146 177.16.245.241 177.170.30.166 177.170.50.76 177.180.99.61 177.185.27.32 177.189.228.188 177.190.195.102 177.19.166.93 177.191.129.237 177.201.123.153 177.204.16.205 177.207.232.69 177.21.203.252 177.22.84.57 177.222.144.124 177.23.88.39 177.231.133.159 177.231.138.7 177.234.179.4 177.238.249.14 177.33.89.254 177.36.191.1 177.38.146.71 177.38.35.66 177.38.76.5 177.39.233.0 177.44.226.177 177.44.70.8 177.45.187.67 177.47.193.74 177.52.118.2 177.53.29.176 177.53.30.138 177.53.30.96 177.53.40.34 177.54.110.35 177.62.87.84 177.66.191.250 177.66.244.115 177.66.71.234 177.66.73.84 177.67.27.188 177.69.203.7 177.71.48.86 177.72.74.39 177.75.143.241 177.8.55.155 177.81.142.169 177.84.209.92 177.85.116.78 177.85.224.76 177.85.66.6 177.92.188.2 177.92.85.186 177.93.253.8 177.94.203.150 177.96.241.118 177.98.122.158 178.116.216.159 178.124.202.115 178.124.217.197 178.127.89.73 178.128.122.222 178.128.15.57 178.128.206.34 178.128.221.162 178.128.233.69 178.128.41.141 178.128.43.90 178.128.45.173 178.128.6.90 178.128.72.80 178.128.86.188 178.128.86.237 178.128.88.244 178.132.209.83 178.134.185.31 178.134.190.166 178.149.185.77 178.150.38.63 178.151.83.166 178.153.23.50 178.157.225.207 178.160.248.168 178.168.112.167 178.168.86.168 178.169.171.129 178.17.170.156 178.174.148.20 178.174.235.29 178.176.194.21 178.176.194.81 178.18.34.36 178.19.40.184 178.20.225.104 178.205.253.206 178.207.9.210 178.210.54.253 178.215.88.75 178.216.251.21 178.216.38.152 178.216.77.165 178.216.78.106 178.217.106.73 178.217.98.174 178.218.115.96 178.219.187.6 178.219.49.61 178.219.49.70 178.219.50.205 178.220.177.53 178.220.222.89 178.22.120.102 178.22.122.51 178.221.53.226 178.23.112.170 178.236.234.20 178.238.235.130 178.239.49.102 178.242.3.32 178.242.48.174 178.248.87.132 178.32.63.177 178.33.212.220 178.33.254.29 178.33.255.189 178.33.3.16 178.33.64.76 178.44.194.90 178.46.159.12 178.46.208.218 178.46.208.224 178.46.209.170 178.46.210.141 178.46.210.234 178.46.211.138 178.46.211.178 178.46.211.20 178.46.212.163 178.46.212.85 178.46.213.107 178.46.213.235 178.46.213.98 178.46.213.99 178.46.214.188 178.46.214.199 178.46.214.5 178.46.215.127 178.46.215.148 178.46.215.153 178.46.215.173 178.46.215.193 178.46.215.24 178.47.141.218 178.54.86.119 178.61.147.17 178.62.108.111 178.62.12.192 178.62.1.44 178.62.18.9 178.62.219.196 178.62.241.56 178.62.39.189 178.62.47.158 178.62.49.137 178.62.55.19 178.62.60.227 178.62.60.233 178.62.69.110 178.62.99.47 178.69.16.130 178.72.147.116 178.72.67.142 178.73.215.171 178.77.195.54 178.79.128.243 178.88.68.250 179.100.126.133 179.106.2.29 179.109.161.224 179.124.24.17 179.127.193.166 179.176.252.155 179.182.174.55 179.185.65.220 179.185.89.241 179.189.48.70 179.191.14.58 179.191.238.198 179.218.139.189 179.218.30.78 179.219.54.107 179.234.254.244 179.27.92.27 179.4.136.174 179.42.205.50 179.43.149.12 179.43.80.242 179.56.107.127 179.57.254.69 179.57.45.247 179.57.96.208 179.66.42.115 179.96.62.29 179.99.204.244 180.100.206.35 180.100.74.4 180.101.147.147 180.101.248.148 180.101.69.62 180.101.9.174 180.102.50.201 180.103.202.81 180.105.236.80 180.106.81.126 180.109.91.175 180.11.209.11 180.111.4.66 180.114.32.238 180.116.195.172 180.116.211.46 180.117.47.2 180.120.100.167 180.120.35.155 180.121.251.196 180.124.126.175 180.124.220.51 180.125.155.114 180.125.234.121 180.125.25.22 180.126.0.82 180.126.236.111 180.127.19.132 180.127.243.92 180.127.36.193 180.129.252.23 180.137.239.39 180.140.177.125 180.141.35.30 180.153.57.132 180.153.57.251 180.153.68.54 180.157.83.29 180.163.220.100 180.163.220.101 180.163.220.124 180.163.220.125 180.163.220.126 180.163.220.42 180.163.220.43 180.163.220.45 180.163.220.46 180.163.220.47 180.163.220.61 180.163.220.96 180.163.220.97 180.163.220.99 180.166.241.187 180.166.96.119 180.167.201.243 180.168.48.108 180.168.87.50 180.169.12.205 180.169.166.87 180.169.17.21 180.169.17.51 180.169.52.242 180.174.204.90 180.175.121.108 180.175.48.148 180.176.128.156 180.176.128.48 180.176.165.107 180.176.166.7 180.176.167.35 180.176.176.208 180.176.179.155 180.176.189.155 180.176.208.111 180.176.213.151 180.176.244.112 180.176.244.188 180.176.245.57 180.176.245.58 180.177.104.151 180.177.117.142 180.177.180.153 180.177.187.217 180.177.187.93 180.177.214.23 180.177.240.154 180.177.240.209 180.177.240.21 180.177.241.156 180.177.242.163 180.177.49.123 180.178.102.138 180.179.215.177 180.180.235.188 180.182.220.135 180.182.229.198 180.182.234.17 180.182.234.18 180.182.236.143 180.182.236.146 180.182.245.133 180.182.245.144 180.182.245.79 180.182.245.89 180.183.120.7 180.183.244.133 180.183.249.183 180.210.203.166 180.211.137.8 180.211.162.198 180.211.162.238 180.214.237.167 180.215.204.135 180.218.115.40 180.218.123.119 180.218.162.78 180.218.24.182 180.218.4.81 180.218.96.121 180.226.27.80 180.232.99.46 180.233.193.43 180.233.211.207 180.233.216.253 180.233.242.169 180.241.42.221 180.242.180.88 180.253.92.208 180.43.107.245 180.44.192.94 180.57.224.200 180.68.75.131 180.68.88.11 180.69.111.166 180.70.130.86 180.71.47.198 180.71.58.82 180.76.101.241 180.76.105.81 180.76.108.66 180.76.108.73 180.76.111.214 180.76.114.218 180.76.118.210 180.76.120.135 180.76.135.236 180.76.136.81 180.76.138.132 180.76.139.101 180.76.141.81 180.76.142.136 180.76.143.116 180.76.144.99 180.76.146.60 180.76.147.221 180.76.151.189 180.76.154.58 180.76.155.19 180.76.160.148 180.76.165.254 180.76.171.57 180.76.174.95 180.76.175.170 180.76.175.211 180.76.177.194 180.76.178.46 180.76.179.194 180.76.179.213 180.76.179.24 180.76.182.139 180.76.186.54 180.76.187.216 180.76.189.220 180.76.232.66 180.76.237.54 180.76.238.128 180.76.238.183 180.76.242.233 180.76.246.228 180.76.53.204 180.76.54.123 180.76.56.69 180.76.60.6 180.76.98.236 180.76.98.71 180.83.179.30 180.94.71.82 180.95.132.251 180.95.183.214 180.97.195.29 180.97.221.93 180.97.31.68 180.97.4.244 180.97.74.137 180.97.81.149 180.97.81.2 180.97.90.143 181.10.250.146 181.114.101.78 181.115.157.130 181.123.12.241 181.127.175.226 181.129.130.226 181.136.216.220 181.137.38.23 181.143.101.194 181.143.223.51 181.15.121.74 181.167.12.178 181.169.37.247 181.170.162.205 181.174.102.239 181.174.91.162 181.188.132.247 181.188.155.45 181.188.156.58 181.188.169.86 181.191.212.241 181.191.215.229 181.191.241.14 181.193.45.180 181.198.91.203 181.214.91.140 181.225.44.26 181.226.108.36 181.226.156.197 181.226.32.47 181.236.251.126 181.239.241.72 181.30.169.222 181.40.66.11 181.47.198.164 181.48.138.225 181.48.45.76 181.48.67.50 181.49.154.58 181.49.157.10 181.57.167.193 181.57.186.105 181.57.218.210 181.91.193.205 181.93.37.3 181.94.221.82 181.94.232.102 182.101.207.128 182.108.99.188 182.111.24.6 182.112.214.17 182.112.5.107 182.114.110.43 182.115.154.249 182.115.156.54 182.116.61.43 182.119.3.226 182.119.5.147 182.121.68.21 182.127.168.235 182.127.223.138 182.127.55.221 182.129.148.178 182.129.181.11 182.132.90.53 182.133.51.194 182.135.63.227 182.140.138.55 182.140.138.98 182.140.233.9 182.140.235.17 182.140.235.175 182.140.235.233 182.140.235.246 182.148.107.157 182.148.122.11 182.148.122.14 182.148.122.17 182.148.122.18 182.148.122.19 182.148.122.2 182.148.122.21 182.148.122.3 182.148.122.4 182.148.122.5 182.148.122.6 182.148.122.7 182.148.122.8 182.150.2.136 182.150.2.83 182.150.3.106 182.150.3.63 182.150.45.153 182.151.37.230 182.155.149.145 182.155.153.190 182.155.176.182 182.155.196.161 182.155.201.91 182.155.205.95 182.155.222.54 182.155.38.174 182.155.62.69 182.155.96.45 182.160.115.180 182.160.122.132 182.16.110.190 182.16.173.66 182.16.30.93 182.16.4.38 182.16.82.250 182.176.15.61 182.176.93.9 182.180.153.85 182.180.173.249 182.180.191.98 182.18.166.82 182.18.72.29 182.18.72.30 182.18.72.5 182.188.38.174 182.19.166.153 182.191.92.50 182.200.131.10 182.200.26.49 182.207.221.161 182.208.196.185 182.226.125.92 182.23.118.114 182.23.126.68 182.23.23.4 182.23.23.82 182.233.239.93 182.234.79.219 182.235.231.221 182.235.239.212 182.242.143.38 182.242.73.106 182.245.122.215 182.246.101.201 182.246.58.233 182.247.239.24 182.254.130.16 182.254.136.77 182.254.138.153 182.254.141.97 182.254.146.170 182.254.146.230 182.254.147.110 182.254.151.155 182.254.161.109 182.254.168.205 182.254.172.107 182.254.183.40 182.254.203.183 182.254.204.253 182.254.213.32 182.254.223.249 182.254.228.197 182.254.234.53 182.254.244.238 182.31.171.84 182.38.163.220 182.38.180.81 182.43.158.63 182.43.227.243 182.48.119.121 182.50.120.204 182.50.65.135 182.52.113.118 182.53.202.184 182.61.10.142 182.61.1.203 182.61.1.248 182.61.12.58 182.61.14.224 182.61.146.33 182.61.164.235 182.61.168.185 182.61.173.94 182.61.184.155 182.61.187.66 182.61.1.88 182.61.19.225 182.61.31.228 182.61.33.145 182.61.35.9 182.61.36.56 182.61.37.34 182.61.40.214 182.61.47.88 182.61.50.239 182.61.50.68 182.61.54.213 182.64.180.201 182.71.163.244 182.71.88.132 182.73.85.38 182.74.221.194 182.74.57.61 182.75.176.107 182.75.211.22 182.76.70.250 182.84.75.57 182.87.223.76 182.90.204.48 182.90.207.33 182.92.129.11 183.101.52.42 183.102.129.78 183.105.15.75 183.106.135.170 183.106.163.69 183.106.174.182 183.107.58.172 183.108.23.87 183.108.241.56 183.109.237.37 183.110.223.149 183.111.148.118 183.129.177.196 183.129.202.13 183.129.202.14 183.129.202.4 183.129.202.7 183.129.202.8 183.129.232.116 183.131.110.33 183.131.206.114 183.131.3.210 183.131.85.228 183.131.85.7 183.134.209.130 183.134.241.55 183.134.245.122 183.134.4.78 183.134.89.199 183.135.154.70 183.136.132.14 183.136.148.202 183.136.149.59 183.136.225.45 183.138.144.251 183.141.141.220 183.141.66.115 183.142.234.53 183.146.92.162 183.166.59.149 183.167.208.66 183.167.217.46 183.169.252.52 183.17.231.136 183.178.63.51 183.182.107.104 183.185.140.12 183.196.213.214 183.2.204.107 183.203.201.254 183.220.146.247 183.220.146.248 183.220.146.249 183.220.146.250 183.220.146.251 183.220.146.252 183.220.146.253 183.220.146.254 183.221.220.145 183.221.39.122 183.221.39.124 183.221.39.125 183.224.16.232 183.224.16.45 183.224.228.51 183.224.38.56 183.227.250.229 183.230.111.166 183.233.146.199 183.233.96.210 183.234.131.100 183.237.104.238 183.237.21.37 183.237.81.181 183.238.234.171 183.238.254.18 183.239.189.122 183.239.195.215 183.245.15.19 183.245.31.239 183.247.192.169 183.247.198.23 183.250.26.178 183.250.89.179 183.251.103.235 183.252.49.122 183.3.129.84 183.3.222.51 183.47.14.242 183.47.45.115 183.57.27.10 183.57.43.251 183.57.46.131 183.60.156.105 183.60.161.131 183.60.211.28 183.6.11.71 183.6.17.5 183.6.186.117 183.61.166.15 183.61.243.160 183.61.243.202 183.62.175.108 183.62.179.181 183.62.196.164 183.62.234.101 183.62.238.34 183.62.35.226 183.62.46.229 183.63.25.194 183.63.37.70 183.63.53.97 183.65.30.2 183.66.227.114 183.66.250.118 183.80.212.56 183.82.121.174 183.82.121.34 183.82.123.14 183.82.249.95 183.82.55.61 183.82.57.239 183.88.252.5 183.91.11.198 183.91.65.42 183.97.184.229 183.99.133.243 183.99.168.170 184.105.139.101 184.105.139.102 184.105.139.103 184.105.139.104 184.105.139.105 184.105.139.106 184.105.139.107 184.105.139.108 184.105.139.109 184.105.139.110 184.105.139.111 184.105.139.112 184.105.139.113 184.105.139.114 184.105.139.115 184.105.139.116 184.105.139.117 184.105.139.118 184.105.139.119 184.105.139.120 184.105.139.121 184.105.139.122 184.105.139.124 184.105.139.125 184.105.139.126 184.105.139.67 184.105.139.68 184.105.139.69 184.105.139.70 184.105.139.71 184.105.139.72 184.105.139.74 184.105.139.75 184.105.139.76 184.105.139.77 184.105.139.78 184.105.139.79 184.105.139.80 184.105.139.81 184.105.139.82 184.105.139.83 184.105.139.84 184.105.139.85 184.105.139.86 184.105.139.88 184.105.139.89 184.105.139.90 184.105.139.91 184.105.139.92 184.105.139.93 184.105.139.95 184.105.139.97 184.105.139.98 184.105.139.99 184.105.247.194 184.105.247.195 184.105.247.196 184.105.247.198 184.105.247.199 184.105.247.200 184.105.247.202 184.105.247.203 184.105.247.204 184.105.247.206 184.105.247.207 184.105.247.208 184.105.247.214 184.105.247.215 184.105.247.216 184.105.247.219 184.105.247.220 184.105.247.222 184.105.247.223 184.105.247.224 184.105.247.226 184.105.247.228 184.105.247.230 184.105.247.231 184.105.247.232 184.105.247.234 184.105.247.236 184.105.247.238 184.105.247.239 184.105.247.240 184.105.247.242 184.105.247.243 184.105.247.244 184.105.247.246 184.105.247.247 184.105.247.248 184.105.247.250 184.105.247.251 184.105.247.252 184.105.247.254 184.147.103.132 184.154.189.90 184.154.189.91 184.154.189.92 184.154.189.93 184.154.189.94 184.154.47.2 184.154.47.4 184.154.47.5 184.154.47.6 184.154.74.66 184.154.74.67 184.154.74.68 184.154.74.69 184.154.74.70 184.160.31.85 184.167.16.198 184.189.127.94 184.2.203.46 184.22.147.181 184.71.153.110 184.90.73.120 184.95.34.146 184.95.59.122 185.101.33.149 185.104.85.50 185.105.121.70 185.109.43.52 185.11.248.164 185.113.58.107 185.116.194.75 185.116.23.104 185.117.141.225 185.118.48.206 185.120.89.251 185.121.165.254 185.13.194.114 185.132.229.90 185.132.53.52 185.134.122.156 185.137.233.123 185.140.45.137 185.14.251.210 185.14.251.211 185.141.36.189 185.142.172.36 185.142.236.34 185.142.236.35 185.142.239.16 185.143.223.245 185.143.223.250 185.146.146.17 185.148.38.26 185.148.39.251 185.153.196.126 185.153.198.229 185.153.199.132 185.156.121.80 185.156.73.38 185.156.73.41 185.156.73.44 185.156.73.57 185.159.87.29 185.160.229.240 185.162.130.177 185.162.142.17 185.162.235.64 185.164.28.10 185.165.169.146 185.168.173.121 185.169.19.113 185.17.132.27 185.171.90.83 185.172.111.226 185.172.66.223 185.175.81.18 185.175.93.104 185.175.93.14 185.175.93.37 185.176.27.102 185.176.27.106 185.176.27.110 185.176.27.118 185.176.27.126 185.176.27.14 185.176.27.170 185.176.27.174 185.176.27.178 185.176.27.18 185.176.27.182 185.176.27.186 185.176.27.190 185.176.27.198 185.176.27.230 185.176.27.234 185.176.27.238 185.176.27.30 185.176.27.34 185.176.27.38 185.176.27.46 185.176.27.58 185.176.27.62 185.176.27.86 185.180.130.59 185.180.231.141 185.180.231.199 185.18.204.112 185.181.102.18 185.181.231.40 185.188.182.22 185.189.13.78 185.195.201.148 185.200.118.49 185.200.118.51 185.200.118.56 185.200.118.67 185.200.118.71 185.200.118.75 185.200.34.197 185.2.101.177 185.202.245.177 185.206.212.43 185.211.58.235 185.216.140.192 185.216.140.250 185.216.140.31 185.217.1.242 185.217.1.243 185.217.1.244 185.222.167.168 185.224.132.24 185.224.168.113 185.224.168.170 185.224.169.217 185.224.170.218 185.224.170.34 185.227.154.25 185.227.215.106 185.232.30.130 185.232.65.124 185.233.186.144 185.234.216.226 185.234.216.232 185.234.216.237 185.234.217.181 185.234.217.182 185.234.217.183 185.234.217.184 185.234.217.194 185.234.217.216 185.234.219.133 185.234.219.20 185.234.219.85 185.235.216.78 185.239.242.179 185.239.242.77 185.242.5.46 185.244.39.17 185.245.86.226 185.246.128.26 185.250.205.36 185.252.101.3 185.252.147.185 185.30.13.201 185.30.83.110 185.3.254.177 185.32.231.84 185.35.150.226 185.39.11.105 185.39.11.32 185.40.4.108 185.40.4.228 185.41.186.46 185.46.222.74 185.49.84.133 185.49.97.121 185.5.165.24 185.51.201.102 185.51.202.237 185.53.91.35 185.54.156.5 185.55.64.144 185.56.80.39 185.56.80.51 185.59.214.2 185.66.230.206 185.70.189.82 185.75.97.30 185.79.156.167 185.81.157.15 185.81.157.155 185.81.157.170 185.81.51.218 185.88.159.85 185.89.124.10 185.90.60.79 185.94.111.1 185.94.188.130 185.94.189.182 185.97.113.5 186.0.66.184 186.10.22.250 186.10.229.66 186.10.239.54 186.1.10.218 186.1.181.242 186.1.235.44 186.12.142.114 186.121.247.170 186.123.85.4 186.136.191.5 186.136.50.250 186.139.46.155 186.149.173.193 186.15.162.45 186.151.159.34 186.155.192.172 186.155.37.90 186.155.39.252 186.156.153.5 186.156.83.30 186.157.131.74 186.159.145.85 186.176.223.82 186.176.54.125 186.179.243.112 186.182.235.217 186.183.211.189 186.188.244.199 186.19.134.70 186.193.222.22 186.2.132.222 186.204.162.227 186.208.217.15 186.209.61.87 186.212.244.34 186.215.206.250 186.219.130.209 186.219.133.110 186.219.133.46 186.219.52.234 186.219.54.168 186.223.92.161 186.225.100.74 186.225.148.18 186.225.187.128 186.225.220.178 186.226.160.4 186.226.177.250 186.226.188.138 186.226.202.247 186.226.37.187 186.227.166.154 186.229.16.220 186.233.208.186 186.233.208.187 186.233.222.226 186.235.43.7 186.237.3.250 186.251.135.7 186.251.229.2 186.3.123.66 186.4.162.165 186.4.194.86 186.42.182.37 186.42.182.40 186.42.182.41 186.46.185.186 186.46.194.142 186.67.147.92 186.67.77.171 186.68.143.2 186.71.70.219 186.72.173.210 186.73.116.3 186.88.51.237 186.94.210.214 186.96.254.239 187.101.140.232 187.102.14.46 187.108.76.113 187.110.238.251 187.115.106.37 187.120.146.208 187.125.106.34 187.131.56.151 187.135.189.203 187.135.41.175 187.137.183.199 187.149.110.96 187.152.163.181 187.152.81.8 187.158.34.92 187.159.206.58 187.159.235.220 187.162.225.142 187.162.24.69 187.162.96.23 187.163.39.133 187.174.215.147 187.176.185.65 187.178.238.192 187.178.242.58 187.185.68.99 187.188.116.43 187.188.176.238 187.189.111.251 187.189.149.224 187.189.184.243 187.189.228.25 187.189.77.80 187.190.165.109 187.190.48.196 187.193.246.47 187.199.131.41 187.200.122.156 187.2.219.241 187.206.155.216 187.209.69.3 187.210.122.62 187.210.135.89 187.210.226.214 187.212.112.243 187.216.125.211 187.216.125.216 187.220.25.27 187.245.189.252 187.247.231.220 187.248.80.173 187.250.91.216 187.32.153.90 187.33.95.6 187.36.59.37 187.38.115.184 187.44.25.188 187.45.10.138 187.45.110.163 187.50.63.202 187.61.229.254 187.75.155.118 187.84.125.127 187.84.141.140 187.84.141.141 187.84.232.214 187.85.154.115 187.85.160.10 187.85.29.54 187.85.80.94 187.86.200.150 187.9.6.157 187.94.144.146 187.95.194.123 187.95.194.125 187.95.194.145 188.0.135.108 188.0.191.81 188.112.148.163 188.113.183.12 188.114.173.12 188.119.120.151 188.120.172.115 188.123.121.16 188.124.37.108 188.124.37.133 188.131.129.123 188.131.132.83 188.131.142.46 188.131.228.192 188.131.233.36 188.134.8.104 188.135.60.46 188.136.143.208 188.148.160.33 188.148.182.134 188.148.238.179 188.15.232.14 188.15.4.3 188.152.19.116 188.152.36.81 188.152.62.60 188.157.9.166 188.158.180.110 188.16.144.172 188.16.150.110 188.165.126.60 188.165.247.79 188.165.79.149 188.166.116.105 188.166.172.189 188.166.172.79 188.166.222.99 188.166.5.84 188.166.77.159 188.166.78.16 188.169.36.114 188.169.36.118 188.169.36.171 188.169.45.89 188.169.61.214 188.17.166.203 188.173.20.196 188.18.104.40 188.18.49.246 188.19.124.120 188.19.179.165 188.19.184.183 188.19.190.201 188.191.165.66 188.210.224.244 188.21.152.205 188.216.200.161 188.217.223.73 188.218.143.247 188.218.249.142 188.226.167.212 188.234.134.42 188.237.50.113 188.240.208.237 188.24.102.83 188.242.240.56 188.246.226.71 188.252.14.147 188.253.3.251 188.254.76.98 188.255.120.102 188.26.105.108 188.26.120.74 188.26.125.126 188.3.36.167 188.3.61.67 188.43.2.138 188.65.236.165 188.65.89.80 188.65.90.88 188.66.227.97 188.75.85.254 188.83.100.66 188.92.75.219 188.92.77.235 189.10.97.19 189.1.181.125 189.108.95.99 189.112.125.131 189.112.126.55 189.112.4.168 189.126.168.43 189.129.143.164 189.129.201.131 189.130.229.26 189.134.38.188 189.137.150.114 189.139.164.200 189.146.111.229 189.152.99.212 189.154.69.158 189.171.38.191 189.173.102.95 189.173.199.246 189.174.208.50 189.174.84.199 189.176.10.191 189.176.12.156 189.176.24.227 189.179.220.108 189.179.239.150 189.180.113.231 189.192.12.176 189.195.143.166 189.195.161.24 189.196.91.122 189.197.77.148 189.197.88.25 189.198.134.214 189.202.204.88 189.203.130.134 189.203.148.238 189.203.237.120 189.203.240.2 189.205.111.42 189.206.147.226 189.206.165.62 189.207.246.86 189.207.250.88 189.210.128.181 189.213.217.91 189.213.225.226 189.222.169.66 189.223.71.117 189.231.171.92 189.231.192.104 189.236.50.14 189.243.212.156 189.252.152.23 189.26.224.170 189.39.216.229 189.39.45.87 189.45.37.254 189.51.118.22 189.51.247.141 189.59.13.202 189.63.92.173 189.7.146.169 189.7.217.23 189.79.207.68 189.8.16.174 189.84.207.223 189.84.92.150 189.85.66.70 189.89.156.132 189.90.139.234 189.91.192.195 189.93.132.129 190.0.17.5 190.10.220.58 190.104.250.34 190.107.21.4 190.109.64.104 190.109.64.92 190.110.177.190 190.111.184.2 190.112.224.132 190.113.134.144 190.114.241.102 190.115.10.44 190.117.127.45 190.120.225.11 190.120.249.98 190.121.107.58 190.121.6.66 190.128.154.222 190.128.56.38 190.129.72.242 190.13.178.65 190.140.204.236 190.14.42.27 190.144.33.65 190.144.38.25 190.144.79.102 190.146.132.150 190.146.165.190 190.147.158.104 190.147.205.92 190.147.210.140 190.147.218.230 190.147.52.242 190.148.50.113 190.149.156.91 190.149.59.82 190.151.123.26 190.152.116.60 190.152.42.27 190.152.43.79 190.153.228.250 190.153.42.128 190.159.72.55 190.163.117.100 190.171.185.52 190.179.0.143 190.180.31.248 190.180.46.101 190.180.62.163 190.18.112.97 190.18.160.180 190.18.233.188 190.181.142.202 190.181.60.196 190.181.8.34 190.185.118.58 190.186.198.154 190.186.198.18 190.186.198.68 190.186.203.216 190.186.203.217 190.186.243.67 190.186.250.245 190.186.39.43 190.188.131.179 190.191.118.158 190.194.127.201 190.198.54.90 190.202.89.199 190.204.165.110 190.205.111.122 190.205.35.108 190.205.59.6 190.210.151.152 190.210.47.73 190.211.243.82 190.215.161.204 190.217.13.217 190.217.241.105 190.218.229.123 190.233.218.127 190.234.246.76 190.236.58.65 190.238.232.165 190.238.35.27 190.242.113.107 190.244.103.215 190.245.118.206 190.245.83.60 190.247.114.229 190.25.232.106 190.252.101.118 190.252.16.109 190.255.39.37 190.28.121.127 190.28.131.206 190.28.89.72 190.32.142.67 190.4.31.25 190.4.54.170 190.41.94.94 190.5.70.102 190.52.200.141 190.54.22.66 190.57.152.52 190.57.189.82 190.58.4.185 190.6.27.3 190.64.72.18 190.64.90.154 190.64.90.50 190.69.27.137 190.74.246.156 190.79.84.98 190.80.193.195 190.80.247.50 190.8.100.18 190.8.82.58 190.82.111.22 190.83.34.22 190.85.124.245 190.85.169.4 190.85.235.84 190.92.48.214 190.94.211.58 190.94.248.214 190.96.172.188 190.96.192.69 190.96.21.112 190.97.11.35 190.98.227.218 191.100.27.229 191.178.84.239 191.223.66.127 191.232.161.73 191.232.193.0 191.232.236.62 191.232.243.55 191.232.246.93 191.233.199.68 191.234.167.123 191.235.103.61 191.235.110.78 191.235.112.72 191.235.64.232 191.235.73.85 191.235.85.199 191.237.250.125 191.240.100.11 191.241.160.236 191.241.34.186 191.241.65.252 191.243.31.12 191.253.14.73 191.253.194.12 191.253.47.44 191.255.250.51 191.5.171.190 191.53.83.181 192.111.155.74 192.119.81.66 192.141.84.67 192.144.142.62 192.144.143.101 192.144.148.220 192.144.155.110 192.144.157.33 192.144.171.165 192.144.178.169 192.144.179.249 192.144.185.175 192.144.185.74 192.144.186.22 192.144.191.17 192.144.207.22 192.144.216.70 192.144.218.143 192.144.225.214 192.144.227.36 192.144.65.46 192.145.127.42 192.151.199.18 192.162.210.179 192.162.233.11 192.163.198.218 192.165.228.133 192.166.134.148 192.166.134.179 192.210.147.123 192.210.189.120 192.210.216.168 192.210.236.218 192.227.217.199 192.227.246.103 192.237.242.69 192.241.194.60 192.241.195.70 192.241.197.204 192.241.198.146 192.241.198.150 192.241.199.4 192.241.199.74 192.241.200.141 192.241.200.7 192.241.200.84 192.241.202.144 192.241.202.146 192.241.202.236 192.241.202.33 192.241.203.100 192.241.205.102 192.241.205.110 192.241.205.135 192.241.205.86 192.241.206.11 192.241.206.179 192.241.206.84 192.241.207.110 192.241.207.247 192.241.207.79 192.241.208.113 192.241.208.138 192.241.208.76 192.241.209.47 192.241.210.164 192.241.210.87 192.241.214.186 192.241.214.190 192.241.215.131 192.241.215.55 192.241.215.80 192.241.216.44 192.241.218.105 192.241.219.136 192.241.219.147 192.241.219.171 192.241.219.178 192.241.219.187 192.241.219.211 192.241.219.233 192.241.219.247 192.241.219.54 192.241.219.66 192.241.219.75 192.241.220.107 192.241.220.130 192.241.220.141 192.241.220.158 192.241.220.199 192.241.220.200 192.241.220.236 192.241.220.29 192.241.220.33 192.241.220.39 192.241.220.50 192.241.220.59 192.241.220.69 192.241.220.88 192.241.220.96 192.241.221.104 192.241.221.112 192.241.221.149 192.241.221.180 192.241.221.188 192.241.221.189 192.241.221.204 192.241.221.210 192.241.221.215 192.241.221.217 192.241.221.221 192.241.221.224 192.241.221.233 192.241.221.237 192.241.221.242 192.241.221.249 192.241.222.102 192.241.222.109 192.241.222.110 192.241.222.116 192.241.222.117 192.241.222.118 192.241.222.127 192.241.222.132 192.241.222.133 192.241.222.149 192.241.222.157 192.241.222.221 192.241.222.239 192.241.222.248 192.241.222.34 192.241.222.45 192.241.222.48 192.241.222.67 192.241.222.69 192.241.222.84 192.241.222.90 192.241.223.100 192.241.223.105 192.241.223.11 192.241.223.115 192.241.223.123 192.241.223.131 192.241.223.132 192.241.223.135 192.241.223.136 192.241.223.142 192.241.223.145 192.241.223.149 192.241.223.156 192.241.223.158 192.241.223.163 192.241.223.177 192.241.223.178 192.241.223.18 192.241.223.184 192.241.223.185 192.241.223.187 192.241.223.188 192.241.223.189 192.241.223.191 192.241.223.209 192.241.223.21 192.241.223.212 192.241.223.229 192.241.223.230 192.241.223.231 192.241.223.234 192.241.223.235 192.241.223.236 192.241.223.238 192.241.223.249 192.241.223.25 192.241.223.250 192.241.223.27 192.241.223.31 192.241.223.35 192.241.223.55 192.241.223.66 192.241.223.68 192.241.223.74 192.241.223.78 192.241.223.94 192.241.224.10 192.241.224.106 192.241.224.111 192.241.224.122 192.241.224.123 192.241.224.133 192.241.224.134 192.241.224.135 192.241.224.136 192.241.224.137 192.241.224.160 192.241.224.181 192.241.224.185 192.241.224.186 192.241.224.19 192.241.224.197 192.241.224.198 192.241.224.20 192.241.224.202 192.241.224.206 192.241.224.219 192.241.224.229 192.241.224.231 192.241.224.234 192.241.224.235 192.241.224.239 192.241.224.33 192.241.224.37 192.241.224.49 192.241.224.50 192.241.224.51 192.241.224.53 192.241.224.58 192.241.224.64 192.241.224.66 192.241.224.70 192.241.224.73 192.241.224.75 192.241.224.78 192.241.224.8 192.241.224.82 192.241.224.83 192.241.224.96 192.241.225.100 192.241.225.107 192.241.225.108 192.241.225.109 192.241.225.120 192.241.225.122 192.241.225.130 192.241.225.132 192.241.225.135 192.241.225.136 192.241.225.14 192.241.225.151 192.241.225.158 192.241.225.20 192.241.225.206 192.241.225.211 192.241.225.212 192.241.225.216 192.241.225.22 192.241.225.224 192.241.225.25 192.241.225.27 192.241.225.31 192.241.225.33 192.241.225.38 192.241.225.41 192.241.225.42 192.241.225.43 192.241.225.47 192.241.225.48 192.241.225.51 192.241.225.52 192.241.225.55 192.241.225.56 192.241.225.58 192.241.225.64 192.241.225.67 192.241.225.74 192.241.225.85 192.241.225.9 192.241.225.90 192.241.225.93 192.241.225.94 192.241.226.104 192.241.226.121 192.241.226.128 192.241.226.132 192.241.226.136 192.241.226.139 192.241.226.142 192.241.226.144 192.241.226.148 192.241.226.149 192.241.226.154 192.241.226.156 192.241.226.164 192.241.226.168 192.241.226.177 192.241.226.178 192.241.226.184 192.241.226.189 192.241.226.191 192.241.226.197 192.241.226.211 192.241.226.222 192.241.226.227 192.241.226.236 192.241.226.245 192.241.226.249 192.241.226.27 192.241.226.32 192.241.226.35 192.241.226.59 192.241.226.64 192.241.226.76 192.241.226.82 192.241.226.84 192.241.226.87 192.241.226.94 192.241.227.100 192.241.227.104 192.241.227.106 192.241.227.110 192.241.227.113 192.241.227.114 192.241.227.12 192.241.227.125 192.241.227.131 192.241.227.133 192.241.227.135 192.241.227.136 192.241.227.138 192.241.227.139 192.241.227.14 192.241.227.144 192.241.227.149 192.241.227.156 192.241.227.157 192.241.227.160 192.241.227.164 192.241.227.165 192.241.227.167 192.241.227.168 192.241.227.180 192.241.227.185 192.241.227.186 192.241.227.204 192.241.227.208 192.241.227.209 192.241.227.211 192.241.227.213 192.241.227.214 192.241.227.216 192.241.227.222 192.241.227.230 192.241.227.232 192.241.227.234 192.241.227.243 192.241.227.245 192.241.227.246 192.241.227.25 192.241.227.28 192.241.227.29 192.241.227.30 192.241.227.31 192.241.227.40 192.241.227.41 192.241.227.47 192.241.227.49 192.241.227.53 192.241.227.55 192.241.227.56 192.241.227.57 192.241.227.68 192.241.227.7 192.241.227.71 192.241.227.72 192.241.227.73 192.241.227.74 192.241.227.75 192.241.227.78 192.241.227.80 192.241.227.81 192.241.227.82 192.241.227.83 192.241.227.88 192.241.227.93 192.241.227.94 192.241.227.97 192.241.227.99 192.241.228.10 192.241.228.101 192.241.228.107 192.241.228.110 192.241.228.12 192.241.228.137 192.241.228.14 192.241.228.141 192.241.228.142 192.241.228.148 192.241.228.153 192.241.228.161 192.241.228.164 192.241.228.172 192.241.228.178 192.241.228.189 192.241.228.191 192.241.228.192 192.241.228.199 192.241.228.204 192.241.228.205 192.241.228.206 192.241.228.213 192.241.228.214 192.241.228.22 192.241.228.237 192.241.228.238 192.241.228.249 192.241.228.37 192.241.228.43 192.241.228.55 192.241.228.58 192.241.228.6 192.241.228.65 192.241.228.76 192.241.228.79 192.241.228.8 192.241.228.89 192.241.228.9 192.241.229.102 192.241.229.107 192.241.229.109 192.241.229.126 192.241.229.143 192.241.229.157 192.241.229.162 192.241.229.166 192.241.229.179 192.241.229.18 192.241.229.190 192.241.229.203 192.241.229.205 192.241.229.214 192.241.229.22 192.241.229.231 192.241.229.237 192.241.229.250 192.241.229.42 192.241.229.49 192.241.229.51 192.241.229.52 192.241.229.54 192.241.229.58 192.241.229.60 192.241.229.62 192.241.229.64 192.241.229.69 192.241.229.77 192.241.229.86 192.241.230.12 192.241.230.120 192.241.230.178 192.241.230.202 192.241.230.206 192.241.230.227 192.241.230.228 192.241.230.238 192.241.230.38 192.241.230.4 192.241.230.44 192.241.230.50 192.241.230.52 192.241.230.58 192.241.230.71 192.241.230.81 192.241.230.83 192.241.230.9 192.241.230.92 192.241.231.102 192.241.231.118 192.241.231.152 192.241.231.159 192.241.231.171 192.241.231.175 192.241.231.179 192.241.231.187 192.241.231.196 192.241.231.20 192.241.231.211 192.241.231.216 192.241.231.22 192.241.231.29 192.241.231.32 192.241.231.40 192.241.231.74 192.241.231.91 192.241.232.111 192.241.232.123 192.241.232.132 192.241.232.15 192.241.232.20 192.241.232.225 192.241.232.28 192.241.232.35 192.241.232.48 192.241.232.56 192.241.232.70 192.241.232.81 192.241.232.92 192.241.233.14 192.241.233.168 192.241.233.177 192.241.233.181 192.241.233.182 192.241.233.184 192.241.233.188 192.241.233.191 192.241.233.20 192.241.233.208 192.241.233.209 192.241.233.212 192.241.233.230 192.241.233.238 192.241.233.251 192.241.233.33 192.241.233.91 192.241.234.106 192.241.234.111 192.241.234.120 192.241.234.121 192.241.234.138 192.241.234.139 192.241.234.143 192.241.234.146 192.241.234.159 192.241.234.169 192.241.234.183 192.241.234.193 192.241.234.203 192.241.234.204 192.241.234.211 192.241.234.225 192.241.234.234 192.241.234.244 192.241.234.65 192.241.235.101 192.241.235.106 192.241.235.116 192.241.235.13 192.241.235.132 192.241.235.135 192.241.235.141 192.241.235.142 192.241.235.154 192.241.235.156 192.241.235.17 192.241.235.171 192.241.235.180 192.241.235.187 192.241.235.193 192.241.235.194 192.241.235.202 192.241.235.204 192.241.235.247 192.241.235.39 192.241.235.40 192.241.235.7 192.241.235.73 192.241.235.79 192.241.235.84 192.241.235.88 192.241.235.89 192.241.235.9 192.241.236.183 192.241.236.189 192.241.236.194 192.241.236.202 192.241.236.214 192.241.236.215 192.241.236.222 192.241.236.27 192.241.237.101 192.241.237.105 192.241.237.106 192.241.237.107 192.241.237.111 192.241.237.118 192.241.237.119 192.241.237.152 192.241.237.166 192.241.237.182 192.241.237.199 192.241.237.204 192.241.237.208 192.241.237.213 192.241.237.25 192.241.237.251 192.241.237.79 192.241.237.83 192.241.238.105 192.241.238.107 192.241.238.122 192.241.238.128 192.241.238.139 192.241.238.148 192.241.238.209 192.241.238.22 192.241.238.233 192.241.238.27 192.241.238.29 192.241.238.63 192.241.238.77 192.241.239.115 192.241.239.138 192.241.239.147 192.241.239.156 192.241.239.16 192.241.239.160 192.241.239.167 192.241.239.168 192.241.239.190 192.241.239.200 192.241.239.212 192.241.239.41 192.241.239.58 192.241.239.82 192.241.246.167 192.250.196.10 192.3.139.56 192.3.224.229 192.3.255.136 192.3.255.139 192.3.73.154 192.34.57.113 192.34.57.157 192.35.168.100 192.35.168.101 192.35.168.102 192.35.168.103 192.35.168.104 192.35.168.105 192.35.168.106 192.35.168.107 192.35.168.108 192.35.168.109 192.35.168.110 192.35.168.111 192.35.168.128 192.35.168.129 192.35.168.130 192.35.168.131 192.35.168.132 192.35.168.135 192.35.168.136 192.35.168.137 192.35.168.138 192.35.168.139 192.35.168.140 192.35.168.141 192.35.168.142 192.35.168.143 192.35.168.144 192.35.168.145 192.35.168.146 192.35.168.147 192.35.168.148 192.35.168.149 192.35.168.150 192.35.168.151 192.35.168.152 192.35.168.153 192.35.168.154 192.35.168.155 192.35.168.158 192.35.168.159 192.35.168.16 192.35.168.160 192.35.168.161 192.35.168.162 192.35.168.163 192.35.168.164 192.35.168.165 192.35.168.166 192.35.168.167 192.35.168.169 192.35.168.17 192.35.168.170 192.35.168.173 192.35.168.174 192.35.168.175 192.35.168.176 192.35.168.177 192.35.168.178 192.35.168.179 192.35.168.18 192.35.168.180 192.35.168.181 192.35.168.182 192.35.168.183 192.35.168.184 192.35.168.185 192.35.168.187 192.35.168.188 192.35.168.189 192.35.168.19 192.35.168.190 192.35.168.191 192.35.168.20 192.35.168.21 192.35.168.22 192.35.168.224 192.35.168.225 192.35.168.226 192.35.168.227 192.35.168.228 192.35.168.229 192.35.168.23 192.35.168.230 192.35.168.232 192.35.168.233 192.35.168.235 192.35.168.236 192.35.168.238 192.35.168.239 192.35.168.25 192.35.168.26 192.35.168.27 192.35.168.28 192.35.168.29 192.35.168.30 192.35.168.31 192.35.168.80 192.35.168.81 192.35.168.82 192.35.168.83 192.35.168.84 192.35.168.85 192.35.168.86 192.35.168.88 192.35.168.89 192.35.168.90 192.35.168.91 192.35.168.92 192.35.168.93 192.35.168.94 192.35.168.95 192.35.168.96 192.35.168.97 192.35.168.98 192.35.168.99 192.35.169.16 192.35.169.17 192.35.169.18 192.35.169.19 192.35.169.20 192.35.169.22 192.35.169.23 192.35.169.24 192.35.169.25 192.35.169.26 192.35.169.27 192.35.169.28 192.35.169.29 192.35.169.31 192.35.169.32 192.35.169.33 192.35.169.34 192.35.169.35 192.35.169.36 192.35.169.37 192.35.169.38 192.35.169.39 192.35.169.40 192.35.169.41 192.35.169.42 192.35.169.43 192.35.169.44 192.35.169.45 192.35.169.46 192.35.169.47 192.35.169.48 192.41.45.19 192.71.249.31 192.74.243.225 192.81.208.44 192.81.35.151 192.99.16.21 192.99.175.177 192.99.175.178 192.99.175.179 192.99.175.181 192.99.175.182 192.99.175.183 192.99.175.184 192.99.175.185 192.99.175.186 192.99.175.187 192.99.175.188 192.99.175.190 192.99.175.191 192.99.175.86 192.99.223.143 192.99.32.54 192.99.41.83 192.99.45.31 192.99.45.33 193.106.171.173 193.106.57.177 193.106.84.162 193.112.104.178 193.112.108.148 193.112.110.35 193.112.118.128 193.112.138.148 193.112.16.224 193.112.207.65 193.112.250.77 193.112.42.13 193.112.48.79 193.112.49.125 193.112.5.66 193.112.80.132 193.112.82.160 193.112.93.2 193.112.93.94 193.112.99.188 193.118.53.194 193.118.53.195 193.118.53.196 193.118.53.197 193.118.53.198 193.118.53.202 193.118.53.203 193.118.53.204 193.118.53.205 193.118.53.206 193.118.53.213 193.118.53.214 193.122.102.31 193.138.146.44 193.148.70.216 193.150.6.150 193.151.240.77 193.161.220.23 193.169.253.169 193.169.253.179 193.193.224.70 193.227.16.160 193.227.47.157 193.23.140.251 193.23.58.251 193.232.100.106 193.239.124.123 193.239.147.38 193.239.234.253 193.242.104.31 193.242.104.32 193.243.164.112 193.243.164.114 193.243.164.33 193.243.164.43 193.243.164.58 193.243.164.74 193.243.164.90 193.251.45.31 193.251.73.101 193.254.245.162 193.27.228.154 193.27.228.156 193.27.228.172 193.27.228.187 193.27.228.9 193.27.229.207 193.27.229.219 193.27.229.224 193.27.229.47 193.27.229.92 193.29.15.134 193.29.15.169 193.32.163.53 193.32.163.68 193.33.170.197 193.36.119.15 193.37.255.114 193.42.110.124 193.56.28.158 193.56.28.220 193.56.28.245 193.92.166.180 193.93.62.58 193.93.62.61 194.135.44.179 194.135.60.198 194.135.7.82 194.135.89.100 194.143.136.122 194.147.115.146 194.147.78.217 194.153.171.21 194.153.171.58 194.158.223.22 194.169.235.6 194.170.189.196 194.170.189.226 194.180.224.117 194.182.86.11 194.204.123.123 194.246.74.170 194.255.101.212 194.26.25.102 194.26.25.106 194.26.25.108 194.26.25.116 194.26.25.121 194.26.25.13 194.26.25.8 194.26.27.102 194.26.27.104 194.26.27.14 194.26.27.31 194.26.27.32 194.26.27.95 194.26.27.96 194.30.35.221 194.31.141.226 194.31.141.227 194.31.141.228 194.31.141.229 194.36.174.121 194.44.38.51 194.55.136.67 194.55.136.92 194.58.88.47 194.61.27.244 194.61.27.245 194.61.27.246 194.61.27.247 194.61.27.248 194.61.54.222 194.65.71.247 194.78.242.245 194.8.130.143 194.87.138.175 194.87.138.229 194.87.138.9 194.87.139.159 194.87.139.36 194.9.170.109 194.9.170.110 195.138.74.25 195.14.170.50 195.142.112.244 195.144.21.56 195.144.255.4 195.146.59.157 195.154.105.167 195.154.225.137 195.154.226.126 195.154.253.27 195.154.40.99 195.158.21.134 195.158.2.221 195.158.26.238 195.158.8.210 195.175.107.186 195.178.201.105 195.18.23.85 195.184.117.11 195.190.23.49 195.208.161.57 195.211.87.133 195.211.87.245 195.214.196.234 195.226.254.7 195.228.76.246 195.228.76.248 195.239.107.62 195.239.249.172 195.24.207.250 195.246.39.17 195.246.57.116 195.248.234.189 195.250.253.134 195.252.88.109 195.29.109.46 195.34.239.22 195.35.245.30 195.42.155.138 195.43.7.203 195.5.3.112 195.54.160.155 195.54.160.21 195.54.161.122 195.54.161.123 195.54.161.132 195.54.161.252 195.54.161.85 195.54.166.50 195.54.167.174 195.54.167.89 195.54.167.91 195.54.167.92 195.54.167.93 195.54.167.94 195.54.167.95 195.58.38.58 195.60.174.112 195.69.222.175 195.9.113.150 195.9.1.30 195.9.33.186 195.97.19.2 196.112.109.56 196.188.0.172 196.189.5.132 196.2.12.232 196.2.9.178 196.202.147.50 196.202.168.130 196.202.49.198 196.202.81.120 196.202.93.100 196.203.67.170 196.206.228.220 196.212.86.18 196.217.240.243 196.218.37.194 196.218.89.46 196.219.135.42 196.219.163.197 196.219.235.42 196.219.81.253 196.219.92.66 196.220.34.80 196.22.227.186 196.221.149.179 196.221.165.32 196.250.209.32 196.28.101.116 196.28.101.117 196.28.236.74 196.29.167.106 196.35.193.107 196.36.152.50 196.37.111.104 196.37.111.106 196.37.111.170 196.41.48.84 196.43.171.28 196.43.196.30 196.44.202.122 196.44.236.202 196.46.55.2 196.52.43.100 196.52.43.101 196.52.43.104 196.52.43.105 196.52.43.106 196.52.43.108 196.52.43.109 196.52.43.110 196.52.43.111 196.52.43.112 196.52.43.113 196.52.43.114 196.52.43.115 196.52.43.116 196.52.43.117 196.52.43.118 196.52.43.119 196.52.43.120 196.52.43.121 196.52.43.122 196.52.43.123 196.52.43.124 196.52.43.125 196.52.43.127 196.52.43.128 196.52.43.131 196.52.43.53 196.52.43.54 196.52.43.57 196.52.43.58 196.52.43.59 196.52.43.60 196.52.43.61 196.52.43.62 196.52.43.64 196.52.43.65 196.52.43.66 196.52.43.84 196.52.43.85 196.52.43.87 196.52.43.88 196.52.43.89 196.52.43.90 196.52.43.91 196.52.43.92 196.52.43.93 196.52.43.94 196.52.43.95 196.52.43.97 196.52.43.98 196.61.32.43 196.70.250.24 197.149.86.194 197.156.69.68 197.159.218.209 197.211.1.234 197.211.237.154 197.211.35.163 197.211.62.202 197.220.163.230 197.220.68.74 197.234.52.163 197.234.83.186 197.243.108.20 197.243.14.46 197.243.19.199 197.243.22.27 197.243.22.46 197.248.147.218 197.249.20.247 197.249.231.148 197.253.6.70 197.254.62.18 197.44.197.254 197.44.37.94 197.44.8.107 197.44.91.190 197.45.138.52 197.45.179.153 197.50.114.6 197.51.156.221 197.51.33.119 198.100.159.86 198.13.53.178 198.143.133.154 198.143.133.155 198.143.133.157 198.143.133.158 198.143.155.138 198.143.155.139 198.143.155.140 198.143.155.141 198.143.155.142 198.143.158.82 198.143.158.83 198.143.158.84 198.143.158.85 198.143.158.86 198.17.119.229 198.175.126.119 198.177.126.198 198.199.100.4 198.199.109.102 198.199.116.49 198.199.72.47 198.200.51.111 198.20.103.242 198.20.103.243 198.20.103.245 198.20.103.246 198.20.70.114 198.20.99.130 198.211.109.148 198.27.108.202 198.27.89.7 198.38.85.88 198.38.94.199 198.46.202.11 198.48.165.115 198.50.152.30 198.50.195.42 198.50.233.239 198.91.198.181 198.98.49.25 198.98.62.220 199.114.229.35 199.116.124.35 199.175.43.118 199.195.147.15 199.195.249.184 199.195.249.95 199.201.89.105 199.212.57.34 199.237.62.138 199.255.119.11 199.30.119.99 199.30.185.127 199.59.97.237 199.83.222.80 199.91.228.178 200.10.132.117 200.108.167.209 200.11.192.182 200.11.215.186 200.11.241.44 200.111.11.222 200.111.120.180 200.111.183.3 200.112.207.132 200.113.62.243 200.114.157.38 200.116.171.189 200.117.185.116 200.119.45.66 200.120.85.24 200.12.221.38 200.123.150.39 200.123.208.29 200.123.25.197 200.125.236.58 200.126.146.3 200.126.96.118 200.150.166.23 200.150.80.30 200.152.70.103 200.159.224.122 200.161.62.121 200.162.246.77 200.164.227.186 200.164.85.245 200.188.129.20 200.188.19.30 200.188.19.31 200.188.19.32 200.2.125.182 200.2.127.154 200.2.133.131 200.2.143.7 200.2.197.2 200.201.219.141 200.203.125.170 200.208.101.228 200.225.222.161 200.23.18.150 200.233.178.53 200.237.156.96 200.254.228.65 200.27.71.123 200.39.241.64 200.41.168.237 200.42.153.216 200.42.178.11 200.46.114.30 200.46.45.114 200.52.145.251 200.52.221.18 200.54.78.218 200.56.96.167 200.58.80.180 200.60.78.174 200.60.91.42 200.61.181.65 200.62.99.4 200.66.72.190 200.68.36.42 200.68.38.30 200.68.60.147 200.71.190.205 200.71.72.246 200.73.112.81 200.73.130.188 200.75.106.48 200.75.18.139 200.75.213.212 200.75.249.38 200.75.4.248 200.76.56.38 200.77.160.107 200.83.120.2 200.87.43.178 200.89.159.64 200.89.174.209 200.89.174.243 200.89.178.79 200.91.225.200 200.94.125.243 200.95.184.2 200.98.64.68 201.103.187.16 201.103.66.155 201.110.157.115 201.110.208.19 201.117.134.121 201.122.102.140 201.131.185.2 201.137.19.226 201.145.216.105 201.149.34.177 201.149.55.53 201.149.69.218 201.156.169.109 201.158.106.122 201.159.154.197 201.16.194.129 201.165.213.51 201.174.12.134 201.174.127.62 201.174.185.26 201.174.28.235 201.174.47.66 201.174.53.130 201.18.16.214 201.18.237.254 201.183.225.59 201.184.117.230 201.184.43.99 201.186.127.29 201.190.138.157 201.192.138.219 201.196.89.111 201.198.15.94 201.200.8.194 201.210.247.226 201.21.238.219 201.212.216.79 201.212.242.188 201.213.120.217 201.217.54.254 201.218.79.140 201.220.104.100 201.222.29.215 201.229.84.62 201.23.123.194 201.236.160.142 201.238.217.203 201.249.182.130 201.29.173.54 201.33.23.186 201.48.208.210 201.54.254.9 201.59.41.5 201.6.113.24 201.6.116.112 201.6.156.253 201.69.247.69 201.75.196.96 201.80.138.163 201.82.124.161 201.82.236.136 201.87.233.60 201.87.243.203 201.9.140.48 201.97.224.19 202.100.168.150 202.100.211.226 202.100.214.105 202.100.214.108 202.100.223.42 202.100.84.160 202.1.114.202 202.101.102.194 202.102.249.26 202.103.149.138 202.103.222.10 202.103.241.234 202.103.248.248 202.104.184.19 202.105.104.178 202.105.18.2 202.105.200.74 202.107.188.11 202.107.188.12 202.107.188.197 202.107.190.246 202.107.227.42 202.108.99.129 202.109.114.190 202.109.189.155 202.109.193.202 202.109.197.45 202.110.125.147 202.110.241.114 202.110.72.9 202.111.173.153 202.111.174.150 202.113.80.58 202.117.194.151 202.118.8.22 202.118.8.50 202.119.114.64 202.120.215.173 202.121.167.254 202.121.181.104 202.123.176.180 202.124.193.13 202.124.204.240 202.124.204.5 202.124.204.8 202.124.248.254 202.125.138.234 202.129.206.226 202.129.207.4 202.131.229.154 202.131.245.124 202.131.249.118 202.131.69.18 202.134.0.9 202.134.61.41 202.137.7.58 202.141.225.174 202.141.236.26 202.142.102.195 202.142.147.162 202.142.189.138 202.143.127.163 202.146.222.143 202.146.222.92 202.150.150.78 202.152.15.12 202.152.1.89 202.152.31.18 202.152.34.83 202.152.39.13 202.152.60.50 202.154.180.51 202.158.62.240 202.162.79.202 202.163.101.11 202.166.198.206 202.168.186.98 202.168.189.90 202.169.35.210 202.169.47.50 202.169.53.11 202.171.137.43 202.175.113.123 202.175.187.74 202.175.77.187 202.179.21.221 202.181.136.36 202.181.209.102 202.181.237.142 202.184.25.109 202.186.89.233 202.191.132.211 202.195.100.158 202.195.100.212 202.195.100.213 202.200.144.69 202.207.15.196 202.21.120.250 202.21.35.53 202.227.41.28 202.228.215.57 202.28.217.30 202.29.105.30 202.29.214.35 202.29.215.147 202.29.233.157 202.30.130.202 202.39.151.229 202.39.23.42 202.4.186.6 202.42.176.243 202.43.156.2 202.44.55.34 202.52.124.4 202.52.58.37 202.53.64.249 202.55.72.10 202.60.56.157 202.6.16.89 202.62.107.135 202.62.224.32 202.62.226.26 202.64.95.182 202.65.171.107 202.69.171.51 202.69.171.52 202.69.36.119 202.70.136.103 202.70.136.161 202.70.136.218 202.70.72.233 202.71.136.13 202.71.149.106 202.71.149.90 202.77.105.50 202.77.105.51 202.77.120.42 202.77.61.103 202.77.61.112 202.78.202.2 202.78.202.37 202.79.174.139 202.82.218.169 202.83.172.43 202.83.192.226 202.83.54.167 202.85.223.200 202.85.3.138 202.88.232.243 202.88.241.118 202.91.230.94 202.91.240.83 202.91.248.237 202.91.89.163 202.98.194.122 202.98.203.23 202.98.203.29 202.98.213.26 203.0.109.61 203.109.106.165 203.110.86.82 203.115.119.109 203.115.99.189 203.116.184.242 203.117.127.220 203.125.16.18 203.126.185.187 203.127.84.42 203.128.172.76 203.128.172.89 203.128.189.46 203.128.28.60 203.128.67.114 203.146.129.235 203.150.34.20 203.150.53.186 203.150.67.77 203.154.52.42 203.154.78.176 203.154.78.179 203.156.205.125 203.158.168.22 203.160.59.162 203.163.252.190 203.166.212.81 203.166.213.31 203.166.214.45 203.170.203.66 203.171.245.119 203.174.109.243 203.174.56.230 203.175.61.172 203.176.73.183 203.176.75.1 203.177.163.90 203.177.71.203 203.177.76.173 203.189.123.30 203.189.141.214 203.189.200.118 203.189.239.116 203.191.150.32 203.193.191.125 203.194.110.247 203.195.138.194 203.195.154.146 203.195.157.137 203.195.164.81 203.195.174.122 203.195.175.47 203.195.191.249 203.195.198.235 203.195.67.17 203.198.128.135 203.198.94.228 203.2.64.146 203.203.8.154 203.204.230.4 203.205.0.80 203.207.100.70 203.210.192.36 203.212.114.90 203.213.190.30 203.217.1.13 203.218.44.219 203.234.135.222 203.236.51.35 203.248.175.72 203.251.29.206 203.251.73.188 203.251.73.253 203.3.84.204 203.40.100.56 203.55.117.211 203.57.229.254 203.57.5.154 203.69.234.62 203.74.0.110 203.74.132.232 203.76.240.103 203.81.76.214 203.82.54.38 203.84.251.132 203.86.26.49 203.86.30.57 203.98.96.180 203.99.177.175 203.99.189.233 204.15.177.144 204.16.0.32 204.186.24.223 204.186.24.49 204.236.234.70 204.42.253.130 204.48.20.244 204.48.21.165 204.8.167.172 205.153.117.138 205.185.114.216 205.185.127.135 205.233.7.250 205.238.27.27 206.121.35.94 206.180.160.119 206.189.119.18 206.189.128.215 206.189.171.239 206.189.181.12 206.189.188.218 206.189.207.227 206.189.22.230 206.189.25.14 206.189.28.69 206.189.83.111 206.189.88.253 206.189.91.244 206.219.100.100 206.219.100.104 206.219.100.220 206.219.100.43 206.219.100.50 206.221.176.37 206.221.191.106 206.248.97.20 206.47.38.14 206.81.12.141 206.81.4.83 207.102.21.5 207.141.114.90 207.148.126.228 207.148.24.221 207.154.227.53 207.166.135.164 207.180.195.165 207.199.250.165 207.249.133.182 207.255.163.87 207.38.62.42 207.63.198.2 207.63.203.60 207.96.13.153 207.99.102.202 208.105.245.38 208.107.112.161 208.115.198.54 208.126.16.110 208.180.16.17 208.180.181.185 208.180.234.162 208.28.34.10 208.64.33.81 208.67.251.253 208.68.39.220 208.91.109.146 208.95.183.195 209.141.160.217 209.141.33.226 209.141.41.230 209.141.44.136 209.141.48.230 209.141.51.85 209.141.53.77 209.141.55.236 209.141.58.74 209.150.150.66 209.159.156.196 209.17.96.10 209.17.96.106 209.17.96.114 209.17.96.122 209.17.96.130 209.17.96.138 209.17.96.146 209.17.96.162 209.17.96.170 209.17.96.178 209.17.96.18 209.17.96.186 209.17.96.2 209.17.96.202 209.17.96.218 209.17.96.234 209.17.96.250 209.17.96.34 209.17.96.42 209.17.96.50 209.17.96.66 209.17.96.74 209.17.96.82 209.17.96.98 209.17.97.10 209.17.97.106 209.17.97.122 209.17.97.18 209.17.97.2 209.17.97.26 209.17.97.34 209.17.97.42 209.17.97.50 209.17.97.58 209.17.97.82 209.17.97.90 209.17.97.98 209.197.191.71 209.200.15.168 209.200.15.177 209.213.221.99 209.59.152.68 209.59.154.141 209.97.132.66 209.97.168.152 209.97.184.48 210.1.225.5 210.111.171.10 210.111.171.137 210.111.171.162 210.12.130.161 210.12.140.34 210.12.215.251 210.12.24.134 210.12.45.130 210.121.10.236 210.121.123.236 210.13.110.61 210.13.53.203 210.13.93.59 210.13.93.62 210.14.130.9 210.14.138.188 210.14.17.241 210.141.168.125 210.16.187.29 210.16.76.146 210.170.48.186 210.172.87.226 210.179.118.20 210.186.134.128 210.186.170.79 210.19.105.138 210.192.94.7 210.192.94.8 210.195.100.213 210.195.14.246 210.195.154.144 210.195.3.86 210.2.130.106 210.2.136.211 210.201.111.51 210.201.118.103 210.202.105.4 210.202.56.8 210.204.49.157 210.209.204.147 210.210.110.124 210.211.101.194 210.212.235.51 210.212.249.101 210.212.253.150 210.213.209.253 210.222.183.192 210.245.119.136 210.245.12.209 210.253.91.122 210.3.11.134 210.3.151.147 210.3.217.150 210.34.24.80 210.42.37.150 210.44.14.43 210.44.14.45 210.44.14.59 210.44.14.72 210.44.14.85 210.46.216.12 210.56.27.174 210.56.29.131 210.56.8.83 210.65.138.196 210.65.244.189 210.66.115.238 210.68.117.122 210.72.68.224 210.74.15.139 210.75.240.13 210.82.72.54 210.86.224.32 210.90.187.51 210.91.162.154 210.91.36.163 210.97.95.43 210.99.116.249 211.1.214.15 211.103.10.237 211.103.10.238 211.103.110.137 211.103.11.132 211.103.154.6 211.103.183.3 211.103.208.76 211.103.213.45 211.103.4.100 211.103.4.5 211.103.78.170 211.105.214.127 211.11.24.103 211.112.69.131 211.112.69.91 211.112.78.234 211.118.226.133 211.125.203.108 211.137.234.86 211.137.23.76 211.137.5.43 211.139.125.115 211.139.241.211 211.140.118.18 211.141.200.175 211.141.234.16 211.141.41.210 211.141.98.122 211.142.118.34 211.142.138.108 211.142.169.226 211.143.16.164 211.143.37.99 211.143.85.211 211.144.154.70 211.144.96.41 211.147.133.66 211.149.231.118 211.149.231.91 211.154.163.80 211.155.128.203 211.155.230.125 211.155.88.36 211.155.95.246 211.157.100.52 211.157.101.163 211.157.153.194 211.157.166.195 211.157.179.107 211.157.179.168 211.157.183.78 211.159.151.11 211.160.244.77 211.162.122.249 211.162.66.169 211.167.96.88 211.168.232.220 211.170.28.251 211.170.28.252 211.184.2.252 211.194.146.62 211.197.168.102 211.197.242.182 211.197.89.81 211.198.228.71 211.199.147.75 211.199.176.106 211.20.151.172 211.20.222.157 211.202.48.120 211.206.189.122 211.210.217.192 211.21.117.62 211.21.148.92 211.22.149.217 211.22.200.90 211.221.135.222 211.223.95.214 211.224.95.122 211.226.50.82 211.227.109.133 211.230.212.15 211.230.75.132 211.230.94.226 211.23.139.126 211.23.160.245 211.23.219.46 211.23.234.153 211.23.57.32 211.23.73.184 211.232.235.250 211.238.11.7 211.238.72.127 211.238.95.26 211.30.222.19 211.39.136.100 211.44.193.220 211.48.208.144 211.52.107.132 211.54.214.5 211.54.66.103 211.60.189.112 211.63.252.34 211.72.113.127 211.72.23.94 211.72.32.86 211.75.132.61 211.75.174.21 211.75.195.61 211.75.217.242 211.75.220.240 211.75.238.28 211.75.76.138 211.75.77.131 211.76.35.196 211.76.72.183 211.84.226.9 211.93.115.68 211.93.119.47 211.93.96.204 211.95.50.4 212.118.24.10 212.124.170.162 212.124.21.41 212.129.0.23 212.129.141.93 212.129.27.105 212.129.28.237 212.129.29.229 212.129.60.77 212.129.7.17 212.152.181.201 212.156.17.174 212.156.174.60 212.158.160.217 212.164.49.35 212.170.92.253 212.171.220.236 212.174.63.4 212.178.135.62 212.178.28.118 212.19.21.24 212.205.224.44 212.216.181.209 212.217.113.11 212.217.118.100 212.217.118.139 212.220.105.106 212.230.117.75 212.230.140.221 212.231.185.82 212.24.108.53 212.248.96.31 212.253.94.254 212.26.136.212 212.3.0.60 212.3.156.228 212.34.238.164 212.39.64.65 212.42.104.101 212.46.231.54 212.48.70.90 212.5.154.15 212.56.214.61 212.62.49.110 212.64.114.82 212.64.12.236 212.64.43.52 212.64.53.252 212.64.57.148 212.64.61.70 212.64.64.113 212.64.72.184 212.64.77.173 212.64.82.242 212.64.91.105 212.64.93.225 212.71.235.106 212.73.68.142 212.73.68.162 212.76.95.180 212.81.156.237 212.83.135.137 212.83.176.242 212.83.181.11 212.83.181.201 212.83.188.158 212.85.247.170 212.85.80.156 212.85.83.91 212.87.172.113 212.90.170.166 212.94.0.186 212.95.152.141 212.95.152.251 212.95.175.140 212.95.175.226 213.100.219.99 213.103.146.189 213.108.21.194 213.110.249.145 213.114.206.190 213.119.79.248 213.135.67.42 213.14.128.225 213.14.147.210 213.141.153.218 213.142.15.61 213.147.97.225 213.164.219.131 213.166.131.206 213.167.46.157 213.171.37.45 213.171.58.162 213.174.20.109 213.177.100.74 213.178.54.106 213.183.107.6 213.184.254.128 213.194.131.68 213.194.140.35 213.194.168.153 213.194.173.103 213.195.117.243 213.204.125.34 213.217.1.160 213.229.102.147 213.230.108.16 213.232.211.253 213.236.48.51 213.238.179.110 213.245.65.199 213.254.157.180 213.30.51.82 213.32.122.80 213.34.163.254 213.34.171.254 213.57.192.122 213.59.249.19 213.60.19.149 213.6.10.148 213.6.110.194 213.6.144.238 213.6.149.30 213.7.203.66 213.7.231.140 213.74.115.211 213.81.196.31 213.81.196.32 213.82.190.238 213.91.181.165 213.93.243.203 216.10.242.177 216.128.130.204 216.130.246.244 216.143.135.241 216.155.94.51 216.164.167.109 216.170.240.98 216.177.251.20 216.182.106.179 216.189.116.247 216.196.223.82 216.218.206.100 216.218.206.101 216.218.206.102 216.218.206.103 216.218.206.104 216.218.206.105 216.218.206.106 216.218.206.108 216.218.206.109 216.218.206.110 216.218.206.111 216.218.206.112 216.218.206.113 216.218.206.114 216.218.206.115 216.218.206.116 216.218.206.118 216.218.206.119 216.218.206.120 216.218.206.121 216.218.206.122 216.218.206.123 216.218.206.124 216.218.206.125 216.218.206.126 216.218.206.66 216.218.206.67 216.218.206.68 216.218.206.69 216.218.206.71 216.218.206.72 216.218.206.73 216.218.206.74 216.218.206.75 216.218.206.76 216.218.206.77 216.218.206.78 216.218.206.79 216.218.206.80 216.218.206.81 216.218.206.82 216.218.206.83 216.218.206.84 216.218.206.86 216.218.206.87 216.218.206.88 216.218.206.89 216.218.206.90 216.218.206.91 216.218.206.92 216.218.206.93 216.218.206.94 216.218.206.95 216.218.206.96 216.218.206.97 216.218.206.98 216.218.217.190 216.221.69.164 216.221.88.53 216.228.104.36 216.232.128.132 216.238.248.145 216.240.45.133 216.4.95.61 216.4.95.62 216.47.245.138 216.74.233.130 216.75.112.241 216.83.52.67 217.108.171.82 217.108.171.85 217.111.146.157 217.112.159.136 217.113.123.144 217.113.3.93 217.114.181.3 217.127.133.214 217.128.118.24 217.14.237.189 217.146.255.247 217.147.162.201 217.149.188.102 217.165.115.121 217.165.69.4 217.169.94.114 217.172.28.126 217.174.12.188 217.181.146.185 217.196.25.120 217.199.212.20 217.208.198.56 217.21.147.112 217.211.191.244 217.215.47.39 217.218.222.34 217.218.243.206 217.219.116.116 217.219.192.115 217.219.217.81 217.219.61.27 217.24.253.251 217.57.74.118 217.58.224.179 217.77.219.21 217.78.1.59 217.79.178.27 217.8.152.105 218.0.57.245 218.10.239.96 218.10.70.180 218.10.70.181 218.10.70.183 218.10.70.184 218.10.70.186 218.10.70.187 218.10.70.188 218.102.192.218 218.104.148.83 218.104.71.166 218.106.120.122 218.106.92.200 218.107.195.117 218.107.195.90 218.108.15.82 218.108.188.226 218.108.73.34 218.13.174.238 218.14.122.70 218.14.180.116 218.14.215.13 218.148.9.153 218.149.241.188 218.150.11.37 218.150.22.37 218.151.100.197 218.151.4.134 218.151.47.243 218.152.237.218 218.153.243.136 218.154.181.253 218.156.38.158 218.156.38.65 218.156.38.68 218.157.174.102 218.157.202.244 218.158.156.157 218.159.61.174 218.161.0.248 218.161.102.24 218.161.104.217 218.161.106.8 218.161.110.23 218.161.111.106 218.161.114.24 218.161.115.114 218.161.116.53 218.161.117.96 218.161.119.142 218.161.119.216 218.161.119.91 218.161.119.93 218.161.120.105 218.161.122.172 218.161.123.174 218.161.123.55 218.161.125.181 218.161.15.234 218.161.15.9 218.161.16.67 218.161.20.129 218.161.20.143 218.161.20.207 218.161.20.72 218.161.2.252 218.161.23.68 218.161.24.203 218.161.25.58 218.161.27.111 218.161.27.118 218.161.28.155 218.161.34.125 218.161.36.55 218.161.38.102 218.161.39.30 218.161.39.70 218.161.40.114 218.161.41.17 218.161.44.71 218.161.47.230 218.161.47.242 218.161.5.147 218.161.53.118 218.161.58.195 218.161.59.74 218.161.60.140 218.161.68.42 218.161.69.135 218.161.69.148 218.161.69.35 218.161.71.4 218.161.74.35 218.161.75.10 218.161.75.105 218.161.76.139 218.161.76.226 218.161.81.11 218.161.81.190 218.161.86.192 218.161.86.28 218.161.87.22 218.161.87.69 218.161.98.102 218.166.9.186 218.17.162.119 218.18.152.89 218.193.192.193 218.193.192.22 218.195.117.34 218.195.119.109 218.195.119.200 218.195.119.201 218.195.119.237 218.195.119.55 218.195.119.72 218.195.119.73 218.199.207.5 218.2.190.18 218.2.247.138 218.2.55.154 218.201.100.66 218.201.102.250 218.201.113.143 218.201.82.167 218.202.66.236 218.203.100.70 218.203.232.24 218.204.130.238 218.204.132.211 218.206.168.34 218.206.186.216 218.206.186.254 218.21.196.234 218.21.221.82 218.21.240.201 218.21.27.178 218.21.73.20 218.21.80.21 218.215.186.102 218.22.197.74 218.232.176.130 218.233.105.38 218.237.120.251 218.237.120.252 218.239.6.144 218.240.148.211 218.24.173.120 218.24.45.75 218.241.208.171 218.241.215.37 218.242.159.100 218.242.47.98 218.247.211.180 218.247.35.77 218.248.240.126 218.249.253.40 218.249.59.12 218.249.69.210 218.250.236.90 218.25.224.23 218.25.35.96 218.25.89.99 218.252.129.203 218.253.242.63 218.253.254.100 218.26.102.245 218.26.204.42 218.26.30.58 218.26.49.146 218.26.79.93 218.28.110.154 218.28.11.162 218.28.122.134 218.28.141.74 218.28.169.62 218.28.191.102 218.28.199.235 218.28.199.237 218.28.21.210 218.28.78.243 218.28.99.248 218.29.116.154 218.29.120.11 218.29.188.139 218.29.196.186 218.29.231.35 218.29.231.4 218.29.54.173 218.29.54.186 218.29.7.11 218.30.21.112 218.30.21.46 218.3.26.115 218.32.211.113 218.32.211.117 218.35.44.178 218.35.54.179 218.35.56.130 218.35.56.193 218.35.57.213 218.35.77.140 218.35.82.232 218.37.81.25 218.4.202.186 218.4.253.66 218.4.49.75 218.4.86.194 218.4.87.82 218.4.90.211 218.4.92.194 218.53.122.121 218.54.251.99 218.56.11.236 218.56.157.16 218.56.158.76 218.56.158.81 218.56.158.83 218.56.158.87 218.56.41.228 218.56.59.173 218.56.59.176 218.56.97.242 218.57.11.79 218.57.129.37 218.57.204.114 218.57.8.92 218.58.227.229 218.59.200.44 218.59.200.45 218.59.22.88 218.60.14.211 218.60.182.254 218.60.2.83 218.6.224.50 218.61.58.206 218.62.64.153 218.62.80.29 218.62.91.252 218.63.208.213 218.63.77.161 218.64.119.104 218.64.216.71 218.64.216.91 218.66.251.218 218.68.204.130 218.69.11.166 218.69.1.90 218.69.98.182 218.69.98.183 218.69.98.189 218.69.98.190 218.7.154.16 218.71.140.221 218.74.172.16 218.75.230.12 218.75.230.4 218.75.27.198 218.75.62.90 218.75.78.214 218.75.98.230 218.76.1.76 218.76.2.55 218.76.49.100 218.76.50.50 218.76.60.162 218.77.129.81 218.77.50.45 218.77.8.142 218.78.26.250 218.78.54.80 218.79.88.113 218.84.70.60 218.86.8.239 218.87.107.134 218.87.149.136 218.89.136.104 218.89.222.16 218.89.88.183 218.90.180.110 218.90.185.30 218.90.186.140 218.91.204.226 218.92.204.214 218.92.51.34 218.93.105.251 218.93.150.222 218.93.44.222 218.93.93.116 218.94.129.162 218.94.136.173 218.94.179.202 218.94.57.157 218.94.59.55 218.94.69.2 218.95.37.86 218.95.46.66 218.97.51.185 218.98.18.19 219.105.33.26 219.118.146.175 219.126.240.105 219.128.38.33 219.129.28.61 219.129.60.50 219.131.60.198 219.133.0.23 219.133.0.44 219.133.167.225 219.133.168.209 219.133.37.8 219.134.161.166 219.135.102.84 219.135.172.202 219.135.174.177 219.135.61.86 219.136.243.47 219.138.137.129 219.138.150.220 219.138.158.131 219.138.158.220 219.138.226.132 219.138.66.239 219.139.128.59 219.139.28.175 219.139.44.135 219.139.83.165 219.140.69.33 219.141.106.102 219.141.167.120 219.142.105.10 219.142.106.204 219.144.196.98 219.144.67.60 219.145.189.125 219.145.195.109 219.146.196.114 219.146.242.110 219.147.76.9 219.148.147.195 219.148.83.88 219.149.52.28 219.150.218.105 219.150.220.36 219.150.39.246 219.151.11.109 219.151.143.12 219.151.147.148 219.151.151.97 219.151.22.209 219.151.22.56 219.151.35.45 219.151.41.253 219.151.7.170 219.151.7.171 219.153.13.70 219.153.74.70 219.154.161.196 219.156.168.44 219.157.75.62 219.159.170.38 219.216.83.60 219.233.217.18 219.235.85.234 219.239.52.18 219.246.16.37 219.68.169.236 219.68.171.7 219.68.19.33 219.74.46.152 219.74.62.117 219.74.87.45 219.76.194.185 219.78.163.239 219.80.144.165 219.84.201.39 219.84.213.201 219.84.218.135 219.85.163.223 219.85.183.196 219.85.185.229 219.85.186.170 219.85.200.90 219.85.201.210 219.85.220.101 219.85.46.19 219.85.47.57 219.85.60.102 219.85.82.161 219.85.82.60 219.87.82.116 219.89.196.131 219.91.186.122 219.92.4.201 219.94.109.176 220.110.164.66 220.112.207.212 220.113.15.56 220.116.200.30 220.117.20.82 220.118.0.76 220.119.188.242 220.120.153.152 220.121.184.53 220.122.194.200 220.124.246.99 220.125.230.193 220.125.230.194 220.128.132.1 220.128.142.245 220.128.199.110 220.130.130.241 220.130.156.189 220.130.157.36 220.130.170.139 220.130.226.2 220.130.253.153 220.130.53.159 220.132.100.144 220.132.100.91 220.132.103.12 220.132.105.240 220.132.110.9 220.132.111.172 220.132.114.178 220.132.114.39 220.132.118.135 220.132.122.51 220.132.123.170 220.132.125.175 220.132.126.132 220.132.131.219 220.132.132.101 220.132.134.26 220.132.136.26 220.132.137.161 220.132.141.13 220.132.141.134 220.132.142.79 220.132.145.102 220.132.153.79 220.132.155.247 220.132.160.89 220.132.16.178 220.132.163.75 220.132.167.212 220.132.168.182 220.132.168.209 220.132.172.154 220.132.172.182 220.132.173.152 220.132.174.126 220.132.175.35 220.132.175.71 220.132.182.203 220.132.182.31 220.132.183.197 220.132.18.59 220.132.192.125 220.132.200.73 220.132.201.3 220.132.206.129 220.132.206.71 220.132.207.4 220.132.20.75 220.132.21.198 220.132.212.82 220.132.214.20 220.132.214.43 220.132.215.137 220.132.215.87 220.132.215.98 220.132.2.18 220.132.219.146 220.132.219.244 220.132.221.28 220.132.221.95 220.132.222.194 220.132.22.32 220.132.224.96 220.132.225.239 220.132.237.71 220.132.23.80 220.132.238.201 220.132.238.220 220.132.239.188 220.132.243.135 220.132.244.218 220.132.245.138 220.132.245.80 220.132.247.122 220.132.248.205 220.132.25.148 220.132.25.18 220.132.253.110 220.132.253.12 220.132.253.194 220.132.253.26 220.132.26.42 220.132.27.138 220.132.27.2 220.132.37.3 220.132.38.53 220.132.41.14 220.132.43.223 220.132.45.154 220.132.45.167 220.132.50.183 220.132.51.13 220.132.51.159 220.132.5.190 220.132.52.206 220.132.52.208 220.132.53.121 220.132.59.164 220.132.71.117 220.132.73.219 220.132.77.150 220.132.78.139 220.132.78.200 220.132.79.101 220.132.79.191 220.132.8.107 220.132.81.248 220.132.82.114 220.132.83.244 220.132.9.40 220.132.94.72 220.132.94.88 220.132.95.183 220.133.0.84 220.133.102.32 220.133.102.94 220.133.105.185 220.133.106.16 220.133.106.2 220.133.108.25 220.133.110.131 220.133.110.235 220.133.11.108 220.133.112.119 220.133.113.69 220.133.113.95 220.133.114.193 220.133.115.222 220.133.116.177 220.133.117.227 220.133.1.238 220.133.128.88 220.133.13.152 220.133.13.179 220.133.135.158 220.133.135.30 220.133.137.250 220.133.138.154 220.133.141.25 220.133.142.241 220.133.146.119 220.133.147.157 220.133.149.167 220.133.15.108 220.133.15.13 220.133.15.163 220.133.156.12 220.133.156.123 220.133.156.159 220.133.156.203 220.133.157.17 220.133.159.206 220.133.159.209 220.133.159.226 220.133.160.125 220.133.161.138 220.133.161.42 220.133.163.230 220.133.167.117 220.133.167.243 220.133.168.80 220.133.172.245 220.133.176.29 220.133.177.173 220.133.177.212 220.133.177.224 220.133.178.10 220.133.182.28 220.133.187.241 220.133.187.251 220.133.189.81 220.133.195.2 220.133.196.221 220.133.19.86 220.133.19.98 220.133.203.115 220.133.203.133 220.133.204.71 220.133.205.242 220.133.214.161 220.133.214.26 220.133.215.185 220.133.218.116 220.133.218.91 220.133.219.117 220.133.219.144 220.133.219.190 220.133.219.43 220.133.22.209 220.133.2.221 220.133.222.198 220.133.224.62 220.133.226.17 220.133.227.247 220.133.22.93 220.133.230.111 220.133.23.1 220.133.234.116 220.133.235.221 220.133.236.166 220.133.237.231 220.133.237.94 220.133.238.130 220.133.238.241 220.133.241.135 220.133.24.178 220.133.24.197 220.133.24.220 220.133.244.216 220.133.248.21 220.133.249.116 220.133.250.34 220.133.252.248 220.133.2.6 220.133.28.12 220.133.33.111 220.133.35.114 220.133.36.111 220.133.38.230 220.133.38.234 220.133.39.182 220.133.41.109 220.133.41.182 220.133.43.100 220.133.45.64 220.133.4.58 220.133.46.40 220.133.49.231 220.133.53.116 220.133.54.48 220.133.56.63 220.133.57.52 220.133.67.10 220.133.70.168 220.133.75.141 220.133.81.48 220.133.8.32 220.133.91.223 220.133.92.164 220.133.93.121 220.133.9.80 220.134.0.51 220.134.103.153 220.134.10.32 220.134.103.77 220.134.105.46 220.134.10.88 220.134.112.13 220.134.114.125 220.134.114.161 220.134.115.229 220.134.116.233 220.134.1.218 220.134.128.214 220.134.128.55 220.134.129.13 220.134.132.44 220.134.13.252 220.134.132.91 220.134.133.152 220.134.135.23 220.134.139.76 220.134.141.202 220.134.142.241 220.134.14.226 220.134.142.9 220.134.143.133 220.134.143.157 220.134.143.232 220.134.143.39 220.134.144.173 220.134.145.162 220.134.146.12 220.134.148.16 220.134.151.152 220.134.151.178 220.134.151.36 220.134.152.79 220.134.155.131 220.134.155.189 220.134.156.242 220.134.156.56 220.134.157.85 220.134.159.79 220.134.160.126 220.134.168.234 220.134.169.86 220.134.171.109 220.134.172.19 220.134.17.43 220.134.176.6 220.134.177.244 220.134.177.27 220.134.178.59 220.134.178.99 220.134.18.164 220.134.182.111 220.134.182.249 220.134.188.124 220.134.196.155 220.134.197.26 220.134.197.70 220.134.199.90 220.134.20.25 220.134.209.21 220.134.210.120 220.134.210.29 220.134.211.132 220.134.217.206 220.134.217.71 220.134.218.177 220.134.222.27 220.134.224.47 220.134.228.1 220.134.229.125 220.134.233.75 220.134.234.15 220.134.236.211 220.134.240.226 220.134.242.175 220.134.24.250 220.134.245.196 220.134.246.186 220.134.246.253 220.134.249.25 220.134.250.74 220.134.251.167 220.134.252.179 220.134.29.66 220.134.30.104 220.134.3.67 220.134.40.122 220.134.46.122 220.134.48.131 220.134.49.203 220.134.54.79 220.134.56.142 220.134.58.141 220.134.58.30 220.134.59.130 220.134.59.182 220.134.62.145 220.134.66.156 220.134.66.62 220.134.69.175 220.134.71.188 220.134.71.223 220.134.71.81 220.134.72.53 220.134.76.105 220.134.76.86 220.134.79.35 220.134.80.229 220.134.80.37 220.134.81.119 220.134.81.242 220.134.81.73 220.134.8.34 220.134.84.237 220.134.86.159 220.134.87.232 220.134.88.124 220.134.89.118 220.134.90.138 220.134.93.19 220.134.95.140 220.135.103.190 220.135.105.221 220.135.106.97 220.135.10.83 220.135.109.33 220.135.113.168 220.135.116.247 220.135.1.163 220.135.117.158 220.135.12.122 220.135.126.177 220.135.128.1 220.135.135.248 220.135.137.149 220.135.14.101 220.135.144.9 220.135.147.9 220.135.149.135 220.135.149.244 220.135.151.132 220.135.151.244 220.135.153.18 220.135.154.107 220.135.157.215 220.135.160.61 220.135.161.168 220.135.168.46 220.135.180.213 220.135.18.109 220.135.182.2 220.135.182.232 220.135.187.220 220.135.191.89 220.135.193.130 220.135.193.135 220.135.195.223 220.135.196.150 220.135.202.36 220.135.203.1 220.135.208.176 220.135.21.218 220.135.219.221 220.135.220.154 220.135.223.163 220.135.223.31 220.135.225.246 220.135.227.124 220.135.227.59 220.135.2.32 220.135.232.111 220.135.238.18 220.135.244.152 220.135.246.182 220.135.250.232 220.135.251.240 220.135.252.221 220.135.2.97 220.135.34.207 220.135.38.76 220.135.39.118 220.135.40.143 220.135.40.201 220.135.40.56 220.135.40.67 220.135.43.81 220.135.50.93 220.135.52.24 220.135.55.201 220.135.58.122 220.135.61.106 220.135.61.13 220.135.63.63 220.135.76.193 220.135.79.117 220.135.79.198 220.135.8.154 220.135.85.154 220.135.99.74 220.147.103.93 220.156.236.162 220.156.246.96 220.161.15.189 220.161.77.42 220.161.81.162 220.162.244.136 220.163.125.148 220.164.175.26 220.164.192.25 220.165.15.150 220.166.30.195 220.167.114.198 220.167.147.122 220.167.54.92 220.168.57.133 220.169.101.4 220.169.254.50 220.169.58.163 220.169.63.94 220.171.45.37 220.172.206.79 220.173.136.132 220.173.139.43 220.173.140.245 220.176.172.64 220.176.78.18 220.178.254.54 220.178.71.156 220.180.104.130 220.182.47.116 220.185.138.14 220.189.195.30 220.189.216.132 220.191.173.106 220.191.208.183 220.191.210.132 220.194.238.49 220.197.200.250 220.202.61.142 220.238.226.51 220.242.158.87 220.245.3.34 220.247.168.42 220.247.224.58 220.247.236.118 220.248.113.26 220.248.238.130 220.248.36.50 220.248.49.230 220.248.78.106 220.249.11.34 220.249.11.38 220.249.136.5 220.249.16.114 220.249.19.94 220.249.9.90 220.255.54.237 220.255.71.82 220.72.101.132 220.81.3.87 220.82.173.68 220.83.207.33 220.85.224.183 220.86.27.210 220.86.74.75 220.87.154.188 220.88.82.170 220.90.165.222 220.90.165.250 220.94.124.83 221.0.116.111 221.10.110.118 221.10.132.194 221.10.98.134 221.120.218.74 221.12.100.170 221.122.108.203 221.122.120.249 221.122.121.137 221.122.75.22 221.122.78.206 221.124.102.53 221.125.110.88 221.125.166.160 221.126.242.254 221.130.126.164 221.130.203.172 221.130.71.106 221.130.83.52 221.130.84.185 221.131.172.233 221.131.190.156 221.132.113.188 221.132.18.37 221.133.17.100 221.138.94.33 221.144.149.102 221.144.149.110 221.144.35.121 221.145.217.115 221.145.234.38 221.146.233.140 221.147.82.72 221.15.228.187 221.153.211.94 221.156.61.60 221.158.129.215 221.161.26.112 221.163.252.227 221.164.31.44 221.165.99.19 221.176.116.119 221.176.165.98 221.176.167.122 221.176.177.46 221.176.179.205 221.176.179.213 221.178.247.153 221.179.126.194 221.179.173.90 221.180.240.166 221.182.0.8 221.182.236.34 221.192.139.251 221.192.219.10 221.193.195.51 221.194.153.133 221.195.36.69 221.2.126.172 221.2.220.158 221.2.229.42 221.2.98.11 221.202.14.213 221.202.220.73 221.202.234.34 221.202.42.223 221.202.72.128 221.203.13.137 221.203.162.6 221.203.22.245 221.203.6.138 221.203.63.54 221.203.9.162 221.204.177.15 221.205.240.100 221.207.32.250 221.208.13.6 221.208.139.146 221.208.194.223 221.208.204.112 221.210.121.66 221.210.53.4 221.212.210.246 221.212.225.228 221.213.115.48 221.213.123.181 221.213.40.114 221.214.172.5 221.214.181.196 221.214.54.122 221.215.141.170 221.215.141.226 221.223.35.118 221.224.165.82 221.224.198.230 221.224.32.106 221.224.43.179 221.224.61.218 221.225.81.86 221.226.102.85 221.226.140.189 221.226.241.230 221.226.28.34 221.226.29.194 221.226.56.210 221.226.65.226 221.226.70.186 221.226.83.98 221.227.163.250 221.229.221.244 221.231.113.90 221.231.82.134 221.233.138.162 221.233.164.34 221.237.179.82 221.238.47.98 221.3.132.30 221.5.225.158 221.5.80.102 221.6.32.34 221.7.175.12 221.7.49.90 221.9.190.168 221.9.196.5 222.100.201.221 222.101.142.78 222.102.210.39 222.104.16.170 222.105.1.89 222.114.137.250 222.114.144.209 222.114.21.218 222.116.160.105 222.116.37.217 222.117.161.195 222.118.135.43 222.118.140.178 222.118.162.243 222.119.178.34 222.121.135.68 222.122.25.106 222.124.32.97 222.127.10.67 222.128.46.27 222.128.51.106 222.128.60.184 222.128.87.85 222.129.23.83 222.132.122.183 222.132.156.2 222.132.156.3 222.132.162.110 222.133.156.135 222.133.51.18 222.134.75.6 222.139.244.7 222.142.100.243 222.160.223.2 222.161.223.54 222.162.110.132 222.163.190.126 222.164.79.21 222.166.204.36 222.169.117.250 222.169.251.245 222.169.72.218 222.170.219.10 222.171.78.203 222.173.38.41 222.174.148.178 222.174.243.198 222.175.101.195 222.175.128.158 222.175.132.58 222.175.186.110 222.175.55.138 222.178.216.126 222.178.217.20 222.180.150.130 222.180.151.86 222.184.112.3 222.184.112.38 222.184.112.55 222.184.135.163 222.184.30.10 222.184.35.115 222.185.125.254 222.185.211.162 222.185.27.18 222.186.133.223 222.186.148.107 222.186.153.27 222.186.15.59 222.186.160.93 222.186.169.102 222.186.171.247 222.186.173.201 222.186.174.76 222.186.174.85 222.186.30.11 222.186.30.166 222.186.30.19 222.186.30.218 222.186.30.26 222.186.30.37 222.186.39.22 222.186.42.13 222.186.46.150 222.186.52.199 222.186.61.19 222.188.211.234 222.189.163.230 222.189.186.46 222.189.228.131 222.190.122.163 222.191.129.220 222.191.255.26 222.192.176.38 222.192.88.62 222.192.88.74 222.192.88.76 222.192.88.86 222.208.119.107 222.208.59.177 222.209.216.163 222.211.162.66 222.212.141.178 222.212.65.118 222.216.206.143 222.218.211.124 222.218.39.35 222.219.183.190 222.219.29.205 222.219.73.113 222.220.162.172 222.220.167.66 222.221.91.153 222.222.172.38 222.222.181.214 222.222.76.131 222.223.116.46 222.223.160.18 222.223.254.125 222.223.29.110 222.223.51.148 222.223.93.194 222.240.172.86 222.240.202.162 222.240.234.58 222.240.238.58 222.24.94.97 222.249.235.234 222.255.135.243 222.31.217.31 222.32.97.16 222.34.19.112 222.46.121.142 222.52.5.5 222.64.209.104 222.67.244.79 222.69.152.98 222.73.134.185 222.73.136.205 222.73.219.54 222.73.48.151 222.73.7.22 222.73.85.107 222.74.23.247 222.80.110.191 222.81.119.245 222.82.221.194 222.82.237.62 222.83.228.238 222.83.237.69 222.85.110.25 222.85.110.39 222.85.148.15 222.85.25.4 222.86.192.246 222.88.152.96 222.88.238.129 222.88.92.237 222.89.70.216 222.90.111.62 222.90.79.50 222.92.132.5 222.92.40.26 222.92.88.242 222.93.214.124 222.93.217.226 222.94.73.143 222.96.50.40 222.96.94.72 222.98.117.72 223.100.111.77 223.100.15.136 223.100.176.126 223.100.224.216 223.100.22.69 223.100.236.98 223.100.83.248 223.11.129.120 223.111.150.171 223.111.201.42 223.111.202.154 223.112.124.226 223.112.168.162 223.112.189.154 223.112.85.150 223.116.44.149 223.167.110.183 223.17.26.44 223.18.193.113 223.19.119.152 223.19.73.184 223.197.236.110 223.199.1.119 223.206.220.21 223.215.160.131 223.220.168.22 223.223.176.184 223.223.177.131 223.223.179.220 223.223.205.114 223.223.205.117 223.223.205.229 223.240.125.208 223.240.95.203 223.244.233.104 223.244.237.75 223.247.130.195 223.247.153.244 223.247.194.119 223.247.199.243 223.27.255.162 223.31.196.3 223.65.206.170 223.68.188.242 223.70.176.202 223.70.176.75 223.70.217.2 223.71.167.171 223.71.26.10 223.71.26.146 223.71.63.130 223.71.8.29 223.72.20.43 223.72.78.128 223.78.122.102 223.80.108.199 223.80.163.106 223.80.27.60 223.82.0.44 223.82.0.50 223.82.0.53 223.82.0.58 223.83.138.104 223.83.177.185 223.83.213.194 223.84.219.70 223.85.205.58 223.95.193.21 223.95.89.248 prelude-correlator-5.2.0/rules/dshield.dat0000644000000000000000000155411113726164426020551 0ustar rootroot00000000000000# ipsascii.html # DO NOT USE AS BLOCKLIST # you may obtain longer/shorter lists by adding '?limit=1234' to the URL # "1234" is the number of IPs returned. You can specify a number between 10 # and 10,000. # NOTE: Please use your API instead. See https://isc.sans.edu/api # # IMPORTANT: Include your e-mail address in the user agent if you are using # a script to access this page. # # created: Wed, 09 Sep 2020 14:42:59 +0000# Date in GMT. YYYY-MM-DD format. 194.026.029.096 116666 5713 2020-07-28 2020-08-23 087.251.073.236 2451634 5559 2020-07-11 2020-08-16 094.102.051.029 3101035 4930 2020-08-09 2020-08-19 045.129.033.011 472744 4591 2020-07-21 2020-08-11 045.129.033.012 510431 4435 2020-07-21 2020-08-11 045.129.033.007 499867 4386 2020-07-21 2020-08-11 045.129.033.005 482087 4377 2020-07-21 2020-08-11 045.129.033.009 467646 4335 2020-07-21 2020-08-11 045.129.033.013 510226 4304 2020-07-21 2020-08-11 045.129.033.015 470587 4244 2020-07-21 2020-08-11 089.248.174.166 411305 4223 2020-07-28 2020-08-17 080.082.065.074 1018057 4181 2020-07-28 2020-08-22 195.054.161.122 294387 3966 2020-08-07 2020-09-02 080.082.078.085 186098 3905 2020-08-05 2020-08-26 185.176.027.102 586037 3853 2020-08-11 2020-08-25 195.054.160.053 168456 3827 2020-07-27 2020-08-14 185.176.027.014 584471 3826 2020-08-16 2020-08-25 185.176.027.026 586954 3814 2020-08-09 2020-08-25 194.026.029.095 165618 3782 2020-07-28 2020-08-23 193.027.229.190 158495 3715 2020-07-12 2020-08-23 193.027.229.189 156031 3712 2020-07-29 2020-08-23 092.063.196.008 159589 3709 2020-07-12 2020-08-23 092.063.196.006 157987 3709 2020-07-12 2020-08-23 185.176.027.182 180612 3703 2020-07-12 2020-08-25 193.027.229.181 159605 3697 2020-08-01 2020-08-23 195.054.161.123 255690 3544 2020-08-07 2020-08-31 146.088.240.004 397814 3403 2020-08-10 2020-08-31 045.129.033.002 183565 3323 2020-07-21 2020-08-31 193.027.228.098 451630 3251 2020-08-24 2020-09-05 093.157.062.102 112492 3144 2020-07-29 2020-08-14 193.228.091.124 534157 3133 2020-07-22 2020-08-31 045.129.033.026 372583 3106 2020-07-28 2020-08-22 091.199.118.137 148788 3079 2020-08-18 2020-08-25 193.027.229.178 198885 2923 2020-07-29 2020-08-12 045.129.033.003 238847 2914 2020-07-21 2020-08-26 193.228.091.110 203142 2913 2020-07-20 2020-08-18 141.098.080.022 97866 2867 2020-07-17 2020-08-26 092.063.197.097 64016 2757 2020-08-07 2020-08-15 045.129.033.010 298334 2754 2020-07-21 2020-08-11 089.248.174.132 130979 2749 2020-07-22 2020-08-13 164.090.223.008 120817 2746 2020-08-25 2020-08-31 080.082.070.215 150942 2734 2020-07-22 2020-08-11 094.102.051.110 140659 2728 2020-07-22 2020-08-11 103.145.012.011 607967 2646 2020-07-27 2020-08-24 045.129.033.016 287595 2639 2020-07-21 2020-08-11 185.039.009.014 98584 2402 2020-07-19 2020-08-13 093.174.093.031 150556 2350 2020-07-24 2020-08-11 185.039.010.213 100618 2324 2020-07-18 2020-08-13 089.248.168.107 95745 2323 2020-08-16 2020-08-16 193.093.062.130 107704 2311 2020-08-03 2020-08-31 085.093.020.170 336651 2304 2020-08-03 2020-08-27 141.098.083.011 139848 2294 2020-07-27 2020-08-27 005.188.206.050 582760 2282 2020-08-08 2020-08-31 164.090.214.142 60438 2257 2020-08-25 2020-08-31 195.054.167.225 243402 2190 2020-07-28 2020-08-12 185.202.002.068 20471 2170 2020-08-18 2020-09-01 079.124.062.074 9766 2133 2020-08-02 2020-08-25 172.093.099.002 46510 2125 2020-07-23 2020-08-12 045.129.033.155 235049 2050 2020-08-07 2020-08-26 185.039.009.030 86748 2006 2020-07-18 2020-08-13 051.079.158.008 1499994 1939 2020-07-22 2020-08-22 051.222.033.063 323996 1919 2020-05-13 2020-08-26 178.128.112.053 23483 1910 2020-08-22 2020-08-22 045.227.255.205 1183660 1880 2020-08-04 2020-09-08 045.148.121.143 16744 1860 2020-07-26 2020-08-13 051.222.033.062 445604 1851 2020-06-13 2020-08-18 094.232.040.007 26798 1832 2020-07-12 2020-08-30 045.129.033.004 114072 1826 2020-07-21 2020-08-31 045.129.033.021 141577 1814 2020-08-21 2020-08-31 156.096.117.057 74764 1769 2020-07-17 2020-08-14 005.188.086.216 435042 1763 2020-08-10 2020-08-31 088.214.026.093 209830 1708 2020-08-05 2020-08-31 193.027.228.009 35953 1659 2020-07-22 2020-09-01 045.129.033.020 121903 1658 2020-08-21 2020-08-31 051.081.048.178 110849 1641 2020-08-09 2020-08-11 103.095.221.002 27909 1635 2020-07-27 2020-08-21 005.188.086.210 500834 1625 2020-08-10 2020-09-04 185.141.207.192 20232 1611 2020-07-20 2020-08-11 005.188.086.221 354506 1604 2020-08-10 2020-08-25 045.129.033.022 82182 1601 2020-08-21 2020-08-31 005.188.086.212 404814 1555 2020-08-10 2020-09-01 005.188.086.206 503542 1524 2020-08-08 2020-09-04 042.157.192.132 16915 1500 2020-08-22 2020-09-01 212.070.149.003 1402787 1482 2020-07-06 2020-08-17 045.227.255.209 134595 1460 2020-08-20 2020-08-30 051.089.157.034 70648 1450 2020-07-17 2020-08-14 156.096.047.131 58704 1449 2020-07-26 2020-08-17 185.234.216.042 22075 1439 2020-07-21 2020-08-31 005.188.086.207 494746 1426 2020-08-08 2020-09-04 195.140.202.142 97952 1423 2020-07-30 2020-08-19 005.188.086.164 509813 1411 2020-08-10 2020-09-04 045.129.033.151 82112 1407 2020-08-07 2020-08-11 185.250.220.170 38466 1391 2020-07-26 2020-08-16 045.129.033.152 76712 1383 2020-08-07 2020-08-11 066.070.162.214 37965 1375 2020-08-12 2020-08-31 193.027.229.047 72072 1368 2020-08-06 2020-08-11 193.029.013.031 29190 1367 2020-08-17 2020-08-26 045.129.033.154 78530 1343 2020-08-07 2020-08-11 194.026.029.136 287379 1333 2020-08-10 2020-08-11 103.214.006.128 280175 1318 2020-07-13 2020-08-11 045.129.033.153 74996 1313 2020-08-07 2020-08-11 045.129.033.051 100191 1313 2020-08-10 2020-08-22 005.188.086.165 522892 1306 2020-07-19 2020-09-04 092.063.194.241 264723 1306 2020-06-29 2020-08-11 167.114.178.140 72740 1296 2020-06-20 2020-08-31 185.100.059.059 626197 1292 2020-07-19 2020-08-15 222.186.042.057 223298 1289 2020-07-27 2020-08-31 222.186.030.035 194560 1282 2020-08-26 2020-09-01 222.186.030.057 238986 1272 2020-08-24 2020-08-31 222.186.030.167 417721 1270 2020-07-28 2020-08-16 222.186.015.158 413421 1269 2020-07-24 2020-08-16 222.186.015.062 260630 1268 2020-07-25 2020-08-30 222.186.042.213 251273 1268 2020-07-27 2020-08-25 222.186.030.076 262321 1268 2020-07-27 2020-08-31 222.186.175.023 307542 1268 2020-07-24 2020-08-25 222.186.042.155 336387 1266 2020-08-20 2020-08-22 222.186.030.218 411501 1265 2020-07-25 2020-08-11 092.063.194.021 263478 1261 2020-07-19 2020-08-11 045.061.142.130 151669 1256 2020-07-05 2020-08-18 045.141.084.062 142665 1254 2020-08-03 2020-08-21 218.017.208.165 20978 1247 2020-08-09 2020-08-11 142.044.147.029 135968 1245 2020-07-26 2020-08-12 054.037.244.166 660645 1239 2020-07-16 2020-08-20 103.145.013.149 47146 1239 2020-08-24 2020-09-06 091.217.189.005 161730 1238 2020-08-01 2020-08-20 192.184.009.112 44233 1206 2020-06-13 2020-08-15 192.184.009.108 167521 1204 2020-08-03 2020-08-21 061.177.172.128 47542 1195 2020-07-27 2020-08-19 149.056.164.195 145595 1186 2020-06-24 2020-08-18 092.063.196.025 582876 1184 2020-07-23 2020-08-11 103.141.138.250 49308 1182 2020-08-03 2020-08-21 045.095.168.092 83809 1182 2020-08-18 2020-08-26 185.202.001.122 48355 1150 2020-07-27 2020-08-24 045.145.064.035 81338 1147 2020-07-28 2020-08-19 051.089.239.121 62759 1144 2020-08-05 2020-08-13 195.054.167.131 79555 1144 2020-08-18 2020-08-19 005.188.087.060 433492 1139 2020-07-12 2020-08-26 202.102.144.114 12080 1126 2020-07-30 2020-08-16 088.218.016.235 8735 1120 2020-07-25 2020-08-12 045.227.255.207 596569 1116 2020-07-21 2020-09-06 005.188.086.169 442834 1112 2020-08-08 2020-09-01 054.039.130.147 244642 1107 2020-08-17 2020-08-18 005.188.086.168 513962 1104 2020-08-10 2020-09-04 031.186.250.241 27650 1099 2020-07-28 2020-08-21 045.129.033.101 63721 1091 2020-08-15 2020-08-22 054.039.130.138 148202 1090 2020-07-26 2020-08-22 089.248.162.233 99232 1070 2020-07-19 2020-08-11 185.040.004.010 865917 1062 2020-07-24 2020-08-14 051.195.180.044 63569 1057 2020-07-16 2020-08-13 185.150.189.165 36398 1045 2020-08-13 2020-08-25 212.070.149.019 1484557 1040 2020-07-17 2020-08-17 045.227.255.206 493192 1038 2020-07-21 2020-09-01 089.248.162.247 320567 1037 2020-07-05 2020-08-29 005.188.086.178 469944 1037 2020-08-10 2020-09-04 212.070.149.082 1716566 1019 2020-07-15 2020-08-17 198.050.171.152 71855 1015 2020-08-01 2020-08-22 092.063.196.013 65414 1015 2020-07-31 2020-08-14 212.102.040.152 69946 1007 2020-07-26 2020-08-23 051.222.033.061 56295 997 2020-05-13 2020-08-31 104.153.108.102 98817 993 2020-06-25 2020-08-23 139.059.059.154 7052 987 2020-08-08 2020-08-16 045.145.185.194 6680 984 2020-07-29 2020-08-15 045.095.168.212 64431 979 2020-08-05 2020-08-24 066.085.015.001 53634 974 2020-07-13 2020-08-24 005.188.087.053 421076 970 2020-08-08 2020-08-31 074.091.120.250 142635 970 2020-07-26 2020-08-21 005.188.087.049 378904 963 2020-08-05 2020-08-31 005.188.087.057 348908 954 2020-07-22 2020-08-25 066.085.014.248 91454 951 2020-08-03 2020-08-30 093.114.194.099 66873 943 2020-08-21 2020-08-21 005.188.087.051 422193 941 2020-08-10 2020-09-01 185.039.010.014 86812 933 2020-07-10 2020-09-01 089.248.169.094 65232 926 2020-07-20 2020-09-03 144.217.155.087 109723 923 2020-08-11 2020-08-12 005.188.087.058 400125 919 2020-08-08 2020-09-01 045.134.179.077 23259 912 2020-09-04 2020-09-07 005.188.086.167 497586 906 2020-08-10 2020-09-04 023.236.062.147 1561152 901 2020-08-12 2020-09-03 005.188.062.014 624104 900 2020-07-18 2020-09-04 093.174.093.068 83496 894 2020-07-14 2020-09-06 046.105.042.072 52244 890 2020-07-09 2020-08-22 037.049.230.022 81859 871 2020-08-06 2020-08-23 193.032.161.141 295740 869 2020-07-23 2020-08-11 074.091.127.190 123902 864 2020-07-17 2020-08-11 192.099.226.011 25082 857 2020-07-30 2020-08-25 001.001.001.001 18671 853 2020-08-17 2020-08-22 185.039.010.025 91102 848 2020-08-01 2020-09-06 074.091.125.148 19787 844 2020-07-20 2020-08-11 167.114.053.155 137849 839 2020-07-20 2020-08-17 046.031.116.071 702575 836 2020-09-02 2020-09-03 051.079.142.079 496087 832 2020-07-24 2020-08-13 060.217.072.012 160989 806 2020-08-01 2020-08-31 079.124.062.082 401472 803 2020-07-25 2020-08-31 045.129.033.053 35723 802 2020-08-21 2020-08-31 149.056.092.198 50250 802 2020-07-19 2020-08-20 054.039.029.097 58865 783 2020-07-19 2020-08-11 193.027.228.172 759661 782 2020-07-13 2020-08-22 045.129.033.052 35702 780 2020-08-21 2020-08-31 139.099.144.221 262712 774 2020-06-29 2020-08-11 045.129.033.054 35581 769 2020-08-21 2020-08-31 005.188.062.015 279811 767 2020-07-28 2020-08-16 147.135.118.162 67618 765 2020-08-03 2020-08-13 045.061.142.053 49080 764 2020-08-01 2020-08-21 045.145.066.096 677780 760 2020-07-09 2020-08-26 098.178.193.002 162641 757 2020-08-16 2020-08-31 185.156.073.054 460394 752 2020-07-23 2020-08-22 005.182.039.064 274014 745 2020-08-10 2020-09-01 045.129.033.018 35560 736 2020-08-21 2020-08-31 194.026.025.105 233621 735 2020-07-29 2020-08-11 149.056.106.179 157120 734 2020-07-07 2020-08-17 051.081.119.000 79393 732 2020-03-30 2020-08-19 103.095.221.188 32176 731 2020-07-16 2020-08-21 068.075.013.114 89045 727 2020-06-09 2020-09-05 051.161.091.194 65427 725 2020-07-28 2020-08-13 005.182.039.062 276135 724 2020-07-12 2020-08-31 074.091.122.045 9136 723 2020-07-25 2020-08-16 080.082.065.040 78600 721 2020-06-03 2020-09-02 073.185.150.150 79665 709 2020-06-20 2020-09-06 045.061.142.080 67253 709 2020-07-29 2020-08-14 045.129.033.040 416893 702 2020-08-03 2020-09-06 185.039.010.054 76921 696 2020-07-24 2020-08-30 045.129.033.058 713839 685 2020-08-15 2020-09-07 156.096.156.138 66874 684 2020-07-15 2020-08-22 192.099.092.107 90766 684 2020-07-29 2020-08-23 045.021.036.164 82325 677 2020-07-20 2020-08-17 074.091.124.123 56747 671 2020-07-19 2020-08-22 089.248.172.208 82709 647 2020-07-17 2020-08-30 034.125.197.200 38473 635 2020-08-27 2020-08-30 192.099.250.217 103578 634 2020-08-07 2020-08-29 066.151.244.115 18208 622 2020-07-20 2020-08-14 080.082.070.178 25686 621 2020-08-17 2020-09-02 077.247.108.077 6603 617 2020-07-28 2020-08-22 098.176.136.176 58012 616 2020-07-18 2020-08-14 045.129.033.144 224379 616 2020-08-03 2020-08-27 037.049.230.011 168775 614 2020-08-22 2020-08-26 045.129.033.141 216600 614 2020-08-03 2020-08-27 005.182.039.063 227801 614 2020-08-10 2020-08-25 045.129.033.148 222292 614 2020-08-03 2020-08-27 198.251.083.251 18528 613 2020-08-01 2020-08-20 045.129.033.149 221021 613 2020-08-03 2020-08-27 045.129.033.147 222013 612 2020-08-03 2020-08-27 045.129.033.143 220511 611 2020-08-03 2020-08-27 188.165.002.114 18891 611 2020-07-18 2020-08-13 045.129.033.142 181466 610 2020-08-05 2020-08-23 045.129.033.145 216518 605 2020-08-03 2020-08-27 149.056.092.194 41146 605 2020-07-18 2020-08-14 192.099.248.212 23623 604 2020-08-03 2020-08-20 045.129.033.146 217145 603 2020-08-03 2020-08-27 034.083.218.019 20904 602 2020-09-02 2020-09-04 194.015.036.213 1116 592 2020-07-31 2020-08-23 192.003.251.067 6352 592 2020-08-10 2020-08-26 103.133.105.036 19396 591 2020-09-01 2020-09-06 051.195.045.193 55089 587 2020-07-26 2020-08-23 051.089.208.088 40409 587 2020-07-01 2020-08-21 142.197.064.207 43979 584 2020-07-20 2020-08-19 045.129.033.057 78987 578 2020-08-17 2020-08-26 024.144.181.035 28687 578 2020-07-19 2020-08-11 185.220.101.011 3847 577 2020-08-20 2020-08-24 005.182.039.061 228950 568 2020-08-10 2020-08-25 045.145.067.028 68260 566 2020-08-13 2020-08-26 195.054.160.038 446791 566 2020-08-05 2020-09-01 081.003.006.164 101505 560 2020-08-15 2020-09-07 045.129.033.042 315689 553 2020-08-08 2020-08-25 045.129.033.048 381815 553 2020-08-08 2020-08-30 045.129.033.045 285631 552 2020-08-08 2020-08-25 045.129.033.043 308968 552 2020-08-08 2020-08-25 045.129.033.049 312386 552 2020-08-08 2020-08-26 045.129.033.046 435993 550 2020-08-08 2020-08-31 045.129.033.041 327597 550 2020-08-08 2020-08-26 158.069.183.096 9262 549 2020-07-24 2020-08-17 079.124.062.086 438514 549 2020-07-25 2020-09-08 045.129.033.044 312377 548 2020-08-08 2020-08-25 045.129.033.047 396326 548 2020-08-08 2020-08-31 194.026.025.103 256684 547 2020-08-10 2020-08-11 045.129.033.050 310004 547 2020-08-08 2020-08-26 194.026.025.104 264322 545 2020-07-27 2020-08-11 145.239.202.123 24079 541 2020-08-02 2020-08-31 194.026.029.103 277173 535 2020-07-27 2020-08-11 194.087.138.246 5671 535 2020-08-11 2020-08-16 074.091.127.188 32811 535 2020-08-07 2020-08-16 194.026.029.133 273012 534 2020-07-29 2020-08-11 194.026.029.141 269346 534 2020-08-10 2020-08-11 194.026.025.109 256405 533 2020-07-12 2020-08-11 194.026.029.101 284526 530 2020-07-31 2020-08-11 194.026.029.148 248711 529 2020-07-31 2020-08-11 117.048.195.024 3533 528 2020-08-12 2020-08-13 051.079.181.136 2096 528 2020-08-03 2020-08-23 194.026.029.146 254794 526 2020-07-27 2020-08-11 194.026.029.123 268145 524 2020-08-10 2020-08-11 183.060.141.171 40861 522 2020-07-20 2020-08-12 051.089.211.120 44898 520 2020-08-01 2020-08-23 194.026.029.132 267747 520 2020-08-10 2020-08-11 195.054.161.132 169593 518 2020-08-10 2020-08-31 194.026.029.117 277740 517 2020-08-10 2020-08-11 185.141.207.246 8651 517 2020-07-29 2020-08-12 194.026.029.135 227111 515 2020-08-02 2020-08-11 103.145.013.124 33977 511 2020-08-27 2020-09-06 194.026.029.143 264728 509 2020-08-10 2020-08-13 194.026.029.134 243217 508 2020-07-29 2020-08-11 141.098.081.231 53213 504 2020-08-11 2020-08-12 058.071.029.162 1253 501 2020-08-14 2020-08-24 094.102.056.151 20765 500 2020-08-15 2020-08-31 089.248.172.196 42097 499 2020-07-02 2020-08-30 141.098.081.193 15790 497 2020-07-25 2020-08-19 167.114.122.000 30706 497 2020-08-23 2020-08-29 194.026.029.137 359528 496 2020-07-11 2020-08-22 192.141.013.001 1709 496 2020-08-15 2020-08-18 080.082.065.080 6831 493 2020-08-20 2020-08-25 194.026.029.205 231456 487 2020-07-29 2020-08-11 051.195.180.050 4323 486 2020-07-16 2020-08-11 195.054.160.183 135042 483 2020-07-27 2020-08-19 074.091.119.228 55144 482 2020-03-07 2020-09-01 198.050.140.156 52617 481 2020-07-29 2020-08-22 194.026.029.222 159649 477 2020-08-02 2020-08-11 054.039.226.041 28513 477 2020-07-23 2020-08-11 045.227.255.059 32025 476 2020-08-15 2020-08-26 138.068.079.102 7792 473 2020-08-06 2020-08-30 108.226.206.243 8549 472 2020-07-27 2020-08-19 212.070.149.004 1915180 471 2020-08-17 2020-09-08 054.037.245.102 73076 469 2020-06-22 2020-08-29 051.079.162.020 24130 467 2020-08-25 2020-09-04 194.026.029.122 141151 463 2020-08-10 2020-08-27 212.070.149.036 1099250 460 2020-08-17 2020-09-07 145.239.235.040 43571 459 2020-08-12 2020-08-22 050.115.174.032 8654 457 2020-08-27 2020-09-06 185.156.073.052 487271 457 2020-07-23 2020-08-30 051.222.071.016 22024 450 2020-08-14 2020-08-28 178.239.173.168 17498 449 2020-07-27 2020-08-23 051.038.119.213 40893 444 2020-07-25 2020-08-20 064.146.163.131 10230 442 2020-07-26 2020-08-21 045.145.067.027 128568 435 2020-08-13 2020-08-23 094.102.051.028 1447132 430 2020-07-12 2020-09-07 104.238.058.099 32403 429 2020-08-14 2020-08-16 164.132.040.165 23844 428 2020-07-21 2020-08-19 212.070.149.068 19392 427 2020-08-17 2020-09-01 045.141.247.232 19325 425 2020-07-26 2020-08-16 123.151.147.066 8092 421 2020-07-23 2020-08-13 094.102.051.095 1207028 420 2020-07-04 2020-09-04 045.079.082.183 36825 419 2020-07-23 2020-08-21 087.251.073.238 142762 413 2020-07-22 2020-08-13 135.181.035.053 32532 413 2020-09-01 2020-09-04 002.056.254.068 59973 413 2020-07-29 2020-08-12 194.015.036.041 3181 412 2020-08-22 2020-08-31 054.039.226.237 34651 411 2020-07-29 2020-08-12 014.018.188.105 31937 406 2020-08-14 2020-08-30 211.026.032.125 21091 405 2020-08-04 2020-08-25 045.063.047.240 16373 405 2020-07-26 2020-08-16 209.141.038.221 49401 398 2020-08-21 2020-08-30 094.102.051.033 5883576 397 2020-08-12 2020-08-28 198.098.051.138 1651 394 2020-08-27 2020-09-06 051.089.246.082 9166 393 2020-07-13 2020-08-12 074.091.119.040 7315 392 2020-07-26 2020-08-24 162.217.118.011 1981 388 2020-08-11 2020-08-12 051.178.074.151 37268 388 2020-07-22 2020-08-11 051.195.180.043 20956 385 2020-07-14 2020-08-30 185.153.197.032 220683 385 2020-07-15 2020-08-11 069.172.201.153 10575 384 2020-08-07 2020-08-19 045.061.142.098 67780 381 2020-09-02 2020-09-03 217.079.189.205 18502 373 2020-08-17 2020-08-20 091.229.112.005 301794 372 2020-08-12 2020-09-08 051.195.157.087 42792 365 2020-08-07 2020-09-04 045.134.179.238 42466 362 2020-07-31 2020-08-13 045.142.120.020 276584 358 2020-09-03 2020-09-07 216.052.148.234 37620 355 2020-08-09 2020-08-25 051.081.125.157 26423 355 2020-07-31 2020-08-25 091.229.112.002 102420 354 2020-08-12 2020-08-22 045.035.221.055 5361 353 2020-07-21 2020-08-17 072.207.035.034 27811 345 2020-08-22 2020-08-22 167.114.177.150 13228 343 2020-08-21 2020-08-25 185.239.237.230 24330 338 2020-08-27 2020-08-30 192.236.232.172 107008 336 2020-08-04 2020-09-01 195.054.161.085 17131 329 2020-07-28 2020-08-20 051.081.082.164 27203 328 2020-08-16 2020-08-23 066.070.225.223 8470 328 2020-08-11 2020-08-19 185.153.199.146 173640 328 2020-07-15 2020-08-29 094.102.049.104 15706 326 2020-09-02 2020-09-07 036.152.027.198 8348 324 2020-08-13 2020-08-14 112.141.150.073 13563 319 2020-08-20 2020-08-23 051.089.208.090 14880 312 2020-08-20 2020-08-25 185.153.199.201 12896 312 2020-08-18 2020-08-27 091.241.019.060 19033 312 2020-08-20 2020-08-26 085.203.033.063 248430 311 2020-08-24 2020-08-26 217.079.189.204 9757 311 2020-08-17 2020-08-23 094.102.057.152 102322 304 2020-08-19 2020-09-04 178.033.043.046 28189 302 2020-07-01 2020-08-25 185.039.011.175 2324 302 2020-08-17 2020-08-20 094.102.057.153 94833 302 2020-08-19 2020-09-03 094.102.057.172 102599 301 2020-08-19 2020-09-04 185.071.230.051 20907 296 2020-08-27 2020-08-30 045.141.084.124 75251 294 2020-07-27 2020-08-25 170.253.225.123 16418 293 2020-08-28 2020-09-05 094.173.246.111 34031 293 2020-08-10 2020-08-11 066.225.225.225 18205 293 2020-07-28 2020-08-17 107.173.176.100 7828 287 2020-08-08 2020-09-01 069.158.207.141 17485 285 2020-08-09 2020-08-26 051.161.077.197 23380 284 2020-08-17 2020-08-20 193.025.253.076 9377 278 2020-08-31 2020-09-07 174.086.199.032 10946 277 2020-08-23 2020-09-06 173.091.219.058 2031 273 2020-09-06 2020-09-06 185.153.197.052 104782 272 2020-08-14 2020-08-21 185.071.065.248 2748 272 2020-08-12 2020-08-12 051.195.180.042 16885 269 2020-07-20 2020-08-11 207.180.217.011 2149 267 2020-08-20 2020-09-06 081.003.006.170 22189 263 2020-08-22 2020-08-22 198.012.113.138 16398 262 2020-09-01 2020-09-04 051.081.082.036 1313 261 2020-08-07 2020-08-30 160.153.194.235 37643 257 2020-07-23 2020-08-30 194.061.055.107 144159 256 2020-08-08 2020-08-21 130.226.213.194 21060 253 2020-08-07 2020-08-21 092.063.194.064 216799 253 2020-07-15 2020-08-22 067.218.213.110 8589 252 2020-08-14 2020-08-19 047.202.102.064 6647 249 2020-09-07 2020-09-07 081.003.006.162 26407 249 2020-08-15 2020-08-22 051.077.226.195 9461 247 2020-08-17 2020-08-21 139.099.235.077 28882 247 2020-08-16 2020-08-17 167.250.194.129 4710 246 2020-08-07 2020-08-19 074.070.101.248 87422 243 2020-08-17 2020-08-17 185.202.002.149 622126 243 2020-07-25 2020-08-27 194.061.055.081 52530 242 2020-08-27 2020-08-30 213.108.134.156 59791 241 2020-08-12 2020-09-08 083.097.020.035 546 241 2020-08-18 2020-08-17 079.124.062.254 124576 239 2020-04-02 2020-09-02 144.217.062.152 4560 239 2020-08-12 2020-08-19 185.202.001.204 70380 238 2020-08-14 2020-09-04 089.144.047.006 64765 237 2020-08-15 2020-09-02 054.039.131.201 13112 236 2020-08-03 2020-09-01 192.099.089.193 18215 235 2020-08-15 2020-08-15 103.145.013.090 11508 235 2020-08-27 2020-09-05 162.248.088.128 15139 235 2020-08-10 2020-08-25 193.093.062.035 22642 233 2020-08-25 2020-09-08 045.010.088.058 18458 233 2020-08-17 2020-08-24 005.008.018.088 1436425 231 2020-07-20 2020-09-08 192.241.214.027 548 231 2020-08-20 2020-08-22 141.098.010.149 235371 230 2020-07-27 2020-09-07 192.099.159.067 6613 229 2020-09-06 2020-09-06 150.242.097.120 1871 229 2020-07-26 2020-08-11 156.096.119.148 8038 229 2020-08-22 2020-08-29 051.079.173.078 10417 226 2020-09-08 2020-09-08 185.153.196.239 165572 225 2020-07-19 2020-08-11 164.132.233.062 27549 225 2020-08-16 2020-08-18 185.202.001.169 220301 224 2020-07-08 2020-09-03 096.225.080.240 16869 224 2020-08-23 2020-08-23 078.128.113.018 148614 224 2020-07-14 2020-09-08 045.136.108.022 148959 223 2020-07-24 2020-09-07 194.026.029.104 1192353 223 2020-07-23 2020-08-22 051.077.103.234 7944 223 2020-08-15 2020-08-16 193.027.228.031 26721 223 2020-07-25 2020-08-17 195.054.160.223 138517 223 2020-08-13 2020-09-08 142.093.094.049 11472 223 2020-08-20 2020-08-25 081.109.238.128 1489 221 2020-08-18 2020-08-18 185.125.086.081 14148 221 2020-08-26 2020-08-27 045.061.142.183 1385 220 2020-08-19 2020-08-22 185.202.002.132 27874 219 2020-07-16 2020-09-06 092.063.194.070 7842 219 2020-08-02 2020-08-20 185.153.198.239 147063 219 2020-07-20 2020-09-06 213.202.233.056 83843 219 2020-08-13 2020-08-29 084.038.185.029 2070249 218 2020-08-14 2020-09-08 158.069.161.079 4591 217 2020-08-20 2020-09-08 091.241.019.067 94379 216 2020-08-13 2020-09-06 196.053.132.039 6409 216 2020-08-22 2020-08-24 054.038.239.058 4068 215 2020-08-03 2020-08-14 037.049.224.026 6910 215 2020-08-16 2020-08-22 045.095.168.137 6269 214 2020-09-08 2020-09-08 220.164.192.025 5483 213 2020-08-17 2020-08-27 137.116.200.247 3068 212 2020-08-06 2020-08-13 139.099.026.040 13662 212 2020-08-15 2020-08-19 005.188.206.038 44490 210 2020-08-11 2020-08-20 047.224.027.011 6786 210 2020-08-19 2020-08-29 062.210.152.156 3507 210 2020-08-24 2020-08-24 045.145.067.074 120634 210 2020-08-18 2020-08-30 106.003.242.067 6570 210 2020-08-05 2020-09-01 005.188.206.018 683690 209 2020-07-23 2020-09-08 041.216.186.089 52301 209 2020-08-09 2020-08-31 194.026.029.102 1190619 208 2020-07-23 2020-08-22 206.071.159.163 12296 208 2020-07-17 2020-08-16 045.145.067.173 105067 208 2020-08-23 2020-09-07 104.152.052.026 41395 207 2020-08-18 2020-08-26 167.114.165.249 7421 206 2020-08-20 2020-08-23 212.102.035.101 58934 205 2020-08-03 2020-08-19 075.140.081.006 6516 204 2020-08-19 2020-08-23 093.174.093.027 12091 204 2020-09-02 2020-09-06 213.202.233.193 87355 204 2020-08-27 2020-08-29 098.214.100.216 16848 202 2020-09-01 2020-09-02 051.089.191.147 7265 202 2020-08-14 2020-08-15 092.119.160.233 2128 201 2020-07-31 2020-08-11 103.145.012.091 57760 201 2020-08-12 2020-08-14 051.222.029.147 13107 199 2020-08-09 2020-08-20 045.136.108.065 188448 198 2020-07-23 2020-09-07 050.090.016.009 21318 198 2020-08-22 2020-08-23 073.006.021.147 11538 198 2020-08-25 2020-09-02 159.203.116.096 3115 197 2020-08-12 2020-08-12 051.089.108.149 6696 197 2020-08-11 2020-08-31 194.087.139.138 1272 197 2020-08-12 2020-08-30 066.085.014.155 14437 196 2020-07-30 2020-08-23 045.095.168.059 4521 195 2020-08-31 2020-08-31 045.136.108.024 133468 195 2020-07-24 2020-09-07 219.151.022.015 3861 195 2020-08-04 2020-08-16 185.153.199.145 120553 195 2020-07-15 2020-09-01 051.255.109.168 4614 193 2020-07-19 2020-08-17 051.089.239.120 9264 192 2020-08-09 2020-08-25 068.114.136.064 10952 191 2020-08-21 2020-08-22 051.089.188.014 3200 189 2020-08-10 2020-08-12 195.054.161.068 5642474 188 2020-07-17 2020-08-14 213.217.001.250 495559 188 2020-07-26 2020-09-08 075.168.118.081 8048 187 2020-09-02 2020-09-04 193.027.229.086 105748 187 2020-08-14 2020-08-22 134.213.248.196 30009 187 2020-07-25 2020-08-18 167.114.038.137 1500 185 2020-08-28 2020-09-06 066.044.080.068 4317 185 2020-08-23 2020-08-23 045.136.108.067 263090 184 2020-07-24 2020-09-07 078.128.113.050 20246 183 2020-08-19 2020-09-04 072.195.132.231 12974 183 2020-08-27 2020-08-27 013.071.151.118 399 183 2020-09-08 2020-09-08 045.136.108.062 158194 183 2020-07-23 2020-09-07 193.239.084.075 2393 182 2020-08-31 2020-08-31 192.184.008.073 2231 182 2020-08-08 2020-08-26 149.056.181.245 3094 182 2020-08-24 2020-08-29 104.153.105.189 13583 182 2020-07-24 2020-08-22 092.063.194.045 223130 181 2020-07-27 2020-08-11 153.127.070.058 67106 181 2020-08-30 2020-09-07 051.161.009.146 4704 181 2020-08-17 2020-08-17 199.231.233.020 13504 180 2020-08-23 2020-08-26 161.097.099.060 77551 180 2020-08-16 2020-09-07 045.136.108.066 297434 180 2020-07-25 2020-09-07 139.028.216.244 10356 179 2020-08-03 2020-08-14 194.153.186.011 6067 179 2020-08-24 2020-08-26 047.038.246.021 3657 179 2020-08-11 2020-08-11 149.056.035.180 3836 178 2020-07-31 2020-08-24 108.028.227.074 10474 178 2020-08-20 2020-08-20 167.114.177.149 16950 177 2020-08-05 2020-08-12 045.129.033.008 594 175 2020-09-09 2020-09-08 087.251.067.210 143645 175 2020-08-16 2020-09-02 094.102.057.135 53784 175 2020-08-20 2020-09-04 173.030.145.101 6555 175 2020-08-14 2020-08-19 185.039.010.089 52659 175 2020-08-20 2020-09-04 063.091.129.252 4546 174 2020-08-27 2020-08-31 193.093.062.085 15774 174 2020-09-03 2020-09-08 089.248.162.220 52001 174 2020-08-20 2020-09-04 192.184.008.103 1530 172 2020-08-21 2020-08-21 077.020.249.093 8289 172 2020-08-29 2020-08-29 172.105.059.028 1612 172 2020-08-12 2020-08-13 168.090.243.085 8022 172 2020-08-26 2020-08-26 178.079.128.070 1139 172 2020-08-10 2020-08-11 078.047.166.055 1628 170 2020-08-08 2020-08-12 045.148.121.013 8758 170 2020-08-29 2020-08-30 051.161.107.172 17849 170 2020-08-06 2020-08-19 165.232.058.234 5835 170 2020-08-26 2020-08-25 139.099.145.127 8015 170 2020-09-01 2020-09-04 141.098.080.242 121374 170 2020-08-11 2020-08-21 165.232.053.158 3190 169 2020-08-26 2020-08-25 103.153.077.123 1302 169 2020-08-27 2020-08-30 194.015.036.058 13266 169 2020-08-03 2020-08-16 193.070.007.073 17198 168 2020-08-22 2020-08-24 172.093.133.070 761 168 2020-08-28 2020-08-27 206.041.117.136 595 168 2020-08-11 2020-08-11 208.110.085.045 759 168 2020-08-21 2020-08-21 099.194.020.202 6054 168 2020-09-05 2020-09-05 051.075.073.201 1531 167 2020-08-11 2020-08-12 031.146.118.146 226085 166 2020-08-07 2020-09-02 024.013.132.011 2102 166 2020-08-16 2020-08-17 068.080.084.037 13498 166 2020-08-31 2020-09-01 104.148.041.212 1064 164 2020-08-21 2020-08-21 107.162.160.172 801 164 2020-08-19 2020-08-19 141.218.143.078 2721 164 2020-08-15 2020-08-15 195.054.161.136 15004 163 2020-08-25 2020-08-26 047.057.069.127 33374 163 2020-07-18 2020-08-16 185.202.000.112 21601 163 2020-07-26 2020-08-14 035.236.196.224 815 162 2020-08-28 2020-08-27 093.158.239.026 3951 162 2020-08-22 2020-08-24 051.068.202.106 3525 162 2020-07-22 2020-08-14 051.083.180.151 8919 162 2020-08-27 2020-08-27 058.216.141.114 5893 161 2020-09-01 2020-09-07 116.203.002.148 571 161 2020-08-26 2020-08-25 068.007.146.134 4372 160 2020-08-30 2020-09-04 050.071.193.195 5679 160 2020-08-15 2020-08-15 167.114.059.015 1558 160 2020-09-08 2020-09-08 070.176.092.097 15012 160 2020-07-28 2020-08-16 045.148.121.082 159 159 2020-08-27 2020-08-26 051.081.125.158 20774 159 2020-08-06 2020-08-23 045.143.223.132 8135 159 2020-08-12 2020-08-13 103.145.013.084 2269 159 2020-08-25 2020-09-06 051.089.238.019 1116 158 2020-09-01 2020-09-01 107.181.167.147 443 157 2020-08-11 2020-08-11 206.189.085.089 623 157 2020-08-18 2020-08-21 045.061.142.021 6802 157 2020-08-22 2020-08-22 035.189.107.162 11865 155 2020-08-13 2020-08-16 067.087.096.012 519 155 2020-09-07 2020-09-07 148.059.041.227 1352 155 2020-08-08 2020-08-13 045.129.033.024 526 155 2020-09-09 2020-09-08 185.202.001.196 13538 154 2020-07-19 2020-08-16 207.216.090.118 5473 154 2020-08-18 2020-08-19 094.102.049.137 11577 153 2020-09-02 2020-09-06 196.247.057.013 3853 153 2020-07-16 2020-08-13 035.182.214.059 869 153 2020-08-28 2020-08-27 064.094.100.094 11617 153 2020-07-22 2020-08-15 045.084.196.246 5844 153 2020-09-03 2020-09-03 198.204.232.123 1049 152 2020-08-21 2020-08-21 195.034.244.174 1039 152 2020-08-09 2020-08-12 051.195.132.110 6356 152 2020-08-21 2020-08-23 051.089.156.006 4959 152 2020-08-25 2020-08-25 121.147.194.122 6651 151 2020-08-06 2020-08-30 051.081.073.120 5799 150 2020-08-16 2020-09-04 184.090.032.177 8434 150 2020-08-17 2020-08-31 052.223.228.093 1689 150 2020-08-15 2020-08-15 045.084.196.237 11302 150 2020-07-28 2020-08-22 185.039.011.105 223 149 2020-08-27 2020-08-26 082.010.162.106 5116 149 2020-09-05 2020-09-05 045.084.196.073 1244 149 2020-08-09 2020-08-14 045.141.087.042 86029 149 2020-07-23 2020-08-23 092.063.194.047 2418 148 2020-07-20 2020-08-30 165.232.064.006 7423 148 2020-08-30 2020-08-31 069.125.120.052 4770 148 2020-09-03 2020-09-04 192.099.024.061 6436 146 2020-08-30 2020-08-31 194.026.027.122 237 146 2020-09-06 2020-09-06 095.045.133.169 8634 146 2020-08-12 2020-08-29 051.195.180.051 7876 145 2020-07-31 2020-08-11 194.156.098.004 927 144 2020-08-20 2020-08-24 054.036.218.100 1907 144 2020-08-25 2020-08-26 185.202.000.104 46548 144 2020-08-23 2020-08-24 068.206.019.001 390 143 2020-08-19 2020-08-19 202.005.031.167 333 143 2020-08-12 2020-08-12 103.145.013.144 273 143 2020-08-20 2020-08-20 194.026.025.013 395 143 2020-09-05 2020-09-04 068.231.186.245 9373 143 2020-08-18 2020-08-19 142.044.163.050 756 143 2020-08-18 2020-08-18 218.092.000.198 3923726 142 2020-02-18 2020-09-08 141.098.009.036 196552 142 2020-07-31 2020-08-13 207.067.074.252 4991 142 2020-08-25 2020-08-31 066.061.206.199 145 142 2020-09-06 2020-09-06 192.223.030.080 12325 141 2020-07-29 2020-08-27 167.088.007.134 3212 141 2020-08-10 2020-08-24 075.103.176.168 290 141 2020-09-05 2020-09-05 185.202.001.187 14987 141 2020-08-26 2020-09-04 035.202.027.211 141 141 2020-08-22 2020-08-22 024.030.096.197 600 140 2020-09-07 2020-09-07 193.027.228.019 52342 140 2020-08-10 2020-08-24 045.129.033.080 181 140 2020-09-03 2020-09-03 174.251.209.141 2521 140 2020-09-07 2020-09-08 058.213.047.010 6477 139 2020-07-30 2020-08-15 107.175.096.132 1014 139 2020-08-18 2020-08-18 193.106.029.066 844 139 2020-07-18 2020-08-12 218.092.000.202 731486 139 2020-03-13 2020-09-01 209.121.229.110 827 139 2020-09-09 2020-09-09 096.230.185.043 8132 139 2020-08-22 2020-08-23 080.082.078.082 361 138 2020-08-18 2020-08-17 185.153.199.252 144 138 2020-08-16 2020-08-16 035.188.149.132 5633 138 2020-08-14 2020-08-16 099.133.172.106 1311 138 2020-08-30 2020-08-30 203.094.050.218 5370 138 2020-08-23 2020-08-23 193.027.228.011 381245 138 2020-08-13 2020-09-07 195.054.161.227 35830 138 2020-08-20 2020-09-08 218.092.000.203 389505 138 2020-08-04 2020-08-30 142.044.236.006 2529 137 2020-08-30 2020-08-31 192.099.105.191 50534 137 2020-07-11 2020-08-16 218.092.000.195 1762371 137 2020-07-30 2020-09-01 195.002.079.020 856 137 2020-08-16 2020-08-18 138.185.154.009 436 136 2020-08-20 2020-08-19 218.092.000.205 541985 136 2020-08-17 2020-09-05 218.092.000.204 466425 136 2020-05-25 2020-09-08 073.211.141.188 564 136 2020-09-07 2020-09-07 193.027.228.018 66301 136 2020-08-09 2020-08-23 045.134.179.205 32458 135 2020-08-06 2020-08-20 072.222.224.175 395 135 2020-09-09 2020-09-09 193.027.228.015 173527 135 2020-08-09 2020-08-24 185.154.013.013 400544 135 2020-07-12 2020-08-11 005.101.064.077 379502 135 2020-08-08 2020-09-07 188.053.044.129 224 134 2020-08-12 2020-08-12 078.128.113.230 41711 134 2020-08-31 2020-09-01 193.027.228.016 48087 134 2020-08-09 2020-08-24 068.192.107.245 4431 134 2020-09-07 2020-09-07 060.190.226.188 7160 134 2020-08-15 2020-08-18 193.027.228.017 12498 134 2020-08-09 2020-08-24 143.255.140.174 1939 134 2020-09-06 2020-09-07 147.135.031.134 271 134 2020-08-24 2020-08-23 092.063.194.068 129290 134 2020-08-14 2020-08-14 172.089.113.159 2817 134 2020-08-21 2020-08-21 185.176.221.168 6402 134 2020-08-25 2020-08-28 193.027.229.214 2009498 133 2020-07-07 2020-09-03 192.241.233.249 264 133 2020-08-23 2020-08-22 195.054.160.228 372 133 2020-09-04 2020-09-03 141.098.009.071 48707 133 2020-09-06 2020-09-06 018.130.133.085 5160 133 2020-08-26 2020-08-25 060.190.226.189 4991 133 2020-08-15 2020-08-18 104.153.086.227 9831 133 2020-08-28 2020-09-01 218.092.000.201 609232 133 2020-07-29 2020-08-25 092.063.196.028 225 133 2020-08-21 2020-08-20 116.203.207.060 62851 133 2020-07-27 2020-08-31 031.207.047.114 102608 133 2020-08-11 2020-08-19 080.082.064.214 15439 132 2020-08-10 2020-08-14 141.098.009.158 120680 132 2020-08-01 2020-08-15 193.093.062.011 10248 132 2020-08-20 2020-08-20 193.093.062.016 20630 132 2020-08-09 2020-09-01 185.202.002.131 6499 132 2020-08-11 2020-08-30 152.067.062.217 149 132 2020-09-02 2020-09-02 045.125.065.090 37447 132 2020-07-20 2020-09-07 185.153.197.205 116370 132 2020-08-18 2020-09-06 089.248.172.140 8741 132 2020-08-10 2020-08-28 194.061.024.004 58221 132 2020-07-23 2020-08-23 092.063.194.067 33487 132 2020-08-14 2020-08-14 185.153.197.202 109512 132 2020-08-18 2020-09-07 192.241.237.227 263 132 2020-08-20 2020-08-20 192.241.228.037 263 132 2020-08-23 2020-08-23 185.176.221.160 5661 132 2020-08-19 2020-09-06 192.241.239.063 263 132 2020-08-23 2020-08-22 162.243.128.180 251 132 2020-08-22 2020-08-22 193.093.062.064 21925 132 2020-08-25 2020-09-08 178.033.110.205 8432 132 2020-08-13 2020-08-15 113.009.019.146 1819 132 2020-08-14 2020-08-24 091.229.112.016 208 132 2020-08-12 2020-08-12 192.241.223.231 263 132 2020-08-23 2020-08-23 141.098.081.045 36325 132 2020-08-31 2020-09-01 194.031.237.022 23904 132 2020-09-05 2020-09-07 078.128.113.242 35384 132 2020-08-31 2020-09-01 134.122.113.059 131 131 2020-08-19 2020-08-19 192.241.232.072 262 131 2020-08-23 2020-08-23 113.019.072.008 131 131 2020-09-07 2020-09-07 094.102.050.103 256 131 2020-08-28 2020-08-28 118.089.141.044 131 131 2020-08-13 2020-08-13 085.093.020.142 3971 131 2020-08-29 2020-08-29 087.251.075.021 131 131 2020-08-29 2020-08-29 185.202.002.067 484146 131 2020-08-07 2020-09-04 152.067.034.113 138 131 2020-08-28 2020-08-28 182.016.173.050 131 131 2020-09-07 2020-09-07 203.150.130.111 131 131 2020-09-07 2020-09-07 066.228.041.040 131 131 2020-08-16 2020-08-16 164.052.025.226 139 131 2020-08-19 2020-08-19 077.065.011.181 131 131 2020-08-14 2020-08-14 074.125.250.085 1536 131 2020-08-26 2020-09-03 071.068.185.023 8933 131 2020-07-21 2020-08-21 047.093.058.075 131 131 2020-08-30 2020-08-30 089.144.047.017 412080 131 2020-06-18 2020-09-07 027.071.225.129 131 131 2020-09-07 2020-09-07 041.032.126.194 131 131 2020-08-12 2020-08-12 187.121.090.063 145 131 2020-08-28 2020-08-28 080.082.065.204 18174 131 2020-08-24 2020-08-26 217.015.023.253 131 131 2020-08-16 2020-08-16 186.089.234.017 131 131 2020-08-18 2020-08-18 087.251.075.020 131 131 2020-09-03 2020-09-03 082.223.134.050 131 131 2020-08-31 2020-08-31 005.009.089.165 262 131 2020-08-18 2020-08-18 217.013.101.073 504 131 2020-08-17 2020-08-17 212.092.101.155 26272 131 2020-08-18 2020-08-20 042.118.141.178 131 131 2020-09-07 2020-09-07 141.024.115.003 131 131 2020-08-18 2020-08-18 210.047.175.247 135 131 2020-09-08 2020-09-08 031.223.086.226 133 131 2020-08-28 2020-08-28 171.224.181.085 131 131 2020-08-23 2020-08-23 152.067.040.244 140 131 2020-08-31 2020-08-31 027.071.094.174 143 131 2020-09-01 2020-09-01 138.186.112.010 143 131 2020-08-28 2020-08-28 192.241.230.058 262 131 2020-08-23 2020-08-23 079.124.008.077 262 131 2020-08-27 2020-08-27 003.021.151.202 131 131 2020-09-01 2020-09-01 194.061.054.074 58987 131 2020-08-24 2020-09-01 141.098.009.030 322 131 2020-09-08 2020-09-08 186.219.210.058 131 131 2020-08-18 2020-08-18 077.035.063.146 141 131 2020-08-21 2020-08-21 194.031.237.008 2621 131 2020-09-09 2020-09-09 207.180.234.242 131 131 2020-09-07 2020-09-07 036.073.247.162 139 131 2020-09-01 2020-09-01 045.168.041.254 143 131 2020-08-28 2020-08-28 192.241.238.077 262 131 2020-08-23 2020-08-23 140.238.181.116 141 131 2020-09-03 2020-09-03 125.165.247.237 131 131 2020-09-07 2020-09-07 045.129.033.156 184 131 2020-09-01 2020-09-01 140.238.185.188 138 131 2020-08-11 2020-08-11 093.076.169.202 143 131 2020-08-28 2020-08-28 211.222.242.167 131 131 2020-08-24 2020-08-24 001.055.001.030 131 131 2020-09-07 2020-09-07 151.080.047.030 118899 131 2020-08-12 2020-08-13 099.079.071.061 131 131 2020-09-08 2020-09-08 103.247.196.100 131 131 2020-09-07 2020-09-07 194.031.237.026 21118 131 2020-09-02 2020-09-03 171.238.125.148 143 131 2020-08-20 2020-08-19 014.249.150.155 131 131 2020-09-07 2020-09-07 095.216.145.085 131 131 2020-08-15 2020-08-15 187.072.119.025 143 131 2020-08-28 2020-08-28 092.063.196.005 1673 131 2020-09-01 2020-09-01 213.136.094.083 131 131 2020-08-18 2020-08-18 001.172.077.006 133 131 2020-08-28 2020-08-28 152.067.046.033 133 131 2020-08-18 2020-08-18 045.063.078.221 259 131 2020-08-29 2020-08-29 045.131.025.064 131 131 2020-08-27 2020-08-27 080.241.214.010 393 131 2020-09-06 2020-09-06 179.061.098.026 143 131 2020-08-18 2020-08-18 207.180.252.074 131 131 2020-09-06 2020-09-06 062.210.089.046 131 131 2020-09-01 2020-09-01 192.241.235.179 262 131 2020-08-20 2020-08-20 152.067.060.048 140 131 2020-09-02 2020-09-02 201.218.225.162 262 131 2020-09-03 2020-09-03 091.206.015.111 1596 131 2020-09-03 2020-09-03 005.045.071.182 234 131 2020-08-13 2020-08-13 157.230.010.192 131 131 2020-09-07 2020-09-07 113.061.128.163 143 131 2020-08-11 2020-08-11 049.048.124.072 131 131 2020-08-24 2020-08-24 138.094.044.194 143 131 2020-08-28 2020-08-28 117.005.152.149 141 131 2020-08-12 2020-08-12 116.008.246.115 136 131 2020-08-18 2020-08-18 078.128.113.226 36537 131 2020-08-31 2020-09-01 202.043.108.048 262 131 2020-09-03 2020-09-03 103.127.207.102 131 131 2020-08-27 2020-08-27 054.234.199.242 135 131 2020-08-24 2020-08-24 116.109.246.080 131 131 2020-08-16 2020-08-16 061.148.196.178 133 131 2020-08-29 2020-08-29 110.139.027.217 143 131 2020-08-26 2020-08-26 113.160.208.108 131 131 2020-09-07 2020-09-07 125.041.204.205 134 131 2020-09-04 2020-09-04 193.027.228.020 285478 131 2020-08-09 2020-09-07 163.172.105.054 131 131 2020-09-07 2020-09-07 113.163.252.144 143 131 2020-08-26 2020-08-26 014.173.221.012 137 131 2020-08-12 2020-08-12 103.143.007.110 131 131 2020-08-25 2020-08-25 051.083.216.231 379160 131 2020-08-05 2020-09-01 014.248.094.168 131 131 2020-09-07 2020-09-07 051.083.171.004 131 131 2020-08-16 2020-08-16 193.027.228.014 122666 131 2020-08-09 2020-08-13 042.114.175.104 131 131 2020-09-07 2020-09-07 193.027.228.010 88310 131 2020-08-09 2020-08-13 046.010.182.210 137 131 2020-08-22 2020-08-22 203.202.249.070 137 131 2020-09-06 2020-09-06 142.011.252.165 133 131 2020-08-21 2020-08-21 113.160.147.103 258 131 2020-09-07 2020-09-07 185.008.173.011 131 131 2020-09-01 2020-09-01 124.158.010.005 131 131 2020-08-30 2020-08-30 177.149.151.012 131 131 2020-08-28 2020-08-28 072.215.166.216 131 131 2020-08-24 2020-08-24 081.016.161.027 157 131 2020-08-23 2020-08-23 046.082.250.241 133 131 2020-08-28 2020-08-28 185.153.196.243 60497 131 2020-08-09 2020-08-20 045.141.084.111 11434 131 2020-07-28 2020-09-02 110.078.179.166 131 131 2020-09-07 2020-09-07 014.190.053.101 131 131 2020-09-06 2020-09-06 049.233.144.201 131 131 2020-09-01 2020-09-01 185.153.199.087 780 131 2020-09-09 2020-09-09 027.150.017.156 161 131 2020-09-04 2020-09-04 180.242.233.150 131 131 2020-08-11 2020-08-11 062.210.244.171 131 131 2020-09-02 2020-09-02 045.141.086.141 35042 131 2020-08-18 2020-08-26 193.142.146.216 393 131 2020-09-04 2020-09-04 071.009.102.217 131 131 2020-09-03 2020-09-03 180.180.217.200 131 131 2020-09-07 2020-09-07 013.126.020.079 260 131 2020-08-28 2020-08-28 036.079.168.061 131 131 2020-09-07 2020-09-07 091.008.016.018 389 131 2020-09-06 2020-09-06 045.136.108.068 197647 131 2020-07-22 2020-09-04 192.241.221.046 262 131 2020-08-20 2020-08-20 003.090.081.028 131 131 2020-08-17 2020-08-17 197.245.036.189 131 131 2020-08-13 2020-08-13 014.252.062.211 131 131 2020-09-09 2020-09-09 168.138.130.105 134 131 2020-08-25 2020-08-25 014.142.019.238 147 131 2020-08-21 2020-08-21 222.122.158.196 131 131 2020-08-13 2020-08-13 036.066.166.235 155 131 2020-09-06 2020-09-06 177.008.240.002 137 131 2020-08-28 2020-08-28 034.224.006.076 141 131 2020-08-24 2020-08-24 111.253.222.245 132 131 2020-08-18 2020-08-18 095.082.112.173 131 131 2020-08-18 2020-08-18 171.254.150.249 137 131 2020-09-09 2020-09-09 049.234.228.104 131 131 2020-08-13 2020-08-13 061.092.075.200 131 131 2020-08-23 2020-08-23 052.220.062.133 131 131 2020-08-26 2020-08-26 124.040.250.001 131 131 2020-09-08 2020-09-08 185.120.220.230 131 131 2020-09-08 2020-09-08 176.113.115.155 131 131 2020-09-03 2020-09-03 058.186.010.090 143 131 2020-09-08 2020-09-08 212.038.189.099 131 131 2020-08-19 2020-08-19 014.166.226.012 144 131 2020-08-26 2020-08-26 118.070.016.051 131 131 2020-09-07 2020-09-07 179.153.202.242 133 131 2020-09-01 2020-09-01 185.088.178.054 131 131 2020-08-11 2020-08-11 192.241.225.033 148 131 2020-08-23 2020-08-23 091.134.159.096 131 131 2020-08-16 2020-08-16 014.223.053.197 135 131 2020-08-12 2020-08-12 001.053.204.164 131 131 2020-09-04 2020-09-04 192.111.155.092 132 131 2020-09-02 2020-09-02 013.079.224.060 131 131 2020-08-25 2020-08-25 189.091.192.217 143 131 2020-08-28 2020-08-28 045.232.137.133 143 131 2020-08-28 2020-08-28 177.154.136.021 131 131 2020-08-22 2020-08-22 124.070.203.135 131 131 2020-08-22 2020-08-22 036.068.029.201 132 131 2020-08-25 2020-08-25 061.166.143.127 134 131 2020-09-05 2020-09-05 192.099.009.073 131 131 2020-08-11 2020-08-11 171.251.021.137 131 131 2020-09-07 2020-09-07 036.091.083.203 131 131 2020-09-07 2020-09-07 178.134.041.028 143 131 2020-08-17 2020-08-17 180.247.150.160 143 131 2020-08-14 2020-08-14 171.006.241.004 131 131 2020-08-11 2020-08-11 193.093.062.097 24599 131 2020-08-25 2020-09-08 014.254.085.099 131 131 2020-09-07 2020-09-07 049.004.026.094 159 131 2020-08-15 2020-08-15 103.079.096.020 131 131 2020-09-07 2020-09-07 113.182.226.103 141 131 2020-09-01 2020-09-01 193.093.062.088 21664 131 2020-08-25 2020-09-08 082.102.013.219 226 131 2020-09-01 2020-09-01 192.241.229.157 202 131 2020-08-23 2020-08-23 125.166.150.111 141 131 2020-08-21 2020-08-21 195.054.160.083 131 131 2020-08-17 2020-08-17 096.031.067.011 911 131 2020-09-04 2020-09-04 123.023.066.124 132 131 2020-08-26 2020-08-26 089.233.146.106 131 131 2020-08-22 2020-08-22 195.054.167.125 14108 131 2020-07-27 2020-08-31 103.045.173.252 139 131 2020-08-14 2020-08-14 074.091.118.108 439 131 2020-09-03 2020-09-03 183.005.091.085 139 131 2020-08-24 2020-08-24 182.119.100.155 134 131 2020-09-08 2020-09-08 074.207.224.117 131 131 2020-09-06 2020-09-06 198.000.223.100 262 131 2020-08-21 2020-08-21 103.045.183.134 3912 131 2020-08-19 2020-08-19 122.155.046.219 131 131 2020-08-25 2020-08-25 193.093.062.071 22004 131 2020-08-25 2020-09-08 141.098.081.052 13101 131 2020-09-01 2020-09-01 193.093.062.048 21700 131 2020-08-25 2020-09-08 193.093.062.062 22524 131 2020-08-25 2020-09-08 189.148.173.140 131 131 2020-08-22 2020-08-22 167.114.058.193 9409 131 2020-07-26 2020-08-12 193.093.062.049 22225 131 2020-08-25 2020-09-08 014.245.080.103 131 131 2020-09-03 2020-09-03 036.065.090.106 131 131 2020-09-07 2020-09-07 193.093.062.022 22521 131 2020-08-25 2020-09-08 013.127.195.108 131 131 2020-08-27 2020-08-27 125.167.007.041 131 131 2020-09-07 2020-09-07 183.245.248.246 131 131 2020-09-08 2020-09-08 103.086.047.153 142 131 2020-08-21 2020-08-21 108.061.126.160 131 131 2020-09-01 2020-09-01 141.098.081.049 13104 131 2020-09-01 2020-09-01 027.067.132.106 131 131 2020-09-07 2020-09-07 190.207.094.015 131 131 2020-08-31 2020-08-31 201.001.029.105 143 131 2020-08-28 2020-08-28 218.021.102.059 250 131 2020-09-05 2020-09-05 125.026.059.229 133 131 2020-09-09 2020-09-09 042.113.063.041 130 130 2020-09-07 2020-09-07 036.078.200.018 130 130 2020-09-07 2020-09-07 103.145.012.068 130 130 2020-08-13 2020-08-13 013.231.209.008 130 130 2020-08-27 2020-08-27 125.025.131.211 130 130 2020-09-07 2020-09-07 014.164.176.008 142 130 2020-08-21 2020-08-21 001.052.054.193 130 130 2020-09-07 2020-09-07 118.070.146.249 130 130 2020-09-07 2020-09-07 092.063.194.057 130 130 2020-08-13 2020-08-12 144.217.147.255 8809 130 2020-08-03 2020-08-20 085.010.200.030 130 130 2020-08-22 2020-08-22 092.063.197.066 134 130 2020-08-24 2020-08-24 125.164.107.092 130 130 2020-08-24 2020-08-24 013.065.190.077 130 130 2020-08-25 2020-08-25 112.197.193.227 130 130 2020-09-07 2020-09-07 113.189.063.017 130 130 2020-09-07 2020-09-07 117.005.152.145 130 130 2020-09-07 2020-09-07 103.236.192.008 130 130 2020-09-07 2020-09-07 042.113.088.218 130 130 2020-09-07 2020-09-07 054.184.138.141 130 130 2020-08-24 2020-08-24 027.002.032.015 130 130 2020-09-07 2020-09-07 085.203.044.007 130 130 2020-08-25 2020-08-25 116.203.094.089 130 130 2020-08-17 2020-08-17 050.021.179.102 130 130 2020-08-14 2020-08-14 108.077.045.095 130 130 2020-08-21 2020-08-21 051.081.078.252 130 130 2020-08-28 2020-08-28 034.213.210.056 130 130 2020-09-05 2020-09-05 138.185.153.064 9892 130 2020-08-21 2020-08-24 035.169.234.076 130 130 2020-08-24 2020-08-24 094.102.049.191 348 130 2020-08-18 2020-08-17 027.074.247.248 130 130 2020-09-07 2020-09-07 044.235.059.240 130 130 2020-08-24 2020-08-24 087.251.066.030 393 130 2020-08-28 2020-08-28 123.018.169.133 130 130 2020-09-07 2020-09-07 171.244.217.030 130 130 2020-09-07 2020-09-07 104.034.054.237 9724 129 2020-08-18 2020-08-19 087.251.070.071 397 129 2020-08-28 2020-08-28 139.255.199.198 129 129 2020-09-07 2020-09-07 103.145.012.067 129 129 2020-08-11 2020-08-11 170.080.242.022 129 129 2020-08-16 2020-08-16 082.202.249.205 435 129 2020-08-26 2020-08-26 113.178.079.066 129 129 2020-08-25 2020-08-25 101.080.217.089 135 129 2020-08-27 2020-08-27 201.248.230.064 129 129 2020-09-03 2020-09-03 211.020.123.130 135 129 2020-09-09 2020-09-09 051.161.054.144 132 129 2020-09-01 2020-09-01 005.181.217.049 129 129 2020-09-07 2020-09-07 014.177.158.179 129 129 2020-09-07 2020-09-07 104.016.012.251 1908 129 2020-07-22 2020-08-13 113.187.139.010 129 129 2020-08-18 2020-08-18 184.105.188.168 258 129 2020-08-23 2020-08-23 081.021.086.100 129 129 2020-08-31 2020-08-31 036.075.027.052 129 129 2020-09-07 2020-09-07 216.084.206.066 128 128 2020-09-06 2020-09-06 084.201.151.239 513 128 2020-08-30 2020-08-30 193.106.029.210 128 128 2020-09-06 2020-09-06 202.067.094.095 309 128 2020-08-21 2020-08-21 051.210.222.029 3226 128 2020-09-01 2020-09-01 180.242.235.050 128 128 2020-09-07 2020-09-07 018.191.201.106 128 128 2020-09-07 2020-09-07 092.063.196.007 366 128 2020-08-19 2020-08-19 042.200.248.196 128 128 2020-08-28 2020-08-28 156.255.121.094 139 128 2020-08-30 2020-08-30 027.075.169.014 128 128 2020-08-27 2020-08-27 222.186.061.019 262 127 2020-08-16 2020-08-15 178.154.226.126 381 127 2020-09-04 2020-09-04 084.201.181.198 127 127 2020-09-03 2020-09-03 130.193.058.083 127 127 2020-09-07 2020-09-07 130.193.050.086 381 127 2020-09-02 2020-09-02 130.193.058.094 129 127 2020-09-07 2020-09-07 130.193.058.024 127 127 2020-09-07 2020-09-07 178.154.225.079 127 127 2020-09-04 2020-09-04 084.201.178.131 380 127 2020-09-07 2020-09-07 178.154.225.104 127 127 2020-09-02 2020-09-02 084.201.181.113 254 127 2020-09-05 2020-09-05 130.193.049.164 254 127 2020-09-08 2020-09-08 130.193.058.091 127 127 2020-09-08 2020-09-08 178.154.226.189 127 127 2020-09-05 2020-09-05 195.054.160.099 428 127 2020-08-26 2020-08-25 185.111.208.207 127 127 2020-08-16 2020-08-16 178.154.224.029 381 127 2020-09-04 2020-09-04 123.253.124.155 127 127 2020-08-25 2020-08-25 001.179.234.150 133 127 2020-08-29 2020-08-29 130.193.046.181 438 127 2020-09-03 2020-09-03 084.201.178.216 334 127 2020-09-03 2020-09-03 084.201.181.007 382 127 2020-09-03 2020-09-03 130.193.051.090 508 127 2020-09-08 2020-09-08 130.193.057.192 127 127 2020-09-07 2020-09-07 178.154.224.225 254 127 2020-09-01 2020-09-01 130.193.044.175 254 127 2020-09-05 2020-09-05 130.193.044.172 127 127 2020-09-02 2020-09-02 130.193.056.029 254 127 2020-09-03 2020-09-03 076.189.036.118 310 127 2020-09-05 2020-09-05 084.201.167.086 203 127 2020-09-08 2020-09-08 130.193.035.069 127 127 2020-09-02 2020-09-02 130.193.057.034 254 127 2020-09-07 2020-09-07 130.193.036.106 254 127 2020-09-08 2020-09-08 130.193.037.032 127 127 2020-09-03 2020-09-03 130.193.056.154 127 127 2020-09-07 2020-09-07 130.193.056.115 500 127 2020-09-03 2020-09-03 130.193.044.011 127 127 2020-09-05 2020-09-05 130.193.044.166 150 127 2020-09-05 2020-09-05 130.193.045.077 440 127 2020-09-03 2020-09-03 130.193.045.086 422 127 2020-09-05 2020-09-05 130.193.045.109 635 127 2020-09-05 2020-09-05 130.193.046.170 127 127 2020-09-05 2020-09-05 178.154.224.224 381 127 2020-09-04 2020-09-04 178.154.224.202 127 127 2020-09-05 2020-09-05 178.154.224.140 127 127 2020-09-04 2020-09-04 130.193.057.134 127 127 2020-09-04 2020-09-04 130.193.051.183 508 127 2020-09-03 2020-09-03 178.154.224.108 127 127 2020-09-02 2020-09-02 130.193.057.132 254 127 2020-09-04 2020-09-04 130.193.057.120 127 127 2020-09-04 2020-09-04 130.193.057.071 254 127 2020-09-05 2020-09-05 130.193.045.209 127 127 2020-09-05 2020-09-05 178.154.224.084 254 127 2020-09-05 2020-09-05 130.193.045.155 254 127 2020-09-02 2020-09-02 130.193.044.020 254 127 2020-09-02 2020-09-02 190.141.081.139 127 127 2020-08-22 2020-08-22 084.201.175.088 260 127 2020-09-08 2020-09-08 084.201.176.131 254 127 2020-09-07 2020-09-07 084.201.158.175 254 127 2020-09-08 2020-09-08 084.201.158.243 381 127 2020-09-08 2020-09-08 084.201.147.191 127 127 2020-09-05 2020-09-05 084.201.162.214 381 127 2020-09-01 2020-09-01 084.201.147.084 316 127 2020-09-05 2020-09-05 084.201.164.113 127 127 2020-08-31 2020-08-31 084.201.145.242 254 127 2020-09-03 2020-09-03 084.201.164.126 508 127 2020-09-07 2020-09-07 178.154.227.066 254 127 2020-09-04 2020-09-04 084.201.158.148 254 127 2020-09-08 2020-09-08 178.154.227.200 127 127 2020-09-02 2020-09-02 130.193.059.056 497 127 2020-09-03 2020-09-03 084.201.175.155 254 127 2020-09-02 2020-09-02 084.201.148.166 381 127 2020-09-03 2020-09-03 084.201.148.088 381 127 2020-09-03 2020-09-03 084.201.175.134 127 127 2020-09-01 2020-09-01 130.193.058.212 254 127 2020-09-07 2020-09-07 130.193.058.159 127 127 2020-09-04 2020-09-04 084.201.156.005 254 127 2020-09-08 2020-09-08 183.182.119.199 127 127 2020-09-07 2020-09-07 130.193.059.202 506 127 2020-09-07 2020-09-07 084.201.132.125 254 127 2020-09-02 2020-09-02 130.193.059.110 127 127 2020-09-08 2020-09-08 084.201.167.236 254 127 2020-09-07 2020-09-07 084.201.165.078 381 127 2020-09-07 2020-09-07 103.107.191.105 127 127 2020-09-06 2020-09-06 084.201.177.213 381 127 2020-09-07 2020-09-07 084.201.167.039 508 127 2020-09-01 2020-09-01 084.201.166.189 127 127 2020-09-01 2020-09-01 084.201.177.229 127 127 2020-09-01 2020-09-01 178.154.226.227 381 127 2020-09-02 2020-09-02 084.201.171.139 127 127 2020-09-03 2020-09-03 084.201.165.010 381 127 2020-09-07 2020-09-07 084.201.178.121 127 127 2020-09-08 2020-09-08 084.201.128.215 127 127 2020-09-04 2020-09-04 084.201.131.188 381 127 2020-09-03 2020-09-03 084.201.174.032 501 127 2020-09-03 2020-09-03 084.201.176.143 254 127 2020-09-08 2020-09-08 084.201.166.224 127 127 2020-09-07 2020-09-07 084.201.176.148 381 127 2020-09-03 2020-09-03 130.193.058.152 508 127 2020-09-03 2020-09-03 084.201.164.144 254 127 2020-09-01 2020-09-01 045.118.144.076 126 126 2020-08-29 2020-08-29 041.223.030.170 126 126 2020-08-17 2020-08-17 054.073.049.015 126 126 2020-08-29 2020-08-29 051.195.063.199 126 126 2020-08-28 2020-08-28 070.039.111.233 2173 126 2020-08-29 2020-08-29 196.204.014.186 138 126 2020-08-31 2020-08-31 014.152.095.140 129 126 2020-08-15 2020-08-15 058.018.061.182 126 126 2020-09-09 2020-09-09 212.086.115.069 2283 126 2020-08-28 2020-09-04 176.034.061.220 126 126 2020-08-28 2020-08-28 058.218.204.196 126 126 2020-08-13 2020-08-13 151.080.254.188 2591 126 2020-07-21 2020-08-16 051.195.180.048 2997 126 2020-08-27 2020-08-29 054.036.127.137 1477 125 2020-08-25 2020-08-27 110.137.180.184 125 125 2020-09-07 2020-09-07 088.104.108.056 2689 125 2020-09-05 2020-09-05 087.251.066.020 314 125 2020-08-31 2020-08-31 201.253.124.013 124 124 2020-09-03 2020-09-03 094.102.051.017 233 124 2020-09-07 2020-09-06 200.071.113.001 124 124 2020-09-06 2020-09-06 112.115.051.125 134 124 2020-09-03 2020-09-03 157.245.040.104 1283648 124 2020-07-22 2020-08-13 036.090.081.194 126 124 2020-09-05 2020-09-05 103.035.211.108 125 124 2020-09-01 2020-09-01 190.216.105.003 132 124 2020-08-21 2020-08-21 027.077.020.175 125 124 2020-08-25 2020-08-25 079.134.225.086 124 124 2020-08-17 2020-08-17 042.118.112.125 124 124 2020-08-13 2020-08-13 104.160.169.074 1172 123 2020-08-16 2020-08-16 104.131.150.049 221 123 2020-08-21 2020-08-21 120.192.220.028 147 123 2020-09-08 2020-09-08 024.254.197.236 4821 123 2020-08-18 2020-08-18 124.218.048.012 123 123 2020-09-06 2020-09-06 141.098.082.022 191 123 2020-09-09 2020-09-09 045.145.067.014 354631 123 2020-08-02 2020-08-31 194.067.196.012 3317 123 2020-09-02 2020-09-04 210.000.180.116 123 123 2020-09-07 2020-09-07 054.037.204.149 142 123 2020-08-23 2020-08-22 072.217.094.206 3125 122 2020-08-21 2020-08-24 203.150.176.158 145 122 2020-09-07 2020-09-07 185.156.073.057 202 122 2020-09-07 2020-09-06 068.228.232.017 249 122 2020-09-05 2020-09-05 217.055.031.235 122 122 2020-08-21 2020-08-21 054.039.131.219 763 122 2020-08-23 2020-08-22 195.054.167.092 152 122 2020-08-23 2020-08-23 034.221.078.023 122 122 2020-08-29 2020-08-29 130.193.045.238 122 122 2020-09-05 2020-09-05 014.251.203.082 122 122 2020-08-24 2020-08-24 040.118.133.149 244 122 2020-09-01 2020-09-01 091.193.005.058 124 122 2020-08-26 2020-08-26 027.074.244.244 182 122 2020-09-01 2020-09-01 156.214.140.006 121 121 2020-08-15 2020-08-15 193.029.015.130 121 121 2020-08-26 2020-08-26 089.040.073.027 121 121 2020-08-22 2020-08-22 193.029.015.139 121 121 2020-08-26 2020-08-26 185.158.248.041 121 121 2020-08-21 2020-08-21 031.162.027.151 122 121 2020-09-02 2020-09-02 046.020.079.002 121 121 2020-09-09 2020-09-09 114.046.116.035 121 121 2020-09-05 2020-09-04 213.067.145.190 12142 121 2020-08-25 2020-09-01 083.042.053.006 121 121 2020-08-29 2020-08-29 113.184.029.148 121 121 2020-08-20 2020-08-20 223.206.222.159 122 121 2020-08-19 2020-08-19 149.202.098.185 43381 121 2020-08-11 2020-08-11 070.127.244.188 7172 121 2020-08-28 2020-09-02 088.241.071.044 123 120 2020-08-31 2020-08-31 047.104.203.230 1412707 120 2020-09-01 2020-09-02 187.021.128.199 120 120 2020-09-02 2020-09-02 103.054.062.168 120 120 2020-08-27 2020-08-27 051.195.180.046 1170 120 2020-08-26 2020-09-06 084.017.052.151 120 120 2020-08-15 2020-08-15 045.141.087.011 297 120 2020-08-13 2020-08-13 193.029.013.035 270 120 2020-08-23 2020-08-23 190.038.195.254 134 120 2020-08-25 2020-08-25 116.105.136.128 122 120 2020-09-01 2020-09-01 085.113.145.221 120 120 2020-08-30 2020-08-29 059.042.207.115 120 120 2020-08-18 2020-08-18 213.142.134.040 120 120 2020-09-08 2020-09-08 125.027.061.100 119 119 2020-09-05 2020-09-05 140.205.001.005 8393 119 2020-08-14 2020-08-23 172.084.192.028 3468 119 2020-09-09 2020-09-09 176.193.012.179 119 119 2020-08-11 2020-08-11 054.039.235.240 3897 119 2020-08-08 2020-08-16 088.230.180.204 119 119 2020-08-27 2020-08-27 193.093.062.013 363 119 2020-09-01 2020-08-31 113.169.027.037 119 119 2020-08-25 2020-08-25 046.191.137.245 122 119 2020-09-04 2020-09-04 172.067.217.049 22569 119 2020-08-11 2020-08-11 157.047.095.148 119 119 2020-08-17 2020-08-17 001.000.221.114 119 119 2020-08-24 2020-08-24 222.186.160.093 119 119 2020-09-04 2020-09-04 113.170.089.184 120 119 2020-08-31 2020-08-31 198.050.182.128 2789 119 2020-08-07 2020-08-25 036.068.010.170 120 119 2020-08-21 2020-08-21 027.071.085.180 119 119 2020-08-20 2020-08-20 014.176.062.231 119 119 2020-09-08 2020-09-08 104.152.052.022 15786 119 2020-07-20 2020-08-12 180.246.062.177 118 118 2020-08-23 2020-08-23 185.138.121.142 118 118 2020-09-02 2020-09-02 201.048.166.025 120 118 2020-08-23 2020-08-23 180.253.040.103 120 118 2020-09-05 2020-09-05 189.231.040.134 118 118 2020-09-04 2020-09-04 054.038.023.172 1660 118 2020-08-25 2020-08-29 113.189.039.245 118 118 2020-09-03 2020-09-03 201.026.161.133 118 118 2020-08-24 2020-08-24 087.251.066.151 294 118 2020-08-31 2020-08-31 113.160.113.074 118 118 2020-09-08 2020-09-07 097.107.148.113 118 118 2020-09-08 2020-09-08 178.206.073.059 120 118 2020-08-17 2020-08-17 113.186.047.217 118 118 2020-08-13 2020-08-13 045.141.084.041 120 118 2020-08-16 2020-08-16 156.197.173.024 135 118 2020-09-01 2020-09-01 046.167.067.102 118 118 2020-08-14 2020-08-14 095.032.065.178 120 118 2020-08-13 2020-08-13 046.233.240.007 118 118 2020-09-07 2020-09-07 103.224.034.045 118 118 2020-08-27 2020-08-27 125.167.076.198 118 118 2020-09-07 2020-09-07 014.171.157.026 118 118 2020-09-05 2020-09-05 181.036.195.017 118 118 2020-08-28 2020-08-27 027.066.075.075 118 118 2020-08-12 2020-08-12 177.038.076.169 118 118 2020-08-29 2020-08-29 190.039.091.149 119 118 2020-08-29 2020-08-29 061.227.127.230 118 118 2020-08-20 2020-08-20 107.242.113.039 4110 118 2020-09-07 2020-09-07 041.254.066.030 118 118 2020-08-11 2020-08-11 110.093.245.189 119 118 2020-08-17 2020-08-17 036.232.169.014 117 117 2020-08-24 2020-08-24 170.150.162.197 122 117 2020-08-24 2020-08-24 118.071.117.164 117 117 2020-08-11 2020-08-11 113.168.116.074 118 117 2020-09-01 2020-09-01 156.223.013.107 118 117 2020-08-23 2020-08-23 088.250.203.124 118 117 2020-08-20 2020-08-20 157.047.015.135 117 117 2020-08-31 2020-08-31 171.232.167.190 117 117 2020-08-12 2020-08-12 074.069.069.057 153 117 2020-09-08 2020-09-08 167.086.097.028 242 117 2020-08-23 2020-08-23 103.041.046.116 117 117 2020-09-07 2020-09-07 187.140.182.041 117 117 2020-08-28 2020-08-28 120.053.122.233 412 117 2020-09-01 2020-09-01 179.055.211.147 118 117 2020-08-17 2020-08-17 014.247.151.016 118 117 2020-08-19 2020-08-19 132.154.022.151 117 117 2020-09-07 2020-09-07 182.160.034.170 117 117 2020-08-13 2020-08-13 113.185.041.226 117 117 2020-09-06 2020-09-06 014.245.109.099 120 117 2020-08-31 2020-08-31 113.160.203.084 159 117 2020-08-23 2020-08-23 031.173.087.063 117 117 2020-08-25 2020-08-25 036.085.210.066 120 117 2020-08-18 2020-08-18 118.172.228.091 121 117 2020-09-08 2020-09-08 190.075.051.255 117 117 2020-09-09 2020-09-09 117.003.140.140 117 117 2020-09-03 2020-09-03 114.167.154.104 117 117 2020-08-16 2020-08-16 182.053.004.189 124 117 2020-08-29 2020-08-29 172.107.202.166 3093 116 2020-09-04 2020-09-04 176.043.217.127 116 116 2020-08-22 2020-08-22 014.183.054.102 116 116 2020-08-19 2020-08-19 116.097.052.192 116 116 2020-08-24 2020-08-24 091.193.149.227 116 116 2020-09-04 2020-09-04 027.064.008.225 116 116 2020-09-07 2020-09-07 091.229.112.010 184 116 2020-08-12 2020-08-12 190.200.088.157 116 116 2020-08-22 2020-08-22 200.169.003.186 118 116 2020-08-25 2020-08-25 187.066.097.232 116 116 2020-08-16 2020-08-16 114.190.009.002 116 116 2020-08-15 2020-08-15 051.089.254.025 3110 116 2020-08-11 2020-08-25 149.056.007.121 116 116 2020-08-26 2020-08-26 046.185.174.231 117 116 2020-08-19 2020-08-19 185.132.028.043 116 116 2020-09-02 2020-09-02 036.080.183.197 116 116 2020-09-01 2020-09-01 180.248.008.234 118 116 2020-08-19 2020-08-19 176.125.078.198 123 116 2020-08-19 2020-08-19 186.089.246.018 117 116 2020-09-07 2020-09-07 066.085.080.152 2792 116 2020-08-15 2020-08-15 120.209.008.014 116 116 2020-08-19 2020-08-19 036.238.077.197 118 116 2020-08-13 2020-08-13 072.026.024.061 162 116 2020-08-28 2020-08-28 086.060.134.204 116 116 2020-08-21 2020-08-21 042.114.037.213 116 116 2020-09-03 2020-09-03 190.218.035.049 116 116 2020-09-07 2020-09-07 185.070.128.145 116 116 2020-09-06 2020-09-06 092.083.171.184 115 115 2020-09-07 2020-09-07 005.144.061.020 118 115 2020-08-27 2020-08-27 068.192.113.137 549 115 2020-09-07 2020-09-07 093.081.067.212 115 115 2020-09-08 2020-09-08 014.246.026.001 115 115 2020-08-29 2020-08-29 125.166.057.100 119 115 2020-09-02 2020-09-02 041.211.189.026 128 115 2020-09-06 2020-09-06 089.248.166.159 115 115 2020-08-19 2020-08-19 039.106.126.134 631 115 2020-08-31 2020-08-31 014.244.218.065 116 115 2020-09-09 2020-09-09 049.035.006.164 116 115 2020-09-07 2020-09-07 156.212.085.243 115 115 2020-09-03 2020-09-03 078.163.026.014 117 115 2020-08-16 2020-08-16 043.242.210.116 117 115 2020-09-03 2020-09-03 188.237.092.214 115 115 2020-08-13 2020-08-13 049.048.018.074 115 115 2020-08-12 2020-08-12 117.241.120.140 115 115 2020-09-04 2020-09-04 113.176.226.089 117 115 2020-09-01 2020-09-01 190.201.020.231 115 115 2020-09-01 2020-09-01 145.255.000.207 222 115 2020-08-12 2020-08-12 193.169.252.238 337 115 2020-08-28 2020-08-28 078.138.159.243 120 115 2020-08-25 2020-08-25 005.077.185.000 115 115 2020-08-15 2020-08-15 036.079.183.185 117 115 2020-08-19 2020-08-19 159.192.098.151 116 115 2020-08-11 2020-08-11 102.042.107.210 118 115 2020-08-13 2020-08-13 014.229.252.097 114 114 2020-09-08 2020-09-08 109.248.089.177 114 114 2020-08-29 2020-08-29 191.005.166.062 116 114 2020-09-05 2020-09-03 123.025.132.176 114 114 2020-08-15 2020-08-15 180.249.078.138 114 114 2020-09-03 2020-09-03 031.173.240.188 114 114 2020-09-08 2020-09-08 042.113.156.106 117 114 2020-09-07 2020-09-07 101.108.171.224 114 114 2020-08-15 2020-08-15 125.165.205.062 114 114 2020-08-28 2020-08-28 082.197.042.183 126 114 2020-08-28 2020-08-28 113.186.068.171 117 114 2020-08-21 2020-08-21 002.090.093.066 114 114 2020-08-26 2020-08-26 171.248.190.098 114 114 2020-08-24 2020-08-24 122.178.138.093 114 114 2020-09-01 2020-09-01 178.044.187.132 115 114 2020-09-04 2020-09-04 186.088.240.142 114 114 2020-09-01 2020-09-01 113.176.243.152 114 114 2020-09-01 2020-09-01 084.232.231.135 114 114 2020-08-11 2020-08-11 152.168.232.142 119 114 2020-09-04 2020-09-04 197.046.231.219 115 114 2020-08-24 2020-08-24 206.189.150.103 114 114 2020-08-20 2020-08-20 171.224.011.208 116 114 2020-08-23 2020-08-23 051.161.012.231 245 114 2020-08-18 2020-08-17 193.027.228.198 394044 114 2020-07-18 2020-08-31 183.080.159.054 114 114 2020-09-09 2020-09-09 095.091.228.109 2728 114 2020-08-20 2020-08-20 036.080.158.055 115 114 2020-08-15 2020-08-15 084.002.004.177 119 114 2020-08-26 2020-08-26 220.129.006.050 113 113 2020-09-02 2020-09-02 118.070.099.042 113 113 2020-08-28 2020-08-28 117.004.085.216 119 113 2020-08-26 2020-08-26 190.077.086.056 113 113 2020-09-06 2020-09-06 114.088.104.237 119 113 2020-08-31 2020-08-31 202.152.019.178 113 113 2020-08-21 2020-08-21 042.116.106.052 113 113 2020-08-16 2020-08-16 014.230.215.153 113 113 2020-08-16 2020-08-16 112.029.174.242 113 113 2020-09-02 2020-09-02 103.018.161.007 113 113 2020-08-16 2020-08-16 041.129.074.007 115 113 2020-08-21 2020-08-21 001.055.239.061 113 113 2020-09-01 2020-09-01 082.222.114.166 114 113 2020-08-14 2020-08-14 157.037.151.142 113 113 2020-09-01 2020-09-01 190.133.198.209 113 113 2020-08-11 2020-08-11 078.170.155.217 113 113 2020-08-28 2020-08-28 102.166.130.088 113 113 2020-08-29 2020-08-29 156.219.188.218 113 113 2020-09-06 2020-09-06 157.047.056.024 113 113 2020-08-16 2020-08-16 184.082.105.181 113 113 2020-08-14 2020-08-14 193.032.163.068 119 113 2020-09-09 2020-09-09 110.077.218.195 113 113 2020-09-01 2020-09-01 093.105.072.140 642 113 2020-08-24 2020-08-24 117.002.185.161 115 113 2020-08-19 2020-08-19 152.067.060.228 124 113 2020-08-24 2020-08-24 064.227.030.077 113 113 2020-08-11 2020-08-11 190.074.037.048 113 113 2020-08-15 2020-08-15 036.074.155.204 113 113 2020-09-06 2020-09-06 167.114.096.120 2085 113 2020-09-04 2020-09-04 018.136.126.196 117 113 2020-08-30 2020-08-30 195.054.161.250 113 113 2020-09-01 2020-09-01 066.194.234.102 113 113 2020-08-19 2020-08-19 125.165.001.064 115 113 2020-08-17 2020-08-17 190.072.055.068 113 113 2020-09-09 2020-09-09 210.056.016.170 115 113 2020-08-11 2020-08-11 081.032.018.133 113 112 2020-09-07 2020-09-07 180.254.246.239 112 112 2020-08-12 2020-08-12 185.203.072.017 1321 112 2020-08-25 2020-08-26 118.170.202.221 115 112 2020-09-02 2020-09-02 139.099.155.252 392 112 2020-09-07 2020-09-07 202.071.149.090 118 112 2020-09-09 2020-09-09 045.153.203.136 29836 112 2020-08-27 2020-08-31 001.179.232.081 112 112 2020-08-27 2020-08-27 123.024.164.130 112 112 2020-08-18 2020-08-18 087.251.066.070 245 112 2020-08-31 2020-08-31 113.165.236.224 112 112 2020-09-07 2020-09-07 197.038.127.075 112 112 2020-08-23 2020-08-23 113.189.241.223 113 112 2020-09-09 2020-09-09 190.198.223.229 118 112 2020-08-15 2020-08-15 049.036.224.055 112 112 2020-09-03 2020-09-03 027.073.054.071 112 112 2020-09-09 2020-09-09 014.172.254.090 113 112 2020-09-01 2020-09-01 014.237.215.103 112 112 2020-08-14 2020-08-14 180.246.169.006 112 112 2020-08-31 2020-08-30 202.181.136.036 114 112 2020-08-22 2020-08-22 061.094.149.000 115 112 2020-09-06 2020-09-06 123.028.037.112 112 112 2020-09-03 2020-09-03 005.129.180.023 116 112 2020-08-11 2020-08-11 113.053.061.112 113 111 2020-08-26 2020-08-26 117.006.242.036 111 111 2020-09-08 2020-09-08 186.183.051.142 118 111 2020-08-18 2020-08-18 145.239.204.117 7609 111 2020-08-17 2020-08-27 014.182.213.033 111 111 2020-09-07 2020-09-07 196.234.173.097 114 111 2020-09-01 2020-09-01 125.166.003.033 111 111 2020-08-12 2020-08-12 045.061.142.147 152 111 2020-08-29 2020-08-29 034.125.219.046 377 111 2020-09-06 2020-09-06 186.023.028.014 184 111 2020-09-04 2020-09-04 003.228.117.187 2665 111 2020-09-08 2020-09-08 112.085.042.104 292 111 2020-08-14 2020-08-13 101.050.081.130 111 111 2020-08-15 2020-08-15 070.127.237.164 6440 111 2020-08-28 2020-09-02 181.037.040.134 111 111 2020-09-07 2020-09-07 190.078.025.090 112 111 2020-08-12 2020-08-12 079.124.062.054 264 111 2020-09-01 2020-09-01 187.188.141.246 111 111 2020-08-13 2020-08-13 024.050.227.201 166 111 2020-08-12 2020-08-12 190.074.036.123 111 111 2020-08-29 2020-08-29 036.094.033.073 111 110 2020-09-07 2020-09-07 073.074.161.046 588 110 2020-09-07 2020-09-07 134.019.148.250 110 110 2020-08-20 2020-08-20 193.027.228.140 223 110 2020-08-19 2020-08-19 178.092.095.222 112 110 2020-09-03 2020-09-03 187.011.252.059 110 110 2020-08-12 2020-08-12 216.030.159.174 6731 110 2020-08-18 2020-08-21 069.253.223.185 296 110 2020-09-07 2020-09-07 186.095.119.179 110 110 2020-08-20 2020-08-20 159.192.236.181 110 110 2020-08-28 2020-08-28 183.081.035.090 220 110 2020-09-03 2020-09-03 185.176.027.042 281 110 2020-09-08 2020-09-07 180.254.021.154 110 110 2020-08-27 2020-08-27 190.199.118.023 110 110 2020-08-15 2020-08-15 036.077.094.145 112 110 2020-08-14 2020-08-14 171.229.066.180 110 110 2020-08-15 2020-08-15 085.108.098.239 110 110 2020-08-13 2020-08-13 088.246.131.000 111 110 2020-09-09 2020-09-09 036.090.254.194 110 110 2020-09-01 2020-09-01 179.242.045.090 110 110 2020-08-12 2020-08-12 098.186.219.183 4080 110 2020-09-02 2020-09-02 200.093.087.252 110 110 2020-08-15 2020-08-15 014.189.125.240 110 110 2020-09-07 2020-09-07 036.072.081.070 115 110 2020-08-29 2020-08-29 157.245.182.098 2446 110 2020-08-24 2020-08-23 194.045.197.028 186 110 2020-08-29 2020-08-29 122.222.248.103 111 110 2020-08-20 2020-08-19 031.148.061.156 110 110 2020-08-27 2020-08-27 186.094.088.215 109 109 2020-09-01 2020-09-01 042.115.018.226 118 109 2020-08-18 2020-08-18 014.188.184.065 111 109 2020-09-08 2020-09-08 068.195.144.086 291 109 2020-09-07 2020-09-07 105.232.022.036 110 109 2020-08-27 2020-08-27 117.005.148.209 113 109 2020-08-24 2020-08-24 023.094.021.090 4178 109 2020-08-29 2020-09-01 174.048.176.076 201 109 2020-08-25 2020-08-25 189.039.124.038 109 109 2020-08-11 2020-08-11 014.190.202.026 110 109 2020-08-28 2020-08-28 213.141.249.172 109 109 2020-08-30 2020-08-30 001.034.031.145 110 109 2020-09-04 2020-09-04 190.038.197.022 109 109 2020-08-29 2020-08-29 075.048.086.155 441 109 2020-09-07 2020-09-07 145.239.205.026 20081 109 2020-08-03 2020-08-19 118.071.042.130 109 109 2020-08-21 2020-08-21 014.250.085.135 109 109 2020-08-11 2020-08-11 114.026.153.032 111 109 2020-08-15 2020-08-15 095.156.091.134 110 109 2020-09-06 2020-09-06 082.044.145.131 2257 109 2020-08-21 2020-08-21 095.010.002.060 108 108 2020-09-08 2020-09-08 110.136.218.022 112 108 2020-09-08 2020-09-08 045.228.241.181 111 108 2020-08-27 2020-08-27 095.084.030.241 109 108 2020-08-28 2020-08-28 190.072.197.098 120 108 2020-09-02 2020-09-02 111.252.115.146 108 108 2020-09-08 2020-09-08 051.089.203.110 2086 108 2020-08-30 2020-09-01 103.145.096.232 108 108 2020-09-09 2020-09-09 183.081.123.188 109 108 2020-09-01 2020-09-01 125.164.238.002 109 108 2020-08-31 2020-08-31 174.237.135.123 142 108 2020-09-05 2020-09-05 059.096.136.149 108 108 2020-08-25 2020-08-25 037.233.044.198 109 108 2020-08-20 2020-08-20 087.251.075.124 1177 107 2020-09-08 2020-09-08 041.210.146.058 108 107 2020-08-25 2020-08-25 197.015.087.096 107 107 2020-09-03 2020-09-03 036.076.141.087 107 107 2020-08-21 2020-08-21 190.073.001.195 108 107 2020-08-31 2020-08-31 180.247.071.030 111 107 2020-09-06 2020-09-06 201.243.035.047 107 107 2020-08-16 2020-08-15 095.071.140.223 107 107 2020-09-03 2020-09-03 146.196.046.041 107 107 2020-08-27 2020-08-27 135.181.004.161 107 107 2020-08-11 2020-08-11 194.026.027.142 131 107 2020-09-05 2020-09-05 196.013.111.145 107 107 2020-08-27 2020-08-27 095.246.119.157 108 107 2020-09-02 2020-09-02 001.162.126.079 108 107 2020-08-18 2020-08-18 181.045.176.167 107 107 2020-08-31 2020-08-31 190.039.091.092 108 107 2020-08-25 2020-08-25 185.176.027.222 3110 107 2020-08-23 2020-09-04 185.193.088.003 2138 107 2020-09-02 2020-09-02 043.251.252.024 109 107 2020-08-22 2020-08-22 109.187.079.017 107 107 2020-08-20 2020-08-20 051.039.079.009 114 107 2020-08-15 2020-08-15 203.119.159.121 6873 107 2020-08-14 2020-08-24 178.170.040.029 108 107 2020-08-29 2020-08-29 087.251.075.254 223 107 2020-09-02 2020-09-02 014.192.213.093 108 107 2020-08-29 2020-08-29 066.175.240.138 9257 107 2020-09-01 2020-09-03 087.251.066.100 217 107 2020-08-31 2020-08-31 190.120.248.131 107 107 2020-08-21 2020-08-21 109.226.107.158 107 107 2020-09-04 2020-09-04 091.126.202.167 107 107 2020-08-16 2020-08-16 045.134.026.110 146 107 2020-09-08 2020-09-08 125.164.106.112 107 107 2020-08-31 2020-08-31 095.217.181.201 29320 107 2020-08-18 2020-08-18 091.200.113.217 209 106 2020-08-13 2020-08-13 091.239.105.153 107 106 2020-09-04 2020-09-04 095.217.226.208 108 106 2020-09-02 2020-09-02 002.190.208.189 106 106 2020-08-12 2020-08-12 070.124.096.065 366 106 2020-08-17 2020-08-17 213.032.122.027 149 106 2020-09-01 2020-09-01 143.178.095.159 2108 106 2020-09-07 2020-09-07 117.236.185.146 107 106 2020-08-22 2020-08-22 049.183.149.050 242 106 2020-09-07 2020-09-07 188.006.176.075 106 106 2020-08-24 2020-08-24 118.070.177.108 107 106 2020-08-29 2020-08-29 045.252.248.027 180 106 2020-08-22 2020-08-22 171.248.254.053 108 106 2020-08-18 2020-08-18 147.135.009.079 977 106 2020-09-01 2020-09-01 036.233.082.170 106 106 2020-08-30 2020-08-30 185.200.118.036 106 106 2020-08-11 2020-08-11 018.157.194.006 365 106 2020-08-19 2020-08-19 068.011.226.084 3800 106 2020-08-28 2020-08-28 201.210.072.182 108 106 2020-08-28 2020-08-27 054.039.131.171 17761 106 2020-08-11 2020-08-12 180.183.246.178 108 106 2020-09-02 2020-09-02 118.069.240.028 107 106 2020-08-31 2020-08-31 197.051.193.035 108 106 2020-08-26 2020-08-26 078.168.144.106 107 106 2020-08-23 2020-08-23 001.168.139.137 109 106 2020-08-26 2020-08-26 103.115.196.118 107 106 2020-08-29 2020-08-29 074.091.122.240 160 106 2020-08-14 2020-08-14 014.233.079.058 107 106 2020-09-03 2020-09-03 095.009.174.212 106 105 2020-08-17 2020-08-17 179.006.204.210 106 105 2020-08-16 2020-08-16 073.240.247.176 262 105 2020-08-22 2020-08-22 202.142.177.130 105 105 2020-08-28 2020-08-28 098.144.026.222 325 105 2020-09-04 2020-09-04 125.161.092.171 105 105 2020-09-04 2020-09-04 002.091.247.086 106 105 2020-09-02 2020-09-02 014.226.142.146 105 105 2020-09-09 2020-09-09 072.050.027.175 106 105 2020-08-14 2020-08-14 125.212.138.022 268 105 2020-09-01 2020-09-01 193.106.029.122 113 105 2020-08-20 2020-08-20 072.209.050.024 421 105 2020-09-07 2020-09-07 078.177.012.138 106 105 2020-09-08 2020-09-08 036.073.133.176 106 105 2020-08-24 2020-08-24 197.047.190.199 106 105 2020-09-01 2020-09-01 217.055.232.100 108 105 2020-08-12 2020-08-12 193.108.117.083 117 105 2020-08-22 2020-08-22 085.255.191.228 106 105 2020-09-02 2020-09-02 041.034.172.110 105 105 2020-08-26 2020-08-26 172.086.114.071 113 105 2020-09-09 2020-09-09 194.026.025.102 197 105 2020-09-06 2020-09-05 171.232.250.119 105 105 2020-08-29 2020-08-29 042.115.174.142 107 105 2020-09-07 2020-09-07 062.197.243.172 104 104 2020-09-03 2020-09-03 005.145.211.133 106 104 2020-08-13 2020-08-13 171.252.155.086 104 104 2020-09-07 2020-09-07 171.234.009.038 105 104 2020-09-02 2020-09-02 145.133.127.217 4157 104 2020-08-24 2020-08-25 105.226.089.112 104 104 2020-08-28 2020-08-28 117.214.105.009 104 104 2020-09-05 2020-09-05 014.181.218.200 104 104 2020-08-11 2020-08-11 186.237.050.109 1552 104 2020-08-12 2020-08-12 171.242.056.153 104 104 2020-08-25 2020-08-25 117.004.084.081 105 104 2020-09-04 2020-09-04 051.079.156.090 7643 104 2020-08-21 2020-08-21 113.179.095.114 107 104 2020-08-30 2020-08-30 205.174.034.033 4124 104 2020-09-01 2020-09-02 192.223.027.018 163 104 2020-08-26 2020-08-26 186.093.114.144 104 104 2020-08-30 2020-08-30 171.255.255.115 104 104 2020-08-20 2020-08-20 061.224.187.176 109 104 2020-08-31 2020-08-31 198.012.032.123 6165 104 2020-08-05 2020-09-04 205.185.123.147 106 104 2020-08-19 2020-08-19 041.155.245.177 107 104 2020-08-29 2020-08-29 002.050.025.011 105 104 2020-09-02 2020-09-02 095.090.208.098 3068 104 2020-08-31 2020-08-31 109.120.046.008 106 104 2020-08-15 2020-08-15 200.122.210.002 104 104 2020-09-06 2020-09-06 212.252.137.000 105 104 2020-08-17 2020-08-17 180.241.236.064 107 104 2020-09-01 2020-09-01 190.201.168.029 103 103 2020-08-30 2020-08-30 212.241.024.207 103 103 2020-08-20 2020-08-20 185.127.024.185 106 103 2020-08-12 2020-08-12 101.051.000.120 103 103 2020-08-28 2020-08-28 086.003.134.223 908 103 2020-09-04 2020-09-04 067.205.137.100 182 103 2020-08-15 2020-08-15 051.089.185.027 1180 103 2020-08-25 2020-08-25 185.111.165.137 106 103 2020-08-21 2020-08-21 123.231.123.138 106 103 2020-09-01 2020-09-01 185.227.137.028 103 103 2020-08-11 2020-08-11 185.175.093.014 241 103 2020-08-20 2020-08-19 177.097.146.100 103 103 2020-08-31 2020-08-31 042.114.039.075 103 103 2020-09-04 2020-09-04 014.190.250.129 103 103 2020-08-18 2020-08-18 203.217.118.174 103 103 2020-09-07 2020-09-07 064.040.008.148 1851 103 2020-08-15 2020-08-17 041.038.070.214 108 103 2020-08-20 2020-08-20 152.000.157.114 104 103 2020-08-26 2020-08-26 178.207.079.047 105 103 2020-09-03 2020-09-03 036.079.240.194 103 103 2020-09-07 2020-09-07 118.070.128.031 103 103 2020-08-25 2020-08-25 067.167.060.021 467 103 2020-09-07 2020-09-07 195.054.161.230 125 103 2020-08-28 2020-08-28 114.041.050.013 104 103 2020-08-14 2020-08-14 154.125.030.148 103 103 2020-09-03 2020-09-03 112.232.145.013 107 103 2020-08-12 2020-08-12 113.181.138.244 103 103 2020-08-18 2020-08-18 071.105.115.240 359 103 2020-08-20 2020-08-20 095.058.078.006 103 103 2020-09-04 2020-09-04 113.167.068.181 105 103 2020-09-03 2020-09-03 036.080.013.211 103 103 2020-09-04 2020-09-03 069.047.151.044 207 103 2020-09-05 2020-09-05 014.191.003.047 102 102 2020-08-13 2020-08-13 103.021.077.046 104 102 2020-08-18 2020-08-18 034.238.050.095 107 102 2020-09-08 2020-09-08 093.174.093.045 108 102 2020-08-13 2020-08-13 123.131.165.155 204 102 2020-08-27 2020-08-27 187.057.179.011 105 102 2020-08-17 2020-08-17 078.179.128.189 102 102 2020-09-03 2020-09-03 186.089.230.157 102 102 2020-08-21 2020-08-20 101.108.213.134 105 102 2020-08-21 2020-08-21 111.250.075.179 102 102 2020-08-29 2020-08-29 077.030.078.253 103 102 2020-09-03 2020-09-03 208.096.134.204 105 102 2020-08-27 2020-08-27 069.202.149.141 3678 102 2020-08-15 2020-08-15 001.054.213.180 102 102 2020-08-30 2020-08-30 201.208.000.175 102 102 2020-09-03 2020-09-03 036.090.018.103 104 102 2020-09-01 2020-09-01 036.065.195.173 105 102 2020-08-29 2020-08-29 036.068.014.085 112 102 2020-08-27 2020-08-27 129.213.153.014 150 102 2020-08-25 2020-08-24 186.089.013.035 114 102 2020-09-06 2020-09-06 078.174.236.178 102 102 2020-09-01 2020-09-01 182.189.220.144 102 102 2020-08-24 2020-08-24 045.076.165.036 1627 102 2020-08-18 2020-08-17 044.234.074.057 13761 102 2020-08-19 2020-08-19 192.099.092.106 262 102 2020-08-23 2020-08-23 014.177.002.027 102 102 2020-08-23 2020-08-23 125.160.064.164 102 102 2020-09-05 2020-09-05 036.081.052.083 102 102 2020-08-19 2020-08-19 194.026.025.008 175 101 2020-09-07 2020-09-06 178.213.201.188 103 101 2020-08-16 2020-08-15 123.019.044.038 104 101 2020-09-04 2020-09-04 068.184.104.107 3995 101 2020-09-04 2020-09-04 091.229.112.004 150 101 2020-08-12 2020-08-12 200.093.094.224 102 101 2020-08-28 2020-08-28 141.105.040.047 101 101 2020-09-01 2020-09-01 014.253.096.032 104 101 2020-09-03 2020-09-03 103.079.142.056 10660 101 2020-08-19 2020-08-25 062.076.012.123 104 101 2020-08-18 2020-08-18 014.166.185.043 101 101 2020-08-23 2020-08-23 100.011.065.102 8789 101 2020-08-15 2020-08-15 202.134.114.106 114 101 2020-08-15 2020-08-15 036.090.069.139 102 101 2020-08-25 2020-08-25 140.205.001.006 7073 101 2020-08-14 2020-08-23 180.242.188.072 101 101 2020-08-27 2020-08-27 202.107.226.003 5357 101 2020-08-01 2020-08-11 202.107.226.002 6340 101 2020-08-01 2020-08-11 095.156.252.094 103 101 2020-08-15 2020-08-15 186.090.036.195 101 101 2020-08-11 2020-08-11 190.073.226.153 100 100 2020-09-03 2020-09-03 186.095.039.245 102 100 2020-08-14 2020-08-14 183.080.221.125 106 100 2020-08-31 2020-08-31 190.206.098.121 100 100 2020-08-20 2020-08-20 087.251.066.090 179 100 2020-08-31 2020-08-31 065.024.202.172 4787 100 2020-08-19 2020-08-19 041.236.152.170 102 100 2020-08-30 2020-08-30 092.049.163.046 100 100 2020-08-20 2020-08-20 180.242.182.185 100 100 2020-08-13 2020-08-13 193.027.229.207 123 100 2020-08-15 2020-08-15 189.190.147.059 257 100 2020-08-21 2020-08-21 041.046.129.127 101 100 2020-08-27 2020-08-27 001.172.138.099 102 100 2020-08-29 2020-08-29 014.189.053.017 100 100 2020-08-12 2020-08-12 149.056.225.158 5091 100 2020-08-07 2020-08-19 068.008.183.072 160 100 2020-09-08 2020-09-08 210.018.141.066 100 100 2020-08-25 2020-08-25 158.069.176.165 136 100 2020-08-20 2020-08-20 116.024.154.097 103 100 2020-08-17 2020-08-17 157.034.026.158 100 99 2020-09-08 2020-09-08 190.248.142.138 99 99 2020-08-12 2020-08-12 109.254.101.082 99 99 2020-08-31 2020-08-31 051.159.094.166 102 99 2020-08-20 2020-08-20 091.236.116.038 99 99 2020-08-22 2020-08-21 005.139.164.053 99 99 2020-08-25 2020-08-25 181.049.253.089 100 99 2020-08-23 2020-08-23 092.049.187.026 101 99 2020-08-15 2020-08-15 192.095.021.096 119 99 2020-08-19 2020-08-19 195.128.139.109 101 99 2020-08-24 2020-08-24 014.250.242.220 99 99 2020-08-31 2020-08-31 119.161.103.222 99 99 2020-09-02 2020-09-02 125.160.193.012 103 99 2020-09-07 2020-09-07 088.234.079.095 100 99 2020-08-19 2020-08-19 046.119.166.126 100 99 2020-09-08 2020-09-08 190.153.036.041 99 99 2020-09-09 2020-09-09 190.073.245.067 99 99 2020-09-06 2020-09-05 195.054.167.174 130 99 2020-08-23 2020-08-23 192.223.026.180 817 99 2020-08-24 2020-08-24 157.050.021.214 894 99 2020-08-23 2020-08-23 171.236.076.089 100 99 2020-08-18 2020-08-18 190.217.043.174 100 99 2020-09-09 2020-09-09 043.242.228.182 101 99 2020-09-03 2020-09-03 189.037.065.030 99 99 2020-09-04 2020-09-04 190.206.209.051 98 98 2020-09-06 2020-09-06 173.248.236.139 99 98 2020-08-18 2020-08-18 036.083.097.174 98 98 2020-08-21 2020-08-21 186.193.121.170 102 98 2020-08-24 2020-08-24 036.085.119.171 98 98 2020-08-13 2020-08-13 083.097.020.031 152 98 2020-08-31 2020-08-30 089.248.160.178 244 98 2020-08-13 2020-08-12 168.187.042.066 101 98 2020-08-17 2020-08-17 108.059.011.117 99 98 2020-08-24 2020-08-24 027.004.031.088 98 98 2020-08-19 2020-08-19 193.025.253.013 283 98 2020-09-01 2020-09-01 132.251.225.147 101 98 2020-08-22 2020-08-22 223.255.246.190 100 98 2020-08-12 2020-08-12 058.187.175.228 98 98 2020-09-08 2020-09-08 118.096.172.011 98 98 2020-08-21 2020-08-21 049.036.148.046 99 98 2020-08-13 2020-08-13 049.085.008.031 98 98 2020-08-12 2020-08-12 039.041.235.049 101 98 2020-08-31 2020-08-31 068.197.086.246 1157 98 2020-09-05 2020-09-05 117.005.153.200 99 98 2020-08-25 2020-08-25 041.046.237.104 99 97 2020-08-29 2020-08-29 193.093.062.061 215 97 2020-08-30 2020-08-29 216.155.081.015 97 97 2020-08-25 2020-08-25 014.183.120.106 98 97 2020-09-04 2020-09-04 137.074.155.103 116 97 2020-08-13 2020-08-13 031.007.107.218 98 97 2020-08-22 2020-08-22 088.230.232.117 99 97 2020-08-31 2020-08-31 041.244.231.081 97 97 2020-09-01 2020-09-01 001.052.251.090 97 97 2020-08-24 2020-08-24 190.200.082.074 97 97 2020-08-16 2020-08-15 125.166.167.054 97 97 2020-08-27 2020-08-27 036.074.043.229 98 97 2020-09-06 2020-09-06 217.025.210.082 100 97 2020-08-20 2020-08-20 139.028.036.020 5222 97 2020-08-22 2020-08-24 069.160.002.219 98 97 2020-08-23 2020-08-23 045.145.067.039 109 97 2020-08-12 2020-08-12 117.220.176.061 97 97 2020-08-28 2020-08-28 001.052.141.044 97 97 2020-09-07 2020-09-07 041.069.112.015 97 97 2020-08-16 2020-08-16 166.177.057.024 3822 97 2020-08-22 2020-08-21 182.215.000.053 108 97 2020-08-27 2020-08-27 115.073.126.181 97 97 2020-09-05 2020-09-05 095.184.242.073 97 97 2020-08-28 2020-08-28 176.250.070.143 1938 97 2020-08-28 2020-08-28 190.207.095.095 97 97 2020-09-01 2020-09-01 001.165.066.120 97 97 2020-08-30 2020-08-30 194.026.025.116 116 97 2020-09-09 2020-09-09 185.202.001.124 198 96 2020-08-18 2020-08-18 117.027.239.069 7749 96 2020-08-16 2020-08-22 180.244.184.084 96 96 2020-08-31 2020-08-31 095.024.183.089 98 96 2020-08-28 2020-08-28 195.054.160.155 293 96 2020-08-30 2020-08-29 096.009.152.047 96 96 2020-08-24 2020-08-24 075.086.234.033 186967 96 2020-07-13 2020-08-11 187.190.011.054 97 96 2020-09-01 2020-08-31 018.234.052.211 96 96 2020-08-17 2020-08-17 125.026.144.130 96 96 2020-08-19 2020-08-19 186.088.126.140 96 96 2020-08-19 2020-08-19 123.018.088.103 96 96 2020-09-04 2020-09-04 066.181.184.089 102 96 2020-09-02 2020-09-02 046.098.182.147 99 96 2020-08-11 2020-08-11 092.023.040.232 4633 96 2020-09-01 2020-09-02 193.123.031.104 125 96 2020-08-26 2020-08-25 177.190.167.005 2867 96 2020-09-03 2020-09-04 002.178.131.087 96 96 2020-08-13 2020-08-13 092.234.194.058 1739 96 2020-08-20 2020-08-20 114.027.005.094 100 96 2020-08-31 2020-08-31 200.084.103.186 96 96 2020-08-13 2020-08-13 185.200.037.179 98 96 2020-08-29 2020-08-29 180.247.073.200 96 96 2020-08-31 2020-08-31 159.000.202.064 101 96 2020-09-05 2020-09-05 138.201.082.099 394 96 2020-08-31 2020-08-31 174.091.015.205 3957 96 2020-09-04 2020-09-04 171.252.154.139 95 95 2020-08-22 2020-08-22 178.137.239.013 95 95 2020-08-20 2020-08-20 070.039.109.164 1576 95 2020-08-27 2020-08-27 170.239.074.234 102 95 2020-08-13 2020-08-13 061.196.003.204 96 95 2020-08-28 2020-08-28 086.154.212.004 159 95 2020-08-26 2020-08-26 036.068.240.073 95 95 2020-09-07 2020-09-07 096.010.161.003 446512 95 2020-08-25 2020-08-26 111.221.029.254 128 95 2020-08-24 2020-08-23 001.020.094.231 95 95 2020-09-04 2020-09-04 194.026.025.108 99 95 2020-09-05 2020-09-05 116.206.040.084 95 95 2020-08-24 2020-08-24 031.173.242.210 97 95 2020-08-16 2020-08-16 122.116.044.130 581 95 2020-08-26 2020-08-26 103.094.004.045 95 95 2020-08-25 2020-08-25 171.235.160.104 96 95 2020-08-24 2020-08-24 174.218.141.002 1541 95 2020-09-07 2020-09-07 037.144.002.049 98 95 2020-08-24 2020-08-24 173.187.226.233 95 95 2020-09-01 2020-09-01 223.205.112.207 98 95 2020-08-25 2020-08-25 005.238.130.061 95 95 2020-08-11 2020-08-11 190.207.247.075 95 95 2020-08-25 2020-08-25 185.176.027.242 309 95 2020-08-20 2020-08-19 176.218.192.099 97 95 2020-08-29 2020-08-29 001.055.153.240 96 95 2020-08-25 2020-08-25 190.037.085.206 96 95 2020-09-01 2020-09-01 185.202.000.109 95 95 2020-08-14 2020-08-14 178.239.173.220 6028 95 2020-08-10 2020-08-28 159.089.156.077 197 94 2020-09-09 2020-09-09 190.075.187.048 95 94 2020-09-03 2020-09-03 095.177.146.081 172 94 2020-08-19 2020-08-19 049.207.019.018 94 94 2020-09-07 2020-09-07 165.227.092.077 183 94 2020-09-04 2020-09-04 188.122.088.203 12087 94 2020-08-09 2020-08-19 046.161.027.048 258 94 2020-09-09 2020-09-08 095.181.255.007 98 94 2020-09-07 2020-09-07 189.113.020.155 94 94 2020-08-11 2020-08-11 036.085.195.024 95 94 2020-08-31 2020-08-31 118.099.104.051 94 94 2020-09-04 2020-09-04 125.163.178.121 108 94 2020-08-31 2020-08-31 217.218.242.078 94 94 2020-08-24 2020-08-24 027.071.084.149 94 94 2020-09-05 2020-09-05 014.184.066.183 94 94 2020-09-03 2020-09-03 091.205.168.056 94 94 2020-09-02 2020-09-02 095.106.243.077 94 94 2020-08-21 2020-08-21 092.124.205.040 94 94 2020-09-03 2020-09-03 101.108.209.183 97 94 2020-08-27 2020-08-27 200.084.179.094 94 94 2020-09-07 2020-09-07 193.056.028.203 94 94 2020-08-19 2020-08-19 103.102.122.045 94 94 2020-08-26 2020-08-26 104.248.181.156 12490 94 2020-08-30 2020-09-01 208.084.060.205 314 94 2020-08-30 2020-08-30 128.070.156.140 94 94 2020-08-17 2020-08-16 185.216.140.192 97 94 2020-09-09 2020-09-09 027.079.054.149 94 94 2020-09-05 2020-09-05 088.147.174.041 94 94 2020-08-27 2020-08-27 218.092.000.221 239 94 2020-08-12 2020-08-11 027.003.120.078 106 94 2020-08-22 2020-08-22 024.019.092.129 220 94 2020-09-08 2020-09-07 014.236.001.009 93 93 2020-09-07 2020-09-07 220.129.014.198 95 93 2020-08-25 2020-08-25 005.145.233.072 94 93 2020-08-26 2020-08-26 201.001.110.049 95 93 2020-08-20 2020-08-20 014.233.012.051 94 93 2020-08-23 2020-08-23 190.038.233.191 98 93 2020-09-01 2020-09-01 069.126.065.070 245 93 2020-09-07 2020-09-07 201.209.167.018 94 93 2020-08-20 2020-08-20 109.087.175.219 95 93 2020-09-05 2020-09-05 172.058.142.196 1088 93 2020-09-09 2020-09-09 052.255.032.217 210 93 2020-08-19 2020-08-19 059.153.246.089 186 93 2020-08-26 2020-08-26 190.199.123.166 93 93 2020-08-29 2020-08-29 179.176.133.184 94 93 2020-08-14 2020-08-14 203.040.009.223 94 93 2020-08-13 2020-08-13 088.231.109.073 95 93 2020-08-14 2020-08-14 216.155.092.169 94 93 2020-08-20 2020-08-20 171.242.225.135 93 93 2020-09-06 2020-09-06 102.186.051.070 96 93 2020-08-16 2020-08-16 036.090.250.126 93 93 2020-08-29 2020-08-29 047.149.096.045 1469 93 2020-09-08 2020-09-08 080.082.064.134 109 93 2020-09-09 2020-09-09 222.186.031.166 261 93 2020-08-17 2020-08-16 014.240.182.027 93 93 2020-08-28 2020-08-28 104.131.188.024 186 93 2020-09-04 2020-09-04 195.133.070.101 95 93 2020-08-29 2020-08-29 201.013.096.223 99 93 2020-08-11 2020-08-11 185.097.094.225 578 93 2020-08-12 2020-08-12 201.119.189.148 94 93 2020-09-04 2020-09-04 089.147.205.038 93 93 2020-08-28 2020-08-28 045.155.124.182 256 93 2020-09-02 2020-09-02 156.096.056.145 93 93 2020-08-15 2020-08-15 174.237.002.095 111 93 2020-09-02 2020-09-02 193.016.045.251 93 93 2020-08-27 2020-08-27 088.238.013.175 94 93 2020-08-24 2020-08-24 184.022.214.090 95 93 2020-09-08 2020-09-08 118.068.106.254 96 93 2020-08-30 2020-08-30 204.063.249.165 4870 93 2020-08-29 2020-08-29 067.003.108.255 290 92 2020-09-04 2020-09-04 192.095.021.167 3068 92 2020-08-12 2020-08-12 190.072.217.097 92 92 2020-09-09 2020-09-09 178.035.089.019 93 92 2020-08-21 2020-08-21 095.111.228.021 92 92 2020-09-07 2020-09-07 092.055.188.036 92 92 2020-09-06 2020-09-06 190.207.184.047 93 92 2020-08-13 2020-08-13 003.237.111.234 156 92 2020-08-22 2020-08-22 144.172.066.002 6065 92 2020-08-17 2020-08-22 051.036.077.028 111 92 2020-08-15 2020-08-15 037.049.224.030 2311 92 2020-08-13 2020-08-14 193.032.161.147 147 92 2020-08-21 2020-08-20 181.090.092.220 93 92 2020-08-19 2020-08-19 095.031.018.115 160 92 2020-08-23 2020-08-23 119.095.203.166 92 92 2020-08-24 2020-08-24 094.241.237.203 92 92 2020-08-31 2020-08-31 046.023.098.012 94 92 2020-08-25 2020-08-25 113.162.045.075 92 92 2020-08-11 2020-08-11 190.198.126.090 94 92 2020-08-28 2020-08-28 068.231.230.069 2179 92 2020-09-05 2020-09-04 185.032.046.050 93 92 2020-08-20 2020-08-20 041.032.063.164 92 92 2020-08-13 2020-08-13 186.092.228.122 93 92 2020-08-12 2020-08-12 087.246.145.059 92 92 2020-08-18 2020-08-18 183.080.093.200 93 92 2020-09-01 2020-09-01 005.002.231.216 91 91 2020-09-03 2020-09-03 051.195.182.184 3355 91 2020-08-23 2020-08-23 113.175.229.032 91 91 2020-08-29 2020-08-29 129.227.129.174 93 91 2020-09-08 2020-09-08 190.115.031.107 1398 91 2020-08-19 2020-08-27 014.190.103.119 91 91 2020-08-25 2020-08-25 190.245.078.011 120 91 2020-08-22 2020-08-22 101.179.085.223 3109 91 2020-08-23 2020-08-23 113.176.226.143 91 91 2020-08-13 2020-08-13 193.010.255.099 159 91 2020-08-30 2020-08-30 096.225.161.188 3208 91 2020-08-30 2020-08-31 182.240.035.076 94 91 2020-08-14 2020-08-14 192.099.089.194 203 91 2020-08-20 2020-08-20 037.190.150.252 92 91 2020-09-04 2020-09-04 186.091.195.163 91 91 2020-09-06 2020-09-06 177.046.036.128 91 91 2020-08-31 2020-08-31 152.136.051.027 91 91 2020-08-19 2020-08-19 014.244.177.113 93 91 2020-09-02 2020-09-02 091.211.088.068 2519 91 2020-08-07 2020-08-13 123.021.125.167 91 91 2020-08-25 2020-08-25 201.219.236.148 92 91 2020-08-16 2020-08-15 130.158.075.042 125 91 2020-08-16 2020-08-16 109.169.168.071 94 91 2020-08-16 2020-08-16 014.226.161.238 90 90 2020-08-28 2020-08-28 202.067.046.033 94 90 2020-08-27 2020-08-27 109.181.172.002 3439 90 2020-08-24 2020-08-24 065.031.032.039 2804 90 2020-08-20 2020-08-20 046.023.155.114 356 90 2020-08-24 2020-08-24 059.126.019.206 450 90 2020-08-24 2020-08-24 195.054.160.021 214 90 2020-09-09 2020-09-08 186.093.156.006 92 90 2020-08-24 2020-08-24 080.223.109.064 181 90 2020-08-15 2020-08-15 144.134.058.210 181 90 2020-08-22 2020-08-22 003.023.087.020 5466 90 2020-08-22 2020-08-22 177.124.014.210 97 90 2020-09-01 2020-09-01 190.039.094.211 90 90 2020-08-24 2020-08-24 193.123.007.214 118 90 2020-08-26 2020-08-25 212.034.032.235 90 90 2020-08-14 2020-08-14 094.025.168.109 90 90 2020-08-21 2020-08-21 182.156.234.090 91 90 2020-08-14 2020-08-14 027.076.010.238 94 90 2020-09-05 2020-09-05 183.088.087.182 92 90 2020-08-20 2020-08-20 060.250.231.020 92 90 2020-09-06 2020-09-06 065.191.146.240 5348 90 2020-08-30 2020-08-30 190.037.219.060 90 90 2020-08-12 2020-08-12 045.131.193.023 10561 90 2020-08-22 2020-08-22 014.171.122.240 90 90 2020-08-21 2020-08-21 196.196.216.142 2881 90 2020-08-17 2020-08-17 045.061.142.176 233 90 2020-08-22 2020-08-22 179.108.180.013 90 90 2020-08-19 2020-08-19 223.135.102.243 94 90 2020-08-18 2020-08-18 014.237.139.095 90 90 2020-08-31 2020-08-31 113.110.198.042 92 90 2020-08-15 2020-08-15 014.251.202.020 90 90 2020-09-03 2020-09-03 082.011.029.183 215 89 2020-09-08 2020-09-08 190.198.240.189 90 89 2020-08-14 2020-08-14 176.040.252.141 92 89 2020-08-21 2020-08-21 111.250.156.105 90 89 2020-08-31 2020-08-31 168.119.050.246 89 89 2020-08-23 2020-08-23 200.084.072.120 90 89 2020-08-18 2020-08-18 198.052.167.116 8935 89 2020-08-15 2020-08-15 042.113.216.172 90 89 2020-08-26 2020-08-26 002.092.013.203 89 89 2020-08-26 2020-08-26 172.245.008.119 89 89 2020-08-21 2020-08-21 113.189.167.050 90 89 2020-08-29 2020-08-29 087.110.076.144 90 89 2020-09-06 2020-09-06 138.130.036.053 209 89 2020-08-21 2020-08-21 171.224.168.239 89 89 2020-08-14 2020-08-14 074.129.224.163 1413 89 2020-08-22 2020-08-22 186.092.213.221 89 89 2020-09-05 2020-09-05 045.145.067.021 121 89 2020-08-16 2020-08-16 213.227.245.115 89 89 2020-09-07 2020-09-07 051.075.161.119 104 89 2020-09-05 2020-09-05 085.113.029.038 91 89 2020-09-01 2020-09-01 116.104.252.238 89 89 2020-09-09 2020-09-09 045.227.255.204 95 89 2020-08-19 2020-08-18 200.044.242.070 92 89 2020-08-14 2020-08-14 051.254.104.180 1126 89 2020-08-15 2020-09-06 122.228.019.079 241 89 2020-08-16 2020-08-15 042.114.032.007 91 89 2020-09-01 2020-09-01 108.051.247.072 210 89 2020-08-24 2020-08-24 072.205.208.157 249 89 2020-09-07 2020-09-07 042.118.194.100 90 88 2020-08-13 2020-08-13 046.098.188.196 90 88 2020-08-21 2020-08-21 187.103.093.113 89 88 2020-09-09 2020-09-09 014.165.080.077 88 88 2020-08-26 2020-08-26 113.183.121.187 91 88 2020-08-17 2020-08-17 176.044.123.230 88 88 2020-08-13 2020-08-13 113.175.125.243 88 88 2020-08-20 2020-08-20 178.138.035.067 3140 88 2020-09-01 2020-09-01 190.037.046.241 88 88 2020-08-13 2020-08-13 045.234.109.044 98 88 2020-08-12 2020-08-12 068.230.121.097 212 88 2020-09-09 2020-09-09 187.113.168.140 88 88 2020-09-07 2020-09-07 187.136.199.182 88 88 2020-08-31 2020-08-31 042.112.234.238 90 88 2020-08-13 2020-08-13 124.070.128.022 88 88 2020-08-18 2020-08-18 113.186.135.161 89 88 2020-08-19 2020-08-19 030.030.030.010 1779 88 2020-08-31 2020-08-31 193.032.161.143 267 88 2020-08-18 2020-08-17 190.036.112.140 88 88 2020-08-26 2020-08-26 036.073.248.058 88 88 2020-08-28 2020-08-28 210.014.102.026 91 88 2020-09-01 2020-09-01 186.092.084.111 88 88 2020-08-25 2020-08-25 092.013.151.218 1621 88 2020-09-05 2020-09-05 115.230.126.040 89 88 2020-08-31 2020-08-31 076.189.036.011 314 88 2020-09-06 2020-09-06 061.227.234.034 88 88 2020-09-09 2020-09-09 206.255.204.044 188 88 2020-08-19 2020-08-19 062.073.065.041 90 88 2020-08-29 2020-08-29 178.033.044.026 1266 88 2020-08-28 2020-08-30 042.113.214.120 89 88 2020-08-31 2020-08-31 193.142.146.232 151 88 2020-08-12 2020-08-12 043.229.135.136 113 88 2020-08-25 2020-08-25 052.235.044.212 104 88 2020-08-19 2020-08-19 095.217.171.138 429 88 2020-08-24 2020-08-24 042.119.046.036 88 87 2020-08-31 2020-08-31 174.118.021.188 167 87 2020-08-16 2020-08-16 116.098.192.147 88 87 2020-08-26 2020-08-26 186.092.120.069 88 87 2020-09-05 2020-09-05 173.091.208.019 201 87 2020-09-06 2020-09-06 123.021.204.184 87 87 2020-08-19 2020-08-19 194.026.025.121 110 87 2020-09-08 2020-09-08 192.081.245.118 512 87 2020-09-03 2020-09-03 185.153.196.126 160 87 2020-08-31 2020-08-30 076.114.109.121 2247 87 2020-08-18 2020-08-18 190.153.041.032 87 87 2020-08-28 2020-08-28 186.092.245.173 87 87 2020-09-09 2020-09-09 041.233.221.001 87 87 2020-08-29 2020-08-29 190.073.247.110 87 87 2020-09-04 2020-09-04 186.089.045.125 92 87 2020-08-22 2020-08-22 073.076.199.180 383 87 2020-08-25 2020-08-25 036.078.248.188 89 87 2020-09-05 2020-09-05 103.048.045.006 91 87 2020-08-28 2020-08-28 047.223.056.054 1312 87 2020-09-07 2020-09-07 180.251.176.180 88 87 2020-08-27 2020-08-27 075.185.155.112 97 87 2020-08-18 2020-08-18 045.148.121.055 2673 87 2020-07-17 2020-08-13 150.107.190.246 86 86 2020-09-09 2020-09-09 014.191.168.243 86 86 2020-08-17 2020-08-17 001.168.037.240 87 86 2020-09-08 2020-09-08 186.091.243.005 88 86 2020-08-12 2020-08-12 066.181.161.017 86 86 2020-08-24 2020-08-24 066.225.000.225 150 86 2020-09-04 2020-09-04 170.246.018.074 93 86 2020-08-28 2020-08-28 014.185.235.237 86 86 2020-09-03 2020-09-03 074.129.068.151 270 86 2020-09-07 2020-09-07 218.092.000.190 210243 86 2020-08-06 2020-08-23 098.159.106.023 1480 86 2020-08-22 2020-08-22 024.065.078.088 1923 86 2020-08-24 2020-08-23 171.224.139.169 87 86 2020-08-12 2020-08-12 138.185.152.002 5905 86 2020-08-19 2020-08-24 189.095.022.036 86 86 2020-09-01 2020-09-01 085.190.153.043 108 86 2020-08-20 2020-08-19 195.054.167.093 98 86 2020-08-23 2020-08-23 177.067.211.034 86 86 2020-08-13 2020-08-13 027.076.156.180 88 86 2020-08-17 2020-08-17 200.084.165.204 87 86 2020-08-21 2020-08-21 045.154.255.145 93 86 2020-09-05 2020-09-05 178.150.208.012 88 86 2020-08-29 2020-08-29 118.071.231.161 87 86 2020-08-15 2020-08-15 085.085.005.109 89 85 2020-09-05 2020-09-05 098.224.065.247 123 85 2020-08-23 2020-08-23 085.095.179.054 85 85 2020-08-22 2020-08-22 188.115.236.195 85 85 2020-09-01 2020-09-01 190.207.026.044 89 85 2020-09-05 2020-09-05 200.109.027.162 86 85 2020-09-06 2020-09-06 115.076.144.192 85 85 2020-08-11 2020-08-11 014.177.198.182 85 85 2020-08-31 2020-08-31 042.119.229.161 87 85 2020-08-24 2020-08-24 087.241.143.102 85 85 2020-08-24 2020-08-24 114.043.142.178 87 85 2020-08-26 2020-08-26 125.163.016.090 88 85 2020-08-29 2020-08-29 190.121.230.131 86 85 2020-08-27 2020-08-27 060.179.074.184 86 85 2020-09-02 2020-09-02 039.061.046.224 87 85 2020-09-03 2020-09-03 185.134.022.254 179 85 2020-08-22 2020-08-22 027.072.086.132 87 85 2020-08-11 2020-08-11 051.089.194.220 97 85 2020-08-23 2020-08-23 182.075.245.094 87 85 2020-09-08 2020-09-08 103.130.196.062 85 85 2020-09-08 2020-09-08 203.173.021.162 147 85 2020-09-09 2020-09-09 173.029.221.154 232 85 2020-08-24 2020-08-23 054.039.131.115 4396 85 2020-07-21 2020-08-15 174.237.008.142 106 85 2020-08-21 2020-08-21 162.226.001.001 245 85 2020-09-06 2020-09-06 035.165.252.173 1092 85 2020-09-07 2020-09-07 092.112.020.201 86 85 2020-08-25 2020-08-25 091.214.233.228 85 85 2020-09-09 2020-09-09 051.241.118.188 157 85 2020-08-22 2020-08-22 036.090.017.116 86 85 2020-09-03 2020-09-03 113.182.043.175 88 85 2020-08-19 2020-08-19 001.054.008.176 85 85 2020-08-17 2020-08-17 182.053.046.116 85 85 2020-08-25 2020-08-25 182.070.023.161 85 85 2020-08-30 2020-08-30 197.001.112.209 85 85 2020-08-27 2020-08-26 024.160.010.215 245 84 2020-09-01 2020-09-01 217.073.131.119 84 84 2020-08-25 2020-08-25 045.135.202.012 126 84 2020-09-07 2020-09-07 086.227.136.053 190 84 2020-08-22 2020-08-22 072.241.171.108 391 84 2020-08-28 2020-08-28 099.063.019.065 184 84 2020-09-09 2020-09-08 178.093.218.125 86 84 2020-09-08 2020-09-08 113.184.100.038 86 84 2020-08-18 2020-08-18 045.142.120.004 85 84 2020-08-25 2020-08-25 071.142.247.191 4055 84 2020-08-12 2020-08-12 213.087.255.036 85 84 2020-08-25 2020-08-25 110.138.147.212 84 84 2020-08-18 2020-08-18 213.163.093.034 93 84 2020-09-07 2020-09-07 117.221.212.242 84 84 2020-09-09 2020-09-09 171.004.234.252 85 84 2020-08-15 2020-08-15 037.004.252.091 240 84 2020-08-21 2020-08-21 176.193.208.172 86 84 2020-08-17 2020-08-17 014.167.083.102 84 84 2020-09-02 2020-09-02 213.055.220.235 120 84 2020-08-19 2020-08-18 195.088.193.067 84 84 2020-08-28 2020-08-28 115.084.087.053 85 84 2020-08-25 2020-08-25 088.241.033.105 86 84 2020-08-19 2020-08-19 131.255.032.182 85 84 2020-08-28 2020-08-28 042.113.121.088 84 84 2020-08-18 2020-08-18 170.082.190.097 84 84 2020-08-23 2020-08-23 175.176.026.137 84 84 2020-08-20 2020-08-20 031.000.085.221 86 84 2020-08-22 2020-08-22 183.088.066.095 85 84 2020-09-01 2020-09-01 172.058.155.082 1261 84 2020-09-07 2020-09-07 045.251.119.206 84 84 2020-09-02 2020-09-02 115.074.210.135 88 84 2020-08-27 2020-08-27 149.200.185.065 84 84 2020-09-07 2020-09-07 116.090.227.002 84 84 2020-08-29 2020-08-29 113.181.111.156 86 83 2020-08-23 2020-08-23 096.241.074.235 924 83 2020-09-04 2020-09-04 185.153.199.132 118 83 2020-08-31 2020-08-30 201.141.218.168 86 83 2020-08-28 2020-08-28 037.079.002.159 83 83 2020-09-06 2020-09-06 178.141.151.076 83 83 2020-08-22 2020-08-22 206.123.141.234 83 83 2020-08-14 2020-08-14 134.249.116.142 88 83 2020-08-24 2020-08-24 125.164.224.246 83 83 2020-08-22 2020-08-22 095.070.106.063 83 83 2020-09-06 2020-09-06 070.112.239.156 126 83 2020-08-17 2020-08-17 178.129.125.082 83 83 2020-09-09 2020-09-09 045.239.117.010 83 83 2020-08-11 2020-08-11 051.075.038.042 21039 83 2020-08-18 2020-08-19 039.048.070.168 85 83 2020-09-08 2020-09-08 187.170.233.056 83 83 2020-08-21 2020-08-21 139.180.191.167 84 83 2020-09-07 2020-09-07 182.074.247.166 83 83 2020-09-05 2020-09-05 125.166.102.123 84 83 2020-08-20 2020-08-20 190.039.006.221 84 83 2020-08-20 2020-08-20 194.015.036.181 83 83 2020-09-06 2020-09-06 045.132.227.159 114 83 2020-09-08 2020-09-08 192.119.094.177 649 83 2020-09-06 2020-09-05 186.251.108.024 87 83 2020-08-27 2020-08-27 160.152.026.083 85 83 2020-08-12 2020-08-12 014.182.239.185 83 83 2020-08-26 2020-08-26 156.146.038.150 4213 83 2020-08-16 2020-08-16 178.087.249.002 83 83 2020-09-03 2020-09-03 076.020.090.011 255 83 2020-09-01 2020-09-01 089.238.176.152 208 83 2020-08-18 2020-08-17 191.096.005.233 85 83 2020-08-20 2020-08-20 091.218.065.092 95 82 2020-08-17 2020-08-17 176.194.009.213 85 82 2020-08-15 2020-08-15 171.240.045.026 83 82 2020-08-31 2020-08-31 041.225.054.040 87 82 2020-09-08 2020-09-08 172.058.070.255 214 82 2020-08-20 2020-08-20 180.243.054.179 82 82 2020-08-21 2020-08-21 089.248.172.085 82 82 2020-09-07 2020-09-07 179.054.066.122 82 82 2020-08-24 2020-08-24 193.150.103.241 82 82 2020-09-01 2020-09-01 197.054.185.114 82 82 2020-08-29 2020-08-29 136.032.110.139 2073 82 2020-08-20 2020-08-20 008.020.122.199 529 82 2020-08-18 2020-08-18 185.242.115.240 123 82 2020-08-22 2020-08-22 075.100.238.087 7274 82 2020-08-12 2020-08-12 222.186.042.007 201 82 2020-08-27 2020-08-26 197.221.251.010 82 82 2020-08-12 2020-08-12 171.241.058.103 84 82 2020-09-06 2020-09-06 066.172.118.057 257 82 2020-08-20 2020-08-20 156.215.021.174 83 82 2020-08-31 2020-08-31 190.079.123.133 84 82 2020-08-29 2020-08-29 107.150.022.165 1123 82 2020-09-04 2020-09-04 071.059.221.089 2656 82 2020-08-24 2020-08-24 181.099.085.115 82 82 2020-09-03 2020-09-03 117.004.187.079 82 82 2020-08-26 2020-08-26 186.095.110.020 83 82 2020-08-15 2020-08-15 174.244.177.210 2514 82 2020-09-07 2020-09-07 193.093.062.058 213 82 2020-08-30 2020-08-29 182.253.003.228 84 82 2020-09-02 2020-09-02 201.095.183.197 83 82 2020-08-22 2020-08-22 201.242.098.176 105 82 2020-08-12 2020-08-12 050.088.236.131 7792 81 2020-08-20 2020-08-20 088.241.075.151 81 81 2020-08-12 2020-08-12 154.127.165.155 83 81 2020-08-11 2020-08-11 174.018.024.069 210 81 2020-08-22 2020-08-22 073.061.013.163 206 81 2020-08-19 2020-08-19 156.194.000.223 81 81 2020-08-17 2020-08-17 054.039.028.220 84 81 2020-09-05 2020-09-05 085.106.099.210 81 81 2020-08-21 2020-08-21 014.185.036.205 82 81 2020-08-31 2020-08-31 160.238.076.049 81 81 2020-08-18 2020-08-18 197.156.137.165 82 81 2020-08-24 2020-08-24 074.065.042.135 111 81 2020-09-08 2020-09-08 014.170.229.137 82 81 2020-08-22 2020-08-22 172.094.072.045 4464 81 2020-08-18 2020-08-18 085.146.158.012 2631 81 2020-08-30 2020-08-30 085.190.159.135 90 81 2020-08-22 2020-08-22 186.091.057.063 87 81 2020-08-31 2020-08-31 046.161.027.075 152 81 2020-09-08 2020-09-07 185.094.214.029 81 81 2020-09-04 2020-09-04 014.231.152.248 84 81 2020-08-15 2020-08-15 014.171.147.131 82 81 2020-08-26 2020-08-26 190.206.007.254 83 81 2020-08-30 2020-08-30 077.087.021.172 82 81 2020-08-21 2020-08-21 073.032.216.050 91 81 2020-08-17 2020-08-17 085.247.160.024 84 81 2020-09-05 2020-09-05 065.033.097.033 3038 81 2020-08-18 2020-08-18 051.081.035.081 376 81 2020-09-01 2020-08-31 185.202.001.123 117 81 2020-08-28 2020-08-28 073.172.069.157 14765 81 2020-08-30 2020-09-01 184.168.139.038 9492 81 2020-08-22 2020-08-22 188.049.113.144 83 81 2020-08-31 2020-08-31 212.129.023.054 84 81 2020-08-20 2020-08-19 192.223.025.240 445 81 2020-09-09 2020-09-09 099.117.019.144 203 81 2020-09-08 2020-09-07 190.072.207.113 81 81 2020-08-24 2020-08-24 168.195.147.159 732 81 2020-08-19 2020-08-19 051.038.119.212 3414 81 2020-08-16 2020-08-20 116.105.143.081 82 80 2020-08-30 2020-08-30 190.203.198.164 83 80 2020-09-05 2020-09-05 082.022.214.125 1062 80 2020-09-04 2020-09-04 045.155.205.052 145 80 2020-09-05 2020-09-05 115.084.072.012 80 80 2020-08-14 2020-08-14 194.026.029.098 294014 80 2020-08-01 2020-08-21 216.151.184.096 153 80 2020-09-08 2020-09-08 186.088.251.063 80 80 2020-08-29 2020-08-29 212.102.053.129 12874 80 2020-07-24 2020-08-20 051.039.141.040 90 80 2020-08-15 2020-08-15 066.070.132.195 8992 80 2020-08-15 2020-08-21 190.079.072.117 80 80 2020-08-16 2020-08-16 171.235.166.025 82 80 2020-09-07 2020-09-07 005.035.234.137 1112 80 2020-08-18 2020-08-18 111.073.046.079 116 80 2020-08-27 2020-08-27 194.026.029.227 90082 80 2020-07-24 2020-08-28 027.072.132.056 81 80 2020-08-28 2020-08-28 192.243.094.164 174 80 2020-09-08 2020-09-08 070.123.010.143 90 80 2020-08-18 2020-08-18 037.006.000.045 5337 80 2020-08-24 2020-08-24 159.192.202.120 80 80 2020-09-04 2020-09-04 180.253.243.047 80 80 2020-09-04 2020-09-04 190.074.081.111 83 80 2020-08-25 2020-08-25 088.241.078.221 80 80 2020-08-22 2020-08-22 125.161.036.159 81 80 2020-08-29 2020-08-29 042.117.051.081 80 80 2020-09-05 2020-09-05 176.124.008.218 84 80 2020-09-05 2020-09-05 107.112.219.110 1721 80 2020-09-05 2020-09-05 185.026.156.116 87 80 2020-08-27 2020-08-27 172.097.106.166 7980 80 2020-08-22 2020-08-22 104.045.148.137 98 80 2020-08-25 2020-08-25 117.002.154.137 80 80 2020-08-31 2020-08-31 036.082.191.188 80 80 2020-09-03 2020-09-03 094.142.032.099 83 80 2020-08-11 2020-08-11 073.236.153.050 365 80 2020-08-25 2020-08-25 125.231.057.199 81 80 2020-08-22 2020-08-22 106.215.047.028 80 80 2020-08-26 2020-08-26 066.070.235.012 150 80 2020-08-25 2020-08-25 020.050.254.188 100 80 2020-08-12 2020-08-12 147.135.040.062 1761 79 2020-08-31 2020-08-31 112.220.236.170 677 79 2020-08-29 2020-08-29 018.200.111.086 4082 79 2020-08-18 2020-08-18 194.026.025.097 216949 79 2020-08-01 2020-08-21 186.093.108.229 79 79 2020-09-07 2020-09-07 073.233.164.092 269 79 2020-08-27 2020-08-27 088.196.044.066 147 79 2020-09-07 2020-09-07 125.162.053.191 80 79 2020-08-12 2020-08-12 190.200.179.084 80 79 2020-08-25 2020-08-25 110.138.063.055 81 79 2020-08-22 2020-08-22 078.185.228.072 79 79 2020-08-31 2020-08-31 198.144.154.035 3123 79 2020-08-21 2020-08-21 071.237.246.004 83 79 2020-08-25 2020-08-25 051.081.075.006 2639 79 2020-08-19 2020-08-19 182.253.253.043 81 79 2020-09-08 2020-09-08 082.102.026.075 3659 79 2020-08-18 2020-08-18 202.125.074.196 81 79 2020-09-02 2020-09-02 094.008.162.112 1276 79 2020-08-23 2020-08-22 064.203.226.033 225 79 2020-08-28 2020-08-28 185.175.093.104 117 79 2020-08-16 2020-08-15 151.080.111.094 157 79 2020-08-25 2020-08-25 037.239.037.223 80 79 2020-08-12 2020-08-12 178.140.203.211 83 79 2020-08-17 2020-08-17 066.070.204.210 616 79 2020-09-06 2020-09-06 157.041.162.134 79 79 2020-08-15 2020-08-15 192.223.030.035 94 79 2020-08-23 2020-08-23 173.174.085.207 201 79 2020-09-01 2020-09-01 168.181.133.049 79 79 2020-08-31 2020-08-31 173.231.088.026 284 79 2020-08-25 2020-08-25 086.153.137.044 89 79 2020-08-15 2020-08-15 036.090.025.000 79 79 2020-09-05 2020-09-05 149.056.140.239 882 79 2020-08-28 2020-08-27 081.214.161.189 79 79 2020-08-31 2020-08-31 078.180.028.231 79 79 2020-08-17 2020-08-17 188.222.023.232 209 79 2020-08-22 2020-08-22 095.069.243.146 79 79 2020-09-06 2020-09-06 126.119.060.046 79 79 2020-09-01 2020-09-01 097.073.244.015 82 79 2020-08-22 2020-08-22 186.195.032.002 154 78 2020-09-08 2020-09-08 136.232.164.074 78 78 2020-08-21 2020-08-21 109.191.184.058 79 78 2020-08-22 2020-08-22 178.055.164.095 81 78 2020-08-26 2020-08-26 098.249.164.185 137 78 2020-08-15 2020-08-15 182.077.056.080 80 78 2020-09-09 2020-09-09 118.249.020.169 79 78 2020-09-07 2020-09-07 207.255.190.234 152 78 2020-08-16 2020-08-16 125.025.185.104 78 78 2020-08-17 2020-08-17 192.235.165.002 204 78 2020-09-04 2020-09-04 051.081.073.117 958 78 2020-09-04 2020-09-04 054.037.088.072 140 78 2020-08-18 2020-08-18 114.108.236.202 192 78 2020-09-03 2020-09-03 049.048.230.128 78 78 2020-08-21 2020-08-21 194.026.027.102 67192 78 2020-09-02 2020-09-07 042.201.144.028 81 78 2020-08-21 2020-08-21 024.191.120.127 1986 78 2020-09-06 2020-09-06 014.186.249.148 78 78 2020-09-07 2020-09-07 073.039.073.192 2089 78 2020-08-19 2020-08-19 086.173.052.119 143 78 2020-09-01 2020-09-01 002.056.139.127 120 78 2020-08-24 2020-08-24 104.028.021.052 100 78 2020-08-17 2020-08-17 185.039.011.032 153 78 2020-09-07 2020-09-06 073.129.154.184 98 78 2020-08-18 2020-08-18 190.201.009.103 78 78 2020-08-26 2020-08-26 112.200.100.039 78 78 2020-08-27 2020-08-27 174.107.146.243 1842 78 2020-08-19 2020-08-19 023.243.169.232 102 78 2020-08-18 2020-08-18 075.015.148.200 168 78 2020-08-15 2020-08-14 076.170.188.002 270 78 2020-08-22 2020-08-22 060.248.043.238 78 78 2020-08-17 2020-08-17 081.021.080.038 79 78 2020-08-14 2020-08-14 198.027.070.023 82 78 2020-08-25 2020-08-25 037.021.077.152 85 78 2020-08-22 2020-08-22 188.162.237.231 78 78 2020-08-14 2020-08-14 090.253.202.226 243 78 2020-09-07 2020-09-07 162.248.088.220 10008 77 2020-08-10 2020-08-29 051.161.109.032 96 77 2020-08-27 2020-08-27 111.123.206.044 125 77 2020-09-06 2020-09-06 023.023.148.239 239 77 2020-09-04 2020-09-04 189.203.098.037 77 77 2020-08-20 2020-08-20 178.165.128.168 1381 77 2020-09-08 2020-09-08 024.251.111.195 5681 77 2020-08-21 2020-08-21 077.122.013.004 78 77 2020-08-12 2020-08-12 180.248.058.083 77 77 2020-08-15 2020-08-14 068.184.104.207 2358 77 2020-09-03 2020-09-03 091.229.112.003 116 77 2020-08-12 2020-08-12 142.154.169.252 302 77 2020-09-06 2020-09-06 037.244.043.212 80 77 2020-08-29 2020-08-29 190.078.126.021 79 77 2020-08-20 2020-08-20 090.241.121.130 248 77 2020-09-07 2020-09-07 046.004.167.100 92 77 2020-08-24 2020-08-24 094.101.234.216 78 77 2020-08-21 2020-08-21 213.163.093.013 1892 77 2020-08-27 2020-08-27 066.070.148.095 78 77 2020-08-23 2020-08-22 094.045.210.240 78 77 2020-08-27 2020-08-27 027.076.011.032 77 77 2020-09-02 2020-09-02 090.032.157.027 139 77 2020-08-27 2020-08-27 034.202.215.010 899 77 2020-09-07 2020-09-07 188.050.175.242 83 77 2020-08-14 2020-08-14 099.203.143.161 87 77 2020-08-22 2020-08-22 061.231.132.163 77 77 2020-08-14 2020-08-14 066.150.155.194 6785 77 2020-08-25 2020-08-25 112.133.244.142 77 77 2020-08-25 2020-08-25 005.115.040.095 77 77 2020-08-18 2020-08-18 037.130.246.197 77 77 2020-09-03 2020-09-03 098.199.051.002 238 77 2020-09-01 2020-08-31 035.180.149.110 2623 77 2020-08-16 2020-08-16 178.057.046.121 79 77 2020-08-22 2020-08-22 171.236.070.110 76 76 2020-08-19 2020-08-19 186.093.083.218 78 76 2020-09-08 2020-09-08 212.075.206.064 76 76 2020-08-21 2020-08-21 217.055.151.240 78 76 2020-08-13 2020-08-13 045.145.067.163 92 76 2020-08-13 2020-08-12 192.210.170.111 76 76 2020-08-21 2020-08-21 125.167.129.047 77 76 2020-08-24 2020-08-24 170.079.167.126 79 76 2020-09-04 2020-09-04 180.252.236.113 78 76 2020-08-11 2020-08-11 192.223.031.242 525 76 2020-08-30 2020-08-30 201.211.202.086 80 76 2020-08-26 2020-08-26 037.001.218.023 77 76 2020-09-08 2020-09-08 082.025.170.064 175 76 2020-08-16 2020-08-16 107.180.025.239 83 76 2020-08-24 2020-08-24 046.073.045.034 77 76 2020-09-03 2020-09-03 045.158.076.244 85 76 2020-08-20 2020-08-20 075.086.011.184 166 76 2020-08-22 2020-08-22 098.115.187.207 514 76 2020-08-30 2020-08-30 118.172.227.232 76 76 2020-08-24 2020-08-24 113.190.233.127 76 76 2020-08-21 2020-08-21 103.138.226.027 76 76 2020-08-27 2020-08-27 041.230.089.019 76 76 2020-08-26 2020-08-25 071.233.161.033 110 76 2020-08-26 2020-08-25 078.128.113.042 153 76 2020-08-16 2020-08-15 142.044.166.226 3812 76 2020-08-09 2020-08-17 005.071.066.218 85 76 2020-08-22 2020-08-22 027.076.031.217 76 76 2020-08-17 2020-08-17 118.068.107.150 79 76 2020-09-06 2020-09-06 077.087.098.229 78 76 2020-08-13 2020-08-13 082.132.245.149 1250 76 2020-09-03 2020-09-03 092.047.072.027 76 76 2020-08-21 2020-08-21 086.029.206.202 1566 76 2020-09-05 2020-09-05 095.221.023.052 77 76 2020-09-07 2020-09-07 068.008.119.083 86 76 2020-08-20 2020-08-20 045.141.087.002 113 76 2020-08-25 2020-08-25 111.102.069.041 76 76 2020-08-25 2020-08-25 116.202.128.153 93 76 2020-08-15 2020-08-15 036.082.099.072 77 76 2020-08-12 2020-08-12 050.035.205.152 1969 76 2020-09-07 2020-09-07 037.229.098.150 76 76 2020-08-16 2020-08-16 003.229.143.177 103 76 2020-08-11 2020-08-11 071.200.007.030 185 76 2020-09-03 2020-09-03 095.059.029.098 77 76 2020-09-01 2020-09-01 081.163.143.185 77 76 2020-08-24 2020-08-24 190.200.140.032 78 76 2020-08-30 2020-08-30 045.246.238.122 75 75 2020-08-24 2020-08-24 103.073.150.195 78 75 2020-09-06 2020-09-06 201.110.219.108 76 75 2020-09-06 2020-09-06 076.169.054.024 1813 75 2020-08-20 2020-08-20 014.226.084.118 75 75 2020-08-12 2020-08-12 082.027.175.219 1606 75 2020-09-09 2020-09-09 045.227.255.077 112 75 2020-09-06 2020-09-06 128.116.045.016 392 75 2020-09-04 2020-09-04 180.242.169.246 75 75 2020-09-04 2020-09-04 141.164.040.052 75 75 2020-08-22 2020-08-22 217.182.239.239 5757 75 2020-08-15 2020-08-20 052.112.024.079 203 75 2020-09-01 2020-09-01 046.161.247.101 75 75 2020-08-27 2020-08-27 096.061.018.031 108 75 2020-09-08 2020-09-08 184.105.018.166 10421 75 2020-08-05 2020-08-20 125.164.014.056 77 75 2020-09-04 2020-09-04 195.054.167.094 90 75 2020-08-23 2020-08-23 190.207.013.024 75 75 2020-09-01 2020-09-01 159.069.249.047 78 75 2020-08-29 2020-08-29 162.199.216.127 89 75 2020-08-15 2020-08-15 036.065.205.231 78 75 2020-09-07 2020-09-07 185.244.215.222 29717 75 2020-08-18 2020-08-19 183.080.060.031 81 75 2020-08-21 2020-08-21 108.218.217.020 1394 75 2020-09-04 2020-09-04 075.028.165.111 206 75 2020-09-01 2020-09-01 117.004.012.078 75 75 2020-08-26 2020-08-26 201.159.023.177 155 75 2020-08-18 2020-08-18 089.038.020.117 75 75 2020-08-24 2020-08-24 093.009.078.020 1542 75 2020-09-01 2020-09-01 136.243.034.231 76 75 2020-08-24 2020-08-24 103.086.196.147 75 75 2020-08-15 2020-08-15 014.165.145.056 75 75 2020-09-09 2020-09-09 173.018.163.005 2555 75 2020-08-16 2020-08-16 051.158.095.233 75 75 2020-08-15 2020-08-15 051.038.084.063 1262 75 2020-09-05 2020-09-04 082.026.201.192 3070 75 2020-08-25 2020-08-25 178.032.061.138 75 75 2020-08-11 2020-08-11 171.252.226.009 75 75 2020-08-11 2020-08-11 070.117.131.147 568 75 2020-08-23 2020-08-23 185.236.229.008 125 75 2020-08-15 2020-08-15 014.191.079.022 76 75 2020-09-04 2020-09-04 098.167.031.069 86 75 2020-08-15 2020-08-15 113.166.236.182 79 75 2020-08-20 2020-08-20 109.123.074.191 1128 75 2020-08-18 2020-08-18 188.055.229.172 75 75 2020-09-04 2020-09-04 027.002.091.084 75 75 2020-08-23 2020-08-23 036.090.209.095 75 75 2020-09-01 2020-09-01 024.100.042.042 82 75 2020-08-18 2020-08-18 054.158.102.131 905 75 2020-08-19 2020-08-19 031.167.043.117 3104 75 2020-08-22 2020-08-22 140.190.054.011 1580 75 2020-08-23 2020-08-23 162.243.128.008 74 74 2020-08-23 2020-08-23 164.132.205.136 13270 74 2020-08-11 2020-08-11 060.246.156.192 74 74 2020-08-28 2020-08-28 107.158.154.101 736 74 2020-09-05 2020-09-04 037.201.198.001 4241 74 2020-08-16 2020-08-16 085.105.000.190 75 74 2020-08-21 2020-08-21 192.099.124.019 1479 74 2020-08-26 2020-08-26 051.081.089.164 5455 74 2020-08-16 2020-08-16 078.177.125.176 76 74 2020-09-08 2020-09-08 070.126.013.077 85 74 2020-08-14 2020-08-14 114.027.209.219 77 74 2020-08-15 2020-08-15 031.223.154.084 2088 74 2020-08-25 2020-08-25 185.244.148.107 287 74 2020-08-19 2020-08-19 122.178.184.084 81 74 2020-09-04 2020-09-04 054.038.023.153 2872 74 2020-08-13 2020-08-16 074.099.070.163 595 74 2020-08-15 2020-09-06 014.255.069.164 75 74 2020-08-24 2020-08-24 182.053.222.155 75 74 2020-08-21 2020-08-21 166.170.032.022 5221 74 2020-08-22 2020-08-22 068.174.136.187 1558 74 2020-08-20 2020-08-20 201.210.066.084 77 74 2020-08-12 2020-08-12 190.204.060.208 74 74 2020-08-21 2020-08-21 074.197.143.250 152 74 2020-08-16 2020-08-16 014.176.056.069 74 74 2020-09-01 2020-09-01 158.058.004.025 177 74 2020-09-03 2020-09-03 179.107.048.009 647 74 2020-09-04 2020-09-04 195.099.138.037 857 74 2020-08-30 2020-08-30 176.031.240.143 9128 74 2020-08-22 2020-08-22 190.229.176.084 76 74 2020-08-17 2020-08-17 020.037.082.125 96 74 2020-08-19 2020-08-19 082.007.083.106 113 74 2020-08-22 2020-08-22 108.056.149.086 1804 74 2020-09-02 2020-09-02 199.231.233.040 9401 74 2020-08-18 2020-08-18 068.074.212.167 8255 74 2020-08-21 2020-08-21 190.078.065.028 76 74 2020-08-26 2020-08-26 174.109.140.089 74 74 2020-08-21 2020-08-21 123.201.156.135 79 74 2020-08-18 2020-08-18 185.176.027.118 304 74 2020-09-09 2020-09-08 180.253.027.207 76 74 2020-08-28 2020-08-28 173.245.203.064 5590 74 2020-08-13 2020-08-18 110.136.218.009 75 74 2020-09-09 2020-09-09 095.179.204.025 3553 74 2020-08-23 2020-08-23 223.205.218.017 74 74 2020-08-26 2020-08-26 122.170.102.128 74 74 2020-08-27 2020-08-26 180.241.036.086 74 74 2020-08-18 2020-08-18 151.236.176.189 74 74 2020-08-17 2020-08-17 067.248.172.218 663 74 2020-09-09 2020-09-09 091.222.250.066 74 74 2020-08-17 2020-08-17 036.092.175.189 77 74 2020-09-01 2020-09-01 081.016.205.113 1946 74 2020-08-27 2020-08-27 103.212.224.151 5614 74 2020-08-22 2020-08-22 158.069.146.050 94 74 2020-08-20 2020-08-19 115.077.208.116 74 74 2020-08-25 2020-08-25 122.160.009.089 74 74 2020-08-13 2020-08-13 118.068.099.215 74 74 2020-08-21 2020-08-21 045.145.067.182 87 74 2020-08-23 2020-08-23 128.000.244.199 75 74 2020-08-28 2020-08-28 049.151.173.062 77 74 2020-08-25 2020-08-25 113.161.092.214 78 74 2020-08-22 2020-08-22 077.222.109.202 76 74 2020-08-26 2020-08-26 181.018.029.255 75 74 2020-08-19 2020-08-19 186.095.169.057 75 74 2020-09-07 2020-09-07 003.015.153.070 1995 73 2020-08-23 2020-08-23 044.234.098.141 132 73 2020-09-07 2020-09-07 109.165.016.018 73 73 2020-09-06 2020-09-06 116.101.238.132 77 73 2020-09-01 2020-09-01 079.238.209.018 76 73 2020-08-29 2020-08-29 041.032.200.194 73 73 2020-08-12 2020-08-12 074.091.123.111 86 73 2020-08-23 2020-08-22 088.206.001.088 74 73 2020-08-22 2020-08-22 074.091.113.129 715 73 2020-08-13 2020-08-20 072.203.047.244 326 73 2020-08-29 2020-08-29 066.070.148.094 2969 73 2020-08-19 2020-08-19 197.032.222.110 73 73 2020-09-03 2020-09-02 073.203.250.135 5004 73 2020-08-22 2020-08-22 188.213.134.128 73 73 2020-09-05 2020-09-05 104.244.227.167 73 73 2020-09-09 2020-09-09 046.153.070.163 81 73 2020-08-22 2020-08-22 212.156.213.227 692137 73 2020-08-28 2020-08-29 023.243.148.111 83 73 2020-08-16 2020-08-16 064.119.027.237 75 73 2020-09-04 2020-09-04 001.186.057.146 75 73 2020-09-04 2020-09-04 027.002.129.086 73 73 2020-08-24 2020-08-24 073.161.164.048 228 73 2020-08-14 2020-08-14 036.088.038.235 73 73 2020-08-29 2020-08-29 172.058.087.061 83 73 2020-08-24 2020-08-24 162.248.092.027 3254 73 2020-08-14 2020-08-14 095.179.205.210 2042 73 2020-08-23 2020-08-23 157.043.245.031 73 73 2020-08-30 2020-08-30 181.037.041.225 77 73 2020-09-09 2020-09-09 086.002.180.133 1272 73 2020-09-01 2020-09-01 146.199.016.046 294 73 2020-08-31 2020-08-31 077.246.248.041 73 73 2020-08-30 2020-08-30 174.128.236.106 83 73 2020-08-20 2020-08-20 091.217.059.079 73 73 2020-09-07 2020-09-07 045.148.010.055 148 73 2020-09-04 2020-09-04 185.176.027.106 284 73 2020-09-09 2020-09-08 069.250.201.061 1230 73 2020-08-21 2020-08-21 176.124.010.181 75 73 2020-09-09 2020-09-09 034.089.180.232 4316 73 2020-08-10 2020-08-21 107.146.191.013 323 73 2020-08-28 2020-08-28 078.101.094.208 80 73 2020-08-15 2020-08-15 162.231.222.157 1159 72 2020-08-28 2020-08-28 054.039.201.103 93 72 2020-08-25 2020-08-25 180.178.154.153 72 72 2020-08-30 2020-08-30 095.027.090.126 73 72 2020-09-01 2020-09-01 192.223.025.170 1059 72 2020-08-22 2020-08-30 190.203.140.230 74 72 2020-08-23 2020-08-23 193.123.002.105 197 72 2020-08-21 2020-08-21 103.047.094.164 74 72 2020-09-05 2020-09-05 005.226.142.185 7973 72 2020-08-05 2020-08-11 192.200.104.162 1035 72 2020-09-04 2020-09-04 068.081.029.246 3002 72 2020-08-18 2020-08-18 162.248.094.085 10699 72 2020-08-22 2020-08-22 014.166.036.200 72 72 2020-09-01 2020-09-01 104.019.235.123 5391 72 2020-08-22 2020-08-22 185.049.147.100 72 72 2020-09-01 2020-09-01 138.099.216.092 205 72 2020-09-08 2020-09-07 066.070.180.094 75 72 2020-08-30 2020-08-30 031.170.161.041 180 72 2020-09-08 2020-09-08 109.063.213.003 72 72 2020-09-08 2020-09-08 076.205.135.004 75 72 2020-09-05 2020-09-05 120.050.013.217 73 72 2020-08-23 2020-08-23 223.029.196.221 78 72 2020-09-08 2020-09-08 203.100.222.089 7979 72 2020-08-17 2020-08-17 074.101.209.077 191 72 2020-09-01 2020-09-01 067.003.035.103 143 72 2020-08-24 2020-08-24 185.176.027.170 273 72 2020-09-09 2020-09-08 052.202.062.250 3902 72 2020-08-06 2020-08-20 095.139.234.000 75 72 2020-08-16 2020-08-16 049.205.226.126 74 72 2020-08-12 2020-08-12 078.212.075.221 118 72 2020-08-26 2020-08-26 001.055.000.091 73 72 2020-09-03 2020-09-03 073.166.025.056 213 72 2020-09-01 2020-09-01 183.083.212.036 73 72 2020-09-04 2020-09-04 051.081.030.251 4497 72 2020-08-12 2020-08-21 185.176.027.126 296 72 2020-09-09 2020-09-08 210.026.051.118 72 72 2020-09-03 2020-09-03 200.046.004.046 72 72 2020-09-04 2020-09-04 027.005.009.116 72 72 2020-09-04 2020-09-04 046.098.121.068 74 72 2020-08-23 2020-08-23 209.077.217.133 130 72 2020-09-06 2020-09-06 045.061.142.150 103 72 2020-09-03 2020-09-03 045.129.033.055 85 72 2020-08-31 2020-08-31 190.199.051.018 72 72 2020-08-28 2020-08-28 201.208.006.011 72 72 2020-09-07 2020-09-07 187.028.205.146 72 72 2020-08-20 2020-08-20 124.011.208.201 75 72 2020-09-06 2020-09-06 176.040.224.131 74 72 2020-08-17 2020-08-17 071.105.173.187 89 72 2020-08-22 2020-08-22 139.162.087.083 176 72 2020-08-20 2020-08-20 171.243.253.194 75 72 2020-08-18 2020-08-18 092.001.147.140 864 72 2020-09-06 2020-09-06 107.178.107.170 201 71 2020-08-18 2020-08-18 014.168.098.173 71 71 2020-08-13 2020-08-13 201.208.055.113 71 71 2020-08-15 2020-08-15 172.058.092.154 4775 71 2020-08-22 2020-08-22 125.099.046.049 1660 71 2020-08-07 2020-08-23 073.046.205.053 1320 71 2020-08-28 2020-08-28 094.002.139.100 95 71 2020-08-22 2020-08-22 117.248.133.156 72 71 2020-08-26 2020-08-26 185.176.027.046 274 71 2020-09-09 2020-09-08 024.086.244.151 142 71 2020-08-21 2020-08-21 223.205.235.040 71 71 2020-09-06 2020-09-06 118.096.210.206 75 71 2020-09-09 2020-09-09 109.147.182.107 822 71 2020-09-05 2020-09-05 118.166.142.245 71 71 2020-08-27 2020-08-27 173.077.206.147 7258 71 2020-08-22 2020-08-22 051.195.180.045 2215 71 2020-08-21 2020-08-21 173.059.051.150 9556 71 2020-08-12 2020-08-21 172.058.035.046 81 71 2020-08-14 2020-08-14 099.203.030.109 906 71 2020-08-26 2020-08-26 118.173.234.039 71 71 2020-09-03 2020-09-03 079.157.176.097 73 71 2020-09-06 2020-09-06 113.179.040.044 71 71 2020-08-17 2020-08-17 171.236.118.090 71 71 2020-08-13 2020-08-13 035.163.045.020 1168 71 2020-09-07 2020-09-07 172.058.172.212 7853 71 2020-08-17 2020-08-17 014.247.071.028 73 71 2020-08-19 2020-08-19 193.025.253.014 183 71 2020-09-01 2020-09-01 071.182.128.164 87 71 2020-08-24 2020-08-24 174.217.024.252 81 71 2020-08-22 2020-08-22 122.008.111.089 72 71 2020-09-03 2020-09-03 068.103.185.201 4516 71 2020-08-09 2020-08-21 173.002.249.217 8689 71 2020-08-18 2020-08-18 018.157.184.006 4263 71 2020-08-19 2020-08-19 192.223.031.176 857 71 2020-08-29 2020-08-29 090.112.202.244 105 71 2020-08-25 2020-08-25 157.039.076.136 72 71 2020-08-25 2020-08-25 190.207.095.185 72 71 2020-09-09 2020-09-09 092.009.194.210 10336 71 2020-08-20 2020-08-20 113.160.221.036 71 71 2020-09-07 2020-09-07 073.155.166.080 177 71 2020-09-09 2020-09-09 113.160.148.134 71 71 2020-08-13 2020-08-13 027.074.026.133 72 71 2020-09-08 2020-09-08 189.222.124.026 182 71 2020-08-25 2020-08-25 201.243.034.067 74 71 2020-08-15 2020-08-15 201.209.169.250 72 71 2020-08-23 2020-08-23 167.114.200.073 2679 71 2020-09-02 2020-09-02 223.072.165.115 74 71 2020-08-28 2020-08-28 052.230.009.249 174 71 2020-08-18 2020-08-18 041.209.096.246 74 71 2020-08-18 2020-08-18 189.216.105.199 73 71 2020-09-01 2020-09-01 066.038.061.034 11171 71 2020-08-25 2020-08-25 104.031.076.075 107 71 2020-09-06 2020-09-06 073.197.039.089 292 71 2020-08-19 2020-08-19 193.042.136.004 3366 71 2020-08-25 2020-08-25 162.062.067.182 93 71 2020-08-25 2020-08-25 110.137.227.233 71 71 2020-08-19 2020-08-19 070.163.169.073 8801 71 2020-08-22 2020-08-22 014.162.160.051 71 71 2020-08-14 2020-08-14 076.110.035.136 8016 71 2020-08-22 2020-08-22 001.052.201.217 71 71 2020-08-22 2020-08-22 067.188.077.157 855 71 2020-09-05 2020-09-05 047.186.193.246 907 71 2020-09-07 2020-09-07 108.223.152.224 115 71 2020-08-26 2020-08-26 090.244.203.043 380 71 2020-08-20 2020-08-19 117.007.135.154 75 71 2020-08-24 2020-08-24 080.230.065.102 93 71 2020-09-03 2020-09-03 203.194.101.251 70 70 2020-08-25 2020-08-25 062.039.215.003 79 70 2020-08-27 2020-08-27 073.052.034.085 80 70 2020-08-19 2020-08-19 045.134.179.122 94470 70 2020-07-18 2020-08-17 092.025.214.176 80 70 2020-08-15 2020-08-15 051.079.173.247 88 70 2020-08-22 2020-08-22 115.066.141.248 70 70 2020-09-08 2020-09-08 105.112.115.064 70 70 2020-09-02 2020-09-02 099.084.008.067 5804 70 2020-08-20 2020-08-20 068.134.017.150 140 70 2020-09-04 2020-09-04 194.045.197.010 73 70 2020-08-21 2020-08-21 052.188.172.225 70 70 2020-08-13 2020-08-13 073.041.036.225 137 70 2020-09-03 2020-09-03 183.182.121.130 74 70 2020-08-30 2020-08-29 051.077.103.225 1307 70 2020-08-26 2020-08-26 086.000.094.029 82 70 2020-08-15 2020-08-15 074.091.113.190 19069 70 2020-08-22 2020-08-22 099.071.221.229 100 70 2020-08-20 2020-08-20 123.021.175.023 73 70 2020-08-30 2020-08-30 188.070.004.144 143 70 2020-08-17 2020-08-17 181.088.207.194 70 70 2020-09-01 2020-09-01 099.150.224.240 121 70 2020-08-26 2020-08-26 045.134.179.102 94553 70 2020-07-20 2020-08-17 194.026.027.104 67359 70 2020-09-02 2020-09-07 201.248.098.255 71 70 2020-09-05 2020-09-05 175.126.189.243 154856 70 2020-07-09 2020-09-06 005.082.171.014 70 70 2020-08-16 2020-08-16 014.243.097.209 71 70 2020-08-20 2020-08-20 095.134.189.032 73 70 2020-09-09 2020-09-09 073.214.211.087 415 70 2020-09-07 2020-09-07 071.210.002.177 7773 70 2020-08-22 2020-08-22 222.141.207.246 38389 70 2020-08-20 2020-09-08 192.233.026.055 3594 70 2020-08-19 2020-08-18 154.179.102.016 70 70 2020-08-23 2020-08-23 125.160.105.004 71 70 2020-08-11 2020-08-11 081.089.120.183 70 70 2020-09-09 2020-09-09 192.099.010.122 126 70 2020-09-01 2020-08-31 213.246.110.206 131 70 2020-08-24 2020-08-24 014.162.157.138 75 70 2020-08-12 2020-08-12 001.010.209.119 70 70 2020-09-08 2020-09-08 177.148.074.105 70 70 2020-08-24 2020-08-24 180.246.003.148 71 70 2020-08-26 2020-08-26 077.068.064.012 158 70 2020-08-23 2020-08-23 201.148.144.221 70 70 2020-08-14 2020-08-14 052.113.221.202 160 70 2020-09-03 2020-09-03 014.188.161.191 71 70 2020-08-27 2020-08-27 099.111.086.198 9391 70 2020-08-15 2020-08-16 186.091.071.199 80 70 2020-09-05 2020-09-05 190.217.007.066 2159 70 2020-08-22 2020-08-22 176.251.004.152 5881 70 2020-08-16 2020-08-16 115.188.251.215 191 70 2020-08-22 2020-08-22 037.104.093.114 1095 70 2020-08-27 2020-08-27 070.042.199.087 719 70 2020-09-02 2020-09-02 085.093.060.230 70 70 2020-09-07 2020-09-07 138.197.110.201 73 70 2020-09-08 2020-09-08 070.126.158.042 353 70 2020-08-28 2020-08-28 069.248.090.249 377 70 2020-09-02 2020-09-02 201.210.018.190 71 70 2020-08-22 2020-08-22 164.068.112.178 120 70 2020-09-08 2020-09-07 105.067.135.053 111 69 2020-09-04 2020-09-04 087.002.183.150 111 69 2020-09-04 2020-09-04 051.081.033.041 6277 69 2020-08-22 2020-08-22 185.176.027.086 282 69 2020-09-09 2020-09-08 186.090.039.052 73 69 2020-09-07 2020-09-07 014.232.144.235 69 69 2020-08-15 2020-08-15 104.237.255.248 10646 69 2020-07-25 2020-08-15 183.080.213.038 69 69 2020-09-08 2020-09-08 184.056.212.019 72 69 2020-08-30 2020-08-30 185.178.208.161 105 69 2020-08-27 2020-08-27 185.200.118.051 71 69 2020-08-22 2020-08-22 192.035.169.048 125 69 2020-09-08 2020-09-07 147.135.031.187 110 69 2020-08-12 2020-08-12 213.166.130.218 71 69 2020-09-07 2020-09-07 024.105.052.115 1140 69 2020-09-07 2020-09-07 031.017.252.032 108 69 2020-08-23 2020-08-23 184.167.002.168 165 69 2020-09-04 2020-09-04 076.099.249.137 2565 69 2020-08-20 2020-08-20 073.012.033.168 5519 69 2020-08-22 2020-08-22 051.077.031.047 91 69 2020-08-22 2020-08-22 201.248.255.045 69 69 2020-08-11 2020-08-11 008.009.090.016 7098 69 2020-08-21 2020-08-21 091.241.019.166 69 69 2020-09-04 2020-09-04 079.157.014.001 92 69 2020-09-04 2020-09-04 198.027.103.176 4064 69 2020-08-19 2020-08-19 002.190.103.033 69 69 2020-08-22 2020-08-22 051.158.095.234 70 69 2020-08-15 2020-08-15 070.173.176.188 2564 69 2020-08-20 2020-08-20 077.160.077.009 72 69 2020-09-08 2020-09-08 088.206.091.207 69 69 2020-08-23 2020-08-23 098.169.049.200 221 69 2020-08-19 2020-08-19 051.089.213.229 71 69 2020-08-27 2020-08-27 136.232.186.006 4625 69 2020-08-13 2020-09-07 081.215.171.004 69 69 2020-08-13 2020-08-13 172.058.038.210 85 69 2020-08-14 2020-08-14 217.138.203.253 1296 69 2020-09-01 2020-09-01 005.182.039.185 112 69 2020-08-20 2020-08-19 174.227.132.196 7413 69 2020-08-22 2020-08-22 185.176.027.058 269 69 2020-09-09 2020-09-08 158.069.063.220 7881 69 2020-08-24 2020-08-24 198.251.158.055 285 69 2020-08-27 2020-08-27 142.044.254.097 6997 69 2020-08-17 2020-08-17 076.235.205.100 1056 69 2020-09-03 2020-09-03 193.025.253.040 1015 69 2020-08-24 2020-08-24 086.014.084.224 87 68 2020-08-22 2020-08-22 183.088.125.194 68 68 2020-08-25 2020-08-25 161.156.141.010 828 68 2020-08-20 2020-08-20 194.125.039.113 3513 68 2020-08-21 2020-08-20 062.064.177.142 78 68 2020-08-20 2020-08-20 036.234.136.108 69 68 2020-08-16 2020-08-16 190.037.063.154 68 68 2020-09-06 2020-09-06 108.048.154.134 3580 68 2020-08-16 2020-08-16 068.103.210.046 1563 68 2020-08-15 2020-08-15 049.146.011.170 68 68 2020-08-19 2020-08-19 186.091.166.014 68 68 2020-08-20 2020-08-20 066.070.148.083 522 68 2020-08-31 2020-08-31 099.002.051.070 2187 68 2020-08-19 2020-08-19 197.244.069.249 70 68 2020-08-31 2020-08-31 079.066.095.215 80 68 2020-09-04 2020-09-04 052.183.216.086 80 68 2020-08-15 2020-08-15 185.200.118.038 68 68 2020-09-07 2020-09-07 045.168.122.145 69 68 2020-08-25 2020-08-25 024.067.151.148 257 68 2020-08-30 2020-08-30 005.188.062.011 833160 68 2020-08-04 2020-09-07 074.120.014.064 72 68 2020-09-04 2020-09-03 045.225.203.002 683 68 2020-08-15 2020-08-17 185.244.213.142 677 68 2020-08-19 2020-08-19 104.190.197.212 5447 68 2020-08-23 2020-08-23 073.229.249.109 916 68 2020-09-06 2020-09-06 078.193.187.010 10191 68 2020-08-15 2020-08-15 051.081.075.007 78 68 2020-08-15 2020-08-15 059.126.048.162 68 68 2020-09-07 2020-09-07 094.102.050.137 89 68 2020-08-19 2020-08-18 001.053.179.206 68 68 2020-08-28 2020-08-28 177.037.159.155 69 68 2020-08-27 2020-08-27 080.006.253.164 74 68 2020-08-18 2020-08-18 047.133.201.093 1579 68 2020-08-26 2020-08-26 194.067.108.242 2615 68 2020-08-15 2020-08-15 136.144.055.091 71 68 2020-08-28 2020-08-28 076.111.055.177 2316 68 2020-08-15 2020-08-15 186.089.023.178 68 68 2020-09-04 2020-09-03 187.011.129.055 68 68 2020-08-28 2020-08-28 034.054.088.008 645 68 2020-09-05 2020-09-05 182.176.098.190 68 68 2020-09-07 2020-09-07 049.180.141.085 2352 68 2020-08-22 2020-08-22 041.230.054.098 70 68 2020-09-07 2020-09-07 189.112.102.251 68 68 2020-09-05 2020-09-05 136.053.101.127 627 68 2020-08-26 2020-08-26 186.094.034.047 68 68 2020-08-24 2020-08-24 049.229.179.237 74 68 2020-09-02 2020-09-02 192.223.030.089 78 68 2020-08-25 2020-08-25 068.057.168.198 4699 68 2020-08-25 2020-08-25 212.102.063.133 278 68 2020-08-31 2020-08-30 212.102.053.065 386 68 2020-08-31 2020-08-31 036.079.175.011 68 68 2020-08-23 2020-08-23 036.233.053.132 75 68 2020-08-21 2020-08-21 077.243.177.120 2995 68 2020-08-16 2020-08-16 222.124.067.201 68 68 2020-08-31 2020-08-31 073.060.078.240 119 68 2020-09-09 2020-09-09 082.008.243.143 2057 68 2020-08-24 2020-08-24 151.080.111.185 4059 68 2020-08-24 2020-08-24 005.025.070.243 70 68 2020-09-05 2020-09-05 185.175.093.003 93 68 2020-08-21 2020-08-20 190.078.168.046 68 68 2020-09-01 2020-09-01 192.223.027.086 3358 68 2020-08-18 2020-08-18 049.034.144.137 68 68 2020-09-07 2020-09-07 042.117.069.005 73 68 2020-08-20 2020-08-20 117.154.147.016 2498 68 2020-08-16 2020-08-16 188.000.011.213 69 68 2020-08-13 2020-08-13 172.248.241.206 7068 68 2020-08-16 2020-08-16 118.171.116.237 70 68 2020-08-31 2020-08-31 107.009.133.134 723 68 2020-09-07 2020-09-07 041.239.252.237 68 68 2020-08-20 2020-08-19 068.040.210.033 346 68 2020-08-19 2020-08-19 050.125.055.147 1098 68 2020-09-08 2020-09-08 066.055.128.070 78 67 2020-08-17 2020-08-17 115.075.190.059 67 67 2020-09-06 2020-09-06 095.106.158.207 70 67 2020-08-18 2020-08-18 190.078.240.115 68 67 2020-08-31 2020-08-31 108.027.247.085 3384 67 2020-08-23 2020-08-23 103.203.147.092 67 67 2020-08-22 2020-08-22 144.172.066.103 2609 67 2020-08-19 2020-08-19 073.011.252.125 214 67 2020-08-22 2020-08-22 098.213.183.115 70 67 2020-09-05 2020-09-05 092.063.196.023 143 67 2020-08-29 2020-08-28 073.075.112.229 3588 67 2020-08-25 2020-08-25 014.226.072.215 67 67 2020-08-21 2020-08-21 041.210.143.013 71 67 2020-09-03 2020-09-03 015.184.014.168 72 67 2020-08-22 2020-08-22 186.088.049.237 70 67 2020-08-11 2020-08-11 072.177.127.135 666 67 2020-08-27 2020-08-27 162.062.067.237 75 67 2020-08-21 2020-08-21 185.200.118.056 67 67 2020-08-26 2020-08-26 052.115.168.047 169 67 2020-09-01 2020-09-01 177.239.022.066 758 67 2020-08-30 2020-08-30 108.233.173.177 88 67 2020-08-11 2020-08-11 051.143.032.059 154 67 2020-09-02 2020-09-02 092.096.043.207 95 67 2020-08-14 2020-08-14 051.195.157.084 6735 67 2020-08-21 2020-08-21 041.033.208.169 69 67 2020-08-11 2020-08-11 014.192.209.008 69 67 2020-09-02 2020-09-02 115.239.090.123 75 67 2020-09-04 2020-09-04 051.091.021.058 101 67 2020-09-09 2020-09-09 095.158.198.251 69 67 2020-09-07 2020-09-07 034.105.055.163 4049 67 2020-08-20 2020-08-23 071.205.206.191 1145 67 2020-08-15 2020-08-14 073.041.180.034 313 67 2020-08-28 2020-08-28 082.031.112.238 77 67 2020-08-23 2020-08-23 185.175.093.004 88 67 2020-08-21 2020-08-20 193.122.217.026 125 67 2020-09-09 2020-09-09 112.110.003.237 71 67 2020-08-27 2020-08-27 086.177.125.140 82 67 2020-09-06 2020-09-06 202.152.149.092 67 67 2020-09-02 2020-09-02 202.151.229.092 79 67 2020-08-12 2020-08-12 092.239.117.073 860 67 2020-09-07 2020-09-07 069.251.062.124 1783 67 2020-08-20 2020-08-20 051.161.099.077 154 67 2020-09-06 2020-09-06 008.047.013.096 74 67 2020-09-02 2020-09-02 051.083.003.220 69 67 2020-08-21 2020-08-21 051.235.069.190 1114 66 2020-08-27 2020-08-27 008.009.230.181 93 66 2020-08-23 2020-08-23 218.212.012.038 68 66 2020-08-22 2020-08-22 149.167.091.007 4616 66 2020-08-22 2020-08-22 046.100.155.243 67 66 2020-09-01 2020-09-01 138.128.231.181 3218 66 2020-08-17 2020-08-17 045.056.142.191 675 66 2020-09-08 2020-09-08 081.004.234.080 66 66 2020-09-08 2020-09-08 162.062.066.072 77 66 2020-08-19 2020-08-19 186.010.214.127 1505 66 2020-08-16 2020-08-16 190.206.105.128 67 66 2020-08-26 2020-08-26 172.058.236.208 76 66 2020-08-18 2020-08-18 005.200.008.184 3275 66 2020-08-25 2020-08-25 051.195.132.111 2364 66 2020-08-23 2020-08-23 188.166.160.174 76 66 2020-08-15 2020-08-15 088.237.127.084 67 66 2020-09-06 2020-09-06 054.039.130.142 207 66 2020-08-25 2020-08-25 014.172.053.168 67 66 2020-09-07 2020-09-07 052.033.047.219 77 66 2020-08-15 2020-08-15 174.054.005.222 89 66 2020-08-22 2020-08-22 123.020.093.180 69 66 2020-09-02 2020-09-02 178.239.161.130 76 66 2020-08-23 2020-08-23 051.178.084.222 170 66 2020-09-06 2020-09-06 157.049.214.049 66 66 2020-08-20 2020-08-20 014.162.149.137 66 66 2020-08-24 2020-08-24 185.200.118.073 67 66 2020-08-17 2020-08-17 071.120.216.132 76 66 2020-08-22 2020-08-22 190.077.108.248 66 66 2020-08-14 2020-08-14 185.014.249.099 105 66 2020-08-22 2020-08-22 067.010.055.180 296 66 2020-08-29 2020-08-29 185.176.027.090 278 66 2020-09-09 2020-09-08 031.148.164.179 67 66 2020-09-08 2020-09-08 221.147.179.178 69 66 2020-08-29 2020-08-29 135.181.002.025 78 66 2020-09-06 2020-09-06 089.248.162.161 4157 66 2020-08-27 2020-09-03 005.112.020.066 66 66 2020-08-11 2020-08-11 046.239.053.205 68 66 2020-08-30 2020-08-30 054.039.246.082 3048 66 2020-08-19 2020-08-19 027.071.098.149 67 66 2020-08-31 2020-08-31 118.068.238.088 82 66 2020-08-20 2020-08-20 116.107.186.203 69 66 2020-08-24 2020-08-24 036.092.003.079 85 66 2020-08-31 2020-08-31 182.052.021.002 66 66 2020-08-24 2020-08-24 003.008.209.234 4470 66 2020-08-23 2020-08-23 069.255.062.026 719 66 2020-09-03 2020-09-03 037.010.127.082 87 66 2020-08-20 2020-08-20 082.176.164.039 76 66 2020-08-18 2020-08-18 062.016.056.077 66 66 2020-08-22 2020-08-22 088.201.126.153 75 66 2020-08-14 2020-08-14 014.228.042.060 66 66 2020-09-02 2020-09-02 062.149.029.167 67 66 2020-08-28 2020-08-28 001.052.186.003 67 66 2020-08-23 2020-08-23 172.107.197.106 543 66 2020-08-23 2020-08-23 093.174.093.195 172 66 2020-08-26 2020-08-25 195.135.248.026 192 66 2020-09-09 2020-09-09 098.233.057.156 823 66 2020-09-06 2020-09-06 068.004.038.146 193 66 2020-08-29 2020-08-29 046.251.240.135 81 66 2020-08-30 2020-08-30 014.245.201.226 69 66 2020-09-07 2020-09-07 093.191.167.036 313 66 2020-08-30 2020-08-30 197.252.161.036 67 66 2020-08-30 2020-08-30 014.171.166.109 66 66 2020-08-27 2020-08-27 183.087.222.083 66 66 2020-09-08 2020-09-08 186.137.147.081 132 66 2020-08-31 2020-08-31 080.002.214.075 72 66 2020-08-18 2020-08-18 001.055.109.072 66 66 2020-08-27 2020-08-27 173.017.125.222 901 66 2020-09-07 2020-09-07 176.044.217.114 66 66 2020-08-23 2020-08-23 159.203.203.233 10358 66 2020-08-13 2020-08-13 090.248.092.189 4005 66 2020-08-24 2020-08-24 185.128.027.100 909 66 2020-08-25 2020-08-31 082.132.223.218 743 66 2020-08-12 2020-08-12 144.048.104.146 75 65 2020-08-14 2020-08-14 095.142.121.030 65 65 2020-09-05 2020-09-05 065.029.108.172 141 65 2020-08-20 2020-08-20 051.022.033.060 85 65 2020-08-22 2020-08-22 074.091.119.217 138 65 2020-08-21 2020-08-21 212.019.106.136 65 65 2020-08-17 2020-08-17 157.036.204.060 67 65 2020-09-07 2020-09-07 054.187.229.246 299 65 2020-09-03 2020-09-03 058.065.133.121 65 65 2020-08-13 2020-08-13 068.183.062.179 68 65 2020-09-07 2020-09-07 045.084.196.236 3692 65 2020-08-23 2020-09-06 216.145.081.138 184 65 2020-08-25 2020-08-25 092.063.196.033 119 65 2020-09-03 2020-09-02 062.254.185.162 658 65 2020-09-03 2020-09-03 103.233.154.250 65 65 2020-09-02 2020-09-02 092.234.028.017 947 65 2020-09-08 2020-09-08 192.023.026.055 2419 65 2020-08-19 2020-08-19 005.214.002.231 576 65 2020-09-08 2020-09-08 041.086.062.108 65 65 2020-08-22 2020-08-22 078.145.149.185 650 65 2020-09-08 2020-09-08 103.028.036.094 181 65 2020-08-26 2020-08-26 198.251.156.203 245 65 2020-08-24 2020-08-24 085.100.049.005 67 65 2020-09-01 2020-09-01 062.210.073.085 89 65 2020-08-16 2020-08-16 134.209.021.147 769 65 2020-09-01 2020-08-31 098.177.151.211 101 65 2020-09-08 2020-09-08 051.075.091.122 82 65 2020-08-18 2020-08-18 193.032.161.145 93 65 2020-08-21 2020-08-20 190.138.202.190 65 65 2020-08-25 2020-08-25 223.071.167.165 158 65 2020-08-14 2020-08-13 116.108.112.152 65 65 2020-08-13 2020-08-13 071.190.128.203 76 65 2020-08-14 2020-08-14 089.248.162.179 4626 65 2020-09-02 2020-09-04 073.208.222.137 715 65 2020-09-08 2020-09-08 141.136.079.171 77 65 2020-08-14 2020-08-14 092.106.168.210 456 65 2020-08-26 2020-08-26 177.070.069.099 69 65 2020-09-02 2020-09-02 068.224.009.035 1618 65 2020-08-27 2020-08-27 173.025.069.240 75 65 2020-08-17 2020-08-17 086.173.054.201 2089 65 2020-09-01 2020-09-01 191.249.010.053 65 65 2020-08-27 2020-08-27 213.166.134.195 980 65 2020-09-08 2020-09-08 186.095.051.112 65 65 2020-08-21 2020-08-21 051.075.166.227 149 65 2020-08-22 2020-08-22 088.207.128.037 106 65 2020-08-22 2020-08-22 154.183.170.210 65 65 2020-08-30 2020-08-30 109.117.235.082 163 65 2020-08-25 2020-08-24 160.002.014.019 126 65 2020-08-14 2020-08-14 164.132.145.018 3703 65 2020-08-22 2020-08-22 188.037.191.006 756 65 2020-08-30 2020-08-30 117.004.241.061 65 65 2020-08-28 2020-08-28 062.004.016.171 88 65 2020-09-04 2020-09-04 167.250.067.018 65 65 2020-09-02 2020-09-02 197.250.225.093 67 65 2020-08-24 2020-08-24 086.190.186.123 79 65 2020-08-16 2020-08-16 068.132.119.241 312 65 2020-08-20 2020-08-20 051.077.103.235 5705 65 2020-08-15 2020-08-15 088.207.190.108 75 65 2020-08-15 2020-08-15 069.250.138.011 77 65 2020-08-16 2020-08-16 178.075.239.237 65 65 2020-09-06 2020-09-06 197.032.164.106 66 65 2020-08-23 2020-08-23 162.159.135.234 215 65 2020-08-19 2020-08-19 014.232.210.008 125 65 2020-08-21 2020-08-21 111.092.136.023 65 65 2020-08-13 2020-08-13 138.185.154.041 2433 65 2020-08-19 2020-08-19 066.070.148.090 1044 65 2020-08-19 2020-08-19 054.157.053.162 354 65 2020-09-08 2020-09-08 166.170.032.224 131 65 2020-08-16 2020-08-16 067.003.061.163 72 65 2020-08-24 2020-08-24 191.096.097.126 70 64 2020-09-01 2020-08-31 062.249.146.066 65 64 2020-08-16 2020-08-16 071.190.128.189 76 64 2020-08-14 2020-08-14 073.135.061.013 3583 64 2020-08-21 2020-08-21 087.143.251.214 948 64 2020-08-29 2020-08-29 193.032.161.149 100 64 2020-08-21 2020-08-20 081.106.105.012 258 64 2020-08-29 2020-08-29 174.248.118.053 3062 64 2020-08-19 2020-08-19 178.073.215.171 81 64 2020-08-19 2020-08-18 101.100.129.186 3180 64 2020-08-18 2020-08-18 119.235.053.170 66 64 2020-08-19 2020-08-19 098.161.213.060 263 64 2020-08-29 2020-08-29 144.217.234.242 8923 64 2020-08-21 2020-08-21 180.243.080.112 64 64 2020-08-25 2020-08-25 046.017.107.161 64 64 2020-09-07 2020-09-07 013.211.136.213 67 64 2020-08-30 2020-08-30 181.166.232.128 67 64 2020-08-29 2020-08-29 087.095.185.248 65 64 2020-08-15 2020-08-15 192.223.026.055 110 64 2020-08-29 2020-08-29 108.225.167.124 626 64 2020-08-30 2020-08-30 099.089.020.152 121 64 2020-08-14 2020-08-14 075.084.053.172 696 64 2020-09-07 2020-09-07 051.081.048.240 1128 64 2020-08-31 2020-08-31 094.054.030.022 65 64 2020-08-13 2020-08-13 185.106.228.028 66 64 2020-08-17 2020-08-17 209.222.028.238 1951 64 2020-08-16 2020-08-16 090.255.136.054 92 64 2020-09-07 2020-09-07 178.044.184.085 64 64 2020-08-30 2020-08-30 139.099.124.173 3770 64 2020-08-22 2020-08-22 171.244.052.143 167 64 2020-08-29 2020-08-29 094.179.154.234 64 64 2020-08-17 2020-08-17 185.165.179.106 64 64 2020-08-21 2020-08-21 031.223.145.237 3473 64 2020-08-13 2020-08-13 174.102.014.187 76 64 2020-08-24 2020-08-24 082.018.231.195 481 64 2020-09-02 2020-09-02 185.176.027.186 270 64 2020-09-09 2020-09-08 098.180.072.170 139 64 2020-09-05 2020-09-05 045.063.047.249 3105 64 2020-08-18 2020-08-18 087.245.246.207 569 64 2020-09-05 2020-09-05 198.251.155.043 258 64 2020-09-08 2020-09-08 091.229.112.011 73 64 2020-08-12 2020-08-12 060.243.104.206 64 64 2020-08-27 2020-08-27 108.061.028.092 90 64 2020-08-18 2020-08-18 001.055.014.222 64 64 2020-08-21 2020-08-21 058.095.250.136 68 64 2020-08-26 2020-08-26 099.203.027.045 72 64 2020-08-21 2020-08-21 046.189.190.027 67 64 2020-09-05 2020-09-05 094.000.110.088 2784 64 2020-08-21 2020-08-21 186.046.166.250 64 64 2020-09-04 2020-09-04 174.244.193.133 71 64 2020-08-23 2020-08-23 086.006.131.192 690 64 2020-08-26 2020-08-26 092.063.197.099 121 64 2020-08-19 2020-08-18 190.078.050.091 65 64 2020-08-14 2020-08-14 091.229.112.009 71 64 2020-08-12 2020-08-12 099.203.031.139 643 64 2020-09-04 2020-09-04 185.176.027.038 283 64 2020-09-09 2020-09-08 186.006.123.221 65 64 2020-08-27 2020-08-27 073.157.245.230 1338 64 2020-09-02 2020-09-02 105.112.038.003 1178 64 2020-09-01 2020-09-01 005.188.206.026 532 63 2020-08-25 2020-08-25 086.244.140.010 126 63 2020-08-27 2020-08-27 077.094.121.238 63 63 2020-08-12 2020-08-12 190.077.224.215 75 63 2020-09-05 2020-09-05 099.113.137.083 74 63 2020-08-15 2020-08-15 096.238.177.139 233 63 2020-08-27 2020-08-27 049.229.160.134 69 63 2020-09-02 2020-09-02 213.166.135.194 1099 63 2020-08-31 2020-08-31 024.059.081.252 115 63 2020-09-02 2020-09-02 200.093.074.195 66 63 2020-09-01 2020-09-01 172.086.114.172 666 63 2020-09-08 2020-09-08 005.188.086.172 1121734 63 2020-08-02 2020-09-08 077.021.251.073 85 63 2020-09-03 2020-09-03 036.074.043.052 63 63 2020-08-24 2020-08-24 074.091.119.021 73 63 2020-08-15 2020-08-15 115.231.140.123 73 63 2020-08-24 2020-08-24 041.080.096.175 63 63 2020-09-05 2020-09-05 037.230.129.056 761 63 2020-09-01 2020-09-01 005.188.086.174 632043 63 2020-07-30 2020-09-07 072.201.057.163 714 63 2020-09-07 2020-09-07 186.090.055.176 64 63 2020-09-07 2020-09-07 052.112.025.154 70 63 2020-08-17 2020-08-17 041.199.016.084 65 63 2020-09-09 2020-09-09 193.123.000.146 106 63 2020-08-20 2020-08-20 180.242.022.067 63 63 2020-09-09 2020-09-09 104.152.052.027 15170 63 2020-08-16 2020-08-30 005.182.039.088 134 63 2020-08-25 2020-08-24 094.183.144.191 82 63 2020-08-17 2020-08-17 108.030.108.124 126 63 2020-08-14 2020-08-14 201.243.035.227 63 63 2020-08-27 2020-08-27 138.121.127.174 64 63 2020-09-08 2020-09-08 123.023.151.153 65 63 2020-08-22 2020-08-22 106.067.100.088 78 63 2020-08-27 2020-08-27 068.092.101.251 3604 63 2020-08-15 2020-08-15 113.023.103.062 87 63 2020-09-06 2020-09-06 222.113.123.070 183 63 2020-08-22 2020-08-22 113.187.173.182 66 63 2020-08-28 2020-08-28 113.177.225.162 63 63 2020-08-17 2020-08-17 094.096.123.207 70 63 2020-08-11 2020-08-11 113.023.102.229 63 63 2020-08-17 2020-08-17 200.093.030.040 65 63 2020-09-04 2020-09-04 001.055.015.089 65 63 2020-08-25 2020-08-25 091.229.112.017 69 63 2020-08-12 2020-08-12 091.229.112.015 68 63 2020-08-12 2020-08-12 014.191.011.009 64 63 2020-08-17 2020-08-17 194.045.197.014 75 63 2020-08-20 2020-08-20 099.010.098.132 1818 63 2020-09-01 2020-09-01 175.100.020.254 70 63 2020-08-17 2020-08-17 075.089.211.045 219 63 2020-09-01 2020-09-01 073.183.021.250 77 63 2020-09-02 2020-09-01 101.109.083.242 64 63 2020-08-24 2020-08-24 008.009.230.169 805 63 2020-08-30 2020-08-30 204.051.094.155 8782 63 2020-08-10 2020-08-25 094.008.001.019 73 63 2020-08-19 2020-08-19 116.096.077.206 65 63 2020-09-04 2020-09-04 051.081.048.238 68 63 2020-09-08 2020-09-08 113.168.139.132 63 63 2020-09-09 2020-09-09 054.161.210.112 131 63 2020-09-08 2020-09-08 069.255.201.018 714 63 2020-09-07 2020-09-07 185.176.027.094 66 63 2020-08-19 2020-08-19 064.040.008.149 88 63 2020-08-20 2020-08-20 049.049.058.063 63 63 2020-09-01 2020-09-01 100.001.199.139 811 63 2020-09-04 2020-09-04 052.039.139.038 2494 63 2020-08-21 2020-08-22 045.035.222.250 2144 63 2020-09-02 2020-09-02 014.226.054.184 77 63 2020-08-25 2020-08-25 121.178.066.111 191 63 2020-08-19 2020-08-19 072.044.074.068 117 63 2020-09-05 2020-09-05 212.102.033.086 3445 63 2020-08-21 2020-08-21 138.201.095.155 62 62 2020-09-08 2020-09-08 188.190.221.041 66 62 2020-08-14 2020-08-14 162.062.066.189 72 62 2020-08-19 2020-08-19 092.063.197.055 129 62 2020-08-20 2020-08-19 190.072.053.014 62 62 2020-08-26 2020-08-26 094.142.028.006 66 62 2020-08-31 2020-08-31 157.050.045.118 63 62 2020-09-01 2020-09-01 180.254.245.112 64 62 2020-09-05 2020-09-05 192.223.029.119 71 62 2020-08-21 2020-08-21 166.182.081.082 691 62 2020-09-02 2020-09-02 001.053.036.064 72 62 2020-08-12 2020-08-12 223.205.220.240 64 62 2020-08-17 2020-08-17 104.156.236.015 1870 62 2020-09-01 2020-09-01 093.081.085.173 64 62 2020-08-31 2020-08-31 036.073.240.010 62 62 2020-09-07 2020-09-07 104.063.232.071 2370 62 2020-08-18 2020-08-18 188.138.017.212 65 62 2020-08-28 2020-08-28 172.058.019.025 90 62 2020-08-23 2020-08-23 193.027.229.219 116 62 2020-09-04 2020-09-03 068.042.117.192 638 62 2020-08-30 2020-08-30 176.192.241.006 62 62 2020-08-31 2020-08-31 185.156.073.050 131 62 2020-08-26 2020-08-25 101.185.001.048 4870 62 2020-08-18 2020-08-18 095.214.052.196 64 62 2020-09-01 2020-08-31 108.119.133.178 653 62 2020-09-02 2020-09-02 203.147.106.237 63 62 2020-08-27 2020-08-27 099.181.097.181 72 62 2020-08-20 2020-08-20 096.059.133.133 72 62 2020-08-18 2020-08-18 128.073.183.027 62 62 2020-08-31 2020-08-31 172.067.202.084 558 62 2020-08-23 2020-08-23 034.203.172.023 62 62 2020-08-23 2020-08-23 108.190.080.153 287 62 2020-08-28 2020-08-28 194.190.093.157 63 62 2020-09-05 2020-09-05 089.011.168.237 74 62 2020-09-04 2020-09-04 186.089.093.220 64 62 2020-08-23 2020-08-23 116.072.126.184 62 62 2020-08-14 2020-08-14 014.177.236.054 63 62 2020-08-14 2020-08-14 037.131.198.029 64 62 2020-08-28 2020-08-28 218.038.057.227 69055 62 2020-08-16 2020-09-08 045.152.182.133 96 62 2020-09-02 2020-09-02 078.129.190.120 1407 62 2020-08-23 2020-08-23 060.248.052.028 62 62 2020-08-21 2020-08-21 101.176.027.180 64 62 2020-09-01 2020-09-01 154.066.132.172 62 62 2020-08-18 2020-08-18 071.082.228.174 91 62 2020-09-08 2020-09-08 186.091.063.113 68 62 2020-09-07 2020-09-07 044.234.082.077 909 62 2020-08-13 2020-08-13 171.248.042.197 63 62 2020-08-14 2020-08-14 099.023.129.078 213 62 2020-08-21 2020-08-21 077.248.167.062 65 62 2020-09-02 2020-09-02 182.253.117.218 68 62 2020-09-01 2020-09-01 024.067.132.048 231 62 2020-08-30 2020-08-30 003.131.076.078 173 62 2020-08-24 2020-08-24 113.163.153.236 62 62 2020-08-14 2020-08-14 101.051.213.105 62 62 2020-08-13 2020-08-13 195.035.091.025 515 62 2020-08-30 2020-08-30 051.077.066.060 63 62 2020-08-21 2020-08-21 099.203.154.017 1097 61 2020-08-31 2020-08-31 172.094.037.006 63 61 2020-08-30 2020-08-30 069.248.079.057 71 61 2020-09-02 2020-09-02 008.047.015.017 784 61 2020-08-19 2020-08-30 213.163.095.229 825 61 2020-08-18 2020-08-18 051.146.013.179 62 61 2020-09-08 2020-09-08 086.247.021.092 61 61 2020-08-20 2020-08-20 024.070.032.045 868 61 2020-08-26 2020-08-26 005.101.166.083 7237 61 2020-08-23 2020-08-23 099.203.022.233 590 61 2020-08-27 2020-08-27 158.051.123.013 123 61 2020-08-25 2020-08-24 156.146.036.113 1103 61 2020-08-21 2020-08-21 130.204.074.111 62 61 2020-09-09 2020-09-08 182.092.010.121 61 61 2020-08-13 2020-08-13 098.242.151.147 251 61 2020-08-22 2020-08-22 192.232.249.163 79 61 2020-08-24 2020-08-24 044.234.103.227 2341 61 2020-08-22 2020-08-22 067.172.202.173 117 61 2020-08-24 2020-08-24 185.202.002.125 9194 61 2020-08-12 2020-08-21 103.200.023.025 243 61 2020-08-28 2020-08-28 174.248.018.053 4568 61 2020-08-18 2020-08-18 184.018.062.053 64 61 2020-09-01 2020-09-01 072.224.041.183 71 61 2020-08-16 2020-08-16 185.217.171.026 4419 61 2020-09-05 2020-09-05 063.241.205.240 299 61 2020-08-30 2020-08-30 154.242.154.120 63 61 2020-08-24 2020-08-24 069.217.135.170 821 61 2020-09-01 2020-09-01 024.079.037.149 151 61 2020-08-25 2020-08-25 166.177.121.105 3424 61 2020-08-26 2020-08-26 027.109.196.139 61 61 2020-08-27 2020-08-27 046.099.188.018 63 61 2020-09-07 2020-09-07 201.211.255.235 61 61 2020-08-15 2020-08-14 117.042.000.175 61 61 2020-08-25 2020-08-25 078.105.022.147 87 61 2020-08-22 2020-08-22 190.205.145.172 65 61 2020-09-07 2020-09-07 176.126.175.020 94 61 2020-08-20 2020-08-20 185.200.118.068 61 61 2020-08-28 2020-08-28 054.039.127.097 6362 61 2020-08-24 2020-08-24 051.037.191.086 257 61 2020-08-28 2020-08-28 090.202.102.168 502 61 2020-08-31 2020-08-31 103.103.040.073 716 61 2020-08-31 2020-08-31 069.023.078.066 628 61 2020-08-22 2020-08-22 125.167.092.166 63 61 2020-09-08 2020-09-08 059.097.209.027 61 61 2020-08-31 2020-08-31 175.158.216.092 61 61 2020-08-21 2020-08-21 100.006.107.062 4099 61 2020-08-15 2020-08-15 014.231.161.193 62 61 2020-08-18 2020-08-18 031.020.189.011 61 61 2020-09-08 2020-09-08 035.235.066.158 121 61 2020-08-30 2020-08-30 151.063.014.009 647 61 2020-09-09 2020-09-08 085.255.234.095 9585 61 2020-08-22 2020-08-22 107.180.025.150 86 61 2020-08-18 2020-08-17 172.058.035.004 132 61 2020-08-14 2020-08-14 195.020.004.192 61 61 2020-09-06 2020-09-06 189.186.059.086 61 61 2020-08-31 2020-08-31 177.144.151.219 62 61 2020-08-29 2020-08-29 027.077.240.127 61 61 2020-08-17 2020-08-17 014.188.197.104 61 61 2020-09-01 2020-09-01 082.000.026.108 623 61 2020-08-31 2020-08-31 125.025.194.085 64 61 2020-08-28 2020-08-28 023.227.035.005 535 61 2020-08-30 2020-08-30 086.030.005.095 70 61 2020-08-21 2020-08-21 199.101.189.182 64 61 2020-08-28 2020-08-28 112.202.228.202 61 61 2020-08-20 2020-08-20 141.136.078.063 62 61 2020-08-20 2020-08-20 181.226.079.229 63 61 2020-08-18 2020-08-18 189.112.075.207 61 61 2020-08-15 2020-08-15 172.058.175.048 64 61 2020-08-26 2020-08-26 087.202.019.227 62 60 2020-08-25 2020-08-25 047.033.073.180 110 60 2020-09-01 2020-09-01 002.186.209.221 60 60 2020-08-24 2020-08-23 024.003.134.085 68 60 2020-08-21 2020-08-21 190.077.232.254 63 60 2020-08-12 2020-08-12 054.210.028.161 98 60 2020-08-26 2020-08-26 173.173.096.075 68 60 2020-08-21 2020-08-21 068.235.043.110 957 60 2020-08-27 2020-08-27 202.049.100.234 609 60 2020-08-30 2020-08-30 073.085.009.091 106 60 2020-08-15 2020-08-15 054.187.079.151 97 60 2020-08-15 2020-08-15 046.159.240.063 60 60 2020-09-01 2020-09-01 073.251.077.141 693 60 2020-08-31 2020-08-31 195.154.077.187 492 60 2020-08-26 2020-08-26 088.247.030.201 61 60 2020-08-19 2020-08-19 036.085.252.093 60 60 2020-09-07 2020-09-07 190.072.232.252 69 60 2020-08-14 2020-08-14 212.034.022.142 70 60 2020-08-23 2020-08-23 128.199.172.050 1918 60 2020-08-22 2020-08-22 086.129.083.247 2741 60 2020-08-24 2020-08-24 050.099.106.166 389 60 2020-09-02 2020-09-02 172.067.211.064 78 60 2020-08-16 2020-08-16 104.245.145.059 1008 60 2020-08-20 2020-08-20 123.019.122.252 61 60 2020-08-20 2020-08-20 080.082.077.245 128 60 2020-08-17 2020-08-16 195.135.249.216 376 60 2020-09-03 2020-09-03 180.249.152.160 60 60 2020-09-08 2020-09-08 046.101.232.205 1968 60 2020-08-11 2020-08-11 173.231.055.182 251 60 2020-08-27 2020-08-27 073.094.158.213 622 60 2020-09-03 2020-09-03 089.187.183.163 2840 60 2020-08-16 2020-08-17 071.076.005.045 765 60 2020-09-03 2020-09-03 072.014.064.155 600 60 2020-08-17 2020-08-17 014.169.074.130 60 60 2020-09-01 2020-09-01 077.222.119.183 61 60 2020-09-04 2020-09-04 185.244.142.135 60 60 2020-09-05 2020-09-05 114.134.191.194 61 60 2020-08-12 2020-08-12 070.170.041.098 248 60 2020-08-22 2020-08-22 147.135.120.179 611 60 2020-08-31 2020-08-31 171.004.230.052 61 60 2020-08-22 2020-08-22 073.209.006.211 86 60 2020-09-08 2020-09-08 036.226.077.166 60 60 2020-09-01 2020-09-01 217.180.031.030 63 60 2020-09-08 2020-09-08 159.065.222.204 108 60 2020-08-24 2020-08-24 052.115.146.184 86 60 2020-09-08 2020-09-08 046.148.230.022 1595 60 2020-08-25 2020-08-25 122.061.185.097 1939 60 2020-08-22 2020-08-22 023.154.160.215 84 60 2020-08-25 2020-08-25 212.070.149.051 583772 60 2020-07-11 2020-08-15 141.098.081.138 94 60 2020-08-27 2020-08-26 051.091.061.066 67 60 2020-08-20 2020-08-20 089.040.040.210 63 60 2020-08-28 2020-08-28 074.230.205.008 78 60 2020-08-12 2020-08-12 005.127.218.243 253 60 2020-08-26 2020-08-26 123.026.250.015 60 60 2020-09-07 2020-09-07 174.218.157.035 102 60 2020-08-26 2020-08-26 092.002.254.116 578 60 2020-08-27 2020-08-27 095.173.228.110 60 60 2020-09-03 2020-09-03 203.238.039.115 60 60 2020-08-31 2020-08-31 045.084.196.080 14352 60 2020-08-16 2020-08-23 067.248.086.040 1072 60 2020-08-31 2020-08-31 051.158.095.232 60 60 2020-08-15 2020-08-15 045.033.049.119 116 60 2020-08-16 2020-08-16 037.039.133.028 3523 60 2020-08-22 2020-08-22 223.016.217.042 67 60 2020-08-15 2020-08-15 201.210.087.230 60 60 2020-08-11 2020-08-11 091.141.003.043 69 59 2020-08-14 2020-08-14 162.248.092.065 141 59 2020-08-29 2020-08-29 073.148.066.115 89 59 2020-08-17 2020-08-17 090.214.212.061 384 59 2020-08-31 2020-08-31 213.127.120.176 6039 59 2020-08-24 2020-08-24 185.176.027.178 224 59 2020-09-09 2020-09-08 085.140.113.113 59 59 2020-09-01 2020-09-01 088.099.080.254 60 59 2020-09-06 2020-09-06 198.071.233.227 74 59 2020-08-25 2020-08-25 116.110.037.146 61 59 2020-08-11 2020-08-11 094.015.109.020 1207 59 2020-09-06 2020-09-06 162.248.094.124 62 59 2020-09-01 2020-09-01 068.202.131.237 562 59 2020-08-31 2020-08-31 024.030.120.136 1065 59 2020-09-06 2020-09-06 082.132.241.203 64 59 2020-08-19 2020-08-19 078.181.075.106 59 59 2020-08-11 2020-08-11 188.170.101.057 60 59 2020-09-04 2020-09-04 190.036.235.242 60 59 2020-08-17 2020-08-17 217.219.090.211 60 59 2020-08-25 2020-08-25 125.224.141.144 59 59 2020-09-02 2020-09-02 049.204.194.180 59 59 2020-09-02 2020-09-02 190.038.062.133 59 59 2020-08-31 2020-08-31 041.157.201.233 66 59 2020-09-07 2020-09-07 111.250.091.086 59 59 2020-08-28 2020-08-28 068.184.196.168 105 59 2020-08-22 2020-08-22 035.189.119.182 107 59 2020-09-06 2020-09-06 045.026.070.229 566 59 2020-08-30 2020-08-30 096.018.201.120 81 59 2020-08-20 2020-08-20 177.190.160.003 1530 59 2020-09-03 2020-09-03 099.010.094.108 456 59 2020-08-27 2020-08-27 111.253.059.023 60 59 2020-08-12 2020-08-12 089.125.111.225 69 59 2020-08-16 2020-08-16 088.226.191.047 59 59 2020-08-28 2020-08-28 107.126.065.030 168 59 2020-09-03 2020-09-03 024.019.149.118 999 59 2020-09-02 2020-09-02 193.092.007.094 62 59 2020-08-21 2020-08-21 073.104.017.051 667 59 2020-09-01 2020-09-01 104.024.108.053 601 59 2020-08-19 2020-08-19 088.080.170.049 488 59 2020-08-27 2020-08-27 103.003.221.242 59 59 2020-08-28 2020-08-28 176.057.169.033 373 59 2020-08-18 2020-08-18 201.249.000.008 59 59 2020-09-01 2020-09-01 185.165.178.069 1977 59 2020-08-16 2020-08-16 045.087.214.109 7294 59 2020-08-16 2020-08-16 209.222.028.239 2010 59 2020-08-18 2020-08-18 094.129.083.164 312 59 2020-08-26 2020-08-26 111.254.006.108 62 59 2020-09-07 2020-09-07 185.161.233.130 587 59 2020-08-30 2020-08-30 073.066.224.019 170 59 2020-08-14 2020-08-14 031.214.243.097 78 59 2020-08-18 2020-08-18 098.115.040.035 2323 59 2020-08-20 2020-08-20 192.223.026.209 487 59 2020-09-01 2020-08-31 103.103.040.162 707 59 2020-08-31 2020-08-31 014.021.029.234 59 59 2020-09-01 2020-09-01 095.012.058.206 59 59 2020-09-07 2020-09-07 209.160.120.076 65 59 2020-08-17 2020-08-17 162.254.192.109 93 59 2020-09-08 2020-09-08 185.100.087.183 399 59 2020-08-18 2020-08-18 142.044.136.013 923 59 2020-08-19 2020-08-19 103.038.019.156 61 59 2020-08-27 2020-08-27 173.231.090.025 508 59 2020-08-27 2020-08-27 086.135.162.224 90 59 2020-08-28 2020-08-28 174.240.133.051 62 59 2020-09-01 2020-09-01 202.164.130.223 60 59 2020-08-21 2020-08-21 079.092.137.213 598 59 2020-08-23 2020-08-23 076.124.192.210 3386 59 2020-08-19 2020-08-19 111.250.188.112 60 59 2020-08-23 2020-08-23 192.223.030.132 63 59 2020-08-28 2020-08-28 207.112.054.217 2897 59 2020-08-18 2020-08-18 104.014.123.067 683 59 2020-08-30 2020-08-30 072.199.213.021 71 59 2020-08-16 2020-08-16 095.106.247.222 59 59 2020-08-25 2020-08-25 216.254.239.103 2997 59 2020-08-19 2020-08-19 190.204.054.118 60 59 2020-08-23 2020-08-23 092.045.056.010 59 59 2020-08-14 2020-08-14 068.036.052.051 63 59 2020-09-01 2020-09-01 001.001.223.026 62 59 2020-08-26 2020-08-26 051.038.093.187 3848 58 2020-08-17 2020-08-17 223.205.227.181 58 58 2020-09-07 2020-09-07 051.161.099.078 851 58 2020-08-20 2020-08-20 158.069.113.026 238 58 2020-08-20 2020-08-20 149.056.092.214 62 58 2020-08-20 2020-08-20 190.036.191.148 60 58 2020-08-28 2020-08-28 201.211.211.135 58 58 2020-08-16 2020-08-16 062.011.006.031 61 58 2020-08-31 2020-08-31 118.096.134.155 61 58 2020-08-31 2020-08-31 103.241.212.014 6389 58 2020-08-18 2020-08-18 116.202.132.116 248 58 2020-08-29 2020-08-29 104.228.094.071 431 58 2020-08-30 2020-08-30 162.217.077.136 443 58 2020-09-03 2020-09-03 178.032.127.057 64 58 2020-08-19 2020-08-19 172.058.092.209 849 58 2020-08-29 2020-08-29 125.113.130.025 59 58 2020-08-29 2020-08-29 015.184.014.134 68 58 2020-08-22 2020-08-22 174.070.049.073 1845 58 2020-08-21 2020-08-21 193.042.136.019 668 58 2020-09-02 2020-09-02 221.127.001.248 59 58 2020-08-15 2020-08-15 174.052.170.000 67 58 2020-08-21 2020-08-21 068.207.032.133 1522 58 2020-08-31 2020-08-31 113.053.125.054 58 58 2020-09-09 2020-09-09 108.061.227.115 2227 58 2020-08-17 2020-08-17 200.078.187.053 60 58 2020-09-07 2020-09-07 176.058.111.149 58 58 2020-08-28 2020-08-28 151.057.176.088 677 58 2020-09-02 2020-09-02 192.223.031.042 309 58 2020-08-18 2020-08-18 107.190.135.218 1609 58 2020-08-15 2020-08-15 094.192.154.045 63 58 2020-09-04 2020-09-04 089.248.168.217 137 58 2020-09-08 2020-09-07 122.238.159.046 58 58 2020-08-22 2020-08-22 185.141.207.247 71 58 2020-08-18 2020-08-18 162.062.064.146 71 58 2020-08-18 2020-08-18 066.176.054.129 558 58 2020-09-04 2020-09-04 088.148.011.180 69 58 2020-08-31 2020-08-31 076.102.207.094 84 58 2020-09-02 2020-09-02 118.070.215.039 58 58 2020-08-31 2020-08-31 042.241.221.128 597 58 2020-08-12 2020-08-12 193.025.253.007 66 58 2020-08-23 2020-08-23 104.153.109.249 2221 58 2020-08-19 2020-08-19 103.099.018.170 58 58 2020-08-20 2020-08-20 005.101.166.131 66 58 2020-08-14 2020-08-14 219.076.192.154 60 58 2020-09-07 2020-09-07 079.016.144.176 818 58 2020-09-01 2020-09-01 185.176.027.198 270 58 2020-09-09 2020-09-08 162.234.142.255 514 58 2020-09-04 2020-09-04 105.071.145.078 1595 58 2020-08-19 2020-08-19 037.255.255.181 27948 58 2020-08-14 2020-08-14 162.248.095.186 1305 58 2020-08-12 2020-08-13 186.091.107.055 58 58 2020-09-03 2020-09-03 207.180.203.193 5420 58 2020-08-18 2020-08-18 075.134.052.104 3785 58 2020-08-16 2020-08-16 130.211.198.204 65 58 2020-08-16 2020-08-16 172.058.030.165 82 58 2020-08-29 2020-08-29 051.075.074.253 83 58 2020-08-14 2020-08-14 159.000.069.178 1735 58 2020-08-19 2020-08-19 085.093.020.250 162 58 2020-09-08 2020-09-07 167.114.124.079 483 58 2020-08-27 2020-08-26 210.195.151.254 74 58 2020-08-29 2020-08-29 172.058.188.074 2476 58 2020-08-25 2020-08-25 162.248.094.196 93 58 2020-09-09 2020-09-09 122.168.190.248 58 58 2020-08-25 2020-08-25 014.229.203.128 58 58 2020-08-18 2020-08-18 005.171.036.076 71 58 2020-08-27 2020-08-27 045.060.065.226 98 58 2020-09-07 2020-09-07 096.059.020.128 69 58 2020-09-07 2020-09-07 187.232.204.206 3567 58 2020-08-22 2020-08-22 117.004.100.147 58 58 2020-09-04 2020-09-04 146.120.241.012 60 58 2020-08-26 2020-08-26 200.084.064.138 59 58 2020-09-07 2020-09-07 131.093.058.228 67 58 2020-08-25 2020-08-25 059.103.042.246 58 58 2020-08-26 2020-08-26 176.194.242.032 63 58 2020-08-11 2020-08-11 185.202.000.005 83 58 2020-08-25 2020-08-24 002.028.176.129 65 58 2020-08-24 2020-08-24 062.250.059.184 60 58 2020-09-05 2020-09-05 207.006.088.245 1339 58 2020-08-16 2020-08-16 177.010.128.162 59 58 2020-08-13 2020-08-13 031.214.243.107 70 58 2020-08-18 2020-08-18 174.248.119.093 5146 58 2020-08-26 2020-08-26 196.229.062.064 58 58 2020-08-12 2020-08-12 189.198.138.114 18357 58 2020-08-06 2020-09-04 190.073.113.189 58 58 2020-09-02 2020-09-02 024.185.040.031 864 58 2020-09-09 2020-09-09 005.067.186.194 58 58 2020-08-27 2020-08-27 166.173.249.023 616 58 2020-08-22 2020-08-22 193.123.140.108 96 58 2020-08-25 2020-08-24 194.015.036.134 12599 58 2020-08-25 2020-08-31 203.222.009.204 58 58 2020-09-07 2020-09-07 115.064.011.161 2012 58 2020-08-22 2020-08-22 173.025.214.139 521 58 2020-08-31 2020-08-31 171.237.091.147 59 58 2020-08-31 2020-08-31 039.106.168.019 543828 58 2020-08-28 2020-08-29 145.239.204.031 2818 58 2020-08-23 2020-08-23 200.090.083.047 59 58 2020-08-16 2020-08-16 024.169.010.242 57 57 2020-09-08 2020-09-08 190.148.051.183 102 57 2020-09-01 2020-09-01 171.236.010.142 57 57 2020-08-27 2020-08-27 123.018.001.118 61 57 2020-09-07 2020-09-07 071.224.058.106 1426 57 2020-08-31 2020-08-31 014.186.232.049 57 57 2020-08-27 2020-08-27 186.090.079.033 58 57 2020-09-02 2020-09-02 014.098.251.094 57 57 2020-08-27 2020-08-27 179.104.033.182 57 57 2020-08-14 2020-08-14 051.039.113.036 63 57 2020-08-16 2020-08-16 109.145.246.144 912 57 2020-09-02 2020-09-02 040.089.141.201 57 57 2020-09-07 2020-09-06 148.003.044.071 57 57 2020-08-12 2020-08-12 103.066.078.027 57 57 2020-09-03 2020-09-03 036.072.019.132 57 57 2020-08-21 2020-08-21 076.095.132.051 419 57 2020-09-05 2020-09-05 050.089.030.021 80 57 2020-09-08 2020-09-08 181.022.119.217 58 57 2020-09-03 2020-09-03 171.050.235.053 59 57 2020-08-27 2020-08-27 049.206.018.047 57 57 2020-08-19 2020-08-19 176.043.220.031 57 57 2020-09-03 2020-09-03 051.068.200.224 695 57 2020-08-23 2020-08-23 037.142.008.112 777 57 2020-08-28 2020-08-28 086.162.100.035 103 57 2020-08-22 2020-08-22 045.119.212.203 144 57 2020-08-20 2020-08-20 092.043.037.003 57 57 2020-09-07 2020-09-07 189.166.154.229 60 57 2020-08-20 2020-08-20 111.246.077.194 57 57 2020-08-30 2020-08-30 174.091.214.245 19520 57 2020-08-12 2020-08-12 054.235.172.010 1972 57 2020-08-20 2020-08-20 045.227.254.030 117 57 2020-08-20 2020-08-19 137.074.233.172 70 57 2020-08-18 2020-08-18 119.153.102.076 57 57 2020-08-21 2020-08-21 035.139.003.021 165 57 2020-08-19 2020-08-19 115.022.033.026 557 57 2020-08-30 2020-08-30 077.077.236.124 58 57 2020-08-21 2020-08-21 193.122.211.166 126 57 2020-09-04 2020-09-04 005.113.235.077 60 57 2020-08-26 2020-08-26 023.118.227.167 189 57 2020-08-27 2020-08-27 151.080.047.156 71 57 2020-08-22 2020-08-22 205.185.118.004 57 57 2020-08-18 2020-08-18 087.095.204.120 57 57 2020-09-05 2020-09-05 076.028.230.078 127 57 2020-09-02 2020-09-02 185.038.148.113 70 57 2020-08-25 2020-08-25 186.089.031.033 57 57 2020-09-01 2020-09-01 104.238.130.201 232 57 2020-08-23 2020-08-23 104.014.151.180 119 57 2020-08-21 2020-08-21 103.086.180.110 57 57 2020-08-31 2020-08-31 027.034.050.025 57 57 2020-08-27 2020-08-27 182.186.098.165 57 57 2020-08-13 2020-08-13 202.086.008.250 253 57 2020-08-27 2020-08-27 209.141.047.229 665 57 2020-08-20 2020-08-19 172.058.204.215 1117 57 2020-09-01 2020-09-01 067.247.064.195 5773 57 2020-08-22 2020-08-22 073.016.062.241 592 57 2020-09-06 2020-09-06 064.082.150.107 15269 57 2020-08-14 2020-08-14 109.248.010.004 64 57 2020-08-13 2020-08-13 063.251.140.151 632 57 2020-08-26 2020-08-26 036.068.239.044 60 57 2020-08-18 2020-08-18 095.037.077.029 57 57 2020-09-08 2020-09-08 106.005.173.164 57 57 2020-08-22 2020-08-22 068.044.244.157 642 57 2020-09-03 2020-09-03 171.235.133.244 57 57 2020-09-07 2020-09-07 091.103.251.014 58 57 2020-08-24 2020-08-24 201.208.015.002 57 57 2020-08-29 2020-08-29 171.242.233.103 58 57 2020-08-23 2020-08-23 185.205.012.179 58 57 2020-08-15 2020-08-15 068.206.128.106 90 57 2020-08-29 2020-08-29 193.123.027.245 71 57 2020-08-24 2020-08-24 217.039.040.201 533 57 2020-08-31 2020-08-31 173.085.079.197 557 56 2020-08-31 2020-08-31 109.119.177.228 67 56 2020-08-25 2020-08-24 193.123.130.025 70 56 2020-08-24 2020-08-24 172.058.219.096 60 56 2020-08-24 2020-08-24 054.037.039.042 79 56 2020-08-30 2020-08-30 112.135.218.194 59 56 2020-09-08 2020-09-08 071.090.043.229 161 56 2020-08-30 2020-08-30 046.121.024.111 56 56 2020-09-05 2020-09-05 086.045.181.137 100 56 2020-08-23 2020-08-23 185.143.223.250 127 56 2020-08-30 2020-08-29 184.059.150.255 91 56 2020-09-08 2020-09-08 185.176.027.190 205 56 2020-09-09 2020-09-08 052.023.092.206 144 56 2020-09-08 2020-09-08 078.118.142.037 65 56 2020-09-02 2020-09-02 171.004.230.053 59 56 2020-08-30 2020-08-30 051.124.062.052 59 56 2020-08-27 2020-08-27 202.239.041.040 130 56 2020-09-06 2020-09-06 144.217.147.254 62 56 2020-09-09 2020-09-09 118.172.034.060 58 56 2020-08-25 2020-08-25 192.223.029.114 219 56 2020-08-20 2020-08-20 074.091.117.016 648 56 2020-08-12 2020-08-12 045.129.033.100 1891710 56 2020-07-29 2020-09-06 097.121.210.150 244 56 2020-09-07 2020-09-07 108.061.228.092 59 56 2020-08-31 2020-08-31 018.235.016.146 57 56 2020-09-08 2020-09-08 147.030.121.009 56 56 2020-08-11 2020-08-11 005.079.246.057 57 56 2020-08-25 2020-08-25 103.103.041.067 626 56 2020-08-31 2020-08-30 001.010.208.231 58 56 2020-08-29 2020-08-29 139.167.099.214 59 56 2020-08-28 2020-08-28 192.099.120.072 60 56 2020-08-24 2020-08-24 144.217.234.243 842 56 2020-09-04 2020-09-04 024.006.149.147 379 56 2020-09-08 2020-09-08 213.166.132.013 699 56 2020-08-27 2020-08-27 114.115.235.174 2649 56 2020-08-22 2020-08-22 172.086.114.130 721 56 2020-08-28 2020-08-28 167.172.197.002 908 56 2020-09-04 2020-09-04 037.228.245.096 7891 56 2020-08-24 2020-08-24 198.251.150.036 79 56 2020-08-20 2020-08-20 193.227.029.203 56 56 2020-08-12 2020-08-12 073.049.200.212 663 56 2020-08-16 2020-08-16 113.174.103.180 59 56 2020-09-02 2020-09-02 099.203.057.142 622 56 2020-09-03 2020-09-02 045.060.025.227 87 56 2020-09-01 2020-09-01 036.238.201.176 56 56 2020-08-21 2020-08-21 068.202.114.001 674 56 2020-09-07 2020-09-07 075.024.115.219 429 56 2020-08-26 2020-08-26 209.191.164.208 88 56 2020-08-31 2020-08-31 190.199.080.247 58 56 2020-08-26 2020-08-26 005.070.179.138 185 56 2020-08-26 2020-08-26 125.109.131.252 56 56 2020-08-16 2020-08-16 005.067.085.134 60 56 2020-09-08 2020-09-08 198.251.083.095 70 56 2020-08-25 2020-08-25 024.155.204.103 523 56 2020-08-22 2020-08-22 067.001.245.204 1446 56 2020-08-27 2020-08-27 099.065.054.121 777 56 2020-09-06 2020-09-06 088.198.144.239 61 56 2020-08-27 2020-08-27 198.251.144.180 242 56 2020-08-31 2020-08-31 176.191.152.088 117 56 2020-08-31 2020-08-31 176.045.220.198 1340 56 2020-08-18 2020-08-18 107.134.164.161 641 56 2020-09-03 2020-09-03 080.082.114.112 108 56 2020-09-02 2020-09-02 182.176.090.239 56 56 2020-08-23 2020-08-23 187.011.107.147 57 56 2020-08-25 2020-08-25 098.200.014.042 624 56 2020-09-08 2020-09-08 216.186.198.134 583 56 2020-08-23 2020-08-23 044.229.049.094 288 56 2020-08-26 2020-08-26 179.107.048.010 502 56 2020-09-04 2020-09-04 045.061.142.115 62 56 2020-08-16 2020-08-16 183.147.031.126 56 56 2020-09-01 2020-09-01 190.206.041.229 56 56 2020-09-05 2020-09-05 173.056.084.107 471 56 2020-09-08 2020-09-08 218.166.036.002 57 56 2020-08-30 2020-08-30 188.163.052.015 56 56 2020-08-18 2020-08-18 125.094.076.059 56 56 2020-08-17 2020-08-17 052.000.132.014 78 56 2020-09-09 2020-09-09 024.185.236.039 94 56 2020-08-16 2020-08-16 098.214.147.016 638 56 2020-09-06 2020-09-06 185.176.027.018 261 55 2020-09-09 2020-09-08 068.183.099.056 58 55 2020-08-30 2020-08-30 035.223.051.005 55 55 2020-08-27 2020-08-27 045.088.110.040 58 55 2020-09-06 2020-09-06 014.177.192.015 55 55 2020-08-19 2020-08-19 036.226.068.062 56 55 2020-08-11 2020-08-11 093.189.095.066 134 55 2020-08-29 2020-08-29 185.067.177.129 1313 55 2020-08-23 2020-08-23 117.241.193.086 55 55 2020-08-25 2020-08-25 042.118.038.148 56 55 2020-08-21 2020-08-21 142.011.193.012 521 55 2020-08-26 2020-08-26 146.000.231.137 61 55 2020-08-23 2020-08-23 014.098.004.242 56 55 2020-09-06 2020-09-06 091.233.042.235 55 55 2020-08-25 2020-08-25 014.176.056.098 56 55 2020-09-06 2020-09-06 173.070.219.078 61 55 2020-08-18 2020-08-18 076.095.031.000 254 55 2020-09-07 2020-09-07 023.008.001.042 66 55 2020-08-16 2020-08-16 180.254.185.035 57 55 2020-08-21 2020-08-21 088.122.031.229 58 55 2020-08-30 2020-08-30 111.075.210.132 55 55 2020-09-01 2020-09-01 051.124.147.110 60 55 2020-08-30 2020-08-30 195.054.161.075 97917 55 2020-07-17 2020-08-20 041.047.210.193 55 55 2020-08-31 2020-08-31 207.154.196.155 152 55 2020-09-07 2020-09-07 150.095.089.178 57 55 2020-08-31 2020-08-31 172.107.202.163 1046 55 2020-09-04 2020-09-04 190.094.056.177 59 55 2020-09-03 2020-09-03 184.239.016.181 746 55 2020-09-02 2020-09-02 066.085.014.121 60 55 2020-09-07 2020-09-07 176.217.097.044 55 55 2020-09-03 2020-09-03 069.110.131.071 654 55 2020-09-04 2020-09-04 206.016.194.214 145 55 2020-08-29 2020-08-29 172.058.102.194 102 55 2020-08-18 2020-08-18 014.167.085.148 55 55 2020-08-20 2020-08-20 023.043.077.177 117 55 2020-08-11 2020-08-11 098.242.107.190 90 55 2020-09-04 2020-09-04 001.162.015.243 56 55 2020-08-16 2020-08-16 104.051.210.187 55 55 2020-09-05 2020-09-05 003.130.086.199 120 55 2020-08-24 2020-08-24 045.132.143.028 766 55 2020-09-05 2020-09-05 077.100.244.182 188 55 2020-08-29 2020-08-29 080.082.077.234 55 55 2020-08-22 2020-08-22 036.082.181.005 56 55 2020-08-27 2020-08-27 036.072.084.190 57 55 2020-08-25 2020-08-25 051.079.063.187 1802 55 2020-08-27 2020-08-28 125.025.205.047 56 55 2020-08-29 2020-08-29 093.178.018.176 60 55 2020-08-11 2020-08-11 038.145.158.037 60 55 2020-08-29 2020-08-29 086.142.204.081 58 55 2020-08-23 2020-08-23 067.175.191.010 57 54 2020-09-07 2020-09-07 172.058.019.135 57 54 2020-08-29 2020-08-29 023.021.042.216 57 54 2020-09-04 2020-09-04 173.206.029.216 624 54 2020-09-02 2020-09-02 067.183.104.167 696 54 2020-08-30 2020-08-30 116.073.096.202 54 54 2020-09-05 2020-09-05 178.176.218.110 75 54 2020-08-26 2020-08-26 101.112.230.220 678 54 2020-08-12 2020-08-12 187.059.208.057 55 54 2020-08-22 2020-08-22 115.031.112.071 54 54 2020-09-02 2020-09-02 193.142.146.019 93 54 2020-08-24 2020-08-23 176.126.175.071 56 54 2020-09-02 2020-09-02 136.243.156.078 57 54 2020-08-29 2020-08-29 074.091.119.026 1364 54 2020-08-31 2020-08-31 187.144.223.104 55 54 2020-09-08 2020-09-08 193.123.137.059 97 54 2020-08-25 2020-08-25 014.226.221.031 56 54 2020-09-04 2020-09-04 178.063.020.162 127 54 2020-09-01 2020-09-01 031.017.253.193 57 54 2020-09-04 2020-09-04 068.055.012.139 1035 54 2020-09-06 2020-09-06 220.128.059.113 54 54 2020-09-03 2020-09-03 212.021.031.001 54 54 2020-08-22 2020-08-22 095.018.243.254 57 54 2020-08-31 2020-08-31 208.091.066.185 78 54 2020-08-23 2020-08-23 054.161.099.071 239 54 2020-09-07 2020-09-07 062.210.045.236 61 54 2020-08-31 2020-08-31 036.068.215.220 54 54 2020-09-08 2020-09-08 201.141.009.143 57 54 2020-08-30 2020-08-30 074.181.251.010 77 54 2020-08-26 2020-08-26 088.228.142.008 99 54 2020-08-19 2020-08-19 185.176.027.110 231 54 2020-09-09 2020-09-08 078.178.138.165 54 54 2020-08-11 2020-08-11 124.123.160.078 54 54 2020-08-29 2020-08-29 002.243.111.040 357 54 2020-09-04 2020-09-04 071.203.046.123 599 54 2020-09-05 2020-09-05 071.172.198.090 518 54 2020-09-06 2020-09-06 031.155.183.098 55 54 2020-09-04 2020-09-04 171.252.034.152 54 54 2020-09-05 2020-09-05 213.006.149.066 54 54 2020-08-24 2020-08-24 037.107.176.078 56 54 2020-09-04 2020-09-04 192.099.250.222 57 54 2020-08-31 2020-08-31 202.169.236.212 60 54 2020-08-24 2020-08-24 107.011.017.060 460 54 2020-08-30 2020-08-30 172.084.193.165 971 54 2020-09-07 2020-09-07 110.150.153.039 92 54 2020-08-20 2020-08-20 045.154.170.032 100 54 2020-08-24 2020-08-24 045.077.097.236 739 54 2020-08-18 2020-08-17 037.239.134.029 55 54 2020-09-07 2020-09-07 176.016.043.027 377 54 2020-08-27 2020-08-27 198.058.118.167 77 54 2020-08-26 2020-08-26 117.005.144.077 55 54 2020-09-05 2020-09-05 174.102.069.083 71 54 2020-08-16 2020-08-16 113.187.082.037 54 54 2020-08-20 2020-08-20 200.090.078.099 61 54 2020-08-23 2020-08-23 167.114.113.123 70 54 2020-08-14 2020-08-14 178.239.161.133 57 54 2020-08-29 2020-08-29 047.105.039.057 505324 54 2020-09-06 2020-09-06 082.208.175.173 54 54 2020-08-29 2020-08-29 054.029.131.020 57 54 2020-08-28 2020-08-28 186.003.156.111 54 54 2020-08-11 2020-08-11 139.099.180.011 693 54 2020-08-31 2020-08-31 177.190.167.241 597 54 2020-09-03 2020-09-03 005.105.044.202 55 54 2020-08-27 2020-08-27 162.248.093.090 60 54 2020-08-15 2020-08-15 188.163.072.224 56 54 2020-08-12 2020-08-12 180.248.001.017 54 54 2020-08-28 2020-08-28 099.203.037.241 864 54 2020-09-09 2020-09-09 058.007.241.090 56 54 2020-09-09 2020-09-09 085.255.236.078 1228 54 2020-08-29 2020-08-29 192.095.063.017 57 54 2020-08-27 2020-08-27 125.164.168.167 56 54 2020-09-04 2020-09-04 104.235.151.183 59 54 2020-08-26 2020-08-26 084.223.191.093 95 54 2020-08-28 2020-08-28 091.141.002.196 703 54 2020-09-07 2020-09-07 117.196.145.182 55 54 2020-09-01 2020-09-01 212.119.224.142 95 54 2020-08-18 2020-08-17 107.077.195.136 699 54 2020-09-01 2020-09-01 176.118.126.042 54 54 2020-08-30 2020-08-30 196.030.090.186 59 54 2020-08-14 2020-08-14 149.028.116.160 782 54 2020-08-31 2020-08-31 051.159.088.163 58 54 2020-08-21 2020-08-19 086.171.127.102 69 54 2020-09-05 2020-09-05 138.197.030.054 196 54 2020-08-22 2020-08-22 103.252.200.049 90 54 2020-08-22 2020-08-22 167.250.168.135 57 54 2020-09-01 2020-09-01 171.228.134.200 53 53 2020-08-23 2020-08-23 195.094.226.064 84 53 2020-08-25 2020-08-24 069.140.244.127 58 53 2020-08-14 2020-08-13 036.237.112.103 53 53 2020-08-27 2020-08-27 082.132.247.015 57 53 2020-08-31 2020-08-31 085.093.049.229 56 53 2020-09-08 2020-09-08 042.113.205.173 59 53 2020-08-23 2020-08-23 186.091.016.138 54 53 2020-08-13 2020-08-13 001.168.032.162 53 53 2020-08-20 2020-08-20 168.232.248.007 56 53 2020-09-02 2020-09-02 066.168.148.132 66 53 2020-08-18 2020-08-17 073.019.182.148 345 53 2020-08-30 2020-08-30 047.217.206.059 92 53 2020-08-19 2020-08-18 036.085.029.166 53 53 2020-09-07 2020-09-07 014.226.061.007 53 53 2020-09-03 2020-09-03 171.250.069.033 53 53 2020-09-07 2020-09-07 059.053.018.100 53 53 2020-08-11 2020-08-11 212.031.129.010 1543 53 2020-08-21 2020-08-21 005.141.113.207 54 53 2020-08-14 2020-08-14 014.168.103.078 53 53 2020-08-22 2020-08-22 080.082.078.188 71597 53 2020-08-19 2020-08-29 037.049.229.124 10474 53 2020-08-20 2020-08-27 034.121.153.197 81 53 2020-08-30 2020-08-30 045.252.248.059 126 53 2020-08-22 2020-08-22 176.121.179.049 225 53 2020-08-24 2020-08-24 014.178.122.237 57 53 2020-09-05 2020-09-05 190.087.162.112 55 53 2020-08-22 2020-08-22 188.120.053.177 53 53 2020-08-15 2020-08-15 046.032.125.016 441 53 2020-08-17 2020-08-16 166.177.121.245 2841 53 2020-08-25 2020-08-25 090.198.171.111 54 53 2020-08-27 2020-08-27 024.121.110.100 81 53 2020-08-20 2020-08-20 116.073.035.095 53 53 2020-08-20 2020-08-20 199.033.085.080 550 53 2020-08-30 2020-08-30 182.053.133.105 56 53 2020-08-26 2020-08-26 103.145.012.014 177 53 2020-08-25 2020-08-24 201.249.120.171 53 53 2020-08-27 2020-08-27 023.105.191.037 55 53 2020-09-06 2020-09-06 195.189.096.225 67 53 2020-08-19 2020-08-18 109.228.046.163 96 53 2020-08-21 2020-08-21 203.183.171.070 309 53 2020-09-06 2020-09-06 186.092.024.089 53 53 2020-08-19 2020-08-19 217.122.166.090 633 53 2020-08-18 2020-08-18 082.031.074.165 543 53 2020-08-28 2020-08-28 096.008.168.182 568 53 2020-08-23 2020-08-23 190.075.226.191 53 53 2020-08-22 2020-08-22 189.114.157.088 88 53 2020-08-14 2020-08-14 090.112.066.086 120 53 2020-08-25 2020-08-25 190.201.244.062 53 53 2020-08-14 2020-08-14 034.089.151.020 2725 53 2020-08-14 2020-08-15 078.115.235.252 102 53 2020-09-01 2020-09-01 203.171.029.035 54 53 2020-08-28 2020-08-28 037.231.241.246 292 53 2020-08-27 2020-08-27 149.091.088.055 346 53 2020-08-25 2020-08-25 014.029.210.225 53 53 2020-08-14 2020-08-14 101.099.014.087 54 53 2020-08-27 2020-08-27 147.148.116.219 74 53 2020-09-08 2020-09-08 089.211.226.120 53 53 2020-08-23 2020-08-23 054.039.131.017 1418 53 2020-08-20 2020-08-20 028.116.024.224 75 53 2020-08-19 2020-08-19 047.005.224.203 146 53 2020-08-25 2020-08-25 001.172.182.207 55 53 2020-08-11 2020-08-11 003.088.162.073 88 53 2020-08-22 2020-08-22 091.240.118.060 106 53 2020-08-29 2020-08-28 094.102.057.136 69982 53 2020-08-19 2020-08-29 078.177.008.164 54 53 2020-08-15 2020-08-15 085.095.188.187 53 53 2020-08-15 2020-08-15 185.202.000.118 53 53 2020-08-27 2020-08-27 035.180.036.079 225 53 2020-08-29 2020-08-29 027.072.080.063 55 52 2020-08-13 2020-08-13 190.237.035.182 58 52 2020-08-29 2020-08-29 037.114.183.131 53 52 2020-09-08 2020-09-08 051.079.098.077 9804 52 2020-08-04 2020-08-12 049.032.022.004 53 52 2020-08-15 2020-08-15 082.132.244.051 412 52 2020-08-26 2020-08-26 107.010.200.013 1610 52 2020-08-25 2020-08-25 083.234.146.176 52 52 2020-09-07 2020-09-07 090.222.089.232 71 52 2020-08-30 2020-08-30 085.190.155.006 345 52 2020-08-31 2020-08-31 190.115.026.206 102 52 2020-08-11 2020-08-11 098.183.144.157 251 52 2020-08-25 2020-08-25 217.182.147.248 649 52 2020-08-23 2020-08-22 185.016.139.019 96 52 2020-08-19 2020-08-18 190.206.050.056 56 52 2020-09-08 2020-09-08 190.074.167.056 54 52 2020-08-15 2020-08-15 088.246.074.181 52 52 2020-08-23 2020-08-23 071.071.013.029 521 52 2020-09-04 2020-09-04 173.238.019.244 71 52 2020-08-25 2020-08-25 042.116.149.248 55 52 2020-08-23 2020-08-23 045.049.243.058 62 52 2020-08-26 2020-08-26 051.089.157.035 63 52 2020-08-24 2020-08-24 166.177.122.072 1143 52 2020-09-04 2020-09-03 093.076.170.232 54 52 2020-08-30 2020-08-30 192.248.150.078 61 52 2020-08-14 2020-08-14 027.252.158.228 67 52 2020-08-27 2020-08-27 196.188.051.252 53 52 2020-08-11 2020-08-11 186.157.068.023 52 52 2020-08-26 2020-08-26 184.022.035.068 65 52 2020-08-21 2020-08-21 140.213.166.069 52 52 2020-08-22 2020-08-22 165.022.065.139 73 52 2020-09-01 2020-09-01 157.033.161.171 54 52 2020-08-26 2020-08-26 190.078.184.065 54 52 2020-08-15 2020-08-15 187.113.136.192 54 52 2020-08-28 2020-08-28 045.061.142.100 72 52 2020-09-09 2020-09-09 188.223.244.121 89 52 2020-08-30 2020-08-30 064.145.065.228 71 52 2020-09-08 2020-09-08 103.212.224.144 620 52 2020-08-29 2020-08-29 102.189.096.230 56 52 2020-08-30 2020-08-30 091.240.118.004 22226 52 2020-08-10 2020-08-17 092.063.197.053 67 52 2020-08-21 2020-08-20 186.095.076.043 53 52 2020-08-28 2020-08-28 076.115.087.078 81 52 2020-08-26 2020-08-26 101.051.212.042 52 52 2020-09-07 2020-09-07 036.230.046.129 52 52 2020-08-11 2020-08-11 001.163.043.039 52 52 2020-08-12 2020-08-12 185.200.118.074 52 52 2020-09-08 2020-09-08 043.240.021.239 52 52 2020-08-15 2020-08-15 084.051.124.242 80 52 2020-08-24 2020-08-24 185.153.196.002 87 52 2020-08-28 2020-08-27 045.179.242.000 98 52 2020-08-11 2020-08-11 068.117.071.124 138 52 2020-08-23 2020-08-23 161.238.252.013 488 52 2020-08-30 2020-08-30 095.177.146.031 54 52 2020-08-17 2020-08-17 054.038.220.151 54 52 2020-08-23 2020-08-23 125.123.185.226 53 52 2020-08-25 2020-08-25 047.028.099.036 54 52 2020-08-23 2020-08-23 050.089.233.012 80 52 2020-08-21 2020-08-21 066.070.162.242 87 52 2020-08-18 2020-08-18 024.066.222.098 85 52 2020-09-04 2020-09-04 112.171.220.183 107 52 2020-08-19 2020-08-19 186.095.054.046 55 52 2020-08-12 2020-08-12 036.236.225.253 55 52 2020-08-11 2020-08-11 172.058.107.038 85 52 2020-08-31 2020-08-31 190.038.209.167 52 52 2020-08-30 2020-08-30 058.186.077.254 53 52 2020-08-28 2020-08-28 174.219.015.041 102 52 2020-08-14 2020-08-14 213.095.138.236 57 52 2020-08-16 2020-08-16 077.077.182.006 500 52 2020-09-06 2020-09-06 087.101.192.046 1034 52 2020-08-27 2020-08-27 065.027.143.001 64 52 2020-09-01 2020-09-01 054.086.185.158 82 52 2020-09-08 2020-09-08 105.112.055.125 52 52 2020-09-07 2020-09-07 190.204.219.227 52 52 2020-09-07 2020-09-07 072.217.073.124 66 52 2020-09-08 2020-09-08 167.114.029.162 2983 52 2020-08-11 2020-08-11 171.247.077.205 52 51 2020-08-17 2020-08-17 201.210.200.123 53 51 2020-08-18 2020-08-18 122.238.158.151 51 51 2020-09-01 2020-09-01 074.091.114.142 127 51 2020-08-22 2020-08-22 095.156.198.034 323 51 2020-09-04 2020-09-04 071.172.064.252 58 51 2020-09-08 2020-09-08 031.148.062.105 51 51 2020-08-29 2020-08-29 157.037.235.162 53 51 2020-08-23 2020-08-23 175.181.116.196 54 51 2020-08-17 2020-08-17 066.018.007.176 51 51 2020-09-07 2020-09-07 058.027.254.106 51 51 2020-08-24 2020-08-24 049.182.015.089 56 51 2020-08-20 2020-08-20 014.237.190.191 51 51 2020-08-30 2020-08-30 046.105.112.043 161 51 2020-09-01 2020-09-01 190.198.051.145 527 51 2020-08-19 2020-08-19 090.215.167.198 110 51 2020-08-28 2020-08-28 104.152.052.024 52 51 2020-08-24 2020-08-24 163.172.114.132 51 51 2020-09-09 2020-09-09 077.119.129.097 93 51 2020-08-25 2020-08-25 091.110.120.192 62 51 2020-08-28 2020-08-28 073.175.233.027 95 51 2020-08-29 2020-08-29 090.214.151.127 97 51 2020-08-28 2020-08-28 113.161.091.062 77 51 2020-09-07 2020-09-07 185.039.011.084 51 51 2020-08-15 2020-08-14 180.249.233.074 52 51 2020-08-28 2020-08-28 192.210.170.112 51 51 2020-08-21 2020-08-21 174.068.145.039 103 51 2020-09-02 2020-09-02 097.121.217.065 71 51 2020-09-07 2020-09-07 177.204.150.006 57 51 2020-08-11 2020-08-11 103.103.041.057 329 51 2020-08-27 2020-08-26 100.016.091.220 87 51 2020-08-25 2020-08-24 186.091.067.118 54 51 2020-09-06 2020-09-06 092.063.196.015 61 51 2020-08-13 2020-08-13 014.164.188.041 51 51 2020-08-25 2020-08-25 002.217.120.177 53 51 2020-08-28 2020-08-28 047.011.178.079 51 51 2020-08-25 2020-08-25 001.055.200.019 54 51 2020-08-16 2020-08-16 105.184.028.210 51 51 2020-09-03 2020-09-03 046.167.064.014 53 51 2020-08-12 2020-08-12 008.020.101.070 304 51 2020-08-23 2020-08-22 113.161.000.222 51 51 2020-09-05 2020-09-05 100.034.243.181 1492 51 2020-08-22 2020-08-22 098.204.185.061 64 51 2020-09-04 2020-09-04 014.175.182.165 53 51 2020-08-20 2020-08-20 103.251.066.156 53 51 2020-08-13 2020-08-13 024.072.213.179 701 51 2020-08-20 2020-08-19 117.239.104.172 53 51 2020-08-14 2020-08-14 042.112.061.009 51 51 2020-08-16 2020-08-16 093.086.125.085 51 51 2020-09-04 2020-09-04 073.132.038.022 89 51 2020-08-29 2020-08-29 075.009.111.143 56 51 2020-09-01 2020-09-01 027.054.116.226 53 51 2020-08-25 2020-08-25 052.113.024.106 78 51 2020-09-08 2020-09-08 173.218.190.219 75 51 2020-08-22 2020-08-21 161.129.070.208 898 51 2020-08-19 2020-08-19 049.150.079.169 52 51 2020-08-13 2020-08-13 051.039.198.216 58 51 2020-08-11 2020-08-11 085.190.155.238 332 51 2020-08-18 2020-08-18 024.012.009.165 52 51 2020-08-20 2020-08-20 036.239.154.129 51 51 2020-09-05 2020-09-05 081.129.111.136 131 51 2020-08-27 2020-08-27 093.109.087.236 54 51 2020-08-12 2020-08-12 149.056.243.239 98 51 2020-09-05 2020-09-05 186.093.008.168 56 51 2020-08-31 2020-08-31 156.211.121.150 51 51 2020-08-31 2020-08-31 212.033.119.014 54 51 2020-08-19 2020-08-19 036.074.076.190 51 51 2020-09-04 2020-09-04 173.027.180.120 771 51 2020-09-05 2020-09-05 073.060.200.120 92 51 2020-08-24 2020-08-24 198.251.084.074 1586 51 2020-08-09 2020-08-11 089.089.025.052 167 51 2020-08-26 2020-08-26 193.025.253.012 51 51 2020-08-29 2020-08-29 044.234.076.254 60 51 2020-09-03 2020-09-03 054.037.093.042 73 51 2020-08-26 2020-08-26 193.025.253.090 390 51 2020-08-30 2020-08-30 076.107.202.231 959 50 2020-09-03 2020-09-03 166.173.185.073 56 50 2020-08-19 2020-08-19 049.205.249.101 51 50 2020-08-17 2020-08-17 087.245.245.182 70 50 2020-08-18 2020-08-18 110.078.154.128 50 50 2020-08-31 2020-08-31 125.235.004.059 66 50 2020-08-22 2020-08-22 099.203.056.227 533 50 2020-09-08 2020-09-08 098.229.043.207 179 50 2020-08-19 2020-08-19 188.214.132.029 62 50 2020-08-21 2020-08-20 158.069.146.048 289 50 2020-08-12 2020-08-12 115.078.226.191 66 50 2020-09-07 2020-09-07 049.049.235.217 52 50 2020-08-13 2020-08-13 041.041.025.251 52 50 2020-08-23 2020-08-23 066.218.170.077 585 50 2020-08-30 2020-08-30 051.210.222.003 50 50 2020-08-20 2020-08-20 178.239.164.193 691 50 2020-08-15 2020-08-15 051.089.019.244 255 50 2020-08-18 2020-08-18 176.226.198.191 51 50 2020-08-19 2020-08-19 005.101.166.176 92 50 2020-08-23 2020-08-23 142.044.222.036 55 50 2020-08-25 2020-08-25 082.237.163.015 109 50 2020-08-30 2020-08-30 118.068.161.112 50 50 2020-08-26 2020-08-26 142.119.094.195 1978 50 2020-08-11 2020-08-11 035.137.207.088 64 50 2020-08-23 2020-08-23 074.091.113.106 5143 50 2020-08-14 2020-08-14 041.164.021.018 51 50 2020-08-12 2020-08-12 080.082.064.098 47531 50 2020-08-20 2020-08-29 027.147.043.187 50 50 2020-08-26 2020-08-26 149.056.079.118 2174 50 2020-08-12 2020-08-12 173.054.042.176 449 50 2020-08-29 2020-08-29 005.200.014.238 78 50 2020-08-28 2020-08-28 098.029.184.083 79 50 2020-09-01 2020-09-01 101.255.064.158 52 50 2020-08-18 2020-08-18 051.195.180.020 117 50 2020-08-21 2020-08-21 036.078.054.079 50 50 2020-08-31 2020-08-31 023.154.160.220 65 50 2020-08-26 2020-08-26 075.085.013.079 18423 50 2020-08-12 2020-08-12 001.055.254.223 50 50 2020-09-04 2020-09-04 222.186.031.083 124 50 2020-08-23 2020-08-22 125.230.049.020 50 50 2020-08-22 2020-08-22 190.204.221.196 51 50 2020-08-22 2020-08-22 046.161.027.150 50 50 2020-08-17 2020-08-16 167.172.255.002 137 50 2020-08-27 2020-08-27 095.090.242.025 79 50 2020-09-05 2020-09-05 045.010.088.026 78 50 2020-08-12 2020-08-12 144.208.066.144 99 50 2020-09-06 2020-09-06 192.095.036.232 88 50 2020-08-22 2020-08-22 012.246.021.126 401 50 2020-09-05 2020-09-05 074.138.131.101 2553 50 2020-08-11 2020-08-11 187.148.219.183 52 50 2020-09-04 2020-09-04 174.049.003.117 293 50 2020-09-03 2020-09-03 060.172.031.048 51 50 2020-08-20 2020-08-20 117.194.198.096 51 50 2020-09-09 2020-09-09 071.132.229.116 73 50 2020-08-23 2020-08-23 115.224.254.048 50 50 2020-08-31 2020-08-30 066.070.247.201 294 50 2020-08-31 2020-08-31 005.195.224.161 50 50 2020-08-18 2020-08-18 104.031.065.232 267 50 2020-08-21 2020-08-21 128.000.115.025 69 50 2020-08-28 2020-08-28 037.010.124.158 3837 50 2020-08-21 2020-08-20 088.214.057.152 1798 50 2020-08-15 2020-08-15 031.028.098.226 50 50 2020-09-01 2020-09-01 098.206.186.140 73 50 2020-08-27 2020-08-27 161.097.098.200 57 50 2020-09-09 2020-09-08 077.100.080.104 155 50 2020-08-26 2020-08-26 162.248.092.144 314 50 2020-08-31 2020-08-31 013.224.130.087 123 50 2020-08-28 2020-08-28 168.221.028.030 90 50 2020-08-31 2020-08-31 073.004.252.029 78 50 2020-08-22 2020-08-22 014.192.208.149 51 50 2020-09-05 2020-09-05 171.253.140.095 52 50 2020-09-03 2020-09-03 041.032.124.034 51 50 2020-08-24 2020-08-24 076.018.242.156 381 50 2020-08-22 2020-08-22 217.114.225.064 82 50 2020-08-17 2020-08-17 151.101.192.080 177 50 2020-09-05 2020-09-05 051.218.000.134 50 50 2020-08-30 2020-08-30 197.026.051.018 53 50 2020-09-06 2020-09-06 185.070.040.102 588 50 2020-09-04 2020-09-04 185.126.216.114 65 50 2020-08-21 2020-08-21 144.217.040.099 51 50 2020-09-06 2020-09-06 089.163.189.122 878 50 2020-08-15 2020-08-15 078.128.113.246 50 50 2020-08-31 2020-08-31 162.248.094.195 354 50 2020-09-09 2020-09-09 094.102.057.180 71589 50 2020-08-19 2020-08-29 082.132.243.192 970 50 2020-09-06 2020-09-06 039.033.201.230 50 50 2020-08-25 2020-08-25 045.049.218.096 4123 50 2020-08-13 2020-08-13 027.071.081.118 50 50 2020-08-31 2020-08-31 094.102.057.179 71549 50 2020-08-19 2020-08-29 073.133.159.121 51 50 2020-08-22 2020-08-22 109.229.026.209 49 49 2020-08-29 2020-08-29 099.203.056.200 956 49 2020-08-30 2020-08-30 104.194.011.034 281 49 2020-08-22 2020-08-22 036.231.087.126 51 49 2020-09-05 2020-09-05 104.255.106.033 3199 49 2020-08-18 2020-08-19 046.073.013.126 51 49 2020-08-23 2020-08-23 095.165.102.099 52 49 2020-09-08 2020-09-08 088.202.231.004 159 49 2020-08-24 2020-08-24 208.103.169.207 195 49 2020-08-22 2020-08-22 189.015.197.152 50 49 2020-08-20 2020-08-20 114.045.150.172 49 49 2020-08-24 2020-08-24 073.200.025.190 51 49 2020-09-08 2020-09-08 089.248.174.003 56 49 2020-08-17 2020-08-16 086.174.072.223 61 49 2020-08-26 2020-08-26 185.151.030.162 123 49 2020-09-02 2020-09-02 013.091.207.140 55 49 2020-09-03 2020-09-03 075.036.190.027 290 49 2020-09-04 2020-09-04 051.161.057.130 51 49 2020-08-27 2020-08-27 109.075.092.128 272 49 2020-08-30 2020-08-30 067.212.058.197 78 49 2020-08-23 2020-08-23 207.029.222.125 2277 49 2020-08-20 2020-08-20 193.035.050.172 49 49 2020-08-22 2020-08-22 179.104.095.114 52 49 2020-08-31 2020-08-31 190.237.027.013 50 49 2020-08-23 2020-08-23 176.027.232.035 51 49 2020-09-02 2020-09-02 194.087.138.199 36075 49 2020-08-12 2020-08-24 114.108.236.237 82 49 2020-09-02 2020-09-02 014.178.036.124 49 49 2020-08-20 2020-08-20 223.071.167.164 236 49 2020-08-16 2020-08-15 069.118.085.132 100 49 2020-08-23 2020-08-23 005.188.092.139 146 49 2020-08-29 2020-08-29 203.192.208.089 50 49 2020-08-28 2020-08-28 189.129.085.198 49 49 2020-08-21 2020-08-21 142.044.236.005 1476 49 2020-08-20 2020-08-20 177.054.144.169 68 49 2020-09-02 2020-09-02 201.242.249.116 59 49 2020-08-24 2020-08-24 108.198.040.224 63 49 2020-08-28 2020-08-28 108.230.100.245 1653 49 2020-08-11 2020-08-11 046.197.082.082 50 49 2020-08-20 2020-08-20 051.161.099.063 111 49 2020-08-25 2020-08-25 067.212.238.202 881 49 2020-08-19 2020-08-19 090.119.246.203 104 49 2020-08-26 2020-08-26 174.049.087.237 53 49 2020-08-24 2020-08-24 198.199.079.119 92 49 2020-08-24 2020-08-24 082.142.135.234 81 49 2020-08-23 2020-08-23 070.092.017.071 269 49 2020-08-30 2020-08-30 014.191.008.008 49 49 2020-08-27 2020-08-27 080.082.065.187 54582 49 2020-08-20 2020-08-29 077.222.108.097 49 49 2020-08-22 2020-08-22 090.217.055.197 61 49 2020-09-03 2020-09-03 114.067.200.090 49 49 2020-08-24 2020-08-24 095.154.186.137 49 49 2020-08-14 2020-08-14 140.213.161.246 49 49 2020-08-22 2020-08-22 042.226.048.189 92 49 2020-09-04 2020-09-04 083.169.204.119 77 49 2020-08-27 2020-08-27 081.017.246.204 2758 49 2020-08-12 2020-08-13 113.169.095.231 52 49 2020-08-28 2020-08-28 031.054.241.016 92 49 2020-08-19 2020-08-19 173.081.153.064 49 49 2020-09-06 2020-09-06 094.102.057.178 56802 49 2020-08-19 2020-08-29 093.191.073.043 49 49 2020-08-17 2020-08-17 184.154.209.202 206 49 2020-08-30 2020-08-29 018.208.243.138 49 49 2020-09-09 2020-09-09 014.228.117.220 50 49 2020-08-20 2020-08-20 156.205.118.170 50 49 2020-08-24 2020-08-24 045.061.142.030 208 49 2020-08-26 2020-08-25 073.209.245.208 57 49 2020-09-03 2020-09-03 069.010.033.124 293 49 2020-09-09 2020-09-09 109.191.204.194 62 49 2020-09-04 2020-09-04 014.245.140.109 49 49 2020-08-16 2020-08-16 187.209.034.061 49 49 2020-08-28 2020-08-28 069.225.165.062 69 49 2020-09-02 2020-09-02 051.158.095.225 49 49 2020-08-14 2020-08-14 174.253.010.205 1862 49 2020-08-11 2020-08-11 051.081.101.096 63 49 2020-08-27 2020-08-27 176.236.193.215 50 49 2020-09-01 2020-09-01 086.016.130.146 95 49 2020-08-18 2020-08-18 103.193.241.029 50 49 2020-08-16 2020-08-15 042.113.121.119 49 49 2020-08-23 2020-08-23 082.132.229.023 422 49 2020-09-06 2020-09-06 037.189.066.146 2313 49 2020-08-11 2020-08-11 045.199.216.102 52 49 2020-08-15 2020-08-15 109.191.199.004 62 49 2020-08-19 2020-08-19 074.091.121.241 65 49 2020-08-23 2020-08-22 177.156.245.125 49 49 2020-09-04 2020-09-04 176.063.016.246 269 49 2020-09-05 2020-09-05 223.205.235.001 49 49 2020-09-08 2020-09-08 174.223.137.000 216 49 2020-08-19 2020-08-19 031.214.243.215 143 49 2020-08-28 2020-08-28 002.132.213.019 50 49 2020-08-30 2020-08-30 172.086.114.032 65 49 2020-08-30 2020-08-30 051.222.033.059 67 48 2020-09-06 2020-09-06 172.058.143.103 50 48 2020-09-05 2020-09-05 192.241.177.251 52 48 2020-09-06 2020-09-06 059.098.118.207 49 48 2020-08-25 2020-08-25 185.070.040.103 635 48 2020-09-04 2020-09-04 201.210.101.230 48 48 2020-08-16 2020-08-16 099.122.083.175 4990 48 2020-08-11 2020-08-11 172.058.204.014 347 48 2020-09-01 2020-09-01 051.081.075.000 149 48 2020-08-20 2020-08-19 198.050.224.234 843 48 2020-08-21 2020-08-21 159.122.113.146 53 48 2020-08-19 2020-08-19 051.195.157.115 272 48 2020-09-04 2020-09-04 157.230.120.063 54 48 2020-09-01 2020-09-01 116.096.158.163 48 48 2020-08-24 2020-08-24 103.098.019.039 36749 48 2020-07-23 2020-08-13 098.216.219.048 11674 48 2020-08-13 2020-08-13 201.208.006.142 48 48 2020-08-20 2020-08-20 066.232.250.213 850 48 2020-08-17 2020-08-17 051.158.180.072 200 48 2020-08-15 2020-08-15 077.111.245.011 2814 48 2020-08-12 2020-08-12 042.112.217.038 51 48 2020-08-11 2020-08-11 101.087.035.173 48 48 2020-08-20 2020-08-20 172.065.229.122 103 48 2020-08-28 2020-08-28 107.180.058.031 62 48 2020-08-21 2020-08-21 099.250.032.171 1163 48 2020-08-15 2020-08-15 046.038.082.025 48 48 2020-08-19 2020-08-19 192.223.026.249 4103 48 2020-07-18 2020-08-13 073.031.003.107 131 48 2020-09-04 2020-09-04 192.223.026.251 49 48 2020-08-20 2020-08-20 051.079.101.209 61 48 2020-08-12 2020-08-12 099.173.181.122 71 48 2020-08-31 2020-08-31 024.151.150.070 6620 48 2020-08-11 2020-08-11 082.079.203.166 57 48 2020-09-08 2020-09-08 002.024.129.184 48 48 2020-08-27 2020-08-27 087.065.063.078 54 48 2020-08-27 2020-08-27 081.159.178.062 114 48 2020-08-28 2020-08-28 095.047.144.163 50 48 2020-08-28 2020-08-28 091.229.112.014 62 48 2020-08-12 2020-08-12 060.246.234.225 50 48 2020-08-11 2020-08-11 203.078.005.043 402 48 2020-08-30 2020-08-30 223.017.143.082 49 48 2020-08-31 2020-08-31 073.183.183.209 49 48 2020-08-28 2020-08-28 045.032.015.170 51 48 2020-08-21 2020-08-21 068.183.079.248 223 48 2020-08-18 2020-08-18 046.070.006.217 49 48 2020-08-13 2020-08-13 199.168.159.190 510 48 2020-08-30 2020-08-30 199.116.114.070 50 48 2020-08-31 2020-08-31 195.135.251.069 75 48 2020-08-25 2020-08-25 194.126.114.228 2796 48 2020-08-12 2020-08-12 045.143.223.079 444 48 2020-08-28 2020-08-28 070.066.089.081 2600 48 2020-08-12 2020-08-12 003.120.210.145 49 48 2020-08-24 2020-08-24 032.214.182.001 49 48 2020-09-09 2020-09-09 045.061.142.023 94 48 2020-08-28 2020-08-27 071.114.039.129 84 48 2020-08-23 2020-08-23 119.153.183.044 48 48 2020-08-19 2020-08-19 023.115.245.209 53 48 2020-08-24 2020-08-23 089.107.186.090 80 48 2020-09-03 2020-09-03 166.172.058.250 75 48 2020-09-02 2020-09-02 183.134.004.052 98 48 2020-08-17 2020-08-17 069.156.095.198 58 48 2020-08-26 2020-08-26 074.132.243.102 115 48 2020-08-28 2020-08-28 195.154.215.194 110 48 2020-08-21 2020-08-21 193.027.229.224 95 48 2020-09-05 2020-09-04 151.080.126.247 1478 48 2020-08-28 2020-08-28 023.102.031.126 83 48 2020-09-02 2020-09-02 045.144.041.028 55 48 2020-08-20 2020-08-20 081.173.152.020 57 48 2020-09-03 2020-09-03 193.070.077.000 570 48 2020-08-31 2020-08-31 171.097.101.046 49 48 2020-08-30 2020-08-30 062.043.151.214 358 48 2020-09-09 2020-09-09 125.161.158.160 59 48 2020-08-14 2020-08-14 014.249.027.010 51 48 2020-09-08 2020-09-08 194.180.179.164 55 48 2020-08-14 2020-08-14 198.251.224.206 122 48 2020-09-02 2020-09-02 045.148.010.207 48 48 2020-08-19 2020-08-19 198.251.225.209 126 48 2020-09-03 2020-09-03 193.093.062.054 52 48 2020-08-13 2020-08-13 117.248.084.205 48 48 2020-08-27 2020-08-27 085.025.207.096 49 47 2020-08-14 2020-08-14 069.249.073.223 58 47 2020-08-31 2020-08-31 186.092.202.064 47 47 2020-08-20 2020-08-20 145.061.142.047 54 47 2020-09-08 2020-09-08 094.134.092.097 398 47 2020-09-07 2020-09-07 061.007.169.030 47 47 2020-08-25 2020-08-25 073.036.002.207 2598 47 2020-08-12 2020-08-12 186.067.127.062 47 47 2020-08-20 2020-08-20 172.058.059.193 138 47 2020-08-17 2020-08-17 037.059.000.235 758 47 2020-07-23 2020-08-16 204.044.105.244 48 47 2020-09-06 2020-09-06 054.211.165.080 1600 47 2020-08-21 2020-08-21 172.089.124.186 57 47 2020-09-07 2020-09-07 093.045.069.046 50 47 2020-09-01 2020-09-01 074.091.124.074 87 47 2020-08-25 2020-08-25 194.061.026.117 51 47 2020-08-20 2020-08-20 002.041.110.187 47 47 2020-09-08 2020-09-08 193.148.018.061 1115 47 2020-07-27 2020-08-17 046.040.062.230 58 47 2020-08-15 2020-08-15 190.075.137.030 47 47 2020-08-27 2020-08-27 042.112.094.188 48 47 2020-08-19 2020-08-19 092.252.144.196 50 47 2020-08-12 2020-08-12 094.102.056.216 79 47 2020-09-07 2020-09-06 117.001.240.036 47 47 2020-08-20 2020-08-20 087.245.241.007 77 47 2020-08-17 2020-08-17 014.243.027.015 47 47 2020-09-07 2020-09-07 104.137.069.132 82 47 2020-08-29 2020-08-29 154.183.068.234 47 47 2020-08-29 2020-08-29 041.045.114.151 50 47 2020-08-11 2020-08-11 036.069.239.111 47 47 2020-09-03 2020-09-03 190.199.230.086 48 47 2020-08-11 2020-08-11 209.023.035.042 63 47 2020-09-01 2020-09-01 142.202.222.014 49 47 2020-08-25 2020-08-25 194.009.170.110 558 47 2020-09-05 2020-09-05 222.122.179.073 376 47 2020-08-14 2020-08-14 074.015.098.233 59 47 2020-08-27 2020-08-27 125.160.066.245 48 47 2020-08-25 2020-08-25 094.004.232.108 49 47 2020-08-20 2020-08-20 098.013.042.036 79 47 2020-08-30 2020-08-30 083.061.067.020 47 47 2020-09-07 2020-09-07 037.019.072.144 47 47 2020-08-14 2020-08-14 097.093.223.045 243 47 2020-09-07 2020-09-07 077.222.109.122 70 47 2020-08-18 2020-08-18 086.146.039.098 82 47 2020-08-26 2020-08-26 180.248.123.141 47 47 2020-08-28 2020-08-28 103.145.013.012 58 47 2020-08-11 2020-08-11 005.188.206.220 88 47 2020-09-07 2020-09-06 082.200.243.137 83 47 2020-08-18 2020-08-18 193.123.141.010 71 47 2020-08-24 2020-08-24 185.132.053.051 102 47 2020-08-19 2020-08-19 073.043.004.196 91 47 2020-09-05 2020-09-05 073.169.210.153 568 47 2020-09-08 2020-09-08 193.111.199.202 1861 47 2020-08-15 2020-08-15 193.123.022.130 99 47 2020-09-04 2020-09-04 172.217.204.127 85 47 2020-09-08 2020-09-08 054.039.122.099 132 47 2020-08-31 2020-08-31 031.167.167.181 272 47 2020-09-05 2020-09-05 067.069.076.131 454 47 2020-09-02 2020-09-02 005.219.062.130 47 47 2020-08-22 2020-08-21 003.017.171.189 105 47 2020-09-04 2020-09-04 044.234.074.003 807 47 2020-08-20 2020-08-21 171.022.076.053 47 47 2020-08-21 2020-08-21 051.077.103.227 49 47 2020-08-17 2020-08-16 024.088.122.214 1433 47 2020-08-11 2020-08-11 111.093.060.130 50 47 2020-08-26 2020-08-26 123.018.149.100 48 47 2020-09-05 2020-09-05 066.085.080.066 71 47 2020-08-18 2020-08-18 049.228.197.042 50 47 2020-08-18 2020-08-18 125.231.139.236 50 47 2020-08-21 2020-08-21 098.168.163.100 236 47 2020-08-29 2020-08-29 192.223.031.168 58 47 2020-08-28 2020-08-28 193.108.118.197 81 47 2020-08-24 2020-08-24 076.209.171.222 47 47 2020-08-28 2020-08-28 080.082.078.100 78 47 2020-09-07 2020-09-06 073.182.144.245 664 47 2020-09-04 2020-09-04 190.073.013.118 48 47 2020-09-01 2020-09-01 193.025.253.096 50 47 2020-08-29 2020-08-29 023.227.038.065 103 46 2020-08-27 2020-08-27 024.044.139.182 2744 46 2020-08-11 2020-08-11 042.116.148.190 46 46 2020-08-20 2020-08-20 078.236.035.143 246 46 2020-09-04 2020-09-04 174.073.201.080 2307 46 2020-08-11 2020-08-11 172.245.112.072 7359 46 2020-08-25 2020-08-26 186.091.195.172 46 46 2020-09-02 2020-09-02 185.239.242.248 46 46 2020-09-08 2020-09-08 068.059.056.236 72 46 2020-08-27 2020-08-27 051.036.076.079 51 46 2020-08-15 2020-08-15 073.099.093.025 86 46 2020-08-29 2020-08-29 190.199.047.146 46 46 2020-08-26 2020-08-26 123.171.237.061 49 46 2020-08-25 2020-08-25 190.203.252.084 46 46 2020-08-12 2020-08-12 036.062.005.236 46 46 2020-08-21 2020-08-21 036.074.140.120 48 46 2020-08-26 2020-08-26 179.113.061.082 46 46 2020-08-25 2020-08-25 217.084.193.066 46 46 2020-08-24 2020-08-24 087.245.237.127 51 46 2020-08-27 2020-08-27 144.217.086.074 53 46 2020-08-26 2020-08-26 098.236.127.238 51 46 2020-08-21 2020-08-21 024.254.139.008 819 46 2020-08-29 2020-08-29 172.058.062.156 46 46 2020-09-05 2020-09-05 024.254.043.171 60 46 2020-08-29 2020-08-29 173.185.071.197 1711 46 2020-08-23 2020-08-23 084.232.070.058 51 46 2020-08-19 2020-08-19 020.046.145.134 48 46 2020-08-16 2020-08-16 178.155.068.096 46 46 2020-08-30 2020-08-30 195.054.161.031 46 46 2020-08-30 2020-08-30 122.155.161.107 894 46 2020-08-04 2020-08-24 201.097.155.176 47 46 2020-08-11 2020-08-11 188.220.074.152 66 46 2020-09-03 2020-09-03 031.000.083.121 48 46 2020-08-23 2020-08-23 027.002.000.071 46 46 2020-08-20 2020-08-20 192.081.245.120 1369 46 2020-08-19 2020-08-19 113.189.132.185 46 46 2020-08-30 2020-08-30 089.187.175.038 49 46 2020-09-03 2020-09-03 139.047.096.172 46 46 2020-09-02 2020-09-02 190.019.054.172 81 46 2020-09-03 2020-09-03 184.073.215.012 128 46 2020-09-04 2020-09-04 174.255.066.183 939 46 2020-08-20 2020-08-20 149.056.029.023 69 46 2020-08-18 2020-08-18 104.024.099.151 83 46 2020-08-26 2020-08-26 072.035.168.086 734 46 2020-08-30 2020-08-30 037.128.206.232 49 46 2020-08-20 2020-08-20 041.236.210.255 47 46 2020-08-17 2020-08-17 074.091.119.046 552 46 2020-08-16 2020-08-16 097.122.188.158 8971 46 2020-08-31 2020-08-31 186.089.221.242 46 46 2020-09-02 2020-09-02 095.046.111.118 50 46 2020-08-25 2020-08-25 014.170.236.144 47 46 2020-08-19 2020-08-19 005.105.195.176 46 46 2020-09-02 2020-09-02 178.046.209.143 46 46 2020-09-01 2020-09-01 107.152.102.234 10509 46 2020-08-11 2020-08-11 045.079.053.147 2194 46 2020-08-14 2020-08-14 185.028.070.130 251 46 2020-08-30 2020-08-30 051.178.245.193 53 46 2020-08-19 2020-08-19 070.178.017.196 363 46 2020-08-31 2020-08-31 034.075.240.031 46 46 2020-08-24 2020-08-24 047.134.172.036 68 46 2020-09-04 2020-09-04 094.013.124.189 509 46 2020-08-19 2020-08-19 176.031.124.199 59 46 2020-08-30 2020-08-30 116.068.170.090 65 46 2020-08-19 2020-08-19 194.169.001.058 307 46 2020-08-30 2020-08-30 078.026.128.064 47 46 2020-09-01 2020-09-01 092.053.065.040 115 46 2020-08-16 2020-08-15 184.170.166.013 1025 46 2020-09-02 2020-09-02 209.141.035.068 46 46 2020-08-19 2020-08-19 107.009.062.238 65 46 2020-08-30 2020-08-30 054.251.014.039 194 46 2020-08-31 2020-08-31 073.236.121.197 334 46 2020-08-31 2020-08-31 073.235.000.078 252 46 2020-08-31 2020-08-31 068.169.134.088 230 46 2020-08-27 2020-08-27 014.176.138.010 45 45 2020-08-31 2020-08-31 176.088.137.247 48 45 2020-09-04 2020-09-04 066.151.244.224 49 45 2020-08-11 2020-08-11 046.069.199.080 6680 45 2020-08-11 2020-08-11 173.020.105.216 354 45 2020-09-09 2020-09-09 190.207.061.078 48 45 2020-09-04 2020-09-04 104.026.010.101 100 45 2020-08-22 2020-08-22 103.145.013.010 45 45 2020-08-12 2020-08-12 051.210.149.029 50 45 2020-08-14 2020-08-14 154.202.004.195 45 45 2020-08-25 2020-08-25 036.074.045.219 45 45 2020-09-05 2020-09-05 200.053.022.162 47 45 2020-09-05 2020-09-05 186.091.171.158 45 45 2020-08-23 2020-08-23 094.213.032.178 80 45 2020-08-30 2020-08-30 103.133.123.240 46 45 2020-09-07 2020-09-07 051.178.221.002 105 45 2020-08-23 2020-08-23 116.111.125.179 49 45 2020-08-20 2020-08-20 047.008.239.244 45 45 2020-08-16 2020-08-16 172.083.046.193 66 45 2020-09-04 2020-09-04 176.027.177.221 46 45 2020-09-03 2020-09-03 051.222.022.022 50 45 2020-08-20 2020-08-20 104.033.201.027 56 45 2020-08-25 2020-08-25 185.255.092.009 58 45 2020-08-28 2020-08-28 052.226.005.092 201 45 2020-08-20 2020-08-20 192.119.010.210 49 45 2020-08-17 2020-08-17 059.054.149.219 45 45 2020-08-24 2020-08-24 139.099.125.199 299 45 2020-08-28 2020-08-28 051.039.116.206 49 45 2020-08-15 2020-08-15 051.039.244.007 142 45 2020-08-29 2020-08-29 086.130.161.127 49 45 2020-09-08 2020-09-08 100.037.090.146 605 45 2020-08-29 2020-08-29 115.072.051.177 45 45 2020-08-18 2020-08-18 070.114.211.118 418 45 2020-09-07 2020-09-07 195.026.005.100 407 45 2020-08-24 2020-08-23 187.193.226.034 67 45 2020-09-09 2020-09-09 024.093.019.001 87 45 2020-08-24 2020-08-24 201.209.175.250 62 45 2020-08-13 2020-08-13 066.070.192.164 45 45 2020-08-27 2020-08-27 206.128.137.200 49 45 2020-08-23 2020-08-23 151.047.009.190 780 45 2020-09-02 2020-09-02 077.101.205.082 71 45 2020-08-20 2020-08-20 192.099.062.125 73 45 2020-08-27 2020-08-27 093.023.018.062 157 45 2020-09-05 2020-09-05 157.042.036.066 45 45 2020-08-16 2020-08-16 052.243.113.214 2266 45 2020-08-11 2020-08-11 189.202.073.149 77 45 2020-08-18 2020-08-18 103.251.226.184 45 45 2020-08-26 2020-08-26 095.186.020.108 47 45 2020-08-15 2020-08-15 176.226.228.014 61 45 2020-08-17 2020-08-17 023.017.040.074 68 45 2020-08-23 2020-08-23 131.114.132.019 70 45 2020-08-15 2020-08-15 148.252.128.059 46 45 2020-08-23 2020-08-23 082.132.184.054 45 45 2020-08-28 2020-08-28 045.148.010.056 87 45 2020-09-08 2020-09-08 066.025.130.202 45 45 2020-09-01 2020-09-01 104.243.213.095 610 45 2020-09-05 2020-09-05 104.131.211.128 574 45 2020-08-13 2020-08-13 124.191.217.029 165 45 2020-08-12 2020-08-12 134.213.248.197 56 45 2020-08-17 2020-08-16 037.037.116.223 2300 45 2020-08-11 2020-08-11 005.111.015.169 527 45 2020-09-08 2020-09-08 143.000.058.240 46 45 2020-08-26 2020-08-25 104.153.105.125 95 45 2020-09-01 2020-09-01 081.096.171.091 45 45 2020-08-28 2020-08-28 200.084.012.199 46 45 2020-08-16 2020-08-16 073.034.066.149 46 45 2020-08-23 2020-08-22 185.039.010.091 56624 45 2020-08-20 2020-08-29 039.053.226.022 45 45 2020-08-13 2020-08-13 196.188.240.117 45 45 2020-08-27 2020-08-27 210.016.087.014 45 45 2020-09-09 2020-09-09 027.072.136.007 48 45 2020-09-01 2020-09-01 104.251.247.020 52 45 2020-09-08 2020-09-08 142.044.137.097 47 45 2020-09-05 2020-09-04 077.031.120.022 83 45 2020-08-12 2020-08-12 209.141.052.232 45 45 2020-08-27 2020-08-27 094.102.057.185 54087 45 2020-08-20 2020-08-29 052.056.222.101 50 45 2020-08-21 2020-08-21 093.001.052.083 242 45 2020-09-04 2020-09-04 176.225.138.229 3193 45 2020-08-12 2020-08-12 095.100.196.071 50 45 2020-08-11 2020-08-11 037.231.240.101 50 45 2020-08-14 2020-08-14 200.109.184.021 45 45 2020-08-31 2020-08-31 141.098.081.150 70 45 2020-08-27 2020-08-26 181.176.180.151 45 45 2020-09-03 2020-09-03 051.195.155.022 254 45 2020-08-28 2020-08-28 071.090.244.104 70 45 2020-08-23 2020-08-23 174.193.005.126 53 45 2020-08-15 2020-08-15 122.162.107.185 45 45 2020-09-06 2020-09-06 191.215.088.204 48 44 2020-08-16 2020-08-16 217.165.062.254 45 44 2020-08-19 2020-08-19 111.251.201.074 44 44 2020-08-19 2020-08-19 186.089.209.021 44 44 2020-08-31 2020-08-31 198.204.240.090 83 44 2020-08-30 2020-08-30 037.201.119.168 1979 44 2020-09-07 2020-09-07 068.117.221.128 59 44 2020-08-11 2020-08-11 005.074.221.025 46 44 2020-09-06 2020-09-06 177.132.143.189 44 44 2020-08-27 2020-08-27 157.032.248.105 46 44 2020-08-12 2020-08-12 091.207.181.144 45 44 2020-09-01 2020-09-01 157.050.069.015 47 44 2020-08-21 2020-08-21 024.126.056.208 638 44 2020-08-28 2020-08-28 138.185.152.000 4224 44 2020-08-17 2020-08-17 068.056.207.019 82 44 2020-08-20 2020-08-20 099.203.056.100 739 44 2020-08-26 2020-08-26 118.123.213.250 53 44 2020-08-28 2020-08-28 172.058.084.139 336 44 2020-08-31 2020-08-31 073.036.002.152 2321 44 2020-08-12 2020-08-12 220.129.186.048 44 44 2020-08-29 2020-08-29 178.046.115.158 45 44 2020-08-20 2020-08-20 054.086.181.206 77 44 2020-09-04 2020-09-04 103.090.224.217 88 44 2020-08-28 2020-08-28 113.181.223.057 46 44 2020-08-30 2020-08-30 118.172.178.169 44 44 2020-08-11 2020-08-11 185.094.111.001 75 44 2020-08-16 2020-08-15 159.000.214.054 872 44 2020-08-27 2020-08-27 190.199.060.158 46 44 2020-08-18 2020-08-18 151.230.120.170 70 44 2020-08-25 2020-08-25 190.075.105.168 44 44 2020-09-03 2020-09-03 103.103.040.143 264 44 2020-08-27 2020-08-27 201.243.236.096 47 44 2020-08-26 2020-08-26 095.012.117.096 44 44 2020-08-21 2020-08-21 088.202.180.008 111 44 2020-08-17 2020-08-17 172.096.117.170 251 44 2020-08-31 2020-08-31 046.063.255.154 44 44 2020-08-28 2020-08-28 198.251.132.059 94 44 2020-08-24 2020-08-24 082.009.151.117 54 44 2020-08-28 2020-08-28 077.243.177.044 79 44 2020-09-03 2020-09-03 172.086.114.047 142 44 2020-08-30 2020-08-30 014.189.203.081 45 44 2020-09-01 2020-09-01 144.091.125.188 85 44 2020-09-04 2020-09-04 041.092.080.067 47 44 2020-08-26 2020-08-26 173.073.096.142 48 44 2020-08-29 2020-08-29 172.113.134.037 45 44 2020-08-27 2020-08-27 189.217.066.004 72 44 2020-09-02 2020-09-02 002.244.031.189 1997 44 2020-09-07 2020-09-07 051.081.082.097 4922 44 2020-08-12 2020-08-12 111.246.079.194 45 44 2020-09-01 2020-09-01 078.225.250.160 46 44 2020-09-06 2020-09-06 071.031.042.253 811 44 2020-09-02 2020-09-02 143.179.017.214 54 44 2020-09-03 2020-09-03 074.128.099.251 69 44 2020-08-25 2020-08-25 109.156.060.200 55 44 2020-08-26 2020-08-26 045.129.033.082 52 44 2020-09-03 2020-09-03 094.102.057.188 41126 44 2020-08-20 2020-08-29 094.102.057.182 43219 44 2020-08-20 2020-08-29 051.081.075.004 424 44 2020-08-21 2020-08-30 178.018.097.205 44 44 2020-08-13 2020-08-13 067.246.007.127 59 44 2020-08-23 2020-08-23 178.057.060.088 44 44 2020-08-30 2020-08-30 186.170.105.053 45 44 2020-08-30 2020-08-30 174.072.204.102 44 44 2020-09-03 2020-09-03 046.004.095.081 1931 44 2020-08-25 2020-08-25 095.236.061.047 47 44 2020-08-18 2020-08-18 179.061.251.109 264 44 2020-08-17 2020-08-17 178.091.064.117 45 44 2020-09-06 2020-09-06 071.086.150.230 747 44 2020-08-30 2020-08-30 191.030.061.138 44 44 2020-08-27 2020-08-27 099.098.248.025 73 44 2020-08-19 2020-08-19 072.088.116.019 3528 44 2020-08-13 2020-08-13 189.110.222.131 45 44 2020-09-03 2020-09-03 027.004.044.112 44 44 2020-08-17 2020-08-17 085.085.006.059 47 44 2020-09-02 2020-09-02 086.137.202.166 53 44 2020-08-24 2020-08-24 166.182.254.092 85 44 2020-09-05 2020-09-05 052.054.122.029 199 43 2020-09-08 2020-09-08 134.213.239.199 109 43 2020-08-24 2020-08-24 185.244.039.029 45 43 2020-08-16 2020-08-15 113.161.066.025 66 43 2020-09-07 2020-09-07 165.232.078.145 51 43 2020-08-21 2020-08-21 094.102.057.187 41627 43 2020-08-20 2020-08-29 179.232.121.224 65 43 2020-08-30 2020-08-30 223.205.249.206 47 43 2020-08-17 2020-08-17 104.131.077.064 168 43 2020-08-24 2020-08-24 103.145.013.011 46 43 2020-08-11 2020-08-11 014.254.147.230 45 43 2020-08-31 2020-08-31 014.231.143.151 43 43 2020-08-27 2020-08-27 086.000.026.220 47 43 2020-09-08 2020-09-08 023.057.081.014 64 43 2020-08-25 2020-08-25 014.251.171.024 43 43 2020-08-23 2020-08-23 190.123.002.134 43 43 2020-09-03 2020-09-03 147.135.004.133 285 43 2020-08-20 2020-08-20 186.176.242.039 43 43 2020-08-28 2020-08-28 172.058.188.121 527 43 2020-09-01 2020-09-01 158.069.184.045 247 43 2020-08-31 2020-08-31 071.062.049.101 52 43 2020-08-23 2020-08-23 045.061.142.136 5999 43 2020-08-28 2020-08-28 204.044.112.142 748 43 2020-08-19 2020-08-19 218.166.076.104 44 43 2020-08-12 2020-08-12 031.134.241.132 44 43 2020-09-01 2020-09-01 078.167.003.215 44 43 2020-08-31 2020-08-31 103.251.050.026 43 43 2020-08-20 2020-08-20 041.034.089.247 43 43 2020-08-12 2020-08-12 051.210.222.005 43 43 2020-09-08 2020-09-08 077.222.108.195 62 43 2020-08-18 2020-08-18 095.216.163.036 54 43 2020-08-26 2020-08-26 181.067.169.015 594 43 2020-09-03 2020-09-03 099.155.033.051 261 43 2020-08-27 2020-08-27 041.038.180.226 43 43 2020-08-29 2020-08-29 142.044.135.081 50 43 2020-08-29 2020-08-29 134.249.098.041 43 43 2020-08-14 2020-08-14 069.216.101.096 48 43 2020-09-02 2020-09-02 035.133.212.168 46 43 2020-08-21 2020-08-21 102.023.111.055 44 43 2020-08-29 2020-08-29 005.188.062.016 8908 43 2020-08-16 2020-08-16 123.022.130.047 43 43 2020-08-24 2020-08-24 086.159.101.140 43 43 2020-08-28 2020-08-28 110.138.188.170 44 43 2020-08-16 2020-08-16 165.227.006.144 569 43 2020-09-04 2020-09-04 108.045.157.119 54 43 2020-08-25 2020-08-25 178.116.001.160 44 43 2020-09-06 2020-09-06 045.117.165.004 80 43 2020-08-30 2020-08-30 213.179.200.247 55 43 2020-08-28 2020-08-28 116.058.244.014 47 43 2020-08-29 2020-08-29 178.116.226.148 281 43 2020-09-09 2020-09-08 051.081.119.002 43 43 2020-08-24 2020-08-24 072.241.236.145 502 43 2020-08-18 2020-08-18 066.070.235.004 44 43 2020-08-23 2020-08-23 088.201.114.181 43 43 2020-08-28 2020-08-28 188.227.016.032 81 43 2020-09-05 2020-09-05 170.238.149.066 67 43 2020-08-18 2020-08-18 089.248.162.164 43366 43 2020-08-20 2020-08-29 172.086.114.015 49 43 2020-08-30 2020-08-30 054.038.004.124 104 43 2020-08-15 2020-08-14 107.178.194.013 43 43 2020-08-31 2020-08-31 104.248.029.181 221 43 2020-08-16 2020-08-16 027.071.228.089 43 43 2020-09-06 2020-09-06 008.045.047.025 815 43 2020-07-23 2020-08-14 194.087.138.016 709 43 2020-08-17 2020-08-16 103.212.227.125 101 43 2020-09-01 2020-09-01 186.091.036.062 43 43 2020-08-11 2020-08-11 074.091.119.007 57 43 2020-08-28 2020-08-28 081.004.190.153 235 43 2020-08-30 2020-08-30 139.099.125.202 1080 43 2020-08-24 2020-08-24 058.186.057.210 43 43 2020-08-13 2020-08-13 088.001.036.111 48 43 2020-08-24 2020-08-24 128.116.035.085 47 43 2020-08-25 2020-08-25 034.225.138.229 43 43 2020-08-29 2020-08-29 037.130.190.154 71 43 2020-09-08 2020-09-08 199.231.233.025 84 43 2020-08-27 2020-08-27 185.129.103.003 46 43 2020-08-21 2020-08-21 113.161.220.125 43 43 2020-08-14 2020-08-14 200.175.249.129 43 43 2020-08-29 2020-08-29 095.238.092.043 280 43 2020-09-05 2020-09-05 172.086.114.169 44 43 2020-09-02 2020-09-02 042.113.161.248 43 43 2020-08-28 2020-08-27 198.012.064.043 7360 43 2020-08-11 2020-08-11 107.172.043.152 704 43 2020-09-04 2020-09-04 088.225.253.101 43 43 2020-09-07 2020-09-07 181.017.165.238 44 43 2020-08-15 2020-08-15 144.202.032.164 891 43 2020-08-13 2020-08-13 066.151.244.185 74 43 2020-08-21 2020-08-21 014.171.162.091 45 43 2020-09-04 2020-09-04 031.180.143.013 44 43 2020-08-30 2020-08-30 045.165.214.052 71 43 2020-08-28 2020-08-28 094.129.085.057 56 43 2020-08-31 2020-08-30 219.091.241.240 44 43 2020-09-04 2020-09-04 135.181.044.138 661 42 2020-08-18 2020-08-18 095.186.096.082 47 42 2020-08-11 2020-08-11 184.174.128.229 42 42 2020-09-02 2020-09-02 194.103.132.100 233 42 2020-08-30 2020-08-30 094.156.174.139 3443 42 2020-08-17 2020-08-17 073.208.010.102 68 42 2020-09-05 2020-09-05 149.248.010.101 646 42 2020-08-12 2020-08-11 174.059.242.145 13783 42 2020-08-12 2020-08-12 110.137.074.023 42 42 2020-08-18 2020-08-18 047.025.066.193 42 42 2020-08-29 2020-08-29 180.247.006.236 42 42 2020-09-07 2020-09-07 088.214.058.105 2147 42 2020-08-13 2020-08-13 180.176.136.061 42 42 2020-08-25 2020-08-25 051.210.139.057 59 42 2020-08-26 2020-08-26 041.047.105.045 42 42 2020-08-14 2020-08-14 177.189.194.012 42 42 2020-08-12 2020-08-12 051.081.232.083 308 42 2020-08-21 2020-08-21 047.223.079.176 47 42 2020-08-14 2020-08-14 027.079.016.047 42 42 2020-08-30 2020-08-30 139.099.142.190 135 42 2020-08-31 2020-08-31 172.221.051.031 72 42 2020-09-08 2020-09-08 091.235.097.253 510 42 2020-08-29 2020-08-29 093.168.140.240 48 42 2020-08-23 2020-08-23 172.115.081.042 80 42 2020-08-29 2020-08-29 138.068.110.201 128 42 2020-09-08 2020-09-07 027.071.080.183 46 42 2020-09-04 2020-09-04 104.152.052.033 12430 42 2020-08-01 2020-08-11 206.074.105.039 42 42 2020-08-28 2020-08-28 069.197.161.210 84 42 2020-08-29 2020-08-29 081.129.111.098 62 42 2020-08-27 2020-08-27 181.046.185.071 1014 42 2020-08-29 2020-08-29 068.207.232.205 43 42 2020-09-04 2020-09-04 198.251.156.027 145 42 2020-08-24 2020-08-24 096.248.060.119 58 42 2020-08-23 2020-08-23 066.031.038.200 83 42 2020-08-12 2020-08-12 052.070.186.035 177 42 2020-09-04 2020-09-04 037.118.090.070 68 42 2020-09-08 2020-09-08 094.007.074.225 43 42 2020-08-23 2020-08-23 201.242.233.043 42 42 2020-09-03 2020-09-03 113.190.252.217 42 42 2020-08-14 2020-08-14 125.212.217.061 42 42 2020-08-16 2020-08-16 104.248.165.088 63 42 2020-09-02 2020-09-02 192.223.029.138 75 42 2020-08-22 2020-08-21 115.075.210.102 44 42 2020-08-11 2020-08-11 086.138.117.246 96 42 2020-08-26 2020-08-26 095.100.252.091 60 42 2020-08-26 2020-08-26 194.087.138.127 2435 42 2020-08-25 2020-09-01 058.065.144.145 42 42 2020-09-05 2020-09-05 073.201.014.055 327 42 2020-08-28 2020-08-28 089.248.160.139 45 42 2020-08-24 2020-08-24 188.246.224.126 48 42 2020-08-14 2020-08-13 089.248.160.150 72 42 2020-09-07 2020-09-06 192.141.013.021 927 42 2020-08-14 2020-08-13 049.206.199.192 43 42 2020-08-29 2020-08-29 178.063.133.101 42 42 2020-08-24 2020-08-24 193.093.062.057 44 42 2020-08-13 2020-08-13 095.047.057.102 44 42 2020-08-11 2020-08-11 023.240.072.027 49 42 2020-08-13 2020-08-13 073.076.145.222 89 42 2020-08-12 2020-08-12 176.226.192.001 77 42 2020-08-30 2020-08-30 172.058.107.096 299 42 2020-09-07 2020-09-07 036.073.195.155 42 42 2020-09-07 2020-09-07 093.168.001.102 51 42 2020-08-28 2020-08-28 186.185.048.016 84 42 2020-08-22 2020-08-22 209.225.049.003 314 42 2020-08-30 2020-08-30 178.034.163.236 42 42 2020-08-28 2020-08-28 162.062.052.243 48 42 2020-08-13 2020-08-13 125.046.011.067 59 42 2020-08-16 2020-08-15 108.070.184.162 46 42 2020-09-06 2020-09-06 162.205.151.221 47 42 2020-08-13 2020-08-13 045.095.168.230 90 42 2020-09-09 2020-09-09 012.191.211.226 417 42 2020-09-09 2020-09-09 185.202.001.127 58 42 2020-08-14 2020-08-14 044.234.096.172 49 42 2020-09-08 2020-09-08 092.184.098.130 1125 42 2020-09-09 2020-09-09 222.186.042.137 92 42 2020-08-24 2020-08-23 103.077.224.010 56 42 2020-08-30 2020-08-30 172.111.235.129 46 41 2020-09-04 2020-09-04 110.045.031.033 49 41 2020-08-19 2020-08-19 088.230.059.159 41 41 2020-08-22 2020-08-22 174.229.013.087 62 41 2020-08-20 2020-08-20 157.047.128.219 41 41 2020-08-26 2020-08-26 098.010.169.089 45 41 2020-08-24 2020-08-24 074.014.194.064 613 41 2020-08-22 2020-08-22 051.195.060.078 1773 41 2020-08-11 2020-08-11 193.025.253.055 52 41 2020-08-24 2020-08-23 031.015.026.118 789 41 2020-08-21 2020-08-19 142.129.042.081 41 41 2020-08-26 2020-08-26 186.090.027.046 44 41 2020-08-15 2020-08-15 045.089.125.143 42 41 2020-08-27 2020-08-27 031.043.095.139 41 41 2020-08-22 2020-08-22 087.251.066.206 165 41 2020-08-19 2020-08-19 066.085.080.046 531 41 2020-09-05 2020-09-05 061.005.016.229 43 41 2020-08-21 2020-08-21 045.077.203.158 41 41 2020-08-22 2020-08-22 199.231.233.027 1972 41 2020-08-09 2020-08-12 014.234.253.150 42 41 2020-09-04 2020-09-04 198.166.119.094 49 41 2020-09-02 2020-09-02 146.000.225.209 46 41 2020-08-12 2020-08-12 172.067.186.064 49 41 2020-08-31 2020-08-31 073.244.001.083 45 41 2020-08-28 2020-08-28 075.004.097.208 118 41 2020-08-26 2020-08-26 102.188.035.244 41 41 2020-08-23 2020-08-23 172.058.188.008 2679 41 2020-09-01 2020-09-01 142.169.078.178 1705 41 2020-08-12 2020-08-12 045.041.180.234 47 41 2020-08-30 2020-08-30 117.198.076.164 42 41 2020-08-13 2020-08-13 069.135.160.184 56 41 2020-08-18 2020-08-18 023.095.094.202 1393 41 2020-08-28 2020-08-30 201.211.197.061 43 41 2020-08-15 2020-08-15 178.093.140.056 41 41 2020-09-08 2020-09-08 172.012.157.113 1066 41 2020-08-14 2020-08-14 087.251.075.145 46 41 2020-08-28 2020-08-27 074.091.113.007 42 41 2020-09-09 2020-09-09 201.243.136.016 44 41 2020-09-06 2020-09-06 047.016.216.075 45 41 2020-08-25 2020-08-25 198.251.088.016 53 41 2020-08-27 2020-08-27 192.119.099.138 67 41 2020-08-30 2020-08-30 177.190.088.111 46 41 2020-09-04 2020-09-04 190.206.043.222 42 41 2020-08-17 2020-08-17 103.108.187.004 35204 41 2020-08-25 2020-09-01 094.129.088.028 8675 41 2020-08-13 2020-08-13 091.124.088.197 41 41 2020-08-14 2020-08-14 185.153.199.052 54 41 2020-08-16 2020-08-15 188.220.193.019 43 41 2020-08-28 2020-08-28 054.039.161.169 45 41 2020-08-26 2020-08-26 079.132.010.249 43 41 2020-08-26 2020-08-26 111.125.142.018 42 41 2020-09-09 2020-09-09 172.058.204.160 940 41 2020-09-01 2020-09-01 082.001.036.207 53 41 2020-08-29 2020-08-29 204.152.118.133 55 41 2020-08-20 2020-08-20 180.254.092.227 41 41 2020-09-04 2020-09-04 087.001.105.216 41 41 2020-08-27 2020-08-27 003.237.119.016 150 41 2020-08-31 2020-08-31 165.232.036.042 191 41 2020-08-17 2020-08-17 106.222.113.210 42 41 2020-08-14 2020-08-14 113.160.206.247 43 41 2020-08-31 2020-08-31 069.207.220.220 43 41 2020-09-03 2020-09-03 077.207.064.121 45 41 2020-08-26 2020-08-26 194.182.069.116 34882 41 2020-08-25 2020-09-01 044.232.250.163 55 41 2020-09-03 2020-09-03 144.172.066.102 365 41 2020-08-16 2020-08-16 095.239.013.239 1273 41 2020-09-08 2020-09-08 086.147.249.084 63 41 2020-08-27 2020-08-27 170.238.084.006 42 41 2020-08-11 2020-08-11 188.122.088.199 108 41 2020-09-06 2020-09-06 103.103.041.143 254 41 2020-08-27 2020-08-26 208.091.109.234 58 41 2020-09-08 2020-09-08 068.000.189.243 479 41 2020-08-31 2020-08-31 081.102.026.075 1812 41 2020-08-18 2020-08-18 114.039.120.237 42 41 2020-08-24 2020-08-24 104.033.164.057 44 41 2020-08-27 2020-08-27 200.044.197.129 42 41 2020-08-27 2020-08-27 040.076.094.195 60 41 2020-09-02 2020-09-02 104.238.116.019 14249 41 2020-08-25 2020-09-01 156.203.051.060 41 41 2020-09-02 2020-09-02 198.050.138.032 44 41 2020-08-29 2020-08-29 174.238.139.225 321 41 2020-09-08 2020-09-08 104.238.059.149 826 41 2020-08-26 2020-08-26 123.024.098.214 41 41 2020-08-27 2020-08-27 045.141.084.147 2751 41 2020-08-25 2020-09-02 073.118.107.185 42 41 2020-09-06 2020-09-06 005.209.155.214 41 41 2020-09-06 2020-09-06 178.176.216.206 47 41 2020-08-22 2020-08-22 179.028.122.042 41 41 2020-08-30 2020-08-29 142.250.004.121 1472 41 2020-08-11 2020-08-11 110.137.074.110 41 41 2020-08-15 2020-08-15 184.190.142.201 41 41 2020-08-26 2020-08-26 147.135.097.129 43 41 2020-08-19 2020-08-19 064.094.100.159 374 41 2020-09-09 2020-09-09 037.216.245.158 43 41 2020-09-05 2020-09-05 193.122.219.204 54 41 2020-09-08 2020-09-08 192.158.226.153 9511 41 2020-08-15 2020-08-15 172.058.107.011 1539 41 2020-07-22 2020-08-12 118.096.102.093 40 40 2020-08-12 2020-08-12 038.091.100.187 572 40 2020-08-29 2020-08-29 167.099.060.036 74 40 2020-08-17 2020-08-17 192.000.198.029 45 40 2020-09-01 2020-09-01 141.126.021.238 48 40 2020-09-03 2020-09-03 213.190.006.164 53 40 2020-08-18 2020-08-18 088.218.017.236 2917 40 2020-08-08 2020-08-18 099.203.011.042 253 40 2020-09-02 2020-09-02 168.138.130.086 47 40 2020-09-07 2020-09-07 136.144.056.189 40 40 2020-08-28 2020-08-28 024.054.250.146 41 40 2020-09-07 2020-09-07 209.200.152.199 41 40 2020-08-17 2020-08-17 174.100.197.087 3493 40 2020-08-12 2020-08-11 045.092.126.090 48 40 2020-08-26 2020-08-25 192.227.089.043 40 40 2020-08-17 2020-08-17 202.189.235.018 42 40 2020-08-28 2020-08-28 190.073.111.255 40 40 2020-09-01 2020-09-01 190.077.110.037 41 40 2020-08-25 2020-08-25 051.081.125.164 58 40 2020-08-23 2020-08-23 124.012.052.080 42 40 2020-09-01 2020-09-01 102.188.082.184 40 40 2020-08-29 2020-08-29 129.146.073.144 58 40 2020-08-21 2020-08-21 072.210.014.246 46 40 2020-08-14 2020-08-14 104.248.205.067 40 40 2020-08-14 2020-08-13 084.017.044.107 49 40 2020-08-14 2020-08-14 003.215.204.227 628 40 2020-08-30 2020-08-30 156.137.003.033 278 40 2020-08-30 2020-08-30 046.042.064.247 41 40 2020-08-22 2020-08-22 109.150.144.189 244 40 2020-08-19 2020-08-19 094.046.220.100 49 40 2020-09-03 2020-09-03 073.155.168.230 40 40 2020-08-21 2020-08-21 115.079.137.170 40 40 2020-08-29 2020-08-29 003.220.029.084 137 40 2020-08-29 2020-08-29 142.093.108.123 45 40 2020-09-01 2020-09-01 093.115.026.115 46 40 2020-08-12 2020-08-12 189.050.100.164 40 40 2020-08-24 2020-08-24 171.237.007.079 42 40 2020-08-14 2020-08-14 188.070.002.179 11499 40 2020-09-02 2020-09-02 114.041.111.160 40 40 2020-08-12 2020-08-11 117.005.156.140 40 40 2020-08-17 2020-08-17 177.190.167.242 179 40 2020-09-04 2020-09-04 178.080.115.135 41 40 2020-08-11 2020-08-11 075.084.142.212 49 40 2020-08-26 2020-08-25 097.084.111.214 73 40 2020-08-26 2020-08-26 177.155.200.101 321 40 2020-08-13 2020-08-13 107.128.038.079 84 40 2020-08-30 2020-08-30 070.127.134.176 1477 40 2020-08-22 2020-08-22 172.217.010.046 1077 40 2020-08-25 2020-08-26 103.207.037.096 40 40 2020-09-01 2020-08-31 069.047.225.132 45 40 2020-08-13 2020-08-13 046.064.080.115 46 40 2020-09-07 2020-09-07 171.229.080.162 41 40 2020-08-18 2020-08-18 173.177.210.185 49 40 2020-08-25 2020-08-25 031.214.243.216 84 40 2020-08-27 2020-08-27 109.015.162.036 41 40 2020-09-03 2020-09-03 151.210.227.038 40 40 2020-08-27 2020-08-27 138.185.154.113 85 40 2020-08-21 2020-08-21 104.041.180.030 1141 40 2020-07-21 2020-08-13 089.180.149.097 73 40 2020-08-28 2020-08-28 202.181.155.093 44 40 2020-08-25 2020-08-25 172.093.177.028 257 40 2020-08-29 2020-08-29 045.084.196.201 5186 40 2020-08-23 2020-08-29 051.195.171.080 55 40 2020-09-03 2020-09-03 185.200.118.071 40 40 2020-08-25 2020-08-25 187.189.102.137 46 40 2020-08-31 2020-08-31 125.164.232.071 40 40 2020-09-02 2020-09-02 085.190.070.163 41 40 2020-08-23 2020-08-22 222.186.015.115 172 40 2020-08-30 2020-08-29 190.079.127.193 42 40 2020-09-01 2020-09-01 113.161.091.074 40 40 2020-09-08 2020-09-08 172.014.020.073 45 40 2020-08-13 2020-08-13 149.056.072.190 41 40 2020-08-25 2020-08-25 067.087.032.197 570 40 2020-08-31 2020-08-31 067.201.156.093 75 40 2020-08-25 2020-08-24 074.091.117.249 917 40 2020-08-30 2020-08-30 068.226.112.016 69 40 2020-08-29 2020-08-29 108.061.114.004 41 40 2020-08-27 2020-08-27 145.239.136.051 55 40 2020-08-26 2020-08-26 108.061.101.207 67 40 2020-08-28 2020-08-28 091.121.218.193 40 39 2020-08-30 2020-08-30 138.068.125.186 57 39 2020-09-03 2020-09-03 108.003.165.034 42 39 2020-08-31 2020-08-31 103.200.020.107 46 39 2020-08-28 2020-08-28 073.061.045.155 63 39 2020-08-29 2020-08-29 094.102.050.155 41 39 2020-08-19 2020-08-19 005.206.224.214 4846 39 2020-08-12 2020-08-12 045.133.182.236 58739 39 2020-08-22 2020-08-30 065.039.205.057 57 39 2020-08-18 2020-08-18 155.004.221.148 97 39 2020-08-29 2020-08-29 145.239.053.221 65 39 2020-09-01 2020-09-01 180.244.088.006 39 39 2020-08-30 2020-08-30 185.236.223.129 227 39 2020-08-30 2020-08-30 171.231.184.125 39 39 2020-08-17 2020-08-17 071.204.004.102 49 39 2020-08-29 2020-08-29 031.013.083.016 71 39 2020-08-28 2020-08-28 134.249.062.190 61 39 2020-09-09 2020-09-09 181.115.163.251 42 39 2020-09-01 2020-09-01 037.099.117.232 39 39 2020-09-08 2020-09-08 193.239.144.132 40 39 2020-08-22 2020-08-22 013.079.242.085 63 39 2020-08-30 2020-08-30 054.039.092.055 79 39 2020-08-23 2020-08-23 002.089.207.101 40 39 2020-08-11 2020-08-11 193.123.197.118 59 39 2020-09-08 2020-09-08 185.112.082.157 55 39 2020-08-25 2020-08-25 024.191.004.076 41 39 2020-08-19 2020-08-19 003.084.056.184 177 39 2020-08-28 2020-08-28 014.236.212.162 39 39 2020-09-06 2020-09-06 099.028.197.199 162 39 2020-09-07 2020-09-07 064.053.180.209 41 39 2020-08-27 2020-08-27 069.061.026.022 40 39 2020-08-12 2020-08-12 188.122.082.222 203 39 2020-08-11 2020-08-11 031.186.250.030 42 39 2020-08-25 2020-08-25 091.195.240.136 44 39 2020-08-11 2020-08-11 216.086.038.153 43 39 2020-08-17 2020-08-17 054.236.199.218 96 39 2020-08-22 2020-08-22 095.144.010.033 61 39 2020-08-27 2020-08-27 071.059.086.154 48 39 2020-08-24 2020-08-24 013.093.238.005 503 39 2020-08-16 2020-08-16 005.188.206.194 16706 39 2020-08-14 2020-08-25 003.230.080.149 45 39 2020-08-20 2020-08-20 082.046.211.085 388 39 2020-08-19 2020-08-19 049.228.075.085 77 39 2020-09-02 2020-09-02 187.018.129.200 89 39 2020-08-25 2020-08-25 045.009.013.101 39 39 2020-09-02 2020-09-02 067.205.158.193 131 39 2020-08-30 2020-08-30 172.058.107.068 1401 39 2020-08-12 2020-08-12 076.187.000.010 110 39 2020-09-04 2020-09-04 062.030.074.109 40 39 2020-09-01 2020-09-01 047.015.059.137 40 39 2020-08-31 2020-08-31 193.123.002.116 61 39 2020-08-26 2020-08-26 108.061.005.179 50 39 2020-08-27 2020-08-27 183.083.155.142 39 39 2020-08-28 2020-08-28 193.070.077.110 39 39 2020-08-29 2020-08-29 068.091.254.130 166 39 2020-09-08 2020-09-08 027.067.179.255 39 39 2020-09-07 2020-09-07 213.122.231.229 45 39 2020-08-25 2020-08-25 222.186.030.112 80 39 2020-08-23 2020-08-22 185.019.216.225 46 39 2020-08-22 2020-08-22 058.186.053.032 39 39 2020-09-01 2020-09-01 074.091.125.215 39 39 2020-09-08 2020-09-08 109.248.094.189 44 39 2020-08-25 2020-08-25 001.052.056.034 39 39 2020-08-21 2020-08-21 193.169.253.173 4357 39 2020-08-29 2020-09-06 131.153.029.243 49 39 2020-08-24 2020-08-24 042.119.193.151 39 39 2020-08-11 2020-08-11 046.172.123.005 40 39 2020-08-29 2020-08-29 171.249.136.199 2415 39 2020-08-11 2020-08-12 198.251.137.041 155 39 2020-09-03 2020-09-03 172.105.246.176 89 39 2020-09-06 2020-09-06 134.249.152.031 39 39 2020-09-06 2020-09-06 014.229.122.014 39 39 2020-09-07 2020-09-07 068.226.210.066 79 39 2020-09-07 2020-09-07 088.214.026.097 133 39 2020-09-06 2020-09-05 172.058.191.012 911 39 2020-09-01 2020-09-01 086.178.176.059 39 39 2020-09-03 2020-09-03 188.190.094.050 41 39 2020-08-15 2020-08-15 118.069.080.008 39 39 2020-08-27 2020-08-27 099.051.000.017 48 39 2020-08-29 2020-08-29 099.203.036.118 3893 39 2020-08-12 2020-08-12 054.039.226.033 39 39 2020-08-26 2020-08-26 186.185.057.003 39 39 2020-09-02 2020-09-02 051.222.013.249 63 39 2020-09-03 2020-09-03 027.079.013.014 42 39 2020-08-14 2020-08-14 110.136.033.026 49 39 2020-08-31 2020-08-31 045.070.255.018 41 39 2020-08-13 2020-08-13 066.240.205.034 63 39 2020-09-01 2020-08-31 100.014.095.217 40 39 2020-08-26 2020-08-26 159.153.065.222 174 39 2020-08-19 2020-08-19 185.076.203.101 194 39 2020-08-30 2020-08-30 113.020.116.016 40 39 2020-08-20 2020-08-20 103.121.148.073 39 39 2020-08-19 2020-08-19 134.209.056.217 59 39 2020-08-13 2020-08-12 172.104.242.173 62 39 2020-08-29 2020-08-28 073.110.045.024 134 39 2020-09-07 2020-09-07 103.145.013.172 42 39 2020-08-25 2020-08-25 186.185.127.104 41 39 2020-08-17 2020-08-17 222.186.042.013 60 39 2020-08-29 2020-08-28 037.010.124.072 75 39 2020-09-05 2020-09-05 100.014.095.214 39 39 2020-08-26 2020-08-26 205.220.228.144 297 39 2020-09-06 2020-09-06 072.228.086.023 39 39 2020-08-23 2020-08-23 179.008.136.113 1162 39 2020-09-07 2020-09-07 168.119.059.040 40 39 2020-08-21 2020-08-21 201.248.149.015 39 39 2020-08-25 2020-08-25 222.186.180.223 111 39 2020-09-08 2020-09-07 189.148.073.055 40 38 2020-08-14 2020-08-14 045.117.082.216 108 38 2020-09-07 2020-09-07 185.246.065.038 93 38 2020-08-30 2020-08-30 190.077.190.000 38 38 2020-09-03 2020-09-03 090.207.087.075 752 38 2020-08-29 2020-08-29 188.017.185.175 39 38 2020-08-29 2020-08-29 144.217.147.253 39 38 2020-08-17 2020-08-17 051.068.046.102 125 38 2020-09-08 2020-09-08 041.232.117.207 38 38 2020-09-01 2020-09-01 068.049.245.135 65 38 2020-08-26 2020-08-26 014.176.032.112 38 38 2020-08-17 2020-08-17 101.191.029.131 508 38 2020-08-28 2020-08-28 113.185.077.057 39 38 2020-08-24 2020-08-24 084.232.140.164 38 38 2020-08-24 2020-08-24 051.038.060.018 38 38 2020-08-29 2020-08-29 103.090.074.138 38 38 2020-09-09 2020-09-09 194.026.027.096 70 38 2020-09-02 2020-09-02 151.101.000.144 267 38 2020-08-26 2020-08-26 081.141.248.222 52 38 2020-09-02 2020-09-02 172.058.107.052 1281 38 2020-08-12 2020-08-12 031.024.224.034 40 38 2020-08-24 2020-08-24 051.077.103.047 699 38 2020-09-01 2020-09-01 217.219.135.243 38 38 2020-08-31 2020-08-31 181.090.121.084 40 38 2020-08-22 2020-08-22 186.183.038.241 326 38 2020-08-27 2020-08-27 128.065.210.202 259 38 2020-09-03 2020-09-03 099.203.154.212 1444 38 2020-08-12 2020-08-12 174.023.030.194 12175 38 2020-08-19 2020-08-18 045.145.066.021 44 38 2020-09-06 2020-09-06 041.092.051.235 40 38 2020-08-26 2020-08-26 088.208.230.052 38 38 2020-08-26 2020-08-26 031.173.026.145 38 38 2020-08-19 2020-08-19 116.107.187.061 40 38 2020-09-01 2020-09-01 095.184.156.074 39 38 2020-08-13 2020-08-13 090.241.123.172 87 38 2020-09-07 2020-09-07 223.205.249.029 38 38 2020-09-09 2020-09-09 218.200.138.110 39 38 2020-09-08 2020-09-08 222.186.175.182 112 38 2020-09-08 2020-09-08 037.129.221.013 39 38 2020-08-18 2020-08-18 051.036.079.211 41 38 2020-08-11 2020-08-11 149.028.216.041 53 38 2020-08-25 2020-08-25 186.220.038.227 312 38 2020-09-01 2020-09-01 198.027.111.044 586 38 2020-09-03 2020-09-03 061.000.043.010 41 38 2020-08-14 2020-08-14 078.095.125.066 39 38 2020-08-22 2020-08-22 068.052.142.249 118 38 2020-08-25 2020-08-25 188.017.175.177 40 38 2020-09-07 2020-09-07 178.128.173.238 24711 38 2020-08-25 2020-09-01 202.152.001.089 55 38 2020-08-14 2020-08-13 082.154.113.029 44 38 2020-08-30 2020-08-30 014.191.059.123 39 38 2020-08-13 2020-08-13 031.204.146.119 75 38 2020-09-09 2020-09-09 189.189.201.110 43 38 2020-09-06 2020-09-06 005.066.252.044 56 38 2020-08-11 2020-08-11 036.074.023.161 39 38 2020-08-28 2020-08-28 154.183.082.075 38 38 2020-09-01 2020-09-01 216.186.204.056 556 38 2020-08-25 2020-08-25 045.154.170.066 38 38 2020-08-18 2020-08-18 194.035.233.100 126 38 2020-08-31 2020-08-31 119.093.043.171 39 38 2020-08-20 2020-08-20 188.214.132.094 40 38 2020-08-15 2020-08-15 153.002.228.050 188 38 2020-08-30 2020-08-30 084.148.120.045 45 38 2020-08-12 2020-08-12 052.115.165.081 65 38 2020-09-01 2020-09-01 109.249.181.069 53 38 2020-09-08 2020-09-08 190.037.098.065 38 38 2020-08-15 2020-08-15 094.130.174.152 582 38 2020-08-22 2020-08-22 114.041.154.225 41 38 2020-08-12 2020-08-12 037.229.254.084 38 38 2020-08-28 2020-08-28 084.145.211.236 38 38 2020-08-23 2020-08-23 079.069.242.087 42 38 2020-08-28 2020-08-28 142.044.143.074 236 38 2020-08-13 2020-08-13 051.195.167.146 317 38 2020-08-31 2020-08-31 113.022.236.136 40 38 2020-08-20 2020-08-20 072.002.248.243 8346 38 2020-08-12 2020-08-12 210.195.103.092 38 38 2020-08-29 2020-08-29 190.199.143.127 40 38 2020-09-03 2020-09-03 190.072.197.030 39 38 2020-08-21 2020-08-21 216.151.184.095 2056 38 2020-08-13 2020-08-13 134.035.031.106 39 38 2020-08-18 2020-08-18 001.055.210.244 38 38 2020-08-15 2020-08-15 200.084.109.216 39 38 2020-08-26 2020-08-26 081.035.207.141 38 38 2020-09-06 2020-09-06 051.161.023.190 1850 38 2020-08-12 2020-08-12 149.167.145.142 210 38 2020-09-01 2020-09-01 081.101.195.253 819 38 2020-08-31 2020-08-31 193.070.077.005 38 38 2020-08-30 2020-08-30 082.132.224.226 62 38 2020-08-18 2020-08-18 162.212.253.117 45 38 2020-08-31 2020-08-31 222.254.114.249 38 38 2020-09-03 2020-09-03 082.224.078.029 39 38 2020-08-26 2020-08-26 104.238.059.163 2330 38 2020-08-12 2020-08-12 190.201.191.014 38 38 2020-09-06 2020-09-06 005.206.009.101 38 38 2020-08-21 2020-08-21 027.071.132.076 48 38 2020-09-08 2020-09-08 080.080.100.166 38 38 2020-08-19 2020-08-19 098.184.089.202 653 38 2020-08-26 2020-08-26 180.254.050.066 328 38 2020-08-27 2020-08-27 005.222.033.054 136 37 2020-08-26 2020-08-26 082.132.234.170 1965 37 2020-08-13 2020-08-13 167.088.161.092 39 37 2020-09-09 2020-09-09 152.032.098.102 38 37 2020-09-05 2020-09-04 039.045.004.082 37 37 2020-08-30 2020-08-30 172.058.172.129 42 37 2020-08-14 2020-08-14 173.194.207.127 69 37 2020-09-08 2020-09-08 086.180.083.229 52 37 2020-09-02 2020-09-02 031.214.243.124 67 37 2020-08-27 2020-08-27 051.222.010.112 39 37 2020-08-18 2020-08-18 001.052.210.185 37 37 2020-08-28 2020-08-28 002.050.095.253 83 37 2020-08-25 2020-08-24 131.226.128.035 436 37 2020-09-05 2020-09-05 096.009.250.148 290 37 2020-08-14 2020-08-14 054.039.235.241 11247 37 2020-08-12 2020-08-12 031.043.074.053 37 37 2020-09-05 2020-09-05 069.242.058.252 854 37 2020-08-26 2020-08-26 096.239.121.058 37 37 2020-09-01 2020-09-01 014.254.114.010 37 37 2020-08-13 2020-08-13 047.156.216.049 61 37 2020-08-29 2020-08-29 203.210.157.215 39 37 2020-08-11 2020-08-11 073.240.063.095 57 37 2020-08-14 2020-08-14 149.056.243.115 48 37 2020-09-04 2020-09-04 062.031.220.177 353 37 2020-08-26 2020-08-26 095.219.114.015 49 37 2020-08-18 2020-08-18 195.154.151.065 84 37 2020-08-26 2020-08-26 123.023.233.113 37 37 2020-09-01 2020-09-01 092.039.197.106 37 37 2020-08-28 2020-08-28 190.039.175.241 38 37 2020-08-25 2020-08-25 068.038.213.170 40 37 2020-08-26 2020-08-26 051.077.031.062 39 37 2020-08-13 2020-08-13 051.039.170.166 162 37 2020-08-14 2020-08-14 176.179.133.066 319 37 2020-09-08 2020-09-08 089.187.177.241 145 37 2020-08-19 2020-08-19 092.232.167.122 414 37 2020-08-25 2020-08-25 103.216.236.109 38 37 2020-08-19 2020-08-19 212.197.236.005 189 37 2020-08-30 2020-08-30 005.101.166.042 105 37 2020-08-18 2020-08-18 188.170.164.050 41 37 2020-08-21 2020-08-21 077.031.105.238 39 37 2020-08-25 2020-08-25 014.226.080.163 38 37 2020-08-12 2020-08-12 075.015.185.222 43 37 2020-08-24 2020-08-24 036.238.090.242 40 37 2020-08-14 2020-08-14 134.209.044.109 37 37 2020-09-07 2020-09-07 080.234.012.032 38 37 2020-09-04 2020-09-04 142.044.147.028 865 37 2020-08-25 2020-08-25 104.173.059.207 1915 37 2020-08-12 2020-08-12 185.008.177.026 37 37 2020-08-23 2020-08-23 069.161.085.114 86 37 2020-08-28 2020-08-27 080.082.046.191 39 37 2020-09-04 2020-09-04 151.080.194.188 38 37 2020-08-24 2020-08-24 089.178.105.255 37 37 2020-08-19 2020-08-19 167.172.031.213 426 37 2020-08-29 2020-08-29 218.202.140.167 40 37 2020-09-08 2020-09-08 041.041.165.194 37 37 2020-08-18 2020-08-18 190.078.162.113 37 37 2020-08-23 2020-08-23 171.239.174.013 37 37 2020-08-16 2020-08-16 092.027.150.009 51 37 2020-09-02 2020-09-02 082.076.006.029 38 37 2020-09-02 2020-09-02 134.249.103.091 37 37 2020-08-15 2020-08-15 209.222.002.195 832 37 2020-08-14 2020-08-14 094.006.007.211 1015 37 2020-08-29 2020-08-29 194.037.080.216 37 37 2020-09-09 2020-09-09 119.017.249.069 37 37 2020-09-07 2020-09-07 087.018.173.109 41 37 2020-08-12 2020-08-12 190.204.228.225 37 37 2020-09-02 2020-09-02 101.071.138.009 40 37 2020-08-14 2020-08-14 051.091.074.219 4262 37 2020-08-11 2020-08-11 109.149.165.083 48 37 2020-08-25 2020-08-25 115.076.170.233 214 37 2020-08-22 2020-08-22 213.093.112.011 449 37 2020-08-20 2020-08-20 066.181.177.122 38 37 2020-08-18 2020-08-18 002.057.122.186 68 37 2020-09-05 2020-09-04 104.140.245.057 323 37 2020-09-03 2020-09-02 125.161.136.041 43 37 2020-09-04 2020-09-04 092.238.164.152 59 37 2020-09-08 2020-09-08 035.174.198.107 492 37 2020-08-29 2020-08-29 208.100.026.228 38 37 2020-09-01 2020-09-01 104.152.052.030 9970 37 2020-08-21 2020-08-23 089.248.167.141 258 37 2020-09-01 2020-08-31 065.152.053.250 44 37 2020-08-17 2020-08-17 046.150.166.091 37 37 2020-08-24 2020-08-24 194.026.027.098 67 37 2020-09-02 2020-09-02 202.004.119.242 39 37 2020-08-30 2020-08-30 094.231.162.010 38 37 2020-08-16 2020-08-16 176.115.144.103 39 37 2020-08-16 2020-08-16 073.221.103.143 37 37 2020-09-01 2020-09-01 091.214.044.138 191 37 2020-08-28 2020-08-28 064.044.032.028 44 37 2020-09-07 2020-09-07 102.126.005.010 41 37 2020-09-02 2020-09-02 216.052.148.249 38 37 2020-08-20 2020-08-20 185.232.030.130 207 37 2020-08-22 2020-08-21 104.254.200.086 38 37 2020-09-03 2020-09-03 201.086.139.229 39 37 2020-09-09 2020-09-08 189.032.218.154 54 36 2020-08-29 2020-08-29 071.072.251.001 36 36 2020-09-09 2020-09-09 073.181.178.085 72 36 2020-08-14 2020-08-14 037.138.099.173 41 36 2020-08-22 2020-08-22 075.066.225.079 36 36 2020-08-15 2020-08-15 052.246.114.154 36 36 2020-08-16 2020-08-16 190.198.163.184 36 36 2020-08-27 2020-08-27 014.176.040.253 41 36 2020-08-30 2020-08-30 202.150.153.147 37 36 2020-08-22 2020-08-22 066.070.129.062 192 36 2020-08-31 2020-08-31 182.186.088.158 36 36 2020-08-13 2020-08-13 071.002.163.061 36 36 2020-09-03 2020-09-03 098.239.085.110 36 36 2020-08-15 2020-08-15 098.166.056.091 72 36 2020-08-16 2020-08-16 020.037.131.126 36 36 2020-08-16 2020-08-16 052.226.138.019 36 36 2020-09-03 2020-09-03 141.156.184.057 2701 36 2020-08-12 2020-08-12 192.099.223.171 36 36 2020-09-05 2020-09-05 174.104.058.016 36 36 2020-08-18 2020-08-18 199.180.104.122 40 36 2020-08-12 2020-08-12 088.214.026.090 120 36 2020-08-20 2020-08-19 072.217.008.195 57 36 2020-08-25 2020-08-25 024.088.059.153 9159 36 2020-08-18 2020-08-18 172.083.043.134 431 36 2020-08-31 2020-08-31 052.234.094.193 36 36 2020-08-11 2020-08-11 107.212.197.050 72 36 2020-08-11 2020-08-11 167.114.027.123 37 36 2020-08-25 2020-08-25 047.221.204.030 3134 36 2020-09-04 2020-09-04 187.133.251.147 40 36 2020-08-14 2020-08-14 201.248.156.228 36 36 2020-08-19 2020-08-19 103.150.124.128 58 36 2020-08-29 2020-08-29 192.099.179.201 36 36 2020-08-30 2020-08-30 074.091.116.154 1647 36 2020-08-14 2020-08-14 076.235.208.099 36 36 2020-09-02 2020-09-02 036.234.136.118 36 36 2020-08-31 2020-08-31 031.214.243.079 59 36 2020-08-27 2020-08-27 077.029.006.070 37 36 2020-08-27 2020-08-27 172.058.099.201 2178 36 2020-08-11 2020-08-11 189.026.218.127 37 36 2020-08-19 2020-08-19 075.172.008.151 36 36 2020-08-14 2020-08-14 084.067.069.252 36 36 2020-08-29 2020-08-29 002.221.011.192 491 36 2020-08-29 2020-08-29 174.230.001.012 36 36 2020-08-22 2020-08-22 137.074.152.213 44 36 2020-08-25 2020-08-25 198.057.049.254 72 36 2020-08-14 2020-08-14 188.214.133.096 40 36 2020-09-04 2020-09-04 192.141.012.001 1385 36 2020-08-14 2020-08-14 051.195.182.177 36 36 2020-08-18 2020-08-18 066.085.014.246 36 36 2020-08-31 2020-08-31 131.226.128.023 463 36 2020-09-05 2020-09-05 209.141.047.222 36 36 2020-09-04 2020-09-03 090.251.090.141 39 36 2020-09-03 2020-09-03 146.000.228.195 53 36 2020-08-15 2020-08-15 098.232.200.104 36 36 2020-09-08 2020-09-08 196.156.158.023 36 36 2020-08-11 2020-08-11 108.254.163.083 36 36 2020-08-17 2020-08-17 096.005.242.200 373 36 2020-08-26 2020-08-26 173.216.081.228 4693 36 2020-08-16 2020-08-16 091.210.166.128 38 36 2020-09-02 2020-09-02 173.061.115.013 725 36 2020-09-03 2020-09-03 113.023.018.219 36 36 2020-08-22 2020-08-22 066.068.144.015 117 36 2020-08-18 2020-08-18 079.106.127.160 37 36 2020-09-03 2020-09-03 107.204.124.005 72 36 2020-08-29 2020-08-29 002.024.002.223 9019 36 2020-08-19 2020-08-19 193.123.012.069 3690 36 2020-08-13 2020-08-13 110.175.248.054 39 36 2020-09-09 2020-09-09 067.204.042.043 36 36 2020-08-13 2020-08-13 075.002.041.166 37 36 2020-08-26 2020-08-26 052.251.009.243 36 36 2020-09-02 2020-09-02 151.255.143.185 4835 36 2020-08-11 2020-08-11 131.106.014.174 36 36 2020-08-14 2020-08-14 104.049.223.126 36 36 2020-09-09 2020-09-09 008.020.123.023 36 36 2020-09-06 2020-09-06 184.087.057.141 36 36 2020-09-03 2020-09-03 173.061.115.185 1793 36 2020-09-03 2020-09-03 099.170.235.247 108 36 2020-08-11 2020-08-11 071.060.171.147 5610 36 2020-08-18 2020-08-18 176.248.185.150 15272 36 2020-09-06 2020-09-06 173.217.106.250 36 36 2020-08-14 2020-08-14 213.089.100.011 4742 36 2020-08-18 2020-08-18 090.255.210.231 50 36 2020-09-07 2020-09-07 036.080.240.202 36 36 2020-09-04 2020-09-04 020.054.025.216 36 36 2020-08-12 2020-08-12 073.078.122.140 36 36 2020-08-26 2020-08-26 031.013.089.035 58 36 2020-08-19 2020-08-19 005.117.206.057 136 36 2020-09-03 2020-09-03 081.153.249.004 2669 36 2020-08-18 2020-08-18 149.056.225.157 36 36 2020-08-24 2020-08-24 179.255.071.031 38 36 2020-09-04 2020-09-04 112.141.031.060 72 36 2020-08-29 2020-08-29 116.103.037.229 40 36 2020-09-08 2020-09-08 073.213.057.159 57 36 2020-08-26 2020-08-26 138.128.141.037 37 36 2020-08-12 2020-08-12 042.112.236.182 37 36 2020-08-29 2020-08-29 047.199.174.022 36 36 2020-09-05 2020-09-05 045.145.066.022 41 36 2020-09-06 2020-09-06 073.214.221.010 748 36 2020-08-31 2020-08-31 089.151.178.190 42 36 2020-08-11 2020-08-11 023.120.251.203 36 36 2020-09-03 2020-09-03 064.094.101.163 366 36 2020-08-31 2020-08-30 166.173.186.014 36 36 2020-08-29 2020-08-29 058.217.000.214 108 36 2020-08-13 2020-08-13 042.116.075.156 37 36 2020-09-09 2020-09-09 147.092.031.178 18593 36 2020-09-02 2020-09-02 049.228.048.014 38 36 2020-08-17 2020-08-17 107.133.165.006 2112 36 2020-09-05 2020-09-05 035.205.016.219 41 36 2020-08-12 2020-08-12 024.147.004.046 2765 36 2020-08-20 2020-08-20 107.172.250.245 36 36 2020-08-24 2020-08-24 051.140.229.088 36 36 2020-08-15 2020-08-15 091.171.245.209 39 36 2020-09-06 2020-09-06 198.251.158.000 138 36 2020-09-08 2020-09-08 172.100.091.173 11524 36 2020-09-05 2020-09-05 095.217.041.014 6675 36 2020-08-26 2020-08-31 071.154.157.132 8305 36 2020-09-08 2020-09-08 038.077.025.024 711 36 2020-08-30 2020-08-30 071.237.210.222 324 36 2020-09-07 2020-09-07 045.168.065.061 250 36 2020-08-16 2020-08-15 099.252.203.190 756 36 2020-09-06 2020-09-06 194.026.027.095 84 36 2020-09-02 2020-09-02 134.249.243.031 36 36 2020-08-13 2020-08-13 015.184.014.167 39 36 2020-08-21 2020-08-21 072.177.251.210 72 36 2020-09-09 2020-09-09 174.080.144.020 2153 36 2020-09-03 2020-09-03 172.088.150.162 72 36 2020-08-16 2020-08-16 024.055.160.191 79 36 2020-08-22 2020-08-22 042.119.238.085 38 36 2020-08-23 2020-08-23 095.146.247.240 3097 36 2020-09-06 2020-09-06 190.078.205.142 38 36 2020-08-31 2020-08-31 064.231.195.079 159 36 2020-09-01 2020-09-01 094.110.238.191 56 36 2020-08-12 2020-08-12 190.198.196.030 42 36 2020-08-31 2020-08-31 089.039.107.190 1735 36 2020-08-11 2020-08-11 134.255.158.026 36 36 2020-08-25 2020-08-25 015.222.109.041 38 36 2020-08-15 2020-08-15 066.042.088.227 36 36 2020-08-17 2020-08-17 184.056.163.130 72 36 2020-08-16 2020-08-16 074.221.123.184 36 36 2020-09-03 2020-09-03 110.032.190.103 61 36 2020-09-08 2020-09-08 068.070.022.117 521 36 2020-08-11 2020-08-11 045.056.183.050 2291 36 2020-08-12 2020-08-12 069.178.092.007 36 36 2020-09-08 2020-09-08 192.035.168.220 126 36 2020-09-04 2020-09-03 151.101.001.185 107 36 2020-09-02 2020-09-02 098.201.130.035 36 36 2020-09-09 2020-09-09 094.023.155.054 37 36 2020-08-19 2020-08-19 066.025.090.141 3900 36 2020-09-08 2020-09-08 142.004.209.192 38 36 2020-08-30 2020-08-30 098.200.013.045 5461 36 2020-08-18 2020-08-18 188.122.082.198 1794 36 2020-08-11 2020-08-11 166.170.033.212 1439 36 2020-09-01 2020-09-01 171.004.229.239 39 36 2020-08-18 2020-08-18 188.071.249.077 2173 36 2020-08-13 2020-08-13 212.102.033.236 171 36 2020-08-31 2020-08-31 088.218.017.073 12225 36 2020-08-09 2020-08-13 074.118.031.009 36 36 2020-09-07 2020-09-07 173.020.113.168 36 36 2020-08-26 2020-08-26 176.224.159.241 37 36 2020-08-11 2020-08-11 138.130.226.228 36 36 2020-09-04 2020-09-04 138.043.155.182 36 36 2020-09-03 2020-09-03 193.035.051.013 273268 36 2020-07-22 2020-08-19 005.068.234.205 36 36 2020-09-07 2020-09-07 069.160.183.248 72 36 2020-08-11 2020-08-11 174.056.084.212 36 36 2020-09-04 2020-09-04 104.126.241.111 1629 36 2020-08-11 2020-08-11 070.189.191.041 36 36 2020-09-09 2020-09-09 164.090.152.082 38 36 2020-08-31 2020-08-31 050.087.195.061 36 36 2020-09-07 2020-09-07 024.209.167.187 36 36 2020-08-14 2020-08-14 058.007.185.049 72 36 2020-08-29 2020-08-29 173.174.224.040 72 36 2020-08-26 2020-08-26 139.218.106.102 3472 36 2020-09-07 2020-09-07 174.218.006.078 36 36 2020-08-18 2020-08-18 073.121.170.089 36 36 2020-09-07 2020-09-07 091.173.206.003 7849 36 2020-08-18 2020-08-18 099.002.179.057 4038 36 2020-08-16 2020-08-16 197.089.076.153 963 36 2020-09-01 2020-09-01 047.042.226.029 7589 36 2020-08-18 2020-08-18 071.014.024.002 72 36 2020-08-14 2020-08-14 115.079.137.050 56 36 2020-09-07 2020-09-07 104.014.229.045 5094 36 2020-09-06 2020-09-06 068.228.235.032 36 36 2020-08-21 2020-08-21 052.154.156.219 36 36 2020-08-11 2020-08-11 171.249.138.228 272 36 2020-09-05 2020-09-05 173.169.186.254 36 36 2020-08-17 2020-08-17 071.236.158.168 72 36 2020-08-16 2020-08-16 157.044.106.206 36 36 2020-08-26 2020-08-26 190.200.027.219 36 36 2020-08-16 2020-08-16 051.253.088.042 35 35 2020-08-13 2020-08-12 093.174.093.026 50054 35 2020-08-19 2020-08-22 088.214.026.092 114 35 2020-09-06 2020-09-05 005.143.148.053 38 35 2020-08-26 2020-08-26 091.241.154.039 35 35 2020-08-21 2020-08-21 066.188.148.093 35 35 2020-08-23 2020-08-22 176.210.228.063 36 35 2020-09-03 2020-09-03 104.107.019.153 322 35 2020-08-24 2020-08-24 036.065.206.219 39 35 2020-08-28 2020-08-28 045.095.235.036 66 35 2020-09-04 2020-09-04 005.135.230.131 41 35 2020-08-31 2020-08-30 088.238.009.210 35 35 2020-08-22 2020-08-22 005.199.206.171 36 35 2020-08-21 2020-08-21 076.176.219.204 48 35 2020-09-07 2020-09-07 104.143.083.242 38 35 2020-08-23 2020-08-22 020.050.254.224 39 35 2020-08-12 2020-08-12 194.061.024.047 109 35 2020-08-12 2020-08-11 091.239.097.246 41 35 2020-09-05 2020-09-04 174.102.018.207 829 35 2020-09-02 2020-09-02 093.076.218.128 35 35 2020-08-27 2020-08-27 115.075.148.046 35 35 2020-09-04 2020-09-04 187.016.255.102 73 35 2020-09-05 2020-09-04 200.044.252.228 35 35 2020-08-27 2020-08-27 094.059.167.047 39 35 2020-08-12 2020-08-12 192.099.034.142 3075 35 2020-07-14 2020-08-14 128.116.075.240 39 35 2020-08-25 2020-08-25 140.238.006.181 42 35 2020-08-11 2020-08-11 051.161.099.010 35 35 2020-08-28 2020-08-28 100.016.249.144 426 35 2020-08-13 2020-08-13 172.058.022.202 1462 35 2020-08-11 2020-08-11 115.079.042.095 35 35 2020-08-16 2020-08-16 084.182.024.138 40 35 2020-08-20 2020-08-20 176.194.025.198 36 35 2020-09-04 2020-09-04 024.153.041.106 322 35 2020-09-01 2020-09-01 086.146.037.155 42 35 2020-09-06 2020-09-06 128.065.209.014 253 35 2020-09-03 2020-09-03 125.024.091.236 35 35 2020-09-01 2020-09-01 051.195.167.170 67 35 2020-08-21 2020-08-21 095.232.178.245 35 35 2020-08-29 2020-08-29 166.170.059.025 5950 35 2020-08-19 2020-08-19 129.146.110.207 50 35 2020-09-07 2020-09-07 079.139.074.078 35 35 2020-08-11 2020-08-11 052.154.244.060 48 35 2020-09-08 2020-09-08 036.081.142.174 35 35 2020-08-25 2020-08-25 113.087.008.106 36 35 2020-08-20 2020-08-20 051.077.112.172 42 35 2020-08-19 2020-08-19 134.019.148.136 35 35 2020-09-07 2020-09-07 199.231.163.022 46 35 2020-08-26 2020-08-26 172.113.136.173 35 35 2020-09-03 2020-09-03 186.088.249.147 35 35 2020-08-18 2020-08-18 180.246.216.213 36 35 2020-08-12 2020-08-12 192.035.168.250 132 35 2020-09-04 2020-09-03 174.050.209.068 40 35 2020-08-15 2020-08-15 198.027.074.001 486 35 2020-08-16 2020-08-16 005.077.213.160 35 35 2020-08-15 2020-08-15 201.242.150.160 35 35 2020-08-21 2020-08-21 051.081.073.125 42 35 2020-08-24 2020-08-24 104.192.153.099 35 35 2020-09-06 2020-09-06 075.036.065.183 3893 35 2020-08-15 2020-08-15 095.029.188.122 35 35 2020-08-31 2020-08-31 188.163.100.046 36 35 2020-08-22 2020-08-22 046.101.246.136 185 35 2020-08-11 2020-08-11 222.219.251.028 37 35 2020-09-03 2020-09-03 083.069.031.008 38 35 2020-08-20 2020-08-20 210.245.021.168 35 35 2020-08-26 2020-08-26 068.042.179.169 39 35 2020-09-03 2020-09-03 104.156.236.049 36 35 2020-08-13 2020-08-13 001.001.240.038 36 35 2020-09-01 2020-09-01 119.017.249.070 35 35 2020-09-07 2020-09-07 218.166.162.111 35 35 2020-09-01 2020-09-01 174.011.207.192 1565 35 2020-08-15 2020-08-15 162.241.024.092 41 35 2020-09-08 2020-09-08 091.208.184.110 126 35 2020-09-07 2020-09-07 168.063.092.053 35 35 2020-08-23 2020-08-23 104.009.126.196 56 35 2020-08-30 2020-08-30 192.241.226.227 35 35 2020-08-24 2020-08-23 125.214.049.111 37 35 2020-09-07 2020-09-07 024.216.071.135 576 35 2020-08-30 2020-08-30 087.251.074.200 119 35 2020-08-23 2020-08-22 099.203.056.236 350 35 2020-08-26 2020-08-26 198.008.081.080 421 35 2020-08-31 2020-08-31 186.094.127.206 35 35 2020-09-02 2020-09-02 201.211.212.127 36 35 2020-08-26 2020-08-26 014.251.191.062 35 35 2020-09-07 2020-09-07 088.198.240.064 37 35 2020-08-21 2020-08-21 109.248.200.102 40 35 2020-08-15 2020-08-15 159.100.232.201 37 35 2020-08-20 2020-08-20 091.218.066.011 38 35 2020-08-12 2020-08-12 068.054.011.084 53 35 2020-09-09 2020-09-09 167.099.094.077 559 35 2020-08-22 2020-08-22 192.241.229.018 35 35 2020-08-23 2020-08-23 051.036.011.065 35 35 2020-09-07 2020-09-07 088.150.230.163 592 35 2020-08-29 2020-08-28 182.182.065.004 35 35 2020-08-15 2020-08-15 045.010.088.068 40 35 2020-08-27 2020-08-27 039.045.192.251 35 35 2020-09-05 2020-09-05 107.214.249.014 2463 35 2020-08-11 2020-08-11 185.156.073.044 37 35 2020-08-12 2020-08-12 178.124.176.097 35 35 2020-08-18 2020-08-18 093.191.009.063 36 35 2020-08-19 2020-08-18 151.036.045.000 35 35 2020-09-06 2020-09-06 072.048.070.002 37 35 2020-08-14 2020-08-14 059.098.179.143 35 35 2020-08-14 2020-08-14 186.092.013.074 36 35 2020-08-12 2020-08-12 073.109.056.201 192 34 2020-08-23 2020-08-23 185.176.027.238 40 34 2020-08-17 2020-08-17 128.199.000.133 34 34 2020-08-12 2020-08-11 081.041.135.082 42 34 2020-09-04 2020-09-04 037.043.210.000 34 34 2020-08-12 2020-08-12 046.001.092.028 35 34 2020-09-01 2020-09-01 212.034.011.226 66 34 2020-09-07 2020-09-07 088.238.010.035 34 34 2020-09-04 2020-09-04 172.089.164.216 34 34 2020-08-18 2020-08-18 020.037.048.230 34 34 2020-08-12 2020-08-12 085.114.175.022 34 34 2020-08-12 2020-08-12 076.124.135.006 39 34 2020-09-04 2020-09-04 190.036.063.201 36 34 2020-08-31 2020-08-31 198.054.126.079 34 34 2020-08-16 2020-08-16 139.059.180.053 32034 34 2020-08-26 2020-09-02 185.143.223.245 63 34 2020-08-14 2020-08-13 118.096.168.182 34 34 2020-08-18 2020-08-18 177.239.240.210 34 34 2020-08-28 2020-08-28 085.131.246.055 223 34 2020-08-16 2020-08-15 045.141.084.085 34 34 2020-09-04 2020-09-04 188.049.102.048 34 34 2020-08-15 2020-08-15 220.248.118.142 34 34 2020-08-16 2020-08-16 193.105.134.045 60 34 2020-09-06 2020-09-05 078.191.084.251 34 34 2020-08-24 2020-08-24 071.175.043.199 34400 34 2020-08-20 2020-08-20 035.190.001.135 399 34 2020-08-13 2020-08-13 085.154.018.238 34 34 2020-08-12 2020-08-12 051.089.215.229 34 34 2020-09-06 2020-09-06 041.068.065.058 34 34 2020-08-31 2020-08-31 005.101.166.055 34 34 2020-08-18 2020-08-18 005.036.208.137 34 34 2020-08-12 2020-08-12 037.049.230.013 34 34 2020-08-24 2020-08-24 138.185.152.041 655 34 2020-08-18 2020-08-18 172.067.068.161 50 34 2020-08-12 2020-08-12 186.185.066.095 34 34 2020-08-15 2020-08-15 116.202.129.083 35 34 2020-08-20 2020-08-20 109.131.248.049 266 34 2020-08-23 2020-08-23 045.037.101.141 196 34 2020-09-02 2020-09-02 186.059.249.148 35 34 2020-08-12 2020-08-12 172.058.188.055 34 34 2020-08-17 2020-08-17 115.186.174.070 37 34 2020-08-28 2020-08-28 223.235.015.104 35 34 2020-08-21 2020-08-21 068.184.183.236 42 34 2020-09-07 2020-09-07 109.041.066.145 34 34 2020-08-30 2020-08-30 093.169.140.077 68 34 2020-08-12 2020-08-12 088.218.017.048 9618 34 2020-08-09 2020-08-13 198.251.154.065 90 34 2020-09-08 2020-09-08 051.036.114.226 99 34 2020-09-08 2020-09-07 182.064.046.022 34 34 2020-08-12 2020-08-12 064.020.050.130 1813 34 2020-09-09 2020-09-09 125.163.090.239 38 34 2020-08-25 2020-08-25 213.164.009.002 179 34 2020-08-30 2020-08-30 037.049.230.150 49 34 2020-08-13 2020-08-12 186.225.017.177 37 34 2020-08-24 2020-08-24 123.018.078.050 34 34 2020-09-09 2020-09-09 005.109.023.206 34 34 2020-08-13 2020-08-13 086.166.114.243 148 34 2020-09-06 2020-09-06 091.229.112.012 54 34 2020-08-12 2020-08-12 122.225.019.018 38 34 2020-08-26 2020-08-26 005.105.093.007 34 34 2020-08-24 2020-08-24 041.237.165.090 34 34 2020-08-16 2020-08-16 125.230.217.064 35 34 2020-08-19 2020-08-19 181.143.123.098 39 34 2020-08-12 2020-08-12 188.050.003.187 34 34 2020-08-12 2020-08-12 005.146.192.254 267 34 2020-08-26 2020-08-26 192.241.223.177 34 34 2020-08-23 2020-08-23 196.210.048.136 35 34 2020-09-01 2020-09-01 037.078.039.025 35 34 2020-08-14 2020-08-14 086.006.012.014 360 34 2020-09-07 2020-09-07 192.124.249.010 51 34 2020-08-25 2020-08-25 115.161.172.180 240 34 2020-09-01 2020-09-01 107.133.101.066 444 34 2020-08-28 2020-08-28 174.228.010.241 42 34 2020-08-24 2020-08-24 086.137.126.160 41 34 2020-08-27 2020-08-27 080.082.064.167 2146 34 2020-08-05 2020-09-01 092.207.164.138 34 34 2020-08-26 2020-08-26 181.214.091.140 36 34 2020-08-31 2020-08-30 201.243.117.071 36 34 2020-09-01 2020-09-01 177.209.141.132 70 34 2020-08-23 2020-08-23 035.197.228.166 35 34 2020-09-08 2020-09-08 200.093.068.077 34 34 2020-08-19 2020-08-19 096.233.155.223 43 34 2020-08-26 2020-08-26 134.255.019.126 34 34 2020-08-20 2020-08-20 196.189.006.108 34 34 2020-09-09 2020-09-09 052.216.147.099 34 34 2020-08-22 2020-08-22 044.234.080.064 846 34 2020-08-16 2020-08-16 027.074.249.056 34 34 2020-09-09 2020-09-09 194.153.171.021 493 34 2020-09-05 2020-09-05 172.089.006.248 34 34 2020-08-11 2020-08-11 037.107.097.060 34 34 2020-08-12 2020-08-12 067.023.168.017 34 34 2020-08-28 2020-08-28 070.050.151.158 1905 34 2020-08-22 2020-08-22 078.190.004.124 36 34 2020-08-14 2020-08-14 182.186.041.229 34 34 2020-08-28 2020-08-28 178.241.072.160 34 34 2020-09-04 2020-09-04 178.072.091.210 34 34 2020-08-22 2020-08-22 193.023.126.114 54 34 2020-08-12 2020-08-11 181.044.118.034 43 34 2020-08-26 2020-08-26 185.176.027.030 97 34 2020-08-18 2020-08-17 125.162.225.251 35 34 2020-08-17 2020-08-17 044.234.082.046 2403 34 2020-08-16 2020-08-16 144.172.066.101 34 34 2020-08-17 2020-08-17 119.155.253.234 35 34 2020-08-23 2020-08-23 192.035.168.219 115 34 2020-09-04 2020-09-03 183.080.083.013 35 34 2020-08-19 2020-08-19 099.251.242.049 49 34 2020-09-02 2020-09-02 067.205.131.020 250 34 2020-08-24 2020-08-23 027.071.101.039 34 34 2020-09-07 2020-09-07 183.136.225.045 50 34 2020-09-07 2020-09-06 140.213.166.088 34 34 2020-09-07 2020-09-07 151.254.251.222 39 34 2020-08-21 2020-08-21 113.022.132.156 34 34 2020-08-28 2020-08-28 193.070.086.108 34 34 2020-09-04 2020-09-04 045.145.185.189 276 34 2020-09-05 2020-09-04 031.214.243.073 35 34 2020-08-12 2020-08-11 119.017.249.068 34 34 2020-09-07 2020-09-07 125.164.097.020 35 34 2020-08-21 2020-08-21 209.141.061.233 35 34 2020-08-19 2020-08-19 045.132.095.133 36 34 2020-09-06 2020-09-06 073.034.038.065 379 34 2020-09-05 2020-09-05 201.210.241.191 34 34 2020-08-22 2020-08-22 144.202.002.148 34 34 2020-08-24 2020-08-24 157.040.028.043 65 34 2020-08-18 2020-08-18 190.201.106.069 35 34 2020-08-26 2020-08-26 013.094.151.111 52 34 2020-09-08 2020-09-07 120.154.093.064 61 33 2020-09-09 2020-09-09 183.145.219.244 33 33 2020-08-27 2020-08-27 195.189.096.211 37 33 2020-08-14 2020-08-14 085.153.229.254 34 33 2020-08-29 2020-08-29 139.099.149.107 61 33 2020-08-23 2020-08-23 201.172.137.169 83 33 2020-09-01 2020-09-01 171.244.185.095 33 33 2020-08-11 2020-08-11 185.016.206.017 203 33 2020-08-28 2020-08-28 185.178.208.156 57 33 2020-08-13 2020-08-13 059.090.002.200 33 33 2020-08-14 2020-08-14 045.088.168.203 36 33 2020-08-16 2020-08-16 128.116.075.003 73 33 2020-09-02 2020-09-01 171.235.233.179 33 33 2020-08-28 2020-08-28 174.105.029.036 33 33 2020-08-28 2020-08-28 196.218.039.165 33 33 2020-08-17 2020-08-17 155.094.146.168 33 33 2020-08-11 2020-08-11 201.210.146.194 34 33 2020-08-20 2020-08-20 014.203.134.189 151 33 2020-08-12 2020-08-12 208.107.005.101 34 33 2020-08-29 2020-08-29 191.163.218.192 34 33 2020-08-19 2020-08-19 085.107.088.137 35 33 2020-08-28 2020-08-28 122.225.196.163 35 33 2020-08-27 2020-08-27 077.222.096.239 33 33 2020-08-26 2020-08-26 051.036.098.202 35 33 2020-08-11 2020-08-11 201.243.176.199 35 33 2020-09-03 2020-09-03 107.107.057.224 33 33 2020-08-29 2020-08-29 192.099.248.214 370 33 2020-08-20 2020-08-20 144.217.062.154 37 33 2020-09-06 2020-09-06 046.101.024.197 4022 33 2020-08-25 2020-08-31 062.141.099.179 37 33 2020-08-24 2020-08-24 037.053.069.181 34 33 2020-08-13 2020-08-13 044.234.074.198 33 33 2020-08-25 2020-08-24 196.234.022.025 33 33 2020-08-23 2020-08-23 181.080.005.094 38 33 2020-08-17 2020-08-17 052.162.127.061 237 33 2020-09-03 2020-09-03 091.143.049.085 33 33 2020-08-23 2020-08-23 038.091.107.093 33 33 2020-08-26 2020-08-26 188.113.031.156 33 33 2020-08-19 2020-08-19 067.183.196.213 35 33 2020-09-06 2020-09-06 198.050.224.126 416 33 2020-08-26 2020-08-26 185.172.110.223 34 33 2020-08-23 2020-08-23 075.110.192.002 33 33 2020-08-28 2020-08-28 190.073.054.152 33 33 2020-08-21 2020-08-21 202.138.239.191 33 33 2020-08-25 2020-08-25 049.051.130.214 510 33 2020-09-08 2020-09-08 036.079.187.145 175 33 2020-08-13 2020-08-13 115.097.069.155 33 33 2020-08-21 2020-08-21 186.090.007.030 35 33 2020-08-14 2020-08-14 076.086.099.250 50 33 2020-08-16 2020-08-16 081.080.237.007 38 33 2020-08-31 2020-08-30 051.015.193.150 34 33 2020-08-28 2020-08-28 046.153.101.215 34 33 2020-08-18 2020-08-18 118.172.047.077 166 33 2020-08-14 2020-08-14 204.116.093.136 33 33 2020-08-11 2020-08-11 209.141.033.151 33 33 2020-08-25 2020-08-25 201.246.131.050 66 33 2020-08-14 2020-08-14 018.156.163.177 88 33 2020-08-30 2020-08-30 014.188.012.020 33 33 2020-08-26 2020-08-26 122.178.025.084 33 33 2020-09-09 2020-09-09 183.082.100.182 34 33 2020-09-08 2020-09-08 176.168.139.176 66 33 2020-08-22 2020-08-22 103.136.042.100 3420 33 2020-08-25 2020-08-29 168.227.201.114 33 33 2020-09-06 2020-09-06 087.116.190.020 33 33 2020-09-07 2020-09-07 123.207.031.170 33 33 2020-09-07 2020-09-06 190.077.099.054 34 33 2020-09-01 2020-09-01 051.195.060.234 33 33 2020-08-30 2020-08-30 185.157.246.028 41 33 2020-09-07 2020-09-07 037.043.095.216 159 33 2020-09-05 2020-09-05 076.021.207.156 223 33 2020-09-07 2020-09-07 014.247.051.118 34 33 2020-08-18 2020-08-18 084.038.184.053 80 33 2020-08-16 2020-08-15 014.247.188.112 33 33 2020-08-24 2020-08-24 051.089.150.186 217 33 2020-08-12 2020-08-12 176.027.134.129 329 33 2020-08-26 2020-08-26 205.185.222.176 66 33 2020-09-01 2020-09-01 085.099.193.230 33 33 2020-09-02 2020-09-02 195.135.248.109 152 33 2020-08-12 2020-08-12 034.219.086.142 33 33 2020-09-03 2020-09-03 171.240.197.043 245 33 2020-09-09 2020-09-09 103.016.014.243 39 33 2020-08-18 2020-08-18 188.166.219.005 33 33 2020-08-12 2020-08-12 045.077.204.065 33 33 2020-08-12 2020-08-12 107.162.140.091 145 33 2020-08-19 2020-08-19 176.009.064.037 45 33 2020-08-28 2020-08-28 190.148.052.098 76 33 2020-08-12 2020-08-12 171.008.221.187 33 33 2020-09-05 2020-09-05 180.247.065.183 197 33 2020-08-11 2020-08-11 107.193.254.234 50 33 2020-08-23 2020-08-23 188.003.168.093 33 33 2020-08-24 2020-08-24 089.187.171.077 56 33 2020-08-26 2020-08-26 186.182.085.104 34 33 2020-08-22 2020-08-22 116.203.134.142 255 32 2020-08-16 2020-08-15 190.206.069.121 40 32 2020-09-08 2020-09-08 054.037.074.185 32 32 2020-08-23 2020-08-23 049.146.011.123 33 32 2020-08-23 2020-08-23 036.078.122.253 32 32 2020-08-21 2020-08-21 094.096.099.008 32 32 2020-09-02 2020-09-02 095.182.173.146 2264 32 2020-08-31 2020-08-31 068.227.162.247 32 32 2020-09-01 2020-09-01 104.152.052.031 6708 32 2020-08-20 2020-08-23 118.068.044.202 33 32 2020-08-28 2020-08-28 190.200.055.042 32 32 2020-08-23 2020-08-23 171.239.248.134 1097 32 2020-08-30 2020-08-30 037.001.053.079 32 32 2020-08-31 2020-08-31 003.120.155.219 36 32 2020-08-20 2020-08-20 090.154.094.022 34 32 2020-08-25 2020-08-25 088.218.017.132 34 32 2020-08-24 2020-08-24 035.141.137.039 70 32 2020-08-25 2020-08-25 077.097.040.166 1319 32 2020-08-28 2020-08-28 157.147.093.155 34 32 2020-09-01 2020-09-01 185.150.025.092 32 32 2020-08-28 2020-08-28 208.100.026.241 32 32 2020-09-01 2020-09-01 095.070.160.187 32 32 2020-08-15 2020-08-14 045.061.142.160 32 32 2020-08-19 2020-08-19 216.161.152.094 230 32 2020-08-30 2020-08-30 134.180.223.181 32 32 2020-08-13 2020-08-13 071.215.014.078 35 32 2020-08-16 2020-08-16 093.169.203.218 32 32 2020-08-31 2020-08-31 069.085.088.167 32 32 2020-09-05 2020-09-05 037.245.181.083 32 32 2020-08-29 2020-08-29 186.178.106.116 32 32 2020-09-01 2020-09-01 051.068.200.033 40 32 2020-08-18 2020-08-18 035.177.206.055 203 32 2020-08-27 2020-08-27 069.030.225.114 62 32 2020-08-17 2020-08-17 044.234.098.088 64 32 2020-08-23 2020-08-23 068.173.102.222 32 32 2020-08-25 2020-08-25 050.060.086.254 34 32 2020-08-16 2020-08-16 179.008.154.188 5138 32 2020-09-07 2020-09-07 003.237.125.209 35 32 2020-08-24 2020-08-23 187.002.183.193 64 32 2020-09-04 2020-09-04 045.084.196.049 4846 32 2020-08-11 2020-08-15 204.012.234.082 64 32 2020-08-31 2020-08-31 002.043.209.254 32 32 2020-09-08 2020-09-08 051.036.010.101 32 32 2020-08-22 2020-08-22 082.132.245.045 92 32 2020-08-21 2020-08-21 200.084.027.183 32 32 2020-08-13 2020-08-13 191.082.205.120 33 32 2020-09-07 2020-09-07 051.222.071.018 712 32 2020-09-02 2020-09-01 174.083.094.120 570 32 2020-08-30 2020-08-30 073.088.109.048 176 32 2020-08-30 2020-08-30 095.076.016.224 33 32 2020-08-23 2020-08-23 128.116.074.249 62 32 2020-09-08 2020-09-08 051.253.074.057 32 32 2020-08-30 2020-08-30 046.196.144.102 32 32 2020-08-12 2020-08-12 222.011.048.004 47 32 2020-08-11 2020-08-11 201.242.239.063 32 32 2020-08-30 2020-08-29 005.156.212.229 32 32 2020-09-01 2020-09-01 005.117.112.225 33 32 2020-08-20 2020-08-20 172.086.114.147 1374 32 2020-08-30 2020-08-30 002.089.046.100 64 32 2020-08-22 2020-08-22 093.168.236.208 32 32 2020-09-01 2020-09-01 121.061.244.065 33 32 2020-08-26 2020-08-26 190.075.216.123 36 32 2020-09-05 2020-09-05 118.025.084.110 32 32 2020-08-20 2020-08-20 181.226.171.208 32 32 2020-08-14 2020-08-14 001.125.110.185 32 32 2020-09-09 2020-09-09 058.186.126.231 32 32 2020-08-14 2020-08-14 051.091.091.129 32 32 2020-09-01 2020-09-01 037.120.141.020 1667 32 2020-08-29 2020-08-29 014.171.120.000 32 32 2020-09-04 2020-09-04 089.144.047.246 34 32 2020-09-04 2020-09-03 208.167.228.152 34 32 2020-08-31 2020-08-31 128.199.004.098 34 32 2020-08-14 2020-08-14 125.160.115.044 32 32 2020-08-26 2020-08-26 015.184.014.044 32 32 2020-08-21 2020-08-21 220.176.201.150 32 32 2020-08-19 2020-08-19 100.020.191.133 37 32 2020-09-08 2020-09-08 116.098.201.123 32 32 2020-08-24 2020-08-24 212.126.108.043 40 32 2020-08-27 2020-08-27 082.146.170.232 32 32 2020-09-07 2020-09-07 002.089.026.205 32 32 2020-09-06 2020-09-06 106.223.183.166 57 32 2020-08-19 2020-08-19 195.181.168.183 192 32 2020-08-31 2020-08-31 073.133.164.165 8132 32 2020-08-26 2020-08-26 216.245.209.230 140181 32 2020-09-03 2020-09-08 034.072.062.195 44 32 2020-08-30 2020-08-30 023.064.178.089 340 32 2020-08-24 2020-08-24 113.174.074.236 35 32 2020-08-28 2020-08-28 103.090.227.067 91 32 2020-09-03 2020-09-03 209.107.210.119 43 32 2020-08-11 2020-08-11 156.208.059.060 37 32 2020-09-02 2020-09-02 005.071.101.157 33 32 2020-08-26 2020-08-26 034.205.103.183 38 32 2020-08-27 2020-08-27 092.042.044.206 32 32 2020-08-28 2020-08-28 114.041.108.121 33 32 2020-08-18 2020-08-18 039.175.091.135 33 32 2020-08-29 2020-08-29 188.122.088.143 148 32 2020-08-27 2020-08-27 115.079.235.083 32 32 2020-08-28 2020-08-27 129.122.186.086 32 32 2020-09-08 2020-09-08 075.065.214.014 35 32 2020-08-14 2020-08-14 190.077.198.108 32 32 2020-08-22 2020-08-22 093.168.059.084 32 32 2020-09-01 2020-09-01 162.243.128.009 32 32 2020-08-23 2020-08-22 219.065.075.218 31 31 2020-08-24 2020-08-23 192.034.056.146 298 31 2020-08-21 2020-08-20 074.197.157.045 210 31 2020-09-07 2020-09-07 082.012.146.015 35 31 2020-09-03 2020-09-03 002.244.094.184 518 31 2020-08-24 2020-08-24 088.015.105.011 31 31 2020-09-05 2020-09-05 002.057.122.185 51 31 2020-09-05 2020-09-04 062.221.205.057 31 31 2020-08-22 2020-08-22 095.155.049.122 74 31 2020-09-07 2020-09-07 020.054.033.064 31 31 2020-08-26 2020-08-26 185.230.127.232 44 31 2020-09-04 2020-09-04 015.185.040.236 31 31 2020-08-31 2020-08-31 103.085.003.246 257 31 2020-08-22 2020-08-22 066.042.089.053 31 31 2020-08-23 2020-08-23 190.207.071.235 31 31 2020-09-05 2020-09-05 144.217.170.114 31 31 2020-09-02 2020-09-02 199.019.224.078 36 31 2020-09-04 2020-09-03 122.225.019.022 50 31 2020-08-26 2020-08-26 192.241.238.075 31 31 2020-08-22 2020-08-22 061.002.134.009 33 31 2020-08-19 2020-08-19 139.167.062.092 32 31 2020-08-13 2020-08-13 109.163.128.254 33 31 2020-09-08 2020-09-08 014.162.038.228 32 31 2020-08-21 2020-08-21 047.158.007.220 48 31 2020-09-04 2020-09-04 051.077.180.141 37 31 2020-08-17 2020-08-17 045.014.224.080 31 31 2020-08-19 2020-08-19 095.156.238.067 31 31 2020-08-25 2020-08-25 036.090.029.159 31 31 2020-09-09 2020-09-09 181.215.234.044 31 31 2020-08-21 2020-08-21 035.201.181.062 31 31 2020-08-13 2020-08-13 192.241.235.072 31 31 2020-08-23 2020-08-23 195.189.096.138 31 31 2020-08-23 2020-08-23 107.175.033.029 32 31 2020-09-09 2020-09-09 090.175.012.036 121 31 2020-08-16 2020-08-16 087.251.074.062 40458 31 2020-08-23 2020-08-24 200.044.206.245 32 31 2020-09-05 2020-09-05 213.243.198.218 32 31 2020-09-01 2020-09-01 201.242.238.190 31 31 2020-08-12 2020-08-12 174.080.146.011 220 31 2020-08-29 2020-08-29 001.168.006.030 62 31 2020-09-08 2020-09-08 188.247.065.113 92 31 2020-08-30 2020-08-30 023.031.012.086 36 31 2020-09-01 2020-09-01 134.249.205.227 32 31 2020-08-30 2020-08-30 194.045.197.018 36 31 2020-09-03 2020-09-03 196.218.071.113 31 31 2020-08-12 2020-08-12 178.128.233.083 97 31 2020-08-15 2020-08-15 195.099.063.069 59 31 2020-09-01 2020-09-01 024.241.111.180 434 31 2020-09-08 2020-09-08 086.174.012.016 35 31 2020-09-07 2020-09-07 104.098.160.106 342 31 2020-08-24 2020-08-24 107.191.048.024 31 31 2020-08-31 2020-08-31 167.114.092.034 32 31 2020-09-06 2020-09-06 059.153.253.223 31 31 2020-08-24 2020-08-24 054.039.025.112 31 31 2020-08-18 2020-08-18 104.102.102.076 317 31 2020-08-24 2020-08-24 102.047.142.014 31 31 2020-08-31 2020-08-31 190.077.154.149 31 31 2020-08-23 2020-08-23 070.042.199.137 32 31 2020-08-14 2020-08-14 185.249.197.094 31 31 2020-08-11 2020-08-11 054.037.244.183 31 31 2020-08-29 2020-08-29 196.196.216.076 32 31 2020-08-12 2020-08-12 218.232.062.245 31 31 2020-08-22 2020-08-22 190.077.120.163 31 31 2020-08-24 2020-08-24 096.238.041.008 5733 31 2020-08-13 2020-08-13 125.214.058.027 34 31 2020-09-08 2020-09-08 101.051.210.142 31 31 2020-09-02 2020-09-02 126.126.198.081 31 31 2020-08-13 2020-08-13 178.220.047.158 31 31 2020-08-22 2020-08-22 045.071.102.206 100 31 2020-09-05 2020-09-04 109.073.147.040 31 31 2020-08-27 2020-08-27 178.142.140.161 210 31 2020-09-06 2020-09-06 083.044.185.114 79 31 2020-08-24 2020-08-24 064.234.048.016 31 31 2020-09-06 2020-09-06 104.248.011.154 40 31 2020-08-27 2020-08-27 124.170.174.168 54 31 2020-09-08 2020-09-08 091.229.112.006 35 31 2020-08-12 2020-08-12 074.091.119.033 52 31 2020-09-06 2020-09-06 036.026.106.055 31 31 2020-08-22 2020-08-22 170.254.226.146 32 31 2020-08-18 2020-08-18 111.230.228.235 6606 31 2020-07-15 2020-08-11 049.159.095.088 31 31 2020-08-21 2020-08-21 190.204.115.190 31 31 2020-08-19 2020-08-19 076.121.185.034 49 31 2020-08-21 2020-08-21 187.189.033.229 31 31 2020-09-03 2020-09-03 031.000.125.085 31 31 2020-08-27 2020-08-27 092.238.041.223 31 31 2020-08-28 2020-08-28 051.068.185.100 36 31 2020-08-24 2020-08-23 049.051.185.009 31 31 2020-09-08 2020-09-08 123.231.063.181 34 31 2020-08-22 2020-08-22 074.137.152.252 51 31 2020-08-22 2020-08-22 120.224.221.119 31 31 2020-08-12 2020-08-11 098.028.201.157 377 31 2020-09-03 2020-09-03 185.056.065.151 123 31 2020-09-03 2020-09-03 176.057.171.132 31 31 2020-09-01 2020-09-01 018.196.065.254 30 30 2020-08-29 2020-08-29 037.201.007.077 32 30 2020-08-22 2020-08-22 188.002.050.042 1069 30 2020-08-14 2020-08-14 178.200.139.044 30 30 2020-09-05 2020-09-05 186.001.040.017 190 30 2020-08-24 2020-08-24 076.099.096.108 310 30 2020-08-21 2020-08-21 178.062.108.111 37 30 2020-08-13 2020-08-12 176.226.175.228 30 30 2020-08-15 2020-08-15 140.213.168.136 30 30 2020-09-07 2020-09-07 186.250.143.020 32 30 2020-09-02 2020-09-02 200.060.095.211 69 30 2020-08-26 2020-08-26 188.096.053.227 82 30 2020-08-15 2020-08-15 218.103.234.134 180 30 2020-09-06 2020-09-06 024.133.156.188 30 30 2020-08-11 2020-08-11 128.199.012.085 30 30 2020-08-14 2020-08-14 190.200.027.137 30 30 2020-08-26 2020-08-26 190.216.243.086 30 30 2020-08-24 2020-08-24 031.134.018.233 30 30 2020-08-17 2020-08-17 142.044.219.228 92 30 2020-09-02 2020-09-01 051.036.162.226 31 30 2020-08-20 2020-08-20 181.018.098.091 31 30 2020-08-19 2020-08-19 095.179.109.107 30 30 2020-09-03 2020-09-03 005.196.007.221 30 30 2020-08-24 2020-08-24 051.015.016.071 30 30 2020-09-05 2020-09-05 176.120.062.238 31 30 2020-08-20 2020-08-20 134.090.158.131 30 30 2020-08-27 2020-08-27 094.011.162.078 60 30 2020-08-24 2020-08-24 051.091.022.235 30 30 2020-09-01 2020-09-01 186.089.025.084 30 30 2020-08-14 2020-08-14 187.209.005.255 31 30 2020-09-03 2020-09-03 176.198.202.164 120 30 2020-09-06 2020-09-06 165.232.113.026 30 30 2020-08-31 2020-08-31 037.043.130.061 186 30 2020-08-27 2020-08-27 100.015.068.203 60 30 2020-08-13 2020-08-13 045.145.066.091 32 30 2020-08-24 2020-08-23 036.075.195.178 167 30 2020-08-26 2020-08-26 218.253.250.090 60 30 2020-08-19 2020-08-19 082.009.217.213 33 30 2020-09-07 2020-09-07 073.110.212.184 60 30 2020-08-15 2020-08-15 113.184.154.083 33 30 2020-08-17 2020-08-17 075.080.019.228 60 30 2020-09-04 2020-09-04 065.151.160.080 133 30 2020-08-11 2020-08-11 161.035.027.095 30 30 2020-09-09 2020-09-09 045.061.142.102 33 30 2020-08-19 2020-08-19 195.054.160.115 30 30 2020-08-30 2020-08-30 072.175.198.196 60 30 2020-09-07 2020-09-07 106.102.128.186 60 30 2020-09-04 2020-09-04 188.048.213.095 30 30 2020-08-23 2020-08-23 036.237.068.159 33 30 2020-08-27 2020-08-27 104.140.018.112 3501 30 2020-08-15 2020-08-18 082.045.096.036 30 30 2020-08-28 2020-08-28 059.120.010.235 32 30 2020-08-20 2020-08-20 172.083.047.180 143 30 2020-08-27 2020-08-27 045.003.084.091 33 30 2020-09-01 2020-09-01 054.200.153.185 30 30 2020-09-08 2020-09-08 102.157.068.170 30 30 2020-08-27 2020-08-27 123.023.117.182 31 30 2020-08-12 2020-08-12 096.039.177.151 60 30 2020-08-27 2020-08-27 190.077.126.090 30 30 2020-08-25 2020-08-25 058.181.115.083 30 30 2020-08-22 2020-08-22 091.195.240.013 30 30 2020-09-03 2020-09-03 111.187.038.238 14365 30 2020-08-25 2020-09-01 045.201.212.212 177 30 2020-08-12 2020-08-12 024.140.211.026 339 30 2020-08-29 2020-08-29 066.168.203.097 60 30 2020-09-01 2020-09-01 165.232.049.234 30 30 2020-08-25 2020-08-25 024.112.028.204 30 30 2020-09-08 2020-09-08 089.180.241.113 182 30 2020-08-23 2020-08-23 081.019.210.202 51 30 2020-08-29 2020-08-29 042.098.229.027 179 30 2020-09-01 2020-09-01 207.224.109.180 30 30 2020-08-27 2020-08-27 101.235.252.085 31 30 2020-09-05 2020-09-05 212.083.149.252 30 30 2020-08-12 2020-08-12 103.025.249.251 132 30 2020-08-24 2020-08-24 162.142.125.064 32 30 2020-09-03 2020-09-03 103.208.027.181 30 30 2020-08-25 2020-08-25 074.141.210.195 300 30 2020-09-01 2020-09-01 037.232.124.058 152 30 2020-08-15 2020-08-15 014.191.008.175 30 30 2020-08-27 2020-08-27 125.160.066.039 134 30 2020-08-20 2020-08-20 051.089.081.055 30 30 2020-08-28 2020-08-28 118.173.213.220 33 30 2020-08-25 2020-08-25 190.036.015.041 31 30 2020-08-15 2020-08-15 067.227.152.142 46 30 2020-08-29 2020-08-28 164.090.148.046 90 30 2020-08-18 2020-08-18 047.153.053.115 31 30 2020-09-01 2020-09-01 051.222.033.054 292 30 2020-08-26 2020-08-26 071.221.024.083 60 30 2020-08-18 2020-08-18 001.179.243.210 30 30 2020-08-17 2020-08-17 190.206.220.126 32 30 2020-08-17 2020-08-17 107.134.233.067 30 30 2020-08-22 2020-08-22 076.115.195.060 60 30 2020-08-21 2020-08-21 188.246.226.071 35 30 2020-08-15 2020-08-14 103.104.017.102 171 30 2020-08-15 2020-08-15 077.088.196.012 8961 30 2020-08-12 2020-09-01 142.201.000.001 263 30 2020-08-30 2020-08-30 178.001.235.099 90 30 2020-08-28 2020-08-28 005.070.082.178 34 30 2020-08-30 2020-08-30 124.029.253.154 164 30 2020-08-21 2020-08-21 118.172.046.242 136 30 2020-09-09 2020-09-09 086.173.054.150 34 30 2020-08-26 2020-08-26 208.123.119.158 203 30 2020-09-04 2020-09-04 095.013.162.215 31 30 2020-08-16 2020-08-15 101.080.055.172 30 30 2020-09-09 2020-09-09 099.085.116.156 156 30 2020-09-03 2020-09-03 192.099.159.064 68 30 2020-08-20 2020-08-20 050.066.169.204 47 30 2020-09-05 2020-09-05 088.155.114.013 30 30 2020-08-11 2020-08-11 037.187.023.083 90 30 2020-09-01 2020-09-01 216.156.195.003 46 30 2020-08-27 2020-08-27 020.056.196.008 68 30 2020-08-30 2020-08-30 099.203.056.191 925 30 2020-09-07 2020-09-07 186.089.244.090 31 30 2020-08-12 2020-08-12 107.126.057.105 38 30 2020-08-19 2020-08-19 024.151.098.073 63 30 2020-09-05 2020-09-05 034.080.215.079 30 30 2020-09-04 2020-09-04 090.112.210.123 123 30 2020-08-19 2020-08-19 103.106.082.194 90 30 2020-08-21 2020-08-21 035.241.163.045 450 30 2020-08-23 2020-08-23 156.096.107.232 60 30 2020-08-26 2020-08-26 071.080.162.230 60 30 2020-08-18 2020-08-18 034.231.029.252 123 30 2020-08-30 2020-08-30 117.005.136.105 30 30 2020-09-09 2020-09-09 079.137.116.232 33 30 2020-09-09 2020-09-08 222.186.180.008 81 30 2020-08-11 2020-08-11 187.135.166.187 60 30 2020-08-29 2020-08-29 014.237.097.037 34 30 2020-09-07 2020-09-07 095.091.235.053 35 29 2020-09-03 2020-09-03 213.217.000.003 29 29 2020-08-20 2020-08-20 093.133.108.067 30 29 2020-08-19 2020-08-19 188.213.049.184 29 29 2020-09-02 2020-09-02 014.170.014.121 29 29 2020-08-30 2020-08-30 076.110.035.138 66 29 2020-08-26 2020-08-26 090.193.130.096 31 29 2020-09-02 2020-09-02 093.174.089.055 51 29 2020-08-30 2020-08-29 078.106.015.056 31 29 2020-09-05 2020-09-05 202.164.152.053 29 29 2020-08-22 2020-08-22 008.045.151.031 29 29 2020-08-30 2020-08-30 162.142.125.024 105 29 2020-08-21 2020-08-21 172.067.207.100 44 29 2020-09-01 2020-09-01 014.229.180.178 30 29 2020-08-20 2020-08-20 001.053.204.030 29 29 2020-09-01 2020-09-01 051.068.202.202 39 29 2020-09-04 2020-09-04 005.135.230.140 32 29 2020-09-04 2020-09-04 088.129.216.115 41 29 2020-08-17 2020-08-17 149.056.100.040 117 29 2020-08-31 2020-08-31 158.069.040.187 150 29 2020-08-20 2020-08-20 190.036.133.180 30 29 2020-09-04 2020-09-04 094.050.152.229 29 29 2020-08-22 2020-08-22 014.178.028.087 30 29 2020-08-20 2020-08-20 089.248.168.220 46 29 2020-08-28 2020-08-27 081.202.130.075 254 29 2020-09-02 2020-09-02 014.241.224.025 29 29 2020-08-13 2020-08-13 073.085.137.143 779 29 2020-09-05 2020-09-05 192.154.213.004 29 29 2020-08-31 2020-08-31 014.226.237.148 30 29 2020-08-27 2020-08-27 050.038.063.046 216 29 2020-08-28 2020-08-28 213.110.242.242 29 29 2020-08-17 2020-08-17 176.203.074.174 102 29 2020-08-22 2020-08-22 143.225.104.206 30 29 2020-08-15 2020-08-15 103.089.091.156 29 29 2020-08-28 2020-08-28 088.218.017.015 29 29 2020-09-01 2020-09-01 193.027.228.187 29 29 2020-09-03 2020-09-03 059.088.145.191 30 29 2020-08-15 2020-08-15 176.126.175.073 30 29 2020-09-02 2020-09-02 020.046.145.181 30 29 2020-08-16 2020-08-16 209.237.074.220 250 29 2020-08-27 2020-08-27 076.016.089.087 34 29 2020-09-03 2020-09-03 014.189.221.253 29 29 2020-08-20 2020-08-20 156.146.036.197 40 29 2020-08-20 2020-08-20 193.029.071.248 282 29 2020-08-30 2020-08-30 117.156.024.152 31 29 2020-08-13 2020-08-13 212.156.097.010 29 29 2020-09-03 2020-09-03 073.000.157.084 341 29 2020-09-06 2020-09-06 049.037.200.216 29 29 2020-08-28 2020-08-28 059.153.238.223 29 29 2020-08-24 2020-08-24 068.034.147.176 30 29 2020-09-05 2020-09-05 014.189.106.136 29 29 2020-09-09 2020-09-09 185.032.176.062 139 29 2020-08-28 2020-08-28 036.074.045.040 29 29 2020-08-14 2020-08-14 185.053.088.198 35 29 2020-08-17 2020-08-16 113.161.084.053 29 29 2020-08-20 2020-08-20 166.170.026.104 145 29 2020-08-30 2020-08-30 005.188.210.245 31 29 2020-08-14 2020-08-14 067.240.174.157 29 29 2020-08-24 2020-08-24 036.235.149.142 29 29 2020-08-31 2020-08-31 104.037.105.080 33 29 2020-09-06 2020-09-06 064.095.096.217 29 29 2020-09-07 2020-09-06 193.123.212.124 38 29 2020-09-08 2020-09-08 203.194.110.099 29 29 2020-08-14 2020-08-14 128.065.111.083 29 29 2020-09-04 2020-09-03 142.004.199.242 30 29 2020-08-25 2020-08-25 045.241.218.245 29 29 2020-09-03 2020-09-03 103.127.093.157 30 29 2020-08-17 2020-08-17 109.242.117.243 31 29 2020-08-14 2020-08-14 181.199.049.019 95 29 2020-08-30 2020-08-30 193.025.253.077 30 29 2020-08-30 2020-08-30 192.035.169.030 37 29 2020-09-04 2020-09-03 098.203.246.212 58 29 2020-08-26 2020-08-26 031.167.143.013 32 29 2020-08-15 2020-08-15 195.050.004.175 30 29 2020-08-13 2020-08-13 018.237.194.226 29 29 2020-09-03 2020-09-03 134.236.044.166 31 29 2020-08-18 2020-08-18 070.179.083.190 1043 29 2020-09-04 2020-09-04 201.223.129.011 29 29 2020-08-31 2020-08-31 094.098.247.096 30 29 2020-08-11 2020-08-11 190.148.045.140 29 29 2020-08-15 2020-08-15 018.184.125.121 61 29 2020-08-28 2020-08-28 074.091.124.009 38 29 2020-09-03 2020-09-03 051.089.176.237 31 29 2020-09-09 2020-09-08 185.121.139.100 36 29 2020-09-07 2020-09-07 100.034.112.043 370 29 2020-09-03 2020-09-03 194.031.254.036 284 29 2020-08-31 2020-08-31 075.078.178.150 35 29 2020-08-11 2020-08-11 103.148.021.055 29 29 2020-08-16 2020-08-16 093.174.095.106 44 29 2020-08-16 2020-08-15 181.065.180.121 30 29 2020-09-03 2020-09-03 190.238.100.246 29 29 2020-08-31 2020-08-31 206.074.233.107 33 29 2020-08-27 2020-08-27 001.055.171.144 30 29 2020-08-16 2020-08-16 201.141.009.194 30 29 2020-08-25 2020-08-25 031.172.080.148 31 29 2020-09-06 2020-09-06 104.126.252.093 29 29 2020-08-28 2020-08-28 108.206.007.094 167 29 2020-09-02 2020-09-02 166.102.197.119 329 29 2020-08-29 2020-08-29 172.107.202.162 66 29 2020-09-04 2020-09-04 090.251.089.159 29 29 2020-09-06 2020-09-06 144.217.237.229 29 29 2020-08-30 2020-08-30 186.088.075.121 29 29 2020-08-16 2020-08-16 066.189.060.104 1040 29 2020-09-07 2020-09-07 171.226.005.194 303 29 2020-08-20 2020-08-20 146.109.006.010 269 29 2020-08-30 2020-08-30 103.145.013.171 32 29 2020-08-25 2020-08-25 039.037.247.160 29 29 2020-08-31 2020-08-31 066.254.114.041 29 29 2020-08-27 2020-08-27 192.035.168.251 99 29 2020-09-04 2020-09-03 069.121.008.222 48 29 2020-09-07 2020-09-07 083.041.121.238 32 29 2020-09-05 2020-09-05 169.001.071.202 29 29 2020-08-25 2020-08-25 151.254.152.114 29 29 2020-09-06 2020-09-06 213.128.088.253 47 29 2020-08-27 2020-08-27 178.153.197.152 43 29 2020-08-11 2020-08-11 103.116.100.201 34 29 2020-09-06 2020-09-06 047.011.223.073 29 29 2020-09-07 2020-09-07 158.051.126.166 29 29 2020-08-11 2020-08-11 051.077.073.036 29 29 2020-08-27 2020-08-27 182.185.143.202 29 29 2020-08-25 2020-08-25 125.224.174.025 29 29 2020-08-18 2020-08-18 192.000.078.009 29 29 2020-08-20 2020-08-20 104.238.047.022 166 29 2020-09-02 2020-09-02 034.102.240.202 38 29 2020-08-30 2020-08-30 081.104.154.084 60 29 2020-08-31 2020-08-31 051.081.048.175 39 28 2020-08-17 2020-08-17 186.089.090.015 28 28 2020-08-14 2020-08-14 035.195.003.117 412 28 2020-08-14 2020-08-14 014.136.204.041 5437 28 2020-08-25 2020-08-31 014.185.176.077 28 28 2020-08-24 2020-08-24 024.144.251.129 515 28 2020-09-06 2020-09-06 005.114.046.031 65 28 2020-08-22 2020-08-22 192.035.169.042 40 28 2020-09-04 2020-09-03 109.230.208.048 28 28 2020-08-26 2020-08-26 118.173.076.015 30 28 2020-09-04 2020-09-04 192.223.031.143 28 28 2020-09-01 2020-09-01 069.010.063.086 28 28 2020-09-09 2020-09-08 190.227.013.007 30 28 2020-08-14 2020-08-14 192.035.169.032 33 28 2020-09-04 2020-09-03 186.146.213.018 28 28 2020-08-29 2020-08-29 051.081.049.148 28 28 2020-09-07 2020-09-07 094.102.056.210 31 28 2020-09-07 2020-09-07 091.173.191.122 28 28 2020-09-05 2020-09-05 037.121.160.190 494 28 2020-09-08 2020-09-08 108.247.232.028 56 28 2020-09-09 2020-09-09 149.202.065.010 28 28 2020-09-03 2020-09-03 145.239.139.057 28 28 2020-08-31 2020-08-31 018.218.092.041 599 28 2020-08-26 2020-08-26 118.068.091.041 28 28 2020-09-05 2020-09-04 167.114.125.239 81 28 2020-09-01 2020-09-01 148.072.158.239 28 28 2020-09-06 2020-09-05 093.168.078.122 30 28 2020-09-08 2020-09-08 183.173.095.109 31 28 2020-08-23 2020-08-23 045.155.205.164 51 28 2020-09-05 2020-09-05 118.240.022.249 31 28 2020-09-09 2020-09-09 179.189.052.077 29 28 2020-09-06 2020-09-06 162.228.194.209 28 28 2020-08-29 2020-08-29 187.139.254.213 61 28 2020-08-25 2020-08-25 037.042.222.129 29 28 2020-08-11 2020-08-11 045.148.121.010 33 28 2020-08-28 2020-08-27 141.098.081.141 39 28 2020-08-28 2020-08-28 118.101.254.056 69 28 2020-08-16 2020-08-16 128.070.233.044 28 28 2020-08-30 2020-08-30 142.202.222.017 28 28 2020-08-25 2020-08-24 014.013.016.032 28 28 2020-09-07 2020-09-07 183.017.238.111 28 28 2020-09-09 2020-09-09 197.039.177.172 28 28 2020-08-22 2020-08-22 075.139.039.222 28 28 2020-09-05 2020-09-05 005.037.239.230 28 28 2020-08-11 2020-08-11 045.148.121.084 29 28 2020-08-11 2020-08-11 051.161.019.241 37 28 2020-08-31 2020-08-31 194.087.139.005 1431 28 2020-08-19 2020-08-20 072.023.135.034 584 28 2020-09-01 2020-09-01 051.081.100.064 28 28 2020-09-01 2020-09-01 103.114.161.116 28 28 2020-08-21 2020-08-21 024.183.096.150 445 28 2020-09-07 2020-09-07 134.209.063.140 29 28 2020-08-24 2020-08-23 005.009.086.018 28 28 2020-08-29 2020-08-29 086.182.190.040 115 28 2020-08-23 2020-08-23 173.025.200.083 346 28 2020-08-26 2020-08-26 188.126.094.119 33 28 2020-08-24 2020-08-24 077.122.113.177 28 28 2020-09-06 2020-09-06 139.099.180.005 182 28 2020-08-30 2020-08-30 051.222.071.020 40 28 2020-08-18 2020-08-18 031.214.240.201 29 28 2020-09-07 2020-09-07 171.239.249.065 355 28 2020-09-01 2020-08-31 212.083.147.170 41 28 2020-08-20 2020-08-20 051.089.025.074 206 28 2020-08-21 2020-08-20 004.085.243.226 738 28 2020-08-27 2020-08-27 164.132.119.073 28 28 2020-08-28 2020-08-28 086.011.232.017 120 28 2020-09-08 2020-09-08 197.160.030.172 47 28 2020-08-22 2020-08-22 027.065.092.082 31 28 2020-08-14 2020-08-14 058.187.222.103 28 28 2020-09-08 2020-09-08 213.032.006.232 32 28 2020-08-15 2020-08-15 091.211.244.003 28 28 2020-09-09 2020-09-09 042.113.203.034 28 28 2020-09-01 2020-09-01 054.225.191.113 28 28 2020-09-04 2020-09-04 062.210.045.229 28 28 2020-08-31 2020-08-31 185.116.005.108 28 28 2020-08-25 2020-08-25 183.083.208.217 30 28 2020-09-07 2020-09-07 222.211.207.209 32 28 2020-08-18 2020-08-18 113.053.046.083 29 28 2020-08-30 2020-08-30 087.251.074.006 58 28 2020-08-21 2020-08-20 190.203.232.221 28 28 2020-09-01 2020-09-01 172.105.102.212 29 28 2020-08-21 2020-08-21 035.229.138.207 28 28 2020-08-12 2020-08-12 112.197.161.016 31 28 2020-08-15 2020-08-15 144.217.062.153 74 28 2020-09-04 2020-09-04 176.126.175.072 29 28 2020-09-02 2020-09-02 192.067.034.250 28 28 2020-09-08 2020-09-08 179.001.010.083 28 28 2020-08-11 2020-08-11 123.027.026.068 28 28 2020-08-27 2020-08-27 198.017.044.158 28 28 2020-08-19 2020-08-19 109.229.006.019 30 28 2020-08-11 2020-08-11 111.254.132.061 29 28 2020-08-22 2020-08-22 088.218.017.017 13194 28 2020-07-31 2020-08-25 218.248.016.177 11614 28 2020-08-25 2020-09-01 178.204.254.248 28 28 2020-09-01 2020-09-01 179.192.052.087 30 28 2020-08-31 2020-08-31 201.141.203.242 28 28 2020-08-13 2020-08-13 036.069.009.124 29 28 2020-08-13 2020-08-13 208.103.169.033 500 28 2020-09-07 2020-09-07 156.212.049.043 28 28 2020-08-20 2020-08-20 039.053.094.004 30 28 2020-08-22 2020-08-22 088.214.059.038 76 28 2020-08-30 2020-08-30 125.160.113.100 28 28 2020-08-29 2020-08-29 146.200.136.238 75 28 2020-08-15 2020-08-15 103.024.097.222 28 28 2020-09-05 2020-09-05 051.036.251.084 28 28 2020-09-04 2020-09-04 190.077.101.112 29 28 2020-08-25 2020-08-25 040.142.149.142 830 28 2020-09-01 2020-09-01 046.020.074.194 28 28 2020-08-12 2020-08-12 181.045.150.155 34 28 2020-08-12 2020-08-12 099.203.056.210 796 28 2020-09-07 2020-09-07 162.062.065.136 38 28 2020-08-28 2020-08-28 117.020.070.203 28 28 2020-08-26 2020-08-26 014.167.039.007 29 28 2020-08-28 2020-08-28 190.077.131.065 31 28 2020-08-14 2020-08-14 095.213.243.066 30 28 2020-08-13 2020-08-13 050.090.064.180 28 28 2020-08-28 2020-08-28 068.183.215.091 38 28 2020-09-01 2020-09-01 044.234.081.078 89 28 2020-08-31 2020-08-31 185.120.006.195 28 28 2020-08-14 2020-08-14 054.067.091.180 28 28 2020-09-03 2020-09-03 192.115.031.107 94 28 2020-08-27 2020-08-27 103.094.129.017 14709 28 2020-08-25 2020-09-02 095.159.162.001 28 28 2020-08-25 2020-08-25 054.039.215.038 30 28 2020-09-07 2020-09-06 134.255.128.045 30 27 2020-08-29 2020-08-29 092.045.196.018 27 27 2020-08-14 2020-08-14 073.151.171.160 47 27 2020-08-18 2020-08-18 115.076.160.105 211 27 2020-08-19 2020-08-19 118.172.034.074 27 27 2020-08-25 2020-08-25 014.251.077.222 31 27 2020-08-17 2020-08-17 045.061.142.034 27 27 2020-09-05 2020-09-05 193.110.154.253 226 27 2020-08-31 2020-08-31 095.179.243.126 54 27 2020-08-31 2020-08-31 119.156.094.061 27 27 2020-08-19 2020-08-19 194.087.139.146 10245 27 2020-08-10 2020-08-12 195.114.009.045 27 27 2020-08-20 2020-08-20 014.178.209.133 28 27 2020-08-27 2020-08-27 138.088.182.013 27 27 2020-08-29 2020-08-29 094.228.057.018 273 27 2020-08-31 2020-08-31 045.071.216.014 27 27 2020-09-04 2020-09-04 139.167.024.190 29 27 2020-08-13 2020-08-13 037.049.230.178 27 27 2020-09-03 2020-09-03 092.113.223.058 27 27 2020-08-26 2020-08-26 079.010.003.209 28 27 2020-08-31 2020-08-31 114.115.180.203 198667 27 2020-08-20 2020-08-21 051.158.095.224 28 27 2020-08-15 2020-08-15 099.021.255.069 62 27 2020-08-29 2020-08-29 095.007.156.013 27 27 2020-09-07 2020-09-07 171.233.126.097 27 27 2020-08-22 2020-08-21 101.080.055.173 27 27 2020-09-09 2020-09-09 051.039.128.200 218 27 2020-09-04 2020-09-04 041.037.067.130 27 27 2020-08-13 2020-08-13 024.053.106.029 47 27 2020-08-31 2020-08-31 051.068.202.200 27 27 2020-08-25 2020-08-25 186.185.080.123 28 27 2020-09-07 2020-09-07 195.225.146.219 27 27 2020-08-13 2020-08-13 108.204.166.116 36 27 2020-09-01 2020-09-01 190.206.017.197 27 27 2020-09-03 2020-09-03 045.237.023.169 30 27 2020-08-26 2020-08-26 121.089.194.012 252378 27 2020-09-06 2020-09-06 034.090.113.126 27 27 2020-09-05 2020-09-05 197.089.076.098 27 27 2020-09-06 2020-09-06 078.146.064.035 32 27 2020-09-04 2020-09-04 050.115.246.219 55 27 2020-09-04 2020-09-04 096.009.246.123 203 27 2020-08-31 2020-08-31 049.207.138.062 28 27 2020-08-18 2020-08-18 178.128.132.209 30 27 2020-08-22 2020-08-22 034.239.031.127 27 27 2020-09-08 2020-09-08 092.033.013.058 27 27 2020-08-28 2020-08-28 050.021.186.137 76 27 2020-08-22 2020-08-22 037.215.005.135 28 27 2020-09-09 2020-09-09 112.085.042.237 164362 27 2020-06-28 2020-09-05 176.126.175.049 27 27 2020-08-19 2020-08-19 089.248.168.176 44 27 2020-08-13 2020-08-12 115.201.034.112 27 27 2020-08-24 2020-08-24 159.203.060.001 38 27 2020-09-08 2020-09-08 094.049.225.239 27 27 2020-08-18 2020-08-18 186.091.228.174 27 27 2020-08-11 2020-08-11 113.167.204.045 27 27 2020-08-14 2020-08-14 092.137.063.051 37 27 2020-08-21 2020-08-21 197.253.212.177 27 27 2020-08-14 2020-08-14 036.085.213.034 30 27 2020-08-27 2020-08-27 045.080.149.051 28 27 2020-08-17 2020-08-17 184.056.093.103 27 27 2020-09-02 2020-09-02 113.088.194.183 28 27 2020-09-03 2020-09-03 103.125.189.065 27 27 2020-08-20 2020-08-20 034.239.190.012 35 27 2020-08-25 2020-08-25 114.026.076.092 28 27 2020-08-20 2020-08-20 073.097.120.173 27 27 2020-08-30 2020-08-30 047.026.063.187 27 27 2020-09-05 2020-09-05 061.049.018.064 27 27 2020-09-02 2020-09-02 173.066.090.157 27 27 2020-08-27 2020-08-27 051.075.052.127 38 27 2020-08-16 2020-08-15 045.115.143.067 27 27 2020-08-11 2020-08-11 046.152.059.247 29 27 2020-08-11 2020-08-11 167.248.133.064 31 27 2020-09-03 2020-09-03 171.254.226.073 234 27 2020-08-16 2020-08-16 005.189.157.090 138892 27 2020-07-21 2020-08-14 078.169.197.022 27 27 2020-08-26 2020-08-26 046.223.148.023 76 27 2020-08-13 2020-08-13 050.060.026.057 29 27 2020-08-15 2020-08-15 076.171.025.016 91 27 2020-09-07 2020-09-07 076.223.227.140 27 27 2020-08-28 2020-08-28 187.202.219.058 33 27 2020-09-06 2020-09-06 001.055.041.061 27 27 2020-08-20 2020-08-20 192.035.168.239 35 27 2020-09-06 2020-09-05 089.046.114.018 29 26 2020-08-20 2020-08-20 074.091.113.034 469 26 2020-08-11 2020-08-11 125.025.224.236 26 26 2020-08-28 2020-08-28 023.198.010.109 4533 26 2020-08-13 2020-08-13 111.119.178.065 26 26 2020-08-26 2020-08-26 128.014.141.116 29 26 2020-09-06 2020-09-06 112.140.185.064 10549 26 2020-08-26 2020-09-01 067.055.167.014 28 26 2020-08-31 2020-08-31 051.077.157.076 26 26 2020-08-13 2020-08-13 174.197.006.000 26 26 2020-09-05 2020-09-05 198.105.202.032 26 26 2020-08-21 2020-08-21 087.251.074.019 57 26 2020-08-25 2020-08-24 070.074.108.221 32 26 2020-08-22 2020-08-22 213.238.181.212 27 26 2020-08-19 2020-08-19 049.230.246.233 38 26 2020-09-07 2020-09-07 167.172.029.236 47 26 2020-08-28 2020-08-28 034.125.076.051 29 26 2020-08-30 2020-08-30 041.226.025.217 26 26 2020-09-07 2020-09-07 112.085.042.227 1005289 26 2020-07-24 2020-09-08 134.209.164.184 36 26 2020-08-26 2020-08-25 073.191.215.162 49 26 2020-09-07 2020-09-07 052.044.040.223 26 26 2020-08-19 2020-08-19 051.077.056.009 26 26 2020-08-15 2020-08-15 192.099.024.064 27 26 2020-08-30 2020-08-30 213.032.059.212 64 26 2020-08-31 2020-08-31 027.054.187.018 32 26 2020-08-18 2020-08-18 043.228.099.180 26 26 2020-09-01 2020-09-01 190.200.076.076 26 26 2020-08-12 2020-08-12 020.037.082.067 26 26 2020-08-16 2020-08-16 109.094.002.161 28 26 2020-08-19 2020-08-19 108.003.156.072 46 26 2020-09-07 2020-09-07 018.214.127.177 34 26 2020-08-25 2020-08-25 192.035.168.235 39 26 2020-09-04 2020-09-03 093.184.215.240 26 26 2020-08-13 2020-08-13 176.126.175.013 26 26 2020-08-20 2020-08-20 198.203.192.198 435 26 2020-09-05 2020-09-05 198.203.191.153 567 26 2020-09-05 2020-09-05 145.239.204.124 26 26 2020-08-31 2020-08-31 115.084.093.245 26 26 2020-09-01 2020-09-01 123.136.016.025 283 26 2020-08-29 2020-08-29 049.037.201.016 29 26 2020-08-25 2020-08-25 080.092.021.136 28 26 2020-09-03 2020-09-03 125.160.252.208 26 26 2020-08-27 2020-08-27 212.166.122.042 26 26 2020-08-27 2020-08-27 078.168.151.161 27 26 2020-09-02 2020-09-02 162.207.210.015 32 26 2020-08-29 2020-08-29 081.169.142.180 26 26 2020-08-11 2020-08-11 185.200.034.084 44 26 2020-08-23 2020-08-23 142.116.087.004 33 26 2020-08-28 2020-08-28 192.035.168.249 93 26 2020-09-08 2020-09-07 001.055.205.204 28 26 2020-09-04 2020-09-04 142.054.196.213 26 26 2020-08-29 2020-08-29 192.035.169.033 31 26 2020-09-08 2020-09-07 192.035.169.035 35 26 2020-09-08 2020-09-07 192.035.169.037 37 26 2020-09-04 2020-09-03 192.035.169.040 33 26 2020-09-04 2020-09-03 041.039.065.071 26 26 2020-08-17 2020-08-17 223.111.157.138 46 26 2020-08-26 2020-08-25 087.251.074.003 49 26 2020-09-03 2020-09-02 190.038.075.252 28 26 2020-09-06 2020-09-06 193.135.134.242 26 26 2020-09-09 2020-09-09 171.212.255.178 27 26 2020-08-27 2020-08-27 180.247.239.109 26 26 2020-08-11 2020-08-11 070.238.189.181 2499 26 2020-08-13 2020-08-13 190.073.002.032 26 26 2020-08-23 2020-08-23 190.075.164.239 26 26 2020-09-08 2020-09-08 041.038.140.018 27 26 2020-08-19 2020-08-19 154.126.093.121 28 26 2020-09-07 2020-09-07 086.146.039.209 30 26 2020-08-29 2020-08-29 111.229.084.235 242907 26 2020-09-06 2020-09-06 109.072.118.033 28 26 2020-08-22 2020-08-22 080.082.077.033 33 26 2020-09-08 2020-09-07 054.039.215.032 38 26 2020-08-17 2020-08-16 171.221.014.064 26 26 2020-09-09 2020-09-09 104.199.242.108 26 26 2020-08-14 2020-08-14 069.252.080.075 27 26 2020-08-16 2020-08-16 031.018.029.084 52 26 2020-08-25 2020-08-25 023.090.145.046 26 26 2020-09-07 2020-09-07 103.010.066.076 29 26 2020-08-11 2020-08-11 080.082.070.118 49 26 2020-08-20 2020-08-19 106.208.037.060 26 26 2020-08-20 2020-08-20 049.049.032.106 26 26 2020-08-31 2020-08-31 149.202.173.126 73 26 2020-09-03 2020-09-03 115.073.157.002 26 26 2020-08-17 2020-08-17 054.189.043.093 27 26 2020-09-02 2020-09-02 045.079.216.185 47 26 2020-09-06 2020-09-06 213.202.242.021 778 26 2020-08-13 2020-08-13 142.044.203.048 598 26 2020-08-12 2020-08-12 194.026.027.217 71 26 2020-09-02 2020-09-02 036.233.063.063 26 26 2020-09-01 2020-09-01 162.248.243.062 30 26 2020-09-01 2020-09-01 204.093.139.025 900 26 2020-09-03 2020-09-03 111.229.056.083 149325 26 2020-08-14 2020-08-14 085.190.156.033 27 26 2020-08-21 2020-08-21 102.189.205.246 26 25 2020-08-24 2020-08-24 175.110.069.154 29 25 2020-08-26 2020-08-26 116.107.159.064 27 25 2020-08-12 2020-08-12 045.095.168.095 164 25 2020-08-28 2020-08-27 014.241.254.129 25 25 2020-08-20 2020-08-20 123.026.232.155 30 25 2020-09-07 2020-09-07 222.252.053.058 25 25 2020-08-22 2020-08-22 085.093.020.147 28 25 2020-09-09 2020-09-08 036.078.201.122 25 25 2020-08-31 2020-08-31 212.034.248.078 27 25 2020-09-04 2020-09-04 091.218.067.118 28 25 2020-09-06 2020-09-06 068.013.059.171 44 25 2020-09-07 2020-09-07 084.017.059.052 82 25 2020-08-11 2020-08-11 122.170.117.246 26 25 2020-08-20 2020-08-20 171.005.231.053 26 25 2020-08-30 2020-08-30 123.160.231.040 25 25 2020-09-07 2020-09-06 063.250.032.076 108 25 2020-08-12 2020-08-11 189.203.162.042 25 25 2020-08-26 2020-08-26 189.015.139.069 27 25 2020-08-15 2020-08-15 173.045.080.078 30 25 2020-09-01 2020-09-01 148.251.064.123 126 25 2020-09-07 2020-09-07 060.172.059.011 25 25 2020-08-25 2020-08-25 173.249.004.073 47751 25 2020-07-19 2020-08-13 074.091.122.050 25 25 2020-08-30 2020-08-30 103.253.060.166 25 25 2020-08-22 2020-08-22 095.015.120.197 25 25 2020-08-17 2020-08-17 045.084.196.189 1066 25 2020-08-21 2020-08-25 098.255.185.178 46 25 2020-08-30 2020-08-30 116.202.120.165 25 25 2020-08-26 2020-08-26 115.087.215.095 27 25 2020-09-09 2020-09-09 117.207.148.061 25 25 2020-08-14 2020-08-14 162.248.093.242 473 25 2020-08-19 2020-08-18 089.187.183.085 33 25 2020-08-18 2020-08-18 031.134.021.096 25 25 2020-09-03 2020-09-03 036.081.096.112 25 25 2020-08-24 2020-08-24 194.087.138.170 40530 25 2020-08-25 2020-09-01 027.071.237.249 25 25 2020-09-01 2020-09-01 113.091.141.011 25 25 2020-08-24 2020-08-24 014.179.135.251 25 25 2020-09-07 2020-09-07 117.212.100.099 26 25 2020-08-29 2020-08-29 190.098.094.222 26 25 2020-08-12 2020-08-12 123.053.179.171 25 25 2020-08-12 2020-08-12 031.029.215.145 26 25 2020-09-01 2020-09-01 185.028.222.011 268 25 2020-08-29 2020-08-29 186.091.056.053 25 25 2020-09-03 2020-09-03 192.099.242.215 29 25 2020-08-12 2020-08-12 085.093.020.254 25 25 2020-08-14 2020-08-14 171.008.200.138 25 25 2020-09-07 2020-09-07 159.203.081.028 25 25 2020-09-05 2020-09-04 101.010.110.009 25 25 2020-09-06 2020-09-06 178.168.128.248 29 25 2020-08-19 2020-08-18 103.018.117.055 25 25 2020-09-03 2020-09-03 109.230.220.009 69 25 2020-09-01 2020-09-01 103.078.204.179 27 25 2020-08-18 2020-08-18 142.161.222.083 25 25 2020-08-25 2020-08-25 192.035.168.226 35 25 2020-09-04 2020-09-03 151.101.002.049 26 25 2020-08-15 2020-08-15 147.135.030.171 25 25 2020-09-04 2020-09-04 192.003.136.088 25 25 2020-08-16 2020-08-15 192.035.169.027 29 25 2020-09-04 2020-09-03 059.062.240.072 25 25 2020-08-20 2020-08-20 186.090.147.107 27 25 2020-09-02 2020-09-02 088.230.227.124 26 25 2020-08-23 2020-08-23 074.096.116.147 26 25 2020-08-25 2020-08-25 192.035.168.229 36 25 2020-09-04 2020-09-03 088.230.056.076 25 25 2020-08-19 2020-08-19 081.103.055.220 25 25 2020-09-08 2020-09-08 122.102.043.188 25 25 2020-09-03 2020-09-03 180.180.046.158 26 25 2020-08-19 2020-08-19 192.035.168.234 35 25 2020-09-08 2020-09-07 023.198.010.123 4274 25 2020-08-13 2020-08-13 114.041.110.008 25 25 2020-08-18 2020-08-18 116.004.008.208 42 25 2020-09-01 2020-09-01 192.035.168.231 36 25 2020-09-06 2020-09-05 104.131.100.182 25 25 2020-08-21 2020-08-21 091.240.118.064 33 25 2020-08-13 2020-08-12 194.008.015.114 114 25 2020-08-31 2020-08-31 190.207.082.092 25 25 2020-08-17 2020-08-17 190.203.173.006 27 25 2020-09-01 2020-09-01 178.018.047.168 26 25 2020-09-07 2020-09-07 117.006.227.172 28 25 2020-09-05 2020-09-05 216.049.047.255 32 25 2020-09-05 2020-09-05 171.235.084.220 128 25 2020-08-25 2020-08-25 201.175.203.139 26 25 2020-09-05 2020-09-05 204.014.072.182 34 24 2020-08-19 2020-08-19 089.248.172.237 51 24 2020-08-22 2020-08-21 067.205.137.123 30 24 2020-09-08 2020-09-08 051.089.019.246 39 24 2020-08-21 2020-08-20 034.073.051.071 2895 24 2020-08-13 2020-08-14 072.082.244.078 48 24 2020-09-05 2020-09-05 223.207.247.037 29 24 2020-08-29 2020-08-29 094.102.049.193 39 24 2020-08-16 2020-08-15 185.053.091.035 24 24 2020-08-25 2020-08-25 176.088.021.062 27 24 2020-09-04 2020-09-04 185.132.053.018 18306 24 2020-08-25 2020-09-01 116.203.087.042 24 24 2020-08-23 2020-08-23 208.103.169.027 24 24 2020-09-05 2020-09-05 138.197.101.081 24 24 2020-09-07 2020-09-07 037.202.100.253 24 24 2020-08-25 2020-08-25 201.248.152.153 28 24 2020-08-20 2020-08-20 036.074.212.010 24 24 2020-09-07 2020-09-07 037.049.224.056 24 24 2020-08-20 2020-08-20 172.217.171.206 24 24 2020-08-31 2020-08-31 046.130.105.249 25 24 2020-08-22 2020-08-22 099.086.105.034 86 24 2020-09-07 2020-09-07 104.248.253.241 25 24 2020-09-09 2020-09-09 080.082.077.139 45 24 2020-08-16 2020-08-15 117.001.031.146 24 24 2020-08-21 2020-08-21 149.014.134.098 42 24 2020-08-25 2020-08-25 061.219.011.153 29 24 2020-08-17 2020-08-16 071.034.069.215 26 24 2020-08-25 2020-08-25 080.082.069.122 13187 24 2020-08-24 2020-08-25 191.232.197.194 70 24 2020-09-07 2020-09-06 045.141.084.130 24 24 2020-08-15 2020-08-15 085.093.020.150 26 24 2020-09-09 2020-09-08 045.095.168.207 165 24 2020-08-16 2020-08-15 051.079.162.103 113 24 2020-08-12 2020-08-12 147.135.083.013 24 24 2020-08-22 2020-08-22 104.128.060.243 88 24 2020-08-30 2020-08-29 188.124.037.108 24 24 2020-08-30 2020-08-30 162.248.094.164 885 24 2020-08-12 2020-08-12 142.247.013.084 24 24 2020-08-13 2020-08-13 122.225.019.021 33 24 2020-08-26 2020-08-26 039.096.034.074 224148 24 2020-09-06 2020-09-06 041.188.106.160 25 24 2020-09-04 2020-09-04 013.082.138.172 24 24 2020-08-26 2020-08-26 185.097.093.008 24 24 2020-08-25 2020-08-25 181.090.120.075 26 24 2020-08-17 2020-08-17 192.035.168.237 32 24 2020-09-04 2020-09-03 112.085.042.187 188962 24 2020-07-30 2020-08-31 194.153.186.020 246 24 2020-08-29 2020-08-29 065.049.002.024 24 24 2020-08-29 2020-08-29 095.179.129.053 27 24 2020-09-03 2020-09-03 118.068.051.241 24 24 2020-08-28 2020-08-28 190.204.021.236 24 24 2020-08-20 2020-08-20 185.026.156.088 24 24 2020-08-27 2020-08-27 202.083.042.154 24 24 2020-09-09 2020-09-09 035.163.093.202 26 24 2020-09-04 2020-09-04 182.183.212.018 29 24 2020-09-06 2020-09-06 091.115.085.254 48 24 2020-09-04 2020-09-04 046.004.071.023 24 24 2020-08-16 2020-08-16 005.022.047.138 26 24 2020-08-12 2020-08-12 023.099.085.149 35 24 2020-08-11 2020-08-11 171.246.138.096 33 24 2020-09-08 2020-09-08 190.207.064.035 31 24 2020-08-27 2020-08-27 218.092.000.178 43 24 2020-08-14 2020-08-13 094.230.047.059 26 24 2020-08-21 2020-08-21 088.235.232.020 25 24 2020-08-20 2020-08-20 182.202.232.199 24 24 2020-08-20 2020-08-20 150.095.134.142 82 24 2020-08-14 2020-08-14 183.089.010.218 24 24 2020-09-05 2020-09-05 005.062.049.131 25 24 2020-08-11 2020-08-11 054.038.144.067 24 24 2020-08-19 2020-08-19 197.253.242.255 24 24 2020-08-14 2020-08-14 042.061.091.014 24 24 2020-09-04 2020-09-04 116.202.021.165 24 24 2020-08-18 2020-08-18 119.017.249.071 24 24 2020-09-07 2020-09-07 096.030.200.025 25 24 2020-08-12 2020-08-12 165.022.242.243 24 24 2020-09-03 2020-09-03 036.069.115.114 26 24 2020-08-20 2020-08-20 051.089.208.092 257 24 2020-08-28 2020-08-28 156.146.063.065 10733 24 2020-07-31 2020-08-26 070.122.244.165 25 24 2020-08-24 2020-08-24 051.079.085.031 24 24 2020-08-22 2020-08-22 001.004.186.108 25 24 2020-08-25 2020-08-25 023.095.234.114 24 24 2020-09-04 2020-09-04 013.093.045.062 238 24 2020-08-12 2020-08-12 045.079.195.251 26 24 2020-08-27 2020-08-26 188.054.026.185 27 24 2020-08-21 2020-08-21 109.092.218.138 26 24 2020-08-19 2020-08-19 045.241.205.069 24 24 2020-09-03 2020-09-03 135.181.001.074 24 24 2020-09-02 2020-09-02 185.137.233.125 26 24 2020-08-31 2020-08-31 037.029.067.078 26 24 2020-08-14 2020-08-14 076.182.011.077 24 24 2020-09-02 2020-09-02 162.142.125.025 116 24 2020-08-21 2020-08-21 185.176.027.034 80 24 2020-08-13 2020-08-12 197.050.150.202 24 24 2020-09-09 2020-09-09 071.006.199.023 25 24 2020-08-17 2020-08-16 045.047.034.255 24 24 2020-08-25 2020-08-25 185.142.236.035 39 23 2020-08-16 2020-08-15 085.093.020.149 24 23 2020-09-09 2020-09-08 194.087.138.080 1958 23 2020-08-12 2020-08-14 176.042.246.097 24 23 2020-08-27 2020-08-27 067.221.046.107 29 23 2020-09-06 2020-09-06 089.248.168.017 30 23 2020-08-27 2020-08-26 190.124.031.005 25 23 2020-09-01 2020-09-01 089.187.187.162 13738 23 2020-08-01 2020-08-17 047.015.009.033 26 23 2020-08-19 2020-08-19 150.136.213.123 24 23 2020-09-02 2020-09-02 218.200.138.115 25 23 2020-09-08 2020-09-08 201.049.140.058 28 23 2020-08-28 2020-08-28 167.172.024.199 25 23 2020-08-27 2020-08-27 191.136.019.130 23 23 2020-08-28 2020-08-28 192.035.169.041 33 23 2020-09-04 2020-09-03 186.092.254.137 26 23 2020-09-02 2020-09-02 218.201.077.076 23 23 2020-08-28 2020-08-28 192.035.169.020 33 23 2020-09-04 2020-09-03 156.137.001.166 203 23 2020-08-26 2020-08-26 172.105.089.161 28 23 2020-08-23 2020-08-22 172.104.014.201 23 23 2020-08-26 2020-08-26 001.196.175.183 24 23 2020-09-07 2020-09-07 086.106.087.090 23 23 2020-08-21 2020-08-21 188.004.101.071 26 23 2020-08-15 2020-08-15 171.106.148.146 23 23 2020-08-12 2020-08-12 076.111.241.218 37 23 2020-08-30 2020-08-30 128.075.227.009 23 23 2020-08-22 2020-08-22 091.220.030.070 167 23 2020-08-18 2020-08-18 142.196.146.046 33 23 2020-08-23 2020-08-23 104.037.031.076 869 23 2020-08-13 2020-09-04 139.045.161.004 266 23 2020-08-29 2020-08-29 037.049.230.140 23 23 2020-08-18 2020-08-18 190.103.035.073 24 23 2020-08-20 2020-08-20 081.183.029.144 23 23 2020-09-02 2020-09-02 193.239.147.052 202 23 2020-08-24 2020-08-24 122.237.143.244 24 23 2020-08-18 2020-08-18 115.236.136.073 11973 23 2020-09-06 2020-09-07 110.137.039.160 23 23 2020-09-01 2020-09-01 051.039.011.026 40 23 2020-08-29 2020-08-29 139.059.142.057 691 23 2020-08-11 2020-08-11 045.061.142.089 351 23 2020-08-23 2020-08-23 109.207.001.097 24 23 2020-08-17 2020-08-17 051.195.182.217 23 23 2020-08-18 2020-08-18 171.008.191.108 23 23 2020-08-11 2020-08-11 193.104.115.001 293 23 2020-08-29 2020-08-29 005.102.010.056 26 23 2020-09-07 2020-09-07 192.035.168.218 76 23 2020-09-08 2020-09-07 193.035.020.161 27 23 2020-08-14 2020-08-14 188.191.013.152 23 23 2020-08-17 2020-08-17 091.240.118.103 28 23 2020-08-18 2020-08-17 115.084.088.188 24 23 2020-08-19 2020-08-19 103.120.126.250 23 23 2020-08-19 2020-08-19 174.074.143.085 23 23 2020-09-05 2020-09-05 183.103.087.193 74 23 2020-08-26 2020-08-25 167.086.100.240 26 23 2020-08-30 2020-08-29 001.159.039.141 44 23 2020-09-08 2020-09-08 079.141.065.033 23 23 2020-08-29 2020-08-29 047.030.130.196 26 23 2020-08-23 2020-08-23 194.087.139.035 4395 23 2020-08-25 2020-08-27 013.056.224.072 23 23 2020-09-03 2020-09-03 051.195.026.196 25 23 2020-09-08 2020-09-08 058.064.193.165 23 23 2020-09-02 2020-09-02 064.227.021.055 180 23 2020-08-18 2020-08-18 137.175.110.168 33025 23 2020-08-02 2020-08-24 043.248.188.078 24 23 2020-09-09 2020-09-09 045.143.223.135 51 23 2020-08-17 2020-08-17 193.160.096.175 24 23 2020-09-08 2020-09-08 078.128.113.118 49247 23 2020-08-18 2020-09-01 198.217.240.015 227 23 2020-08-30 2020-08-30 167.114.135.027 52 23 2020-09-01 2020-09-01 190.207.226.006 25 23 2020-08-29 2020-08-29 005.189.160.021 37296 23 2020-07-27 2020-08-14 104.153.105.095 27 23 2020-08-16 2020-08-16 104.153.105.237 25 23 2020-08-19 2020-08-19 078.085.048.064 23 23 2020-08-15 2020-08-15 051.039.100.170 25 23 2020-08-26 2020-08-26 178.206.123.171 23 23 2020-09-06 2020-09-06 034.218.183.035 52 23 2020-08-21 2020-08-21 139.099.091.007 23 23 2020-09-06 2020-09-06 054.190.065.042 23 23 2020-08-21 2020-08-21 167.099.172.181 28 23 2020-09-04 2020-09-03 190.072.140.032 23 23 2020-08-20 2020-08-20 018.144.041.240 23 23 2020-09-02 2020-09-02 185.141.207.248 27 23 2020-08-26 2020-08-26 014.248.202.036 26 23 2020-09-02 2020-09-02 192.223.026.066 4346 23 2020-08-29 2020-09-02 014.162.103.229 24 23 2020-09-03 2020-09-03 185.002.105.206 23 23 2020-08-28 2020-08-28 125.160.066.086 23 23 2020-08-31 2020-08-31 081.171.031.250 23 23 2020-08-23 2020-08-23 192.035.169.044 37 23 2020-09-08 2020-09-07 167.099.144.050 29 23 2020-09-04 2020-09-03 041.067.006.074 23 23 2020-08-17 2020-08-17 039.051.036.019 23 23 2020-08-21 2020-08-21 195.058.038.146 49 23 2020-08-31 2020-08-31 147.075.100.117 23 23 2020-09-05 2020-09-05 190.199.066.192 23 23 2020-08-30 2020-08-30 099.181.012.239 26 23 2020-08-30 2020-08-29 178.022.113.029 681043 23 2020-08-27 2020-08-27 188.017.178.172 23 23 2020-08-21 2020-08-21 051.081.077.214 42 23 2020-09-07 2020-09-07 095.008.115.027 26 23 2020-08-31 2020-08-31 005.032.144.090 25 23 2020-08-11 2020-08-11 103.145.009.250 23 23 2020-09-09 2020-09-09 113.088.105.215 23 23 2020-08-31 2020-08-31 160.020.144.052 30 23 2020-08-26 2020-08-26 187.190.166.099 50 23 2020-09-01 2020-09-01 002.027.028.016 150 23 2020-09-08 2020-09-08 122.163.072.096 23 23 2020-08-28 2020-08-28 014.176.002.126 25 23 2020-09-06 2020-09-06 191.081.073.118 24 23 2020-09-03 2020-09-03 005.232.133.015 24 23 2020-09-01 2020-09-01 185.239.242.195 37 23 2020-09-01 2020-09-01 192.035.168.232 34 22 2020-09-08 2020-09-07 097.107.232.004 226 22 2020-08-29 2020-08-29 207.225.026.070 44 22 2020-08-13 2020-08-13 051.195.182.235 22 22 2020-08-30 2020-08-30 192.035.169.024 29 22 2020-09-04 2020-09-03 045.134.179.243 27 22 2020-09-07 2020-09-06 219.100.037.245 73 22 2020-08-28 2020-08-28 222.254.170.031 22 22 2020-08-26 2020-08-26 156.204.056.159 22 22 2020-08-16 2020-08-16 068.053.177.143 30 22 2020-09-07 2020-09-07 138.185.152.022 7202 22 2020-08-19 2020-08-19 192.035.169.029 28 22 2020-09-04 2020-09-03 165.227.112.204 44 22 2020-08-16 2020-08-16 186.151.221.126 22 22 2020-08-20 2020-08-20 005.182.247.081 24 22 2020-08-30 2020-08-30 049.149.100.032 23 22 2020-09-04 2020-09-04 116.196.065.202 3488 22 2020-08-27 2020-08-31 142.093.168.126 24 22 2020-08-16 2020-08-15 172.086.114.068 22 22 2020-09-08 2020-09-08 165.232.036.250 126 22 2020-08-23 2020-08-22 078.187.051.128 23 22 2020-09-04 2020-09-04 147.135.009.219 22 22 2020-09-03 2020-09-03 201.243.108.217 24 22 2020-08-12 2020-08-12 079.025.097.123 31 22 2020-08-27 2020-08-27 051.195.063.010 24 22 2020-09-07 2020-09-07 173.068.100.124 44 22 2020-08-21 2020-08-21 051.081.073.119 35 22 2020-08-23 2020-08-23 117.206.178.103 25 22 2020-08-29 2020-08-29 139.099.180.009 22 22 2020-08-24 2020-08-24 183.110.223.149 27 22 2020-08-19 2020-08-18 136.244.077.084 22 22 2020-08-20 2020-08-20 095.213.243.069 149 22 2020-09-02 2020-09-02 181.064.193.011 22 22 2020-08-13 2020-08-13 111.252.173.136 26 22 2020-08-31 2020-08-31 186.048.000.043 22 22 2020-08-25 2020-08-25 186.094.211.242 22 22 2020-09-04 2020-09-04 088.125.022.074 23 22 2020-08-13 2020-08-13 212.070.149.083 1839224 22 2020-08-17 2020-09-08 128.199.004.081 22 22 2020-08-24 2020-08-24 061.005.061.189 23 22 2020-08-20 2020-08-20 031.215.217.245 22 22 2020-08-11 2020-08-11 180.243.012.174 22 22 2020-08-12 2020-08-12 134.035.176.014 22 22 2020-08-14 2020-08-14 190.203.154.026 23 22 2020-08-30 2020-08-30 084.071.130.014 22 22 2020-08-12 2020-08-12 092.118.234.186 22 22 2020-09-08 2020-09-08 092.181.067.187 23 22 2020-09-06 2020-09-06 185.176.027.230 24 22 2020-08-14 2020-08-14 043.228.066.164 112 22 2020-09-01 2020-09-01 203.099.175.036 22 22 2020-08-17 2020-08-17 054.090.195.090 62 22 2020-09-08 2020-09-08 189.203.193.045 66 22 2020-08-12 2020-08-12 099.084.174.120 25 22 2020-08-23 2020-08-23 093.081.086.197 24 22 2020-08-12 2020-08-12 192.035.169.043 39 22 2020-09-04 2020-09-03 118.097.022.011 22 22 2020-08-28 2020-08-28 046.130.122.039 23 22 2020-08-26 2020-08-26 167.114.038.136 22 22 2020-08-29 2020-08-29 045.061.142.065 22 22 2020-09-03 2020-09-03 112.085.042.186 49413 22 2020-08-14 2020-09-04 051.083.171.014 22 22 2020-08-12 2020-08-12 180.246.254.061 22 22 2020-09-07 2020-09-07 142.011.245.042 2953 22 2020-08-17 2020-08-20 091.169.052.035 44 22 2020-08-27 2020-08-27 050.115.168.138 33 22 2020-08-31 2020-08-30 093.077.110.216 24 22 2020-08-13 2020-08-13 173.000.088.066 187 22 2020-08-31 2020-08-31 203.198.149.096 5721 22 2020-08-03 2020-08-26 084.233.043.058 23 22 2020-09-05 2020-09-05 206.189.181.148 22 22 2020-08-31 2020-08-30 081.134.083.021 24 22 2020-08-11 2020-08-11 190.207.008.207 25 22 2020-09-04 2020-09-04 091.220.030.123 189 22 2020-08-18 2020-08-18 052.183.061.095 59 22 2020-08-30 2020-08-30 076.189.216.087 44 22 2020-08-15 2020-08-15 129.227.129.172 24 22 2020-09-01 2020-09-01 054.241.088.165 22 22 2020-09-03 2020-09-03 077.035.057.134 23 22 2020-08-25 2020-08-25 003.233.248.143 36 22 2020-09-07 2020-09-07 013.056.165.023 22 22 2020-09-02 2020-09-02 116.101.144.053 22 22 2020-08-24 2020-08-24 036.068.146.170 22 22 2020-08-15 2020-08-15 174.196.007.094 35 22 2020-09-01 2020-09-01 206.219.069.160 22 22 2020-09-09 2020-09-09 098.212.254.072 32 22 2020-08-27 2020-08-27 108.016.110.134 44 22 2020-08-24 2020-08-24 071.219.185.082 50 22 2020-09-08 2020-09-08 172.058.140.167 114 22 2020-08-19 2020-08-19 066.070.180.191 22 22 2020-08-21 2020-08-21 123.231.104.123 23 22 2020-08-31 2020-08-31 079.172.245.074 23 22 2020-09-06 2020-09-06 156.146.063.001 7248 22 2020-07-31 2020-08-24 045.061.142.027 58 22 2020-08-15 2020-08-14 104.152.052.035 4506 22 2020-07-22 2020-08-20 190.037.223.224 23 22 2020-08-26 2020-08-26 197.003.008.065 152 22 2020-09-03 2020-09-03 008.021.013.059 252 22 2020-08-27 2020-08-27 037.129.206.248 23 22 2020-08-23 2020-08-23 067.189.226.234 25 22 2020-08-13 2020-08-13 059.097.239.052 23 22 2020-08-11 2020-08-11 091.221.201.252 22 22 2020-08-27 2020-08-27 112.085.042.232 81798 22 2020-08-11 2020-08-30 192.035.169.016 29 21 2020-09-04 2020-09-03 089.248.168.112 23 21 2020-09-07 2020-09-06 071.006.232.008 27 21 2020-08-16 2020-08-15 204.074.228.114 21 21 2020-08-23 2020-08-23 005.162.129.132 21 21 2020-08-20 2020-08-20 212.252.140.173 35 21 2020-09-01 2020-09-01 078.016.248.091 40 21 2020-08-27 2020-08-27 045.084.196.066 2103 21 2020-08-17 2020-08-19 159.069.117.200 21 21 2020-08-13 2020-08-13 088.238.014.180 22 21 2020-09-04 2020-09-04 045.061.142.179 31 21 2020-08-31 2020-08-31 031.214.243.253 21 21 2020-08-22 2020-08-22 189.248.080.140 36 21 2020-09-04 2020-09-04 018.237.059.217 21 21 2020-09-02 2020-09-02 085.209.000.102 65 21 2020-09-05 2020-09-04 167.071.038.104 25 21 2020-09-03 2020-09-02 104.156.014.012 21 21 2020-08-22 2020-08-22 023.090.145.045 24 21 2020-09-03 2020-09-03 103.044.104.018 22 21 2020-08-20 2020-08-20 198.050.227.151 21 21 2020-08-24 2020-08-24 148.072.132.087 37 21 2020-08-31 2020-08-31 082.209.145.059 76 21 2020-08-18 2020-08-18 001.004.170.058 22 21 2020-08-17 2020-08-17 123.025.030.175 23 21 2020-09-09 2020-09-09 051.081.048.241 30 21 2020-08-31 2020-08-31 216.119.209.064 204 21 2020-08-30 2020-08-30 190.036.229.200 22 21 2020-09-08 2020-09-08 093.114.194.083 21 21 2020-08-31 2020-08-30 216.239.034.010 17078 21 2020-08-04 2020-08-18 034.123.099.168 21 21 2020-09-02 2020-09-02 071.006.135.131 26 21 2020-09-05 2020-09-04 159.089.224.058 22 21 2020-08-16 2020-08-16 186.094.171.163 21 21 2020-08-20 2020-08-20 072.052.072.075 1436 21 2020-08-26 2020-08-26 125.166.229.041 21 21 2020-09-04 2020-09-04 199.195.254.082 21 21 2020-08-29 2020-08-29 091.240.118.061 37 21 2020-08-29 2020-08-28 156.208.173.127 21 21 2020-09-03 2020-09-03 209.141.039.132 40 21 2020-09-09 2020-09-09 187.008.168.057 26 21 2020-09-01 2020-09-01 036.073.063.058 22 21 2020-08-24 2020-08-24 036.103.245.023 3253 21 2020-07-27 2020-08-22 027.079.146.005 21 21 2020-09-03 2020-09-03 050.060.240.063 221 21 2020-08-23 2020-08-23 178.233.028.023 21 21 2020-09-05 2020-09-05 167.099.148.173 123 21 2020-09-04 2020-09-04 190.198.191.236 23 21 2020-08-29 2020-08-29 040.084.141.196 106 21 2020-09-07 2020-09-07 054.190.094.235 21 21 2020-08-22 2020-08-22 085.114.146.012 835 21 2020-08-08 2020-08-11 068.011.063.168 28 21 2020-08-16 2020-08-16 192.003.105.188 25 21 2020-08-24 2020-08-23 124.158.094.029 21 21 2020-08-25 2020-08-25 172.105.239.115 51 21 2020-08-15 2020-08-15 045.084.196.121 21 21 2020-08-12 2020-08-12 201.108.193.084 21 21 2020-08-13 2020-08-13 046.149.087.102 22 21 2020-09-09 2020-09-09 192.035.169.034 28 21 2020-09-08 2020-09-07 192.175.213.012 693 21 2020-08-18 2020-08-18 148.075.099.228 30 21 2020-08-22 2020-08-22 103.194.243.148 21 21 2020-08-19 2020-08-19 223.204.249.185 23 21 2020-08-18 2020-08-18 074.120.014.036 76 21 2020-09-02 2020-09-02 192.035.168.228 37 21 2020-09-04 2020-09-03 103.141.136.219 21 21 2020-08-15 2020-08-15 014.230.094.035 22 21 2020-09-01 2020-09-01 037.212.095.059 22 21 2020-08-12 2020-08-12 185.137.234.025 21 21 2020-09-02 2020-09-02 064.227.019.127 23 21 2020-08-15 2020-08-14 037.139.016.229 21 21 2020-08-16 2020-08-15 194.087.139.145 2826 21 2020-08-11 2020-08-11 185.120.014.142 54 21 2020-09-03 2020-09-03 192.035.168.230 30 21 2020-09-04 2020-09-03 095.008.243.054 21 21 2020-08-19 2020-08-19 085.174.205.080 21 21 2020-08-20 2020-08-20 024.184.141.063 26 21 2020-08-19 2020-08-19 173.000.084.066 177 21 2020-08-31 2020-08-31 188.229.098.207 25 21 2020-08-28 2020-08-28 045.143.223.134 23 21 2020-08-12 2020-08-12 179.113.009.208 21 21 2020-08-14 2020-08-14 104.153.104.011 415 21 2020-08-18 2020-08-18 051.161.008.022 108 21 2020-09-06 2020-09-06 190.075.153.100 22 21 2020-08-26 2020-08-26 117.132.196.158 81 21 2020-09-02 2020-09-02 001.035.180.207 22 21 2020-08-29 2020-08-29 159.203.161.018 21 21 2020-09-07 2020-09-07 157.036.188.108 25 21 2020-08-23 2020-08-23 182.093.075.048 22 21 2020-08-31 2020-08-31 115.201.052.197 21 21 2020-08-17 2020-08-17 070.039.126.140 31 21 2020-09-06 2020-09-06 104.008.063.214 27 21 2020-08-16 2020-08-16 079.025.119.215 22 21 2020-09-08 2020-09-08 194.180.224.003 21 21 2020-08-20 2020-08-20 123.161.134.208 22 21 2020-08-24 2020-08-24 192.210.236.034 120 21 2020-08-21 2020-08-21 104.237.233.101 21 21 2020-08-17 2020-08-17 172.058.175.086 53 21 2020-09-06 2020-09-06 194.087.139.154 1058 21 2020-08-13 2020-08-17 192.003.041.172 35 21 2020-09-07 2020-09-06 144.217.092.211 21 21 2020-08-30 2020-08-30 034.225.140.168 31 21 2020-09-07 2020-09-07 114.042.153.015 22 21 2020-08-20 2020-08-20 190.039.065.227 21 21 2020-08-22 2020-08-22 186.091.035.119 21 21 2020-08-25 2020-08-25 124.148.231.247 20 20 2020-09-09 2020-09-09 173.092.020.134 36 20 2020-09-08 2020-09-08 161.035.104.153 20 20 2020-08-20 2020-08-20 209.141.041.022 20 20 2020-08-17 2020-08-17 051.081.073.118 162 20 2020-08-29 2020-08-29 200.089.178.234 20 20 2020-08-31 2020-08-31 089.249.059.179 21 20 2020-08-25 2020-08-25 023.060.220.128 33 20 2020-09-06 2020-09-06 183.083.254.174 21 20 2020-08-31 2020-08-31 116.236.255.213 20 20 2020-08-27 2020-08-27 216.119.218.053 25 20 2020-08-28 2020-08-28 196.052.043.120 21 20 2020-09-09 2020-09-08 193.025.253.074 20 20 2020-09-01 2020-09-01 076.031.255.160 20 20 2020-09-09 2020-09-09 145.239.234.159 24 20 2020-08-17 2020-08-16 192.035.168.227 28 20 2020-09-04 2020-09-03 186.093.210.131 20 20 2020-08-21 2020-08-21 070.189.058.139 22 20 2020-08-18 2020-08-18 157.245.234.138 21 20 2020-08-17 2020-08-17 080.211.055.173 20 20 2020-08-31 2020-08-31 134.236.003.129 21 20 2020-08-27 2020-08-27 138.201.244.064 20 20 2020-09-09 2020-09-09 159.065.154.048 24 20 2020-08-30 2020-08-29 223.223.129.228 20 20 2020-08-31 2020-08-31 174.110.212.160 152 20 2020-09-01 2020-09-01 077.243.027.098 20 20 2020-08-28 2020-08-28 210.245.051.186 20 20 2020-09-06 2020-09-06 088.008.252.007 20 20 2020-08-24 2020-08-24 210.056.007.013 23 20 2020-08-21 2020-08-21 093.075.067.035 23 20 2020-08-17 2020-08-17 043.225.157.241 20 20 2020-08-23 2020-08-23 198.071.233.051 22 20 2020-08-31 2020-08-31 109.074.015.197 8405 20 2020-08-24 2020-08-27 192.035.168.233 31 20 2020-09-06 2020-09-05 064.091.249.207 22 20 2020-09-05 2020-09-04 193.118.053.218 20 20 2020-08-28 2020-08-28 190.204.192.120 59 20 2020-08-12 2020-08-12 193.042.136.003 62 20 2020-08-31 2020-08-31 066.203.216.196 154 20 2020-08-25 2020-08-25 099.126.000.054 22 20 2020-08-22 2020-08-22 103.079.141.105 20 20 2020-08-27 2020-08-26 197.156.137.158 20 20 2020-08-24 2020-08-24 051.015.038.002 21 20 2020-08-29 2020-08-29 054.067.051.251 20 20 2020-08-22 2020-08-22 046.101.040.021 24 20 2020-08-30 2020-08-29 190.079.149.019 20 20 2020-09-05 2020-09-05 183.136.225.044 48 20 2020-08-16 2020-08-15 167.172.242.042 109 20 2020-09-03 2020-09-03 182.183.230.193 24 20 2020-09-04 2020-09-04 177.106.174.045 21 20 2020-08-16 2020-08-16 071.006.167.142 20 20 2020-08-16 2020-08-15 177.249.047.244 21 20 2020-08-16 2020-08-16 185.216.140.185 20 20 2020-09-04 2020-09-04 003.101.121.204 20 20 2020-09-04 2020-09-04 190.206.177.008 22 20 2020-09-02 2020-09-02 077.242.029.026 20 20 2020-08-16 2020-08-16 192.035.169.018 24 20 2020-09-04 2020-09-03 190.199.099.149 23 20 2020-08-15 2020-08-15 054.159.194.200 20 20 2020-09-09 2020-09-09 212.129.082.077 20 20 2020-08-18 2020-08-18 209.097.161.152 20 20 2020-08-19 2020-08-19 185.142.239.016 22 20 2020-08-16 2020-08-15 198.251.080.106 67 20 2020-09-08 2020-09-08 113.161.025.069 21 20 2020-08-14 2020-08-14 171.252.131.156 20 20 2020-09-04 2020-09-04 194.015.036.004 20 20 2020-08-15 2020-08-15 222.254.169.205 22 20 2020-08-31 2020-08-31 064.227.074.131 29 20 2020-09-07 2020-09-07 074.091.122.085 20 20 2020-09-02 2020-09-02 054.177.136.122 21 20 2020-09-02 2020-09-02 095.055.047.125 20 20 2020-08-13 2020-08-13 001.002.147.202 20 20 2020-08-24 2020-08-24 014.098.225.194 22 20 2020-08-18 2020-08-18 077.042.012.094 21 20 2020-08-29 2020-08-29 174.226.130.100 35 20 2020-08-29 2020-08-29 195.058.038.196 22 20 2020-09-05 2020-09-05 204.093.160.085 20 20 2020-08-28 2020-08-28 093.184.221.152 20 20 2020-08-16 2020-08-16 193.176.086.134 220 20 2020-08-16 2020-08-15 185.216.140.031 32 20 2020-08-16 2020-08-15 217.174.208.194 28 20 2020-08-21 2020-08-21 023.206.044.114 58 20 2020-08-25 2020-08-25 192.074.243.225 20 20 2020-09-08 2020-09-08 013.056.183.130 20 20 2020-08-21 2020-08-21 138.068.085.141 22 20 2020-09-06 2020-09-06 110.039.196.069 20 20 2020-08-11 2020-08-11 195.058.038.168 29 20 2020-09-03 2020-09-03 192.223.026.172 108 20 2020-09-06 2020-09-06 054.193.116.199 20 20 2020-09-02 2020-09-02 005.181.135.008 97 20 2020-08-17 2020-08-17 070.162.033.191 22 20 2020-08-12 2020-08-12 115.076.171.173 144 20 2020-08-25 2020-08-25 186.089.219.190 21 20 2020-08-21 2020-08-21 114.007.131.050 23 20 2020-08-29 2020-08-29 064.190.090.120 94 20 2020-08-14 2020-08-14 117.196.133.070 20 20 2020-08-30 2020-08-30 003.021.142.209 1613 20 2020-08-30 2020-08-31 067.197.130.060 33 20 2020-08-17 2020-08-17 134.249.133.142 40 20 2020-08-24 2020-08-24 090.255.145.008 2225 20 2020-08-12 2020-08-12 181.034.174.174 20 20 2020-09-06 2020-09-06 216.239.032.010 17191 20 2020-08-18 2020-08-18 176.057.071.116 98645 20 2020-08-12 2020-08-30 074.117.129.088 678 20 2020-09-02 2020-09-02 080.022.190.210 20 20 2020-08-30 2020-08-30 171.251.159.003 23 20 2020-08-18 2020-08-17 182.053.199.104 20 20 2020-08-21 2020-08-21 095.169.225.217 20 20 2020-08-31 2020-08-30 205.185.121.013 19 19 2020-09-07 2020-09-06 113.088.051.034 21 19 2020-09-09 2020-09-09 183.063.189.237 20 19 2020-08-22 2020-08-22 092.118.207.002 21 19 2020-09-07 2020-09-07 183.082.155.170 23 19 2020-08-27 2020-08-27 036.226.178.100 19 19 2020-08-23 2020-08-23 139.059.067.082 20 19 2020-09-06 2020-09-05 008.046.116.169 21 19 2020-08-18 2020-08-18 192.035.169.046 32 19 2020-09-08 2020-09-07 165.227.036.158 48 19 2020-08-13 2020-08-13 008.020.122.155 38 19 2020-08-22 2020-08-22 158.069.184.005 116 19 2020-08-30 2020-08-30 078.175.059.083 19 19 2020-09-07 2020-09-07 098.244.134.188 32 19 2020-08-25 2020-08-25 180.241.018.117 21 19 2020-08-15 2020-08-15 192.035.169.025 23 19 2020-09-04 2020-09-03 181.019.094.217 20 19 2020-09-06 2020-09-06 103.056.205.226 20 19 2020-09-01 2020-08-31 094.243.069.217 25 19 2020-08-27 2020-08-27 222.186.061.191 76 19 2020-08-26 2020-08-26 051.195.007.137 20 19 2020-08-31 2020-08-31 014.160.029.090 19 19 2020-08-20 2020-08-20 182.202.236.199 19 19 2020-08-20 2020-08-20 187.167.027.055 20 19 2020-08-21 2020-08-21 185.202.000.116 145 19 2020-09-08 2020-09-08 123.160.229.140 20 19 2020-08-25 2020-08-25 046.101.181.170 19 19 2020-09-04 2020-09-03 052.008.094.058 19 19 2020-09-02 2020-09-02 171.235.051.039 116 19 2020-08-27 2020-08-27 192.223.031.243 19 19 2020-08-24 2020-08-24 104.225.250.146 69 19 2020-09-01 2020-09-01 165.022.073.160 22 19 2020-08-27 2020-08-27 162.243.168.131 66 19 2020-08-28 2020-08-27 158.069.104.112 28 19 2020-08-21 2020-08-21 192.035.169.045 24 19 2020-09-08 2020-09-07 165.022.040.147 19 19 2020-09-04 2020-09-03 181.019.055.094 20 19 2020-09-06 2020-09-06 013.056.228.048 20 19 2020-08-23 2020-08-23 165.022.040.139 21 19 2020-09-07 2020-09-07 018.144.055.185 19 19 2020-09-08 2020-09-08 194.127.172.071 5731 19 2020-09-04 2020-09-04 188.215.161.166 19 19 2020-09-02 2020-09-02 036.228.159.020 19 19 2020-09-04 2020-09-04 051.081.024.016 100 19 2020-09-05 2020-09-05 071.069.073.025 27 19 2020-08-16 2020-08-16 201.210.041.032 19 19 2020-08-23 2020-08-23 186.093.026.211 20 19 2020-08-11 2020-08-11 200.044.203.215 20 19 2020-08-16 2020-08-16 046.001.232.229 19 19 2020-09-02 2020-09-02 074.117.129.103 164 19 2020-09-02 2020-09-02 190.203.160.184 23 19 2020-08-11 2020-08-11 213.074.115.211 23 19 2020-08-19 2020-08-18 178.207.038.014 23 19 2020-08-15 2020-08-15 185.004.135.185 19 19 2020-09-06 2020-09-06 171.232.247.194 134 19 2020-08-14 2020-08-14 027.064.102.110 169 19 2020-09-04 2020-09-04 202.141.233.066 19 19 2020-09-08 2020-09-08 093.115.028.038 20 19 2020-08-28 2020-08-28 078.134.038.065 21 19 2020-08-25 2020-08-25 047.020.149.159 19 19 2020-08-27 2020-08-27 054.036.110.042 20 19 2020-09-07 2020-09-07 054.039.133.091 21 19 2020-09-04 2020-09-03 093.115.028.031 23 19 2020-08-28 2020-08-28 112.134.188.054 19 19 2020-08-20 2020-08-20 166.170.024.006 49 19 2020-08-30 2020-08-30 045.058.135.114 20 19 2020-08-31 2020-08-31 162.250.125.043 20 19 2020-08-22 2020-08-22 045.148.121.077 23 19 2020-08-17 2020-08-17 194.061.054.112 19 19 2020-08-31 2020-08-31 111.177.018.025 20 19 2020-09-04 2020-09-03 134.236.118.107 19 19 2020-08-31 2020-08-31 157.230.255.023 21 19 2020-08-25 2020-08-24 172.067.203.146 32 19 2020-08-27 2020-08-27 117.006.085.215 20 19 2020-08-16 2020-08-16 071.006.165.200 23 19 2020-09-08 2020-09-07 087.236.208.016 78 19 2020-08-15 2020-08-15 013.057.242.063 19 19 2020-08-22 2020-08-22 192.099.045.021 20 19 2020-08-28 2020-08-28 159.089.038.228 19 19 2020-09-09 2020-09-08 037.049.225.166 20 19 2020-08-24 2020-08-23 188.166.032.006 19 19 2020-08-27 2020-08-27 200.044.229.226 19 19 2020-09-05 2020-09-05 036.250.229.115 24 19 2020-08-20 2020-08-19 018.223.016.039 19 19 2020-08-18 2020-08-18 194.026.029.124 17131 19 2020-08-14 2020-08-19 190.200.058.103 21 19 2020-08-29 2020-08-29 213.138.089.187 19 19 2020-09-07 2020-09-07 207.180.201.126 34 19 2020-08-21 2020-08-20 216.058.213.130 158 19 2020-08-18 2020-08-18 045.129.033.019 19 19 2020-08-20 2020-08-19 103.132.197.017 19 19 2020-08-19 2020-08-19 176.194.228.003 19 19 2020-09-02 2020-09-02 157.245.100.226 19 19 2020-09-04 2020-09-03 014.235.252.155 19 19 2020-08-27 2020-08-27 082.249.129.253 20 19 2020-09-01 2020-09-01 107.174.020.109 19 19 2020-09-07 2020-09-07 185.137.234.022 28 19 2020-08-16 2020-08-16 189.203.069.172 21 19 2020-08-22 2020-08-22 192.241.143.104 30 19 2020-08-14 2020-08-14 045.145.067.140 25 19 2020-08-26 2020-08-26 050.076.084.041 38 19 2020-09-07 2020-09-07 192.035.168.225 24 19 2020-09-08 2020-09-07 034.253.029.031 20 19 2020-08-31 2020-08-31 052.056.053.145 267 19 2020-08-22 2020-08-22 197.044.060.036 19 19 2020-08-17 2020-08-17 046.223.142.120 78 19 2020-09-01 2020-09-01 185.025.183.178 20 19 2020-09-08 2020-09-08 054.190.016.089 19 19 2020-08-22 2020-08-22 104.153.087.144 116 19 2020-08-11 2020-08-11 168.119.098.084 47 19 2020-09-06 2020-09-06 185.244.215.131 38 19 2020-09-09 2020-09-09 197.185.099.137 21 19 2020-09-08 2020-09-08 186.090.202.252 19 19 2020-09-08 2020-09-08 139.162.073.106 81 19 2020-08-11 2020-08-11 152.022.069.026 56 19 2020-08-18 2020-08-18 201.210.201.061 21 19 2020-08-18 2020-08-18 005.145.241.224 19 19 2020-09-07 2020-09-07 190.072.039.095 22 19 2020-09-05 2020-09-05 178.238.235.130 20 19 2020-08-27 2020-08-27 036.081.094.014 20 19 2020-08-24 2020-08-24 185.143.223.052 3538 19 2020-08-15 2020-08-17 171.232.158.059 19 19 2020-09-02 2020-09-02 018.237.122.137 19 19 2020-08-21 2020-08-21 092.184.104.056 23 19 2020-09-07 2020-09-07 122.165.247.254 23 19 2020-09-05 2020-09-04 058.069.114.253 19 19 2020-09-02 2020-09-02 111.248.071.020 22 19 2020-08-17 2020-08-17 150.095.148.080 24 19 2020-08-16 2020-08-16 156.096.044.166 57 19 2020-08-21 2020-08-21 212.003.192.104 21 19 2020-08-23 2020-08-23 173.208.218.096 19 19 2020-08-30 2020-08-30 050.112.020.147 20 19 2020-08-21 2020-08-21 190.108.044.241 18 18 2020-09-08 2020-09-08 064.145.093.032 81 18 2020-09-03 2020-09-03 018.144.053.155 18 18 2020-08-21 2020-08-21 162.195.102.142 1458 18 2020-09-08 2020-09-08 052.053.175.178 18 18 2020-08-22 2020-08-22 217.113.013.170 18 18 2020-09-03 2020-09-03 116.203.234.243 18 18 2020-09-03 2020-09-03 093.174.089.053 18 18 2020-08-13 2020-08-13 163.047.146.217 18 18 2020-08-18 2020-08-18 045.061.142.113 18 18 2020-08-12 2020-08-12 073.153.075.209 20 18 2020-08-19 2020-08-19 005.171.036.101 19 18 2020-08-24 2020-08-24 167.172.156.227 21 18 2020-08-15 2020-08-14 068.001.134.053 20 18 2020-09-07 2020-09-07 155.094.183.004 21 18 2020-08-14 2020-08-14 062.217.143.027 18 18 2020-09-01 2020-09-01 185.107.096.221 39 18 2020-08-11 2020-08-11 075.133.250.180 2893 18 2020-09-07 2020-09-07 190.202.057.148 19 18 2020-08-28 2020-08-28 062.171.161.187 21 18 2020-08-19 2020-08-19 047.217.156.134 19 18 2020-09-01 2020-08-31 216.119.210.053 18 18 2020-08-28 2020-08-28 178.033.252.234 18 18 2020-08-20 2020-08-20 045.148.121.089 18 18 2020-09-06 2020-09-06 109.086.062.040 20 18 2020-08-26 2020-08-26 192.223.029.192 18 18 2020-08-16 2020-08-16 183.091.026.109 629 18 2020-08-15 2020-08-15 049.184.174.234 20 18 2020-08-27 2020-08-27 068.235.038.053 18 18 2020-09-04 2020-09-04 054.219.237.218 18 18 2020-08-21 2020-08-21 034.220.184.026 18 18 2020-09-02 2020-09-02 054.187.046.108 18 18 2020-08-21 2020-08-21 109.099.149.074 22 18 2020-08-28 2020-08-28 114.005.244.075 20 18 2020-08-13 2020-08-13 099.137.080.229 27 18 2020-08-25 2020-08-25 103.205.163.202 19 18 2020-08-13 2020-08-13 104.243.034.084 21 18 2020-09-09 2020-09-09 069.025.018.096 108 18 2020-08-14 2020-08-14 102.129.224.010 18 18 2020-08-14 2020-08-14 104.143.094.015 41 18 2020-08-24 2020-08-24 067.243.011.174 19 18 2020-09-01 2020-09-01 073.128.225.034 21 18 2020-08-23 2020-08-23 035.164.093.162 20 18 2020-09-02 2020-09-02 037.049.224.076 26 18 2020-08-25 2020-08-24 192.035.169.038 24 18 2020-09-08 2020-09-07 054.218.105.011 18 18 2020-09-02 2020-09-02 100.016.054.020 18 18 2020-09-08 2020-09-08 190.078.059.140 18 18 2020-08-26 2020-08-26 013.056.246.220 18 18 2020-08-23 2020-08-23 217.164.015.026 18 18 2020-08-11 2020-08-11 157.230.059.208 35 18 2020-09-03 2020-09-03 188.187.197.024 19 18 2020-09-05 2020-09-05 148.251.188.180 237 18 2020-09-04 2020-09-04 066.022.032.117 47 18 2020-08-22 2020-08-22 146.241.161.033 4089 18 2020-08-25 2020-08-25 096.030.201.019 18 18 2020-09-04 2020-09-04 054.193.080.215 18 18 2020-09-03 2020-09-03 193.007.200.012 18 18 2020-08-20 2020-08-20 088.198.144.177 22 18 2020-08-17 2020-08-17 218.062.110.213 19 18 2020-08-19 2020-08-18 064.225.106.089 19 18 2020-09-04 2020-09-03 162.241.142.103 18 18 2020-08-19 2020-08-18 018.237.044.176 18 18 2020-08-22 2020-08-22 174.248.114.026 18 18 2020-08-22 2020-08-22 073.090.112.238 21 18 2020-08-20 2020-08-20 034.067.100.013 22 18 2020-08-20 2020-08-20 142.044.189.083 35 18 2020-09-06 2020-09-06 192.035.169.022 26 18 2020-09-04 2020-09-03 080.082.065.246 29 18 2020-08-14 2020-08-14 107.010.162.247 31 18 2020-08-14 2020-08-14 052.066.098.074 26 18 2020-08-28 2020-08-28 192.035.169.017 26 18 2020-09-04 2020-09-03 185.142.236.034 39 18 2020-08-16 2020-08-15 180.247.239.216 18 18 2020-08-17 2020-08-17 035.246.184.242 18 18 2020-08-11 2020-08-11 080.082.078.039 45 18 2020-09-04 2020-09-03 182.070.111.187 21 18 2020-08-25 2020-08-25 153.127.109.204 18 18 2020-08-19 2020-08-19 199.019.226.035 18 18 2020-08-18 2020-08-17 008.038.079.005 18 18 2020-08-31 2020-08-31 222.254.098.059 18 18 2020-09-01 2020-09-01 223.071.167.163 34 18 2020-08-16 2020-08-15 031.018.254.009 319 18 2020-09-06 2020-09-06 049.049.238.163 22 18 2020-08-30 2020-08-30 150.223.004.064 18 18 2020-08-24 2020-08-24 105.198.238.216 18 18 2020-09-03 2020-09-03 080.211.225.173 18 18 2020-08-26 2020-08-26 092.053.065.141 19 18 2020-09-08 2020-09-08 054.176.041.216 18 18 2020-08-22 2020-08-22 107.170.219.044 18 18 2020-08-30 2020-08-30 194.087.139.032 5019 18 2020-08-22 2020-08-24 140.082.050.050 23 18 2020-08-25 2020-08-25 185.134.022.100 1040 18 2020-08-14 2020-08-14 103.223.010.088 19 18 2020-09-07 2020-09-07 103.145.013.114 21 18 2020-08-28 2020-08-28 071.006.147.254 21 18 2020-08-15 2020-08-14 199.021.170.129 135 18 2020-09-02 2020-09-02 035.246.000.144 18 18 2020-08-24 2020-08-24 189.034.224.216 53946 18 2020-07-27 2020-08-23 192.035.169.031 24 18 2020-09-08 2020-09-07 031.214.160.082 20 18 2020-09-05 2020-09-04 086.098.132.193 18 18 2020-08-27 2020-08-27 111.067.206.251 44 18 2020-08-13 2020-08-13 045.135.165.004 18 18 2020-08-12 2020-08-12 138.197.171.079 18 18 2020-09-07 2020-09-06 003.101.102.058 18 18 2020-08-11 2020-08-11 130.158.006.069 18 18 2020-08-16 2020-08-16 036.007.080.168 18 18 2020-08-28 2020-08-27 035.188.163.018 18 18 2020-08-22 2020-08-22 192.035.169.028 23 18 2020-09-04 2020-09-03 075.003.195.251 39 18 2020-09-06 2020-09-06 159.203.061.115 408 18 2020-08-13 2020-08-13 023.101.228.041 18 18 2020-08-23 2020-08-23 085.209.000.101 46 18 2020-09-02 2020-09-01 185.175.093.037 27 18 2020-08-29 2020-08-28 045.121.107.225 19 18 2020-09-01 2020-09-01 113.118.121.144 19 18 2020-08-25 2020-08-25 051.235.023.050 18 18 2020-09-07 2020-09-07 206.219.069.194 28 18 2020-09-08 2020-09-08 200.113.219.010 19 18 2020-08-18 2020-08-18 014.229.069.101 18 18 2020-08-28 2020-08-28 188.165.211.206 3691 18 2020-07-30 2020-08-16 037.032.119.190 19 18 2020-09-08 2020-09-08 093.008.101.152 27 18 2020-08-31 2020-08-31 051.161.014.069 120 18 2020-09-02 2020-09-02 023.096.033.031 27 18 2020-08-19 2020-08-19 013.056.156.224 18 17 2020-08-23 2020-08-23 099.055.166.243 376 17 2020-08-25 2020-08-25 159.065.033.243 20 17 2020-09-05 2020-09-04 157.036.066.220 17 17 2020-09-01 2020-09-01 180.071.047.198 17 17 2020-09-02 2020-09-01 094.138.132.039 17 17 2020-08-28 2020-08-28 013.057.052.232 17 17 2020-08-11 2020-08-11 195.037.190.088 17 17 2020-08-11 2020-08-11 098.223.053.036 37 17 2020-08-19 2020-08-19 077.101.161.002 17 17 2020-09-03 2020-09-03 195.054.161.058 25 17 2020-09-05 2020-09-04 013.056.194.083 17 17 2020-09-08 2020-09-08 205.157.152.140 17 17 2020-08-26 2020-08-26 190.077.141.126 18 17 2020-08-12 2020-08-12 018.237.036.175 17 17 2020-09-02 2020-09-02 062.210.129.044 17 17 2020-09-03 2020-09-02 195.154.177.210 17 17 2020-08-25 2020-08-25 157.036.071.222 17 17 2020-09-01 2020-09-01 178.128.221.162 19 17 2020-09-06 2020-09-05 052.084.053.005 17 17 2020-08-25 2020-08-25 049.088.112.113 100182 17 2020-06-08 2020-08-24 210.075.240.013 17 17 2020-08-31 2020-08-30 176.193.112.098 20 17 2020-08-21 2020-08-21 036.076.163.220 17 17 2020-09-07 2020-09-07 188.166.179.068 17 17 2020-09-03 2020-09-03 172.255.251.196 17 17 2020-08-11 2020-08-11 013.056.246.140 17 17 2020-09-03 2020-09-03 190.075.012.080 18 17 2020-08-12 2020-08-12 200.109.021.100 17 17 2020-08-17 2020-08-17 045.095.168.124 34 17 2020-09-04 2020-09-04 018.156.173.246 37 17 2020-08-26 2020-08-26 209.251.036.133 17 17 2020-08-15 2020-08-15 074.091.113.050 57 17 2020-08-14 2020-08-14 052.040.170.236 17 17 2020-08-18 2020-08-18 106.222.113.162 18 17 2020-09-04 2020-09-04 058.065.163.174 17 17 2020-08-20 2020-08-20 190.205.139.099 17 17 2020-08-11 2020-08-11 218.059.200.044 17 17 2020-08-19 2020-08-18 104.026.000.106 18 17 2020-08-24 2020-08-24 024.034.022.067 17 17 2020-08-17 2020-08-17 037.239.094.068 17 17 2020-08-15 2020-08-15 005.236.103.112 19 17 2020-08-27 2020-08-27 091.210.107.141 17 17 2020-08-26 2020-08-26 083.205.170.227 32 17 2020-08-18 2020-08-18 045.189.204.031 17 17 2020-09-01 2020-09-01 066.181.161.047 18 17 2020-08-13 2020-08-13 160.153.016.045 29 17 2020-09-01 2020-09-01 192.035.168.238 22 17 2020-09-08 2020-09-07 166.137.219.223 182 17 2020-08-23 2020-08-23 051.159.056.131 98 17 2020-08-27 2020-08-27 051.159.090.061 17 17 2020-08-27 2020-08-27 050.115.170.104 485 17 2020-08-29 2020-08-28 076.196.120.048 17 17 2020-08-11 2020-08-11 192.035.169.023 28 17 2020-09-04 2020-09-03 192.035.169.026 22 17 2020-09-04 2020-09-03 138.197.152.148 17 17 2020-09-05 2020-09-04 086.146.036.249 24 17 2020-09-03 2020-09-03 095.211.179.041 17 17 2020-08-13 2020-08-13 113.176.130.018 17 17 2020-08-18 2020-08-18 024.229.222.072 17 17 2020-08-21 2020-08-21 213.135.067.042 19 17 2020-09-04 2020-09-03 091.092.248.161 17 17 2020-09-05 2020-09-05 222.186.180.142 29 17 2020-08-22 2020-08-21 128.199.005.192 20 17 2020-08-27 2020-08-27 052.114.006.046 23 17 2020-08-12 2020-08-12 149.202.101.145 154 17 2020-08-18 2020-08-18 186.247.183.204 20 17 2020-08-12 2020-08-12 171.232.251.204 96 17 2020-09-07 2020-09-07 035.165.183.219 17 17 2020-08-21 2020-08-21 044.234.096.110 41 17 2020-09-07 2020-09-07 068.007.185.217 20 17 2020-08-20 2020-08-20 049.207.201.148 17 17 2020-08-27 2020-08-27 081.019.210.148 88 17 2020-08-25 2020-08-24 208.091.109.210 17 17 2020-09-08 2020-09-08 080.082.077.212 54 17 2020-08-20 2020-08-19 192.035.168.236 22 17 2020-09-04 2020-09-03 104.131.189.185 17 17 2020-08-19 2020-08-18 038.021.249.172 17 17 2020-09-03 2020-09-03 054.070.041.101 17 17 2020-08-22 2020-08-22 171.223.175.245 21 17 2020-08-12 2020-08-12 031.010.154.079 58 17 2020-08-15 2020-08-15 144.076.198.082 17 17 2020-08-13 2020-08-13 192.223.025.122 25 17 2020-08-20 2020-08-20 101.051.024.193 17 17 2020-08-17 2020-08-17 103.102.120.224 24 17 2020-09-07 2020-09-07 134.236.119.134 18 17 2020-08-31 2020-08-31 213.179.197.230 17 17 2020-08-15 2020-08-15 005.206.227.029 17 17 2020-08-11 2020-08-11 047.157.174.072 22 17 2020-08-15 2020-08-15 123.053.188.154 17 17 2020-09-01 2020-09-01 144.091.087.106 63985 17 2020-08-05 2020-08-13 185.230.127.240 34 17 2020-09-04 2020-09-04 039.045.166.158 20 17 2020-08-25 2020-08-25 115.217.018.212 17 17 2020-08-30 2020-08-30 192.227.125.114 17 17 2020-08-23 2020-08-23 092.062.131.106 18 17 2020-08-30 2020-08-29 051.089.000.160 17 17 2020-08-25 2020-08-25 137.200.004.016 17 17 2020-09-06 2020-09-06 185.241.052.057 17 17 2020-08-20 2020-08-20 095.179.184.075 19 17 2020-08-30 2020-08-30 046.063.153.072 18 17 2020-09-08 2020-09-08 190.201.156.139 20 17 2020-08-19 2020-08-19 069.040.059.130 23 17 2020-08-14 2020-08-14 125.209.081.234 18 17 2020-08-22 2020-08-22 178.165.131.087 31 17 2020-08-25 2020-08-25 051.159.023.078 22 17 2020-09-05 2020-09-04 046.239.042.050 18 17 2020-08-28 2020-08-28 185.239.242.158 17 17 2020-08-29 2020-08-29 223.205.250.080 18 17 2020-08-17 2020-08-17 039.103.160.013 107 17 2020-08-20 2020-08-20 122.232.227.020 17 17 2020-08-14 2020-08-14 109.192.154.008 20 17 2020-08-22 2020-08-22 216.155.094.051 18 17 2020-08-19 2020-08-18 093.096.082.107 17 17 2020-08-27 2020-08-27 066.181.226.162 40 17 2020-08-30 2020-08-30 134.249.214.033 18 17 2020-08-26 2020-08-26 091.218.246.026 17 17 2020-08-16 2020-08-16 098.159.099.050 77 17 2020-08-20 2020-08-20 091.135.208.009 18 17 2020-08-28 2020-08-28 192.099.063.018 4013 17 2020-08-13 2020-08-13 068.183.204.255 17 17 2020-09-02 2020-09-02 121.123.148.220 22 17 2020-08-20 2020-08-19 082.219.210.019 29 17 2020-08-19 2020-08-19 190.145.207.218 17 17 2020-09-01 2020-09-01 003.101.109.248 17 17 2020-08-19 2020-08-19 119.123.195.249 17 17 2020-08-12 2020-08-12 128.199.092.187 20 17 2020-09-04 2020-09-03 095.172.092.129 17 17 2020-08-20 2020-08-20 205.185.125.164 17 17 2020-08-28 2020-08-28 095.216.099.095 17 17 2020-08-17 2020-08-17 098.159.099.042 77 17 2020-09-06 2020-09-06 222.224.141.179 18 17 2020-08-11 2020-08-11 073.186.119.040 32 17 2020-08-27 2020-08-27 041.106.161.142 17 17 2020-08-26 2020-08-26 036.062.086.065 132 17 2020-08-14 2020-08-14 034.221.049.175 17 17 2020-08-23 2020-08-23 185.176.027.234 19 17 2020-08-14 2020-08-14 188.122.083.070 18 17 2020-08-27 2020-08-27 103.212.181.085 17 17 2020-08-28 2020-08-28 005.181.151.033 17 17 2020-09-06 2020-09-06 089.248.174.193 33 17 2020-09-08 2020-09-07 123.027.044.118 18 17 2020-08-31 2020-08-31 104.236.115.005 18 17 2020-08-28 2020-08-27 200.233.249.042 17 17 2020-09-02 2020-09-02 089.248.168.157 29 17 2020-08-18 2020-08-17 113.116.060.055 21 17 2020-09-09 2020-09-09 101.108.122.027 17 17 2020-08-31 2020-08-31 184.090.056.206 20 17 2020-08-31 2020-08-31 172.086.115.061 17 17 2020-09-03 2020-09-03 218.060.022.020 6923 17 2020-07-10 2020-08-25 192.099.045.033 25 17 2020-08-26 2020-08-26 058.221.062.093 2088 17 2020-08-12 2020-08-26 222.186.160.004 18 17 2020-09-06 2020-09-05 068.178.213.243 18 17 2020-08-23 2020-08-23 161.035.100.118 22 17 2020-09-04 2020-09-03 185.173.026.195 17 17 2020-08-24 2020-08-24 158.069.005.017 18 17 2020-08-22 2020-08-22 068.183.026.122 18 17 2020-08-24 2020-08-24 054.191.024.250 16 16 2020-08-23 2020-08-23 078.137.116.048 16 16 2020-08-24 2020-08-24 003.101.031.162 16 16 2020-09-04 2020-09-04 073.109.061.031 24 16 2020-08-25 2020-08-25 091.229.112.007 20 16 2020-08-12 2020-08-12 045.014.150.140 16 16 2020-09-06 2020-09-05 045.143.223.176 17 16 2020-08-14 2020-08-14 054.067.117.030 16 16 2020-08-22 2020-08-22 054.218.102.253 16 16 2020-09-06 2020-09-06 001.055.198.082 16 16 2020-08-11 2020-08-11 128.014.141.106 16 16 2020-08-15 2020-08-15 072.092.042.091 39 16 2020-08-27 2020-08-27 109.099.048.168 27 16 2020-09-07 2020-09-07 183.111.148.118 16 16 2020-09-04 2020-09-03 100.001.178.210 16 16 2020-09-07 2020-09-07 003.101.090.117 16 16 2020-09-04 2020-09-04 190.073.126.072 16 16 2020-08-27 2020-08-27 046.098.140.079 18 16 2020-08-29 2020-08-29 045.129.033.084 18 16 2020-09-03 2020-09-03 197.156.068.226 18 16 2020-09-07 2020-09-07 210.245.012.209 16 16 2020-09-03 2020-09-03 103.227.149.105 16 16 2020-08-25 2020-08-25 020.046.145.138 16 16 2020-08-16 2020-08-16 031.013.191.157 16 16 2020-09-02 2020-09-02 156.204.038.103 17 16 2020-08-25 2020-08-25 052.053.190.076 16 16 2020-09-02 2020-09-02 192.223.025.160 16 16 2020-09-08 2020-09-08 046.072.250.037 18 16 2020-08-22 2020-08-22 082.178.116.110 16 16 2020-08-22 2020-08-22 066.117.012.196 17 16 2020-08-28 2020-08-27 168.232.200.083 16 16 2020-08-29 2020-08-29 034.223.242.038 16 16 2020-09-03 2020-09-03 054.189.015.019 16 16 2020-08-19 2020-08-19 005.156.101.022 17 16 2020-08-31 2020-08-31 103.009.159.037 16 16 2020-08-30 2020-08-30 047.254.197.133 16 16 2020-08-22 2020-08-22 199.195.253.109 16 16 2020-08-25 2020-08-25 129.227.129.170 16 16 2020-08-31 2020-08-31 034.212.040.203 16 16 2020-09-02 2020-09-02 208.103.169.097 16 16 2020-09-07 2020-09-07 190.207.071.207 20 16 2020-08-22 2020-08-22 051.036.235.141 19 16 2020-08-25 2020-08-25 047.015.042.111 17 16 2020-08-19 2020-08-19 094.102.050.171 16 16 2020-08-18 2020-08-18 034.219.105.221 16 16 2020-08-21 2020-08-21 002.049.204.151 16 16 2020-08-12 2020-08-12 199.231.233.024 1081 16 2020-08-13 2020-08-13 014.245.129.234 16 16 2020-09-02 2020-09-02 097.074.236.154 16 16 2020-09-05 2020-09-04 034.212.226.222 16 16 2020-09-04 2020-09-04 088.200.137.055 20 16 2020-08-29 2020-08-29 136.024.120.166 19 16 2020-09-02 2020-09-01 183.224.038.056 19 16 2020-08-19 2020-08-18 104.131.079.004 16 16 2020-08-12 2020-08-12 162.244.055.107 17 16 2020-08-12 2020-08-12 013.056.246.153 16 16 2020-08-22 2020-08-22 143.179.122.052 28 16 2020-08-28 2020-08-28 121.122.084.202 18 16 2020-09-05 2020-09-05 190.038.142.157 17 16 2020-08-13 2020-08-13 190.207.086.165 16 16 2020-08-21 2020-08-21 171.235.080.012 64 16 2020-09-02 2020-09-02 182.242.143.038 17 16 2020-08-29 2020-08-28 193.164.149.226 16 16 2020-09-08 2020-09-08 192.035.168.193 57 16 2020-08-19 2020-08-19 109.201.154.164 1127 16 2020-07-23 2020-08-17 147.135.121.229 17 16 2020-09-04 2020-09-04 079.091.122.047 34 16 2020-08-16 2020-08-16 113.162.005.253 17 16 2020-08-26 2020-08-26 115.146.122.207 16 16 2020-08-25 2020-08-25 190.038.019.165 17 16 2020-08-25 2020-08-25 183.129.129.132 16 16 2020-08-27 2020-08-27 095.179.191.217 16 16 2020-08-16 2020-08-16 091.228.154.237 39 16 2020-08-14 2020-08-14 098.248.249.082 28 16 2020-08-18 2020-08-18 072.083.143.204 27 16 2020-09-01 2020-09-01 186.185.021.147 17 16 2020-08-21 2020-08-21 074.091.119.111 16 16 2020-08-11 2020-08-11 186.185.170.005 16 16 2020-08-19 2020-08-19 066.150.188.202 29 16 2020-08-12 2020-08-12 172.104.123.195 16 16 2020-08-16 2020-08-16 192.095.052.031 40 16 2020-08-29 2020-08-29 078.189.186.115 18 16 2020-08-25 2020-08-25 073.187.206.040 22 16 2020-09-01 2020-09-01 122.100.232.067 16 16 2020-08-27 2020-08-27 222.070.232.085 16 16 2020-09-07 2020-09-07 034.221.126.058 16 16 2020-09-02 2020-09-02 192.180.155.042 18 16 2020-08-21 2020-08-21 069.246.110.214 5322 16 2020-08-20 2020-08-20 002.088.060.085 22 16 2020-08-11 2020-08-11 193.029.015.169 25 16 2020-08-21 2020-08-20 085.107.033.251 19 16 2020-08-31 2020-08-31 212.070.149.020 1802420 16 2020-08-17 2020-09-08 212.070.149.052 1749435 16 2020-08-18 2020-09-08 190.201.004.051 17 16 2020-08-18 2020-08-18 037.059.196.138 17 16 2020-08-19 2020-08-18 095.005.170.241 16 16 2020-09-08 2020-09-08 108.234.001.046 16 16 2020-08-23 2020-08-23 164.090.208.135 19 16 2020-08-14 2020-08-13 181.102.132.026 18 16 2020-09-07 2020-09-07 037.187.228.107 16 16 2020-08-28 2020-08-28 159.203.074.227 16 16 2020-08-26 2020-08-25 054.149.243.002 16 16 2020-08-11 2020-08-11 035.160.099.105 27 16 2020-08-15 2020-08-15 176.119.025.134 16 16 2020-08-30 2020-08-30 185.097.112.018 18 16 2020-08-28 2020-08-28 186.088.248.190 17 16 2020-08-28 2020-08-28 159.203.060.236 16 16 2020-09-01 2020-08-31 167.114.000.000 22 16 2020-09-06 2020-09-06 134.122.112.028 16 16 2020-08-22 2020-08-22 201.249.024.124 16 16 2020-09-03 2020-09-03 050.116.037.200 18 16 2020-09-01 2020-09-01 082.029.213.164 21 16 2020-08-31 2020-08-31 104.198.153.090 16 16 2020-08-12 2020-08-12 082.221.105.006 19 16 2020-08-16 2020-08-15 130.211.215.005 16 16 2020-08-15 2020-08-15 149.028.216.049 16 16 2020-08-16 2020-08-16 067.161.161.063 16 16 2020-08-15 2020-08-15 157.245.255.113 16 16 2020-09-01 2020-08-31 078.162.086.090 16 16 2020-08-25 2020-08-25 151.101.038.167 97 16 2020-09-07 2020-09-07 051.178.065.167 2887 16 2020-09-07 2020-09-07 204.011.185.079 16 16 2020-08-22 2020-08-22 035.224.064.044 16 16 2020-08-31 2020-08-31 159.203.242.122 16 16 2020-08-25 2020-08-24 047.101.045.114 18 16 2020-09-08 2020-09-08 054.177.133.123 16 16 2020-08-22 2020-08-22 104.230.234.084 913 16 2020-09-09 2020-09-09 095.070.130.190 17 16 2020-08-13 2020-08-13 123.213.001.217 16 16 2020-08-14 2020-08-14 207.231.234.102 16 16 2020-09-01 2020-09-01 045.061.142.121 105 16 2020-09-01 2020-09-01 209.190.008.066 17 16 2020-08-25 2020-08-25 042.100.179.028 16 16 2020-09-03 2020-09-03 167.172.154.208 19 16 2020-09-05 2020-09-05 005.200.006.154 17 16 2020-09-07 2020-09-07 203.194.105.242 20 16 2020-08-25 2020-08-25 159.203.192.134 16 16 2020-08-20 2020-08-19 050.018.144.232 18 16 2020-08-22 2020-08-22 054.176.150.026 16 16 2020-08-21 2020-08-21 073.037.169.177 16 16 2020-08-29 2020-08-29 128.199.033.067 21 16 2020-09-08 2020-09-07 128.199.134.165 20 16 2020-09-04 2020-09-03 103.237.076.018 2678 16 2020-08-13 2020-08-27 103.129.137.011 207 16 2020-08-24 2020-08-24 119.018.052.235 17 16 2020-09-07 2020-09-06 173.249.024.146 16 16 2020-08-13 2020-08-13 167.099.066.002 21 16 2020-09-02 2020-09-01 068.183.055.223 16 16 2020-09-05 2020-09-04 108.050.175.002 16 16 2020-08-27 2020-08-27 103.047.239.177 17 16 2020-09-01 2020-09-01 185.150.190.191 43 16 2020-08-31 2020-08-31 113.203.233.114 16 16 2020-08-21 2020-08-21 195.146.059.157 17 16 2020-08-19 2020-08-18 190.171.127.001 18 16 2020-08-26 2020-08-26 005.239.141.105 17 16 2020-09-03 2020-09-03 088.241.044.089 20 16 2020-09-03 2020-09-03 176.253.001.223 1229 16 2020-08-30 2020-08-30 201.243.031.159 16 16 2020-08-16 2020-08-16 079.238.097.035 32 16 2020-08-22 2020-08-22 005.206.227.144 16 16 2020-08-16 2020-08-16 153.184.225.031 17 16 2020-08-28 2020-08-28 005.188.159.048 16 16 2020-08-31 2020-08-30 110.167.238.161 17 16 2020-08-14 2020-08-14 193.027.228.233 5055 16 2020-08-17 2020-08-26 149.248.025.178 16 16 2020-08-13 2020-08-13 176.058.121.193 26 16 2020-08-28 2020-08-28 037.244.049.033 101 16 2020-08-11 2020-08-11 186.089.010.045 17 16 2020-09-04 2020-09-04 046.126.087.132 19 16 2020-09-01 2020-09-01 178.079.180.235 16 16 2020-08-28 2020-08-28 131.108.035.237 18 16 2020-08-19 2020-08-19 167.248.133.023 17 16 2020-09-01 2020-08-31 041.139.025.106 88181 15 2020-08-20 2020-09-04 045.247.077.209 17 15 2020-08-11 2020-08-11 167.248.133.036 60 15 2020-09-02 2020-09-02 039.059.012.235 17 15 2020-08-13 2020-08-13 052.018.159.029 15 15 2020-08-26 2020-08-26 003.101.045.247 15 15 2020-08-23 2020-08-23 054.176.023.239 15 15 2020-09-08 2020-09-08 116.030.214.200 22 15 2020-08-11 2020-08-11 079.143.020.130 15 15 2020-08-15 2020-08-15 018.221.243.242 15 15 2020-08-11 2020-08-11 095.217.016.113 15 15 2020-08-22 2020-08-22 035.194.050.221 15 15 2020-09-02 2020-09-02 125.178.227.057 17 15 2020-09-01 2020-08-31 202.158.062.240 17 15 2020-09-06 2020-09-05 177.152.124.023 15 15 2020-08-31 2020-08-30 110.184.010.225 15 15 2020-08-21 2020-08-21 208.115.198.054 22 15 2020-09-04 2020-09-03 094.096.070.168 17 15 2020-08-11 2020-08-11 188.122.075.154 56 15 2020-08-13 2020-08-13 124.123.171.193 15 15 2020-08-14 2020-08-14 173.231.063.098 100 15 2020-09-02 2020-09-02 062.210.006.093 22 15 2020-08-26 2020-08-26 193.007.200.101 16 15 2020-08-18 2020-08-18 201.041.072.245 15 15 2020-08-31 2020-08-31 159.065.227.106 15 15 2020-08-21 2020-08-21 188.190.199.187 15 15 2020-08-20 2020-08-20 187.176.185.065 18 15 2020-08-30 2020-08-29 193.025.253.105 46 15 2020-08-31 2020-08-31 091.229.112.018 15 15 2020-08-27 2020-08-27 185.179.202.071 101 15 2020-08-30 2020-08-30 139.099.209.229 133 15 2020-09-07 2020-09-07 003.101.062.128 15 15 2020-08-22 2020-08-22 003.101.082.196 16 15 2020-08-22 2020-08-22 139.099.210.164 160 15 2020-09-07 2020-09-07 186.185.121.110 15 15 2020-08-23 2020-08-23 041.040.043.003 15 15 2020-08-21 2020-08-21 109.230.203.051 18 15 2020-08-11 2020-08-11 181.115.240.026 16 15 2020-08-17 2020-08-17 173.237.041.196 25 15 2020-08-28 2020-08-28 052.053.129.122 16 15 2020-08-21 2020-08-21 185.192.070.010 15 15 2020-09-03 2020-09-03 013.057.177.246 15 15 2020-08-21 2020-08-21 162.213.253.056 16 15 2020-08-11 2020-08-11 182.070.043.146 15 15 2020-08-20 2020-08-20 013.057.216.070 15 15 2020-08-22 2020-08-22 170.110.225.196 15 15 2020-09-06 2020-09-06 201.211.021.253 18 15 2020-08-20 2020-08-20 003.101.088.122 15 15 2020-09-04 2020-09-04 003.101.073.050 15 15 2020-08-19 2020-08-19 162.142.125.036 60 15 2020-09-02 2020-09-02 046.223.161.130 15 15 2020-08-24 2020-08-24 187.189.028.089 16 15 2020-08-20 2020-08-20 165.232.069.128 16 15 2020-08-24 2020-08-24 167.099.185.216 15 15 2020-08-31 2020-08-30 065.184.019.142 58 15 2020-08-28 2020-08-28 149.056.028.009 16 15 2020-08-28 2020-08-28 138.068.040.092 16 15 2020-08-13 2020-08-12 045.155.205.153 34 15 2020-09-05 2020-09-05 052.038.163.020 15 15 2020-09-02 2020-09-02 013.056.019.081 16 15 2020-08-21 2020-08-21 073.106.078.172 18 15 2020-08-27 2020-08-27 042.073.104.232 17 15 2020-08-24 2020-08-24 106.013.134.142 15 15 2020-09-02 2020-09-01 180.180.000.114 15 15 2020-08-13 2020-08-13 092.118.160.033 27 15 2020-09-09 2020-09-08 039.099.131.003 122 15 2020-08-13 2020-08-13 185.137.234.021 35 15 2020-08-16 2020-08-16 071.006.158.166 16 15 2020-08-21 2020-08-20 112.196.016.026 8936 15 2020-08-09 2020-08-29 082.202.197.233 15 15 2020-09-08 2020-09-08 116.102.251.215 15 15 2020-08-12 2020-08-12 208.043.250.018 15 15 2020-08-27 2020-08-27 091.151.145.244 46 15 2020-09-07 2020-09-07 054.189.028.055 15 15 2020-08-23 2020-08-23 065.254.195.176 17 15 2020-08-16 2020-08-16 052.041.072.108 15 15 2020-08-11 2020-08-11 142.093.151.003 15 15 2020-09-05 2020-09-04 113.053.231.050 17 15 2020-08-24 2020-08-24 093.140.036.223 534 15 2020-08-13 2020-08-13 045.013.058.120 63 15 2020-08-14 2020-08-14 174.237.004.045 49 15 2020-08-28 2020-08-28 036.026.105.187 16 15 2020-08-29 2020-08-29 113.053.198.190 15 15 2020-09-03 2020-09-03 001.180.156.233 147 15 2020-09-07 2020-09-07 138.068.095.204 15 15 2020-08-26 2020-08-25 050.197.122.001 15 15 2020-08-27 2020-08-27 054.177.229.192 15 15 2020-09-02 2020-09-02 197.045.204.188 20 15 2020-09-06 2020-09-06 041.042.083.000 15 15 2020-08-17 2020-08-17 185.132.053.052 15 15 2020-08-25 2020-08-24 067.087.071.250 348 15 2020-09-02 2020-09-02 167.071.097.096 16 15 2020-09-07 2020-09-07 045.236.072.243 15 15 2020-08-13 2020-08-13 052.025.171.097 16 15 2020-08-23 2020-08-23 013.056.253.080 15 15 2020-08-21 2020-08-21 199.195.250.054 15 15 2020-08-25 2020-08-25 222.186.180.130 23 15 2020-08-27 2020-08-27 005.178.064.087 19 15 2020-09-06 2020-09-06 054.176.201.016 15 15 2020-08-22 2020-08-22 013.057.006.089 15 15 2020-08-22 2020-08-22 103.091.183.194 15 15 2020-08-12 2020-08-12 199.230.104.062 15 15 2020-09-03 2020-09-03 074.091.117.003 745 15 2020-08-13 2020-08-13 095.211.179.040 15 15 2020-08-13 2020-08-13 207.244.246.166 24 15 2020-09-04 2020-09-04 002.020.039.100 139 15 2020-08-21 2020-08-21 103.224.152.146 15 15 2020-08-29 2020-08-29 118.099.118.057 17 15 2020-09-09 2020-09-09 185.056.080.051 67 15 2020-08-27 2020-08-26 103.079.141.136 15 15 2020-08-24 2020-08-24 165.232.079.149 111 15 2020-08-27 2020-08-27 085.209.000.100 47 15 2020-09-04 2020-09-03 103.079.141.108 15 15 2020-08-30 2020-08-30 046.141.060.166 10964 15 2020-08-03 2020-09-01 035.165.000.002 15 15 2020-08-11 2020-08-11 137.074.066.082 30 15 2020-08-17 2020-08-16 013.056.161.253 15 15 2020-09-02 2020-09-02 044.234.096.043 38 15 2020-08-26 2020-08-26 036.076.244.083 18 15 2020-09-09 2020-09-09 035.167.091.037 15 15 2020-08-22 2020-08-22 013.057.026.019 15 15 2020-09-03 2020-09-03 037.049.224.134 23 15 2020-08-12 2020-08-12 165.022.120.080 29 15 2020-09-01 2020-08-31 139.219.002.011 29 15 2020-08-25 2020-08-25 185.016.205.003 15 15 2020-08-21 2020-08-21 190.108.040.203 15 15 2020-09-07 2020-09-07 189.040.082.086 20 15 2020-09-07 2020-09-07 141.098.081.154 17 15 2020-08-28 2020-08-28 110.136.219.081 16 15 2020-09-04 2020-09-04 185.011.125.116 28 15 2020-08-25 2020-08-25 103.145.013.163 15 15 2020-08-23 2020-08-23 051.089.203.111 51 15 2020-09-04 2020-09-04 180.252.071.088 16 15 2020-09-01 2020-09-01 189.202.078.021 19 15 2020-08-14 2020-08-14 045.082.254.066 15 15 2020-08-31 2020-08-31 152.253.255.150 30 15 2020-09-01 2020-09-01 201.248.197.050 15 15 2020-08-20 2020-08-20 116.202.172.226 25 15 2020-08-29 2020-08-29 034.220.249.017 24 15 2020-09-02 2020-09-02 005.254.116.056 17 15 2020-08-21 2020-08-21 200.053.206.160 16 15 2020-08-23 2020-08-23 104.248.080.221 15 15 2020-08-16 2020-08-15 208.167.228.148 15 15 2020-09-03 2020-09-03 173.021.028.018 17 15 2020-09-07 2020-09-07 132.232.040.082 2546 15 2020-07-27 2020-08-22 200.220.202.013 15 15 2020-08-26 2020-08-26 122.179.147.239 16 15 2020-08-13 2020-08-13 034.219.026.027 15 15 2020-09-04 2020-09-04 163.172.237.023 17 15 2020-09-05 2020-09-05 087.121.082.044 15 15 2020-09-02 2020-09-02 037.041.015.163 17 15 2020-08-13 2020-08-13 034.212.243.156 15 15 2020-08-23 2020-08-23 047.057.181.013 18 15 2020-09-08 2020-09-07 194.026.027.152 20 15 2020-09-03 2020-09-03 140.213.153.131 15 15 2020-08-28 2020-08-28 046.252.230.147 16 15 2020-09-06 2020-09-06 103.207.036.192 15 15 2020-08-16 2020-08-16 074.120.014.017 16 15 2020-09-01 2020-09-01 027.072.097.144 15 15 2020-08-11 2020-08-11 042.201.241.085 15 15 2020-08-31 2020-08-31 091.121.146.198 15 15 2020-08-17 2020-08-17 104.233.216.193 15 15 2020-09-03 2020-09-03 037.255.235.003 15 15 2020-09-07 2020-09-07 190.079.075.170 17 15 2020-08-27 2020-08-27 192.035.169.039 19 15 2020-09-07 2020-09-06 134.122.053.154 16 15 2020-09-04 2020-09-03 148.072.158.192 20 15 2020-09-01 2020-09-01 178.204.250.004 15 15 2020-09-03 2020-09-03 063.143.086.253 15 15 2020-08-19 2020-08-19 142.093.238.233 15 15 2020-09-05 2020-09-04 089.111.189.058 15 15 2020-09-03 2020-09-03 190.124.029.062 17 15 2020-08-30 2020-08-30 066.176.140.133 20 15 2020-08-15 2020-08-15 107.170.204.148 17 15 2020-08-25 2020-08-24 047.193.021.117 15 15 2020-09-08 2020-09-08 159.203.030.050 15 15 2020-09-04 2020-09-03 134.122.087.188 73 15 2020-08-23 2020-08-23 018.144.032.195 15 15 2020-08-21 2020-08-21 150.107.149.011 15 15 2020-09-05 2020-09-04 186.108.167.177 15 15 2020-09-02 2020-09-02 060.176.105.045 15 15 2020-08-20 2020-08-20 034.223.250.249 15 15 2020-08-23 2020-08-23 125.064.094.136 21 15 2020-09-09 2020-09-09 190.072.033.045 15 15 2020-08-25 2020-08-25 122.185.019.234 16 15 2020-09-05 2020-09-05 180.251.177.124 15 15 2020-08-21 2020-08-21 157.245.142.218 15 15 2020-08-20 2020-08-19 054.215.214.019 15 15 2020-08-22 2020-08-22 051.222.058.001 19 15 2020-08-17 2020-08-17 003.101.113.104 15 15 2020-08-21 2020-08-21 045.041.136.038 55 15 2020-08-27 2020-08-27 052.053.189.193 15 15 2020-09-08 2020-09-08 088.218.017.114 16 15 2020-08-25 2020-08-25 115.075.157.237 18 15 2020-09-08 2020-09-08 164.132.145.070 20 15 2020-09-05 2020-09-04 005.104.078.002 15 15 2020-09-07 2020-09-07 034.222.067.131 15 15 2020-09-06 2020-09-06 052.053.187.206 15 15 2020-09-02 2020-09-02 074.091.124.191 15 15 2020-09-08 2020-09-08 018.144.020.044 15 15 2020-08-22 2020-08-22 180.214.239.135 15 15 2020-08-26 2020-08-25 185.039.010.083 235 15 2020-08-20 2020-08-20 193.176.087.234 15 15 2020-09-02 2020-09-02 113.175.125.108 16 15 2020-08-18 2020-08-18 034.096.128.108 15 15 2020-08-19 2020-08-19 192.095.069.053 15 15 2020-08-24 2020-08-24 164.132.201.036 15 15 2020-09-06 2020-09-05 099.007.072.037 14 14 2020-09-01 2020-09-01 054.190.014.017 14 14 2020-08-22 2020-08-22 165.232.120.245 23 14 2020-08-26 2020-08-26 054.067.093.096 14 14 2020-08-23 2020-08-23 196.052.043.065 18 14 2020-08-19 2020-08-18 084.237.204.040 18 14 2020-08-16 2020-08-16 167.099.170.083 14 14 2020-08-27 2020-08-26 034.092.001.019 16 14 2020-08-27 2020-08-27 142.004.208.058 14 14 2020-08-31 2020-08-31 120.133.001.016 18 14 2020-08-20 2020-08-19 159.065.131.092 14 14 2020-08-29 2020-08-28 157.245.208.070 14 14 2020-09-07 2020-09-07 142.093.069.019 14 14 2020-09-03 2020-09-03 124.239.176.178 23 14 2020-08-19 2020-08-19 050.116.038.101 14 14 2020-08-30 2020-08-30 024.211.191.084 15 14 2020-09-07 2020-09-07 185.192.070.206 42 14 2020-08-29 2020-08-29 068.183.203.030 18 14 2020-08-16 2020-08-15 008.006.112.193 14 14 2020-08-28 2020-08-28 008.020.122.075 82 14 2020-09-02 2020-09-02 080.053.242.235 14 14 2020-08-29 2020-08-29 194.026.027.138 107 14 2020-09-03 2020-09-03 054.191.109.076 14 14 2020-08-21 2020-08-21 054.184.173.138 14 14 2020-09-08 2020-09-08 190.079.003.120 15 14 2020-08-16 2020-08-16 144.172.066.110 47 14 2020-08-20 2020-08-20 083.097.020.082 14 14 2020-09-01 2020-09-01 074.125.250.071 1209 14 2020-08-12 2020-08-12 085.190.158.039 14 14 2020-08-22 2020-08-22 024.077.019.029 17 14 2020-08-26 2020-08-26 157.245.010.196 15 14 2020-08-15 2020-08-14 192.180.100.124 1265 14 2020-09-03 2020-09-03 002.114.133.230 16 14 2020-08-17 2020-08-17 114.067.101.037 1174 14 2020-08-03 2020-08-30 032.213.062.217 16 14 2020-08-19 2020-08-19 087.115.042.223 14 14 2020-09-08 2020-09-08 185.202.000.106 15 14 2020-09-02 2020-09-02 108.247.068.219 14 14 2020-09-09 2020-09-09 045.089.141.106 15 14 2020-08-14 2020-08-14 054.190.098.231 14 14 2020-08-23 2020-08-23 209.141.045.135 14 14 2020-08-28 2020-08-28 074.125.250.078 15 14 2020-08-21 2020-08-21 051.081.088.075 14 14 2020-08-15 2020-08-15 192.035.168.128 14 14 2020-09-02 2020-09-02 043.254.216.102 14 14 2020-08-19 2020-08-19 111.161.041.086 2588 14 2020-08-08 2020-08-11 167.160.090.090 14 14 2020-09-03 2020-09-03 212.095.005.233 67 14 2020-08-29 2020-08-29 181.016.121.097 14 14 2020-08-26 2020-08-26 142.093.130.058 14 14 2020-08-14 2020-08-13 035.224.100.159 16 14 2020-08-21 2020-08-21 134.209.195.235 15 14 2020-08-23 2020-08-23 218.081.019.248 19 14 2020-08-31 2020-08-31 051.136.161.217 26 14 2020-09-04 2020-09-04 158.069.226.175 16 14 2020-08-19 2020-08-18 095.111.252.077 14 14 2020-08-15 2020-08-15 002.088.007.104 15 14 2020-09-04 2020-09-04 157.230.063.039 18 14 2020-09-05 2020-09-04 144.217.010.086 14 14 2020-08-29 2020-08-29 091.092.182.039 14 14 2020-08-31 2020-08-31 186.095.229.150 14 14 2020-08-20 2020-08-20 106.207.015.229 14 14 2020-08-29 2020-08-29 008.210.115.175 17 14 2020-08-17 2020-08-17 060.083.092.131 15 14 2020-08-15 2020-08-15 100.004.078.056 14 14 2020-08-25 2020-08-25 037.049.224.041 19 14 2020-08-24 2020-08-24 052.041.154.196 14 14 2020-08-19 2020-08-19 149.255.062.030 1765 14 2020-08-18 2020-08-19 134.035.056.122 15 14 2020-08-31 2020-08-31 062.162.077.057 14 14 2020-08-21 2020-08-21 035.142.197.099 108 14 2020-08-18 2020-08-18 109.040.003.008 14 14 2020-08-13 2020-08-13 073.136.142.075 14 14 2020-08-27 2020-08-27 024.095.073.028 19 14 2020-08-14 2020-08-14 134.017.186.221 16 14 2020-08-13 2020-08-13 185.156.073.041 14 14 2020-08-12 2020-08-12 045.145.066.090 16 14 2020-08-25 2020-08-24 061.177.172.158 85798 14 2020-07-13 2020-08-25 222.252.108.255 14 14 2020-09-03 2020-09-03 054.149.026.012 14 14 2020-09-02 2020-09-02 198.199.072.047 14 14 2020-08-19 2020-08-18 188.122.075.170 14 14 2020-08-27 2020-08-27 166.170.027.236 36 14 2020-08-30 2020-08-30 163.172.212.138 14 14 2020-09-05 2020-09-04 140.206.223.015 15 14 2020-08-30 2020-08-30 162.062.065.041 45 14 2020-08-26 2020-08-26 097.119.120.042 17 14 2020-09-08 2020-09-08 189.216.167.117 14 14 2020-09-05 2020-09-05 045.153.203.132 14 14 2020-08-14 2020-08-13 185.074.005.227 16 14 2020-08-13 2020-08-13 058.228.159.253 15 14 2020-08-18 2020-08-17 039.053.092.120 14 14 2020-08-16 2020-08-16 110.167.238.184 16 14 2020-08-14 2020-08-14 200.187.183.184 14 14 2020-08-25 2020-08-25 054.176.134.151 14 14 2020-08-22 2020-08-22 099.179.063.071 24 14 2020-08-17 2020-08-17 074.122.190.086 108 14 2020-08-24 2020-08-24 054.176.088.195 14 14 2020-08-21 2020-08-21 045.145.185.187 14 14 2020-08-12 2020-08-12 067.212.177.132 14 14 2020-08-27 2020-08-26 051.091.212.081 137 14 2020-08-15 2020-08-15 200.044.247.118 19 14 2020-08-20 2020-08-20 018.144.075.121 14 14 2020-09-06 2020-09-06 090.212.109.092 16 14 2020-09-03 2020-09-03 167.248.133.018 15 14 2020-09-01 2020-08-31 139.099.061.050 15 14 2020-08-21 2020-08-21 034.219.101.001 15 14 2020-09-04 2020-09-04 128.199.110.226 14 14 2020-08-20 2020-08-19 088.226.182.080 14 14 2020-08-19 2020-08-19 118.172.130.232 14 14 2020-08-26 2020-08-26 061.003.230.141 14 14 2020-08-26 2020-08-26 054.168.168.148 14 14 2020-08-31 2020-08-31 129.204.203.218 15 14 2020-08-19 2020-08-18 174.026.242.142 14 14 2020-09-07 2020-09-07 167.172.231.211 14 14 2020-09-05 2020-09-04 035.165.070.090 14 14 2020-09-08 2020-09-08 073.095.104.241 16 14 2020-08-23 2020-08-23 074.091.119.199 14 14 2020-08-13 2020-08-13 078.190.071.195 16 14 2020-09-08 2020-09-08 098.166.033.137 62 14 2020-09-06 2020-09-06 047.240.082.159 14 14 2020-08-16 2020-08-15 095.156.238.010 41 14 2020-09-08 2020-09-08 103.211.240.030 1860 14 2020-08-19 2020-08-19 085.119.149.019 23 14 2020-08-13 2020-08-13 135.181.087.075 14 14 2020-09-08 2020-09-08 190.077.175.141 15 14 2020-08-29 2020-08-29 212.031.129.018 7784 14 2020-08-22 2020-08-22 037.187.146.116 14 14 2020-08-17 2020-08-17 093.081.222.223 15 14 2020-08-19 2020-08-19 172.093.004.078 18 14 2020-08-14 2020-08-13 189.202.188.068 14 14 2020-08-23 2020-08-23 174.138.064.163 14 14 2020-08-15 2020-08-14 161.035.093.090 14 14 2020-08-14 2020-08-14 136.243.007.088 15 14 2020-08-30 2020-08-30 071.059.125.060 43 14 2020-09-08 2020-09-08 157.033.230.000 14 14 2020-08-28 2020-08-28 193.025.253.078 14 14 2020-08-27 2020-08-27 129.211.176.187 1495 14 2020-08-25 2020-08-26 034.221.067.045 14 14 2020-08-21 2020-08-21 193.194.074.016 14 14 2020-09-07 2020-09-07 178.172.147.254 16 14 2020-08-13 2020-08-13 091.229.112.008 18 14 2020-08-12 2020-08-12 003.101.074.246 14 14 2020-09-02 2020-09-02 103.010.023.007 14 14 2020-08-28 2020-08-28 184.095.034.146 14 14 2020-09-08 2020-09-08 202.152.015.012 17 14 2020-08-14 2020-08-13 034.222.165.163 14 14 2020-09-06 2020-09-06 202.151.229.004 16 14 2020-08-12 2020-08-12 138.197.170.170 14 14 2020-08-24 2020-08-24 121.099.048.240 23 14 2020-08-25 2020-08-25 181.094.178.016 32 14 2020-09-03 2020-09-03 005.188.086.219 168 14 2020-09-08 2020-09-07 052.053.130.013 14 14 2020-08-22 2020-08-22 054.215.030.140 14 14 2020-09-02 2020-09-02 045.079.203.207 14 14 2020-08-30 2020-08-30 052.053.130.201 14 14 2020-09-09 2020-09-09 110.144.180.202 22 14 2020-09-07 2020-09-07 031.207.224.231 14 14 2020-08-29 2020-08-29 192.035.169.112 43 14 2020-09-03 2020-09-03 054.219.144.130 14 14 2020-09-06 2020-09-06 193.070.006.235 493 14 2020-08-22 2020-08-22 031.176.188.163 15 14 2020-09-05 2020-09-05 085.013.252.067 24 14 2020-08-27 2020-08-27 046.101.210.156 14 14 2020-09-05 2020-09-04 162.248.094.209 500 14 2020-09-01 2020-09-01 051.075.242.129 14 14 2020-08-19 2020-08-18 161.097.073.251 14 14 2020-09-05 2020-09-05 034.221.131.171 14 14 2020-08-23 2020-08-23 172.105.191.158 16 14 2020-08-16 2020-08-16 162.253.071.039 25 14 2020-08-19 2020-08-19 103.133.110.047 14 14 2020-09-02 2020-09-02 013.057.230.073 14 14 2020-08-11 2020-08-11 138.197.175.236 14 14 2020-08-27 2020-08-26 003.101.045.190 14 14 2020-08-19 2020-08-19 003.101.104.119 14 14 2020-08-23 2020-08-23 051.195.182.244 31 14 2020-08-20 2020-08-20 041.040.045.135 15 14 2020-08-21 2020-08-21 147.135.105.025 14 14 2020-08-15 2020-08-15 067.205.180.070 14 14 2020-08-24 2020-08-23 013.056.159.221 14 14 2020-08-19 2020-08-19 094.102.052.057 48327 14 2020-08-25 2020-09-04 192.035.169.047 22 14 2020-09-08 2020-09-07 150.185.008.115 14 14 2020-09-06 2020-09-05 193.122.219.082 27 14 2020-09-08 2020-09-08 186.093.174.002 16 14 2020-08-25 2020-08-25 084.242.176.138 14 14 2020-08-19 2020-08-18 171.227.209.013 149 14 2020-08-12 2020-08-12 213.049.082.246 14 14 2020-08-25 2020-08-25 116.101.210.056 14 14 2020-08-31 2020-08-31 188.122.086.056 19 14 2020-08-30 2020-08-30 167.071.145.201 14 14 2020-09-02 2020-09-01 054.039.084.058 123 14 2020-08-25 2020-08-25 108.004.135.079 1261 14 2020-08-11 2020-08-11 013.056.157.011 14 14 2020-08-11 2020-08-11 117.001.126.234 17 14 2020-08-18 2020-08-18 034.080.238.014 14 14 2020-08-11 2020-08-11 126.115.025.064 14 14 2020-08-26 2020-08-26 159.203.102.122 17 14 2020-08-28 2020-08-27 045.094.255.218 14 14 2020-08-13 2020-08-13 074.120.014.021 14 14 2020-09-01 2020-08-31 031.214.160.216 14 14 2020-08-23 2020-08-23 041.207.188.106 16 14 2020-08-28 2020-08-28 054.193.237.139 15 14 2020-09-02 2020-09-02 051.081.073.124 77 14 2020-09-07 2020-09-07 013.056.115.156 14 14 2020-09-02 2020-09-02 206.189.022.230 14 14 2020-09-07 2020-09-06 134.255.233.113 58 14 2020-08-11 2020-08-11 209.050.048.060 168 14 2020-09-02 2020-09-02 014.168.178.132 16 14 2020-08-20 2020-08-20 050.115.242.047 429 14 2020-09-08 2020-09-08 035.194.191.210 14 14 2020-08-19 2020-08-19 072.076.178.044 699 14 2020-09-02 2020-09-02 138.197.222.141 14 14 2020-08-23 2020-08-22 047.204.034.040 14 14 2020-08-27 2020-08-27 045.142.120.089 331102 14 2020-08-28 2020-09-07 167.248.133.027 14 14 2020-09-01 2020-08-31 061.174.060.170 17 14 2020-09-06 2020-09-05 045.142.120.061 333467 14 2020-08-27 2020-09-07 045.142.120.053 335893 14 2020-08-26 2020-09-07 070.044.129.168 22 14 2020-08-25 2020-08-25 045.142.120.036 306442 14 2020-08-29 2020-09-07 103.090.225.043 14 14 2020-08-20 2020-08-20 190.072.227.017 14 14 2020-08-14 2020-08-14 129.146.079.114 14 14 2020-08-13 2020-08-13 085.073.037.079 32 14 2020-08-23 2020-08-23 195.054.161.059 19 14 2020-09-05 2020-09-04 165.022.233.113 14 14 2020-08-24 2020-08-24 054.037.245.038 14 14 2020-09-01 2020-09-01 103.145.013.099 14 14 2020-08-18 2020-08-18 003.225.098.047 97 14 2020-08-23 2020-08-23 045.142.120.179 320680 14 2020-08-26 2020-09-07 223.206.226.182 14 14 2020-08-20 2020-08-20 045.142.120.183 316458 14 2020-08-28 2020-09-07 045.142.120.209 305736 14 2020-08-27 2020-09-07 045.142.120.166 326142 14 2020-08-26 2020-09-07 167.248.133.029 14 14 2020-09-01 2020-08-31 167.248.133.030 15 14 2020-09-01 2020-09-01 045.142.120.137 273909 14 2020-08-27 2020-09-07 190.205.085.250 15 14 2020-08-13 2020-08-13 062.201.240.145 14 14 2020-08-31 2020-08-31 045.142.120.093 336912 14 2020-08-26 2020-09-07 045.142.120.147 294270 14 2020-08-29 2020-09-07 071.150.157.057 14 14 2020-08-14 2020-08-14 045.142.120.192 252513 14 2020-08-31 2020-09-07 121.089.177.074 19 13 2020-08-22 2020-08-22 078.001.237.013 14 13 2020-08-17 2020-08-17 052.032.124.142 13 13 2020-08-23 2020-08-23 174.138.036.162 13 13 2020-08-12 2020-08-11 213.163.093.061 13 13 2020-08-12 2020-08-12 138.197.089.212 18 13 2020-09-01 2020-08-31 111.202.085.037 18 13 2020-08-24 2020-08-24 085.209.048.035 13 13 2020-09-02 2020-09-02 178.128.226.002 13 13 2020-08-14 2020-08-13 001.165.138.068 13 13 2020-08-15 2020-08-15 170.033.012.111 281 13 2020-08-16 2020-08-16 159.203.025.076 14 13 2020-09-09 2020-09-08 145.014.145.230 13 13 2020-09-03 2020-09-03 167.248.133.033 49 13 2020-09-01 2020-09-01 165.022.102.042 14 13 2020-08-25 2020-08-25 073.252.072.241 1173 13 2020-08-17 2020-08-17 178.033.043.199 452 13 2020-09-04 2020-09-04 142.044.142.145 16 13 2020-08-17 2020-08-17 198.098.061.139 27 13 2020-08-22 2020-08-21 081.174.148.033 232127 13 2020-08-22 2020-09-08 165.022.088.129 13 13 2020-09-05 2020-09-04 098.159.110.246 38 13 2020-09-09 2020-09-09 092.016.069.250 14 13 2020-09-07 2020-09-07 091.077.144.041 19 13 2020-08-25 2020-08-25 174.131.166.103 13 13 2020-08-28 2020-08-28 162.214.097.024 13 13 2020-08-19 2020-08-18 183.082.003.056 13 13 2020-08-28 2020-08-28 185.039.010.084 114 13 2020-08-20 2020-08-20 067.149.045.250 1190 13 2020-09-08 2020-09-08 081.176.176.134 13 13 2020-08-16 2020-08-16 156.202.144.006 13 13 2020-08-27 2020-08-27 142.044.219.231 123 13 2020-09-02 2020-09-02 222.186.051.060 15 13 2020-09-07 2020-09-07 178.062.099.047 13 13 2020-08-19 2020-08-18 054.176.211.021 13 13 2020-08-20 2020-08-20 159.089.090.241 58 13 2020-08-30 2020-08-30 098.122.176.063 421 13 2020-09-01 2020-09-01 075.004.185.243 14 13 2020-08-24 2020-08-24 035.225.146.248 13 13 2020-09-06 2020-09-05 138.185.154.001 991 13 2020-08-17 2020-08-17 092.047.196.190 15 13 2020-08-21 2020-08-21 091.189.243.075 14 13 2020-08-24 2020-08-24 073.237.218.144 24 13 2020-08-22 2020-08-22 198.136.063.029 13 13 2020-08-19 2020-08-18 104.248.016.041 14 13 2020-08-24 2020-08-23 212.216.137.185 42 13 2020-08-18 2020-08-18 085.209.000.157 30 13 2020-09-04 2020-09-03 165.022.103.237 16 13 2020-08-19 2020-08-18 059.091.104.080 15 13 2020-08-22 2020-08-22 031.215.250.201 26 13 2020-08-21 2020-08-21 165.022.156.021 13 13 2020-08-20 2020-08-20 103.249.070.020 17 13 2020-08-14 2020-08-14 035.204.084.011 13 13 2020-08-15 2020-08-15 075.015.254.235 686 13 2020-09-05 2020-09-05 138.128.141.126 41 13 2020-09-07 2020-09-07 103.145.013.159 13 13 2020-09-02 2020-09-02 167.172.033.016 13 13 2020-09-03 2020-09-03 165.022.215.089 13 13 2020-08-21 2020-08-21 054.190.016.003 13 13 2020-09-06 2020-09-06 165.232.118.244 215 13 2020-08-31 2020-08-31 104.024.109.015 25 13 2020-08-14 2020-08-14 093.035.222.175 13 13 2020-09-03 2020-09-03 034.209.066.246 14 13 2020-08-18 2020-08-18 034.210.181.170 13 13 2020-08-22 2020-08-22 013.056.160.026 13 13 2020-08-23 2020-08-23 054.039.022.195 33 13 2020-08-13 2020-08-13 064.225.092.157 17 13 2020-09-02 2020-09-02 034.211.068.065 14 13 2020-08-23 2020-08-23 212.021.151.133 66 13 2020-08-16 2020-08-16 216.046.096.143 13 13 2020-09-01 2020-09-01 034.211.198.200 13 13 2020-08-21 2020-08-21 062.212.072.104 28 13 2020-09-03 2020-09-03 075.097.068.077 1644 13 2020-09-09 2020-09-09 212.022.093.055 104 13 2020-08-15 2020-08-15 104.131.100.187 13 13 2020-08-21 2020-08-21 013.056.224.137 13 13 2020-08-22 2020-08-22 064.227.009.031 13 13 2020-08-13 2020-08-13 118.099.118.095 14 13 2020-09-09 2020-09-09 163.172.039.097 13 13 2020-08-11 2020-08-11 122.109.111.226 25 13 2020-09-08 2020-09-08 118.025.124.074 13 13 2020-08-14 2020-08-14 054.067.058.006 13 13 2020-08-23 2020-08-23 054.190.105.241 13 13 2020-08-22 2020-08-22 200.044.082.231 13 13 2020-08-13 2020-08-13 095.071.249.135 13 13 2020-08-30 2020-08-30 031.016.253.232 104 13 2020-09-04 2020-09-04 134.255.141.008 16 13 2020-09-04 2020-09-04 174.232.003.009 15 13 2020-08-27 2020-08-27 054.193.009.020 13 13 2020-08-11 2020-08-11 163.172.040.236 25 13 2020-09-05 2020-09-04 064.227.058.141 13 13 2020-08-20 2020-08-20 165.232.120.230 21 13 2020-08-26 2020-08-26 073.073.011.070 75 13 2020-09-01 2020-09-01 143.110.140.172 25 13 2020-09-04 2020-09-04 046.151.211.066 13 13 2020-08-30 2020-08-30 211.099.096.021 13 13 2020-09-07 2020-09-07 183.134.061.009 26 13 2020-08-29 2020-08-29 144.000.001.057 13 13 2020-08-17 2020-08-17 073.023.226.044 28 13 2020-08-27 2020-08-27 054.219.143.193 13 13 2020-08-22 2020-08-22 013.057.190.115 13 13 2020-08-23 2020-08-23 014.166.233.239 13 13 2020-08-27 2020-08-27 073.017.236.230 42 13 2020-09-04 2020-09-04 103.133.109.199 13 13 2020-08-28 2020-08-28 034.221.193.159 13 13 2020-08-19 2020-08-19 103.214.004.195 14 13 2020-08-17 2020-08-17 161.035.233.187 20 13 2020-08-15 2020-08-14 052.053.126.213 13 13 2020-08-23 2020-08-23 174.052.208.161 14 13 2020-09-03 2020-09-03 054.215.216.255 13 13 2020-09-08 2020-09-08 052.053.173.166 13 13 2020-08-23 2020-08-23 177.023.150.066 14 13 2020-09-03 2020-09-03 163.024.162.003 13 13 2020-08-30 2020-08-30 054.213.103.162 13 13 2020-08-22 2020-08-22 106.012.008.125 13 13 2020-09-05 2020-09-04 085.090.052.069 28 13 2020-08-22 2020-08-22 075.108.123.155 13 13 2020-08-31 2020-08-31 034.221.054.243 13 13 2020-08-21 2020-08-20 066.090.149.243 13 13 2020-08-17 2020-08-17 139.059.058.115 13 13 2020-08-24 2020-08-23 066.172.011.157 13 13 2020-08-19 2020-08-19 135.181.064.020 19 13 2020-09-03 2020-09-03 139.059.083.179 13 13 2020-08-26 2020-08-25 139.059.116.115 16 13 2020-08-25 2020-08-24 078.134.090.173 14 13 2020-09-06 2020-09-06 002.050.016.232 13 13 2020-08-26 2020-08-26 213.217.000.184 7878 13 2020-07-25 2020-08-14 054.202.060.098 13 13 2020-08-22 2020-08-22 222.219.154.183 16 13 2020-08-17 2020-08-17 178.062.199.042 22 13 2020-08-13 2020-08-13 013.057.014.191 13 13 2020-09-09 2020-09-09 046.071.208.134 14 13 2020-08-18 2020-08-18 199.231.233.026 14 13 2020-08-23 2020-08-23 034.220.192.041 13 13 2020-08-22 2020-08-22 034.220.198.060 13 13 2020-08-21 2020-08-21 034.220.240.227 13 13 2020-08-21 2020-08-21 031.027.237.222 13 13 2020-08-13 2020-08-13 171.254.230.087 17 13 2020-08-19 2020-08-19 164.090.191.109 65 13 2020-08-29 2020-08-29 054.185.075.156 13 13 2020-08-23 2020-08-23 052.039.035.101 13 13 2020-08-21 2020-08-21 054.185.123.049 13 13 2020-08-11 2020-08-11 123.059.120.184 13 13 2020-08-12 2020-08-11 052.039.048.119 13 13 2020-09-08 2020-09-08 034.092.157.198 23 13 2020-08-28 2020-08-28 134.209.024.061 13 13 2020-09-04 2020-09-03 073.162.140.153 45 13 2020-09-07 2020-09-07 074.122.189.137 13 13 2020-08-24 2020-08-24 091.216.091.119 114 13 2020-09-02 2020-09-01 041.176.150.013 14 13 2020-08-21 2020-08-21 054.186.007.246 13 13 2020-08-19 2020-08-19 095.135.201.192 14 13 2020-09-06 2020-09-06 041.176.150.016 13 13 2020-08-21 2020-08-21 165.232.070.179 14 13 2020-08-24 2020-08-24 162.234.174.128 1665 13 2020-08-15 2020-08-15 054.245.057.024 13 13 2020-08-21 2020-08-21 176.205.252.047 118 13 2020-08-17 2020-08-17 098.186.242.183 45 13 2020-08-22 2020-08-22 085.093.020.148 16 13 2020-09-09 2020-09-08 085.209.000.103 64 13 2020-09-08 2020-09-07 034.074.029.064 14 13 2020-09-01 2020-09-01 183.063.027.146 24 13 2020-08-26 2020-08-26 185.056.080.050 13 13 2020-08-15 2020-08-15 091.211.091.040 13 13 2020-09-07 2020-09-07 156.208.119.069 14 13 2020-08-25 2020-08-25 091.212.231.077 2974 13 2020-08-16 2020-08-17 138.068.106.090 13 13 2020-08-15 2020-08-14 052.038.025.045 13 13 2020-08-21 2020-08-21 046.105.115.078 13 13 2020-08-16 2020-08-16 104.248.174.254 13 13 2020-09-01 2020-08-31 054.149.221.032 13 13 2020-08-22 2020-08-22 104.016.148.244 25 13 2020-08-29 2020-08-29 222.191.173.015 16 13 2020-08-20 2020-08-20 058.071.087.130 14 13 2020-08-19 2020-08-19 034.090.116.163 446 13 2020-08-23 2020-08-23 054.184.172.254 13 13 2020-08-23 2020-08-23 173.249.005.247 13 13 2020-08-25 2020-08-25 034.095.145.045 25 13 2020-08-13 2020-08-13 190.075.227.121 15 13 2020-08-29 2020-08-29 185.054.156.005 13 13 2020-08-30 2020-08-30 027.112.246.044 14 13 2020-08-15 2020-08-15 155.138.228.176 33 13 2020-08-28 2020-08-28 041.237.224.144 24 13 2020-08-12 2020-08-12 092.026.009.007 41 13 2020-08-22 2020-08-22 104.152.186.028 16 13 2020-09-06 2020-09-06 187.143.027.170 16 13 2020-08-12 2020-08-12 162.062.067.093 28 13 2020-08-27 2020-08-27 104.008.248.191 19 13 2020-09-02 2020-09-02 174.237.138.140 13 13 2020-08-31 2020-08-31 054.188.255.124 13 13 2020-09-03 2020-09-03 073.066.187.203 1355 13 2020-08-12 2020-08-12 091.240.118.063 13 13 2020-08-25 2020-08-25 139.199.082.044 47 13 2020-08-19 2020-08-19 197.157.152.088 13 13 2020-08-13 2020-08-13 080.187.106.218 13 13 2020-08-27 2020-08-27 095.181.153.053 14 13 2020-09-02 2020-09-02 184.195.211.196 742 13 2020-09-04 2020-09-04 098.194.225.251 13 13 2020-08-27 2020-08-27 054.187.065.108 13 13 2020-09-02 2020-09-02 034.096.201.020 22 13 2020-08-31 2020-08-31 073.061.008.109 13 13 2020-08-14 2020-08-14 099.047.110.166 400 13 2020-09-01 2020-09-01 034.098.111.154 19 13 2020-09-05 2020-09-05 134.209.148.107 13 13 2020-08-15 2020-08-14 077.216.160.223 18 13 2020-08-27 2020-08-27 103.235.034.130 19 13 2020-08-20 2020-08-20 134.209.150.094 15 13 2020-08-27 2020-08-26 213.179.197.201 13 13 2020-08-21 2020-08-21 163.172.246.001 13 13 2020-08-29 2020-08-29 086.162.104.086 13 13 2020-08-29 2020-08-29 054.089.152.061 19 13 2020-08-17 2020-08-17 185.002.210.003 145 13 2020-08-14 2020-08-14 165.232.073.243 172 13 2020-08-22 2020-08-22 172.067.071.140 314 13 2020-08-18 2020-08-18 054.241.207.216 13 13 2020-08-21 2020-08-21 172.067.068.045 23 13 2020-08-30 2020-08-30 054.068.037.201 13 13 2020-09-02 2020-09-02 089.042.216.004 62 13 2020-08-27 2020-08-27 128.199.084.251 13 13 2020-09-04 2020-09-03 192.035.168.224 18 13 2020-09-08 2020-09-07 045.061.049.166 14 13 2020-08-17 2020-08-17 192.035.169.019 14 13 2020-09-08 2020-09-07 203.143.021.253 17 13 2020-09-01 2020-08-31 192.035.169.036 21 13 2020-09-08 2020-09-07 171.221.045.007 16 13 2020-08-24 2020-08-24 221.158.071.233 13 13 2020-08-19 2020-08-19 003.101.108.131 13 13 2020-08-21 2020-08-21 087.236.016.149 19 13 2020-08-17 2020-08-17 072.058.070.198 24 13 2020-09-01 2020-09-01 070.042.198.229 2385 13 2020-09-06 2020-09-06 176.009.019.114 13 13 2020-09-03 2020-09-03 192.035.168.199 46 13 2020-08-19 2020-08-19 070.121.145.139 142 13 2020-08-11 2020-08-11 115.159.196.124 13 13 2020-08-13 2020-08-13 181.043.100.038 16 13 2020-08-16 2020-08-16 049.032.003.185 26 13 2020-09-03 2020-09-03 051.210.058.156 798 13 2020-08-13 2020-08-22 118.178.092.151 32 13 2020-09-02 2020-09-02 037.049.230.212 21 13 2020-09-05 2020-09-05 118.173.196.093 14 13 2020-08-21 2020-08-21 067.184.026.253 238 13 2020-08-17 2020-08-17 158.069.120.033 13 13 2020-08-28 2020-08-28 045.077.194.152 17 13 2020-08-19 2020-08-19 121.010.236.252 18 13 2020-08-15 2020-08-15 036.248.211.071 2395 13 2020-08-10 2020-09-01 068.183.143.011 36 13 2020-08-31 2020-08-31 158.069.210.226 97 13 2020-08-20 2020-08-20 181.118.062.232 13 13 2020-08-13 2020-08-13 123.213.001.214 26 13 2020-08-14 2020-08-14 197.052.046.219 25 13 2020-08-17 2020-08-17 051.222.010.018 14 13 2020-09-07 2020-09-07 114.067.236.111 25 13 2020-09-02 2020-09-02 108.029.152.250 488 13 2020-09-01 2020-09-01 107.077.172.057 46 13 2020-09-05 2020-09-05 069.132.175.091 14 13 2020-08-14 2020-08-14 003.234.181.234 124 13 2020-09-03 2020-09-03 119.081.170.018 13 13 2020-09-07 2020-09-07 202.051.125.133 17 13 2020-08-11 2020-08-11 050.234.173.102 13 13 2020-08-31 2020-08-30 051.222.033.051 13 13 2020-08-27 2020-08-27 076.068.251.012 13 13 2020-08-15 2020-08-15 078.170.035.068 15 13 2020-08-17 2020-08-17 005.189.183.129 98840 13 2020-08-10 2020-08-20 112.067.179.001 23 13 2020-08-19 2020-08-19 178.244.172.116 13 13 2020-08-28 2020-08-28 083.022.086.013 13 13 2020-08-23 2020-08-23 103.088.035.027 25 13 2020-08-27 2020-08-27 045.233.139.191 63 13 2020-09-06 2020-09-05 043.240.072.168 13 13 2020-08-27 2020-08-27 050.007.133.242 15 13 2020-09-09 2020-09-09 023.224.037.172 104 13 2020-09-07 2020-09-07 018.237.155.098 13 13 2020-09-02 2020-09-02 047.227.125.255 21 13 2020-09-01 2020-09-01 193.000.139.217 13 13 2020-08-26 2020-08-26 185.247.137.234 14 13 2020-08-16 2020-08-16 149.202.089.114 13 13 2020-08-22 2020-08-22 050.007.210.074 13 13 2020-08-22 2020-08-22 024.229.173.067 14 13 2020-08-15 2020-08-15 051.089.229.240 13 13 2020-08-28 2020-08-28 079.143.050.160 14 13 2020-09-02 2020-09-02 206.189.088.253 13 13 2020-08-27 2020-08-26 112.085.042.189 346 13 2020-08-17 2020-08-17 051.107.203.207 28 13 2020-08-26 2020-08-25 124.067.069.115 13 13 2020-09-08 2020-09-08 051.195.167.168 590 13 2020-08-11 2020-08-11 129.208.049.009 13 13 2020-08-15 2020-08-15 079.143.181.249 23 13 2020-08-14 2020-08-13 051.195.168.075 26 13 2020-08-27 2020-08-27 099.203.004.016 13 13 2020-08-13 2020-08-13 039.106.015.110 13 13 2020-08-28 2020-08-28 209.141.055.236 13 13 2020-09-08 2020-09-08 045.153.041.246 14 13 2020-08-22 2020-08-22 194.087.139.106 23 13 2020-08-19 2020-08-19 204.048.017.013 14 13 2020-09-08 2020-09-08 045.129.033.059 15 13 2020-08-16 2020-08-16 045.129.033.081 14 13 2020-09-03 2020-09-03 185.099.002.168 37 13 2020-09-07 2020-09-06 008.210.004.004 13 13 2020-09-08 2020-09-08 068.183.019.084 13 13 2020-09-01 2020-08-31 203.080.023.130 18 13 2020-09-09 2020-09-09 023.146.144.083 14 13 2020-08-11 2020-08-11 158.046.100.164 14 13 2020-08-13 2020-08-13 045.140.170.102 21 13 2020-08-29 2020-08-29 045.153.042.155 14 13 2020-08-24 2020-08-24 045.153.203.101 13 13 2020-08-19 2020-08-19 195.069.222.175 16 13 2020-08-18 2020-08-17 176.059.045.090 14 13 2020-08-18 2020-08-18 202.032.040.124 4252 13 2020-08-13 2020-08-14 108.245.242.231 14 13 2020-09-07 2020-09-07 149.056.013.046 74 13 2020-08-25 2020-08-25 003.101.068.059 13 13 2020-08-22 2020-08-22 045.131.194.068 13 13 2020-08-29 2020-08-29 002.221.247.053 13 13 2020-09-01 2020-09-01 158.069.022.193 13 13 2020-08-13 2020-08-13 045.195.023.207 571 13 2020-08-22 2020-08-22 002.221.101.212 30 13 2020-09-02 2020-09-02 116.099.215.200 14 13 2020-08-13 2020-08-13 197.044.035.108 13 13 2020-08-13 2020-08-13 018.233.143.128 20 13 2020-09-01 2020-08-31 067.205.135.065 14 13 2020-09-06 2020-09-05 109.021.082.138 113 13 2020-08-26 2020-08-26 108.034.178.051 46 13 2020-08-29 2020-08-29 068.074.198.191 13 13 2020-09-05 2020-09-05 037.049.224.040 22 13 2020-08-13 2020-08-13 043.242.075.198 25 13 2020-08-14 2020-08-14 094.076.017.111 42 13 2020-08-24 2020-08-24 128.199.073.213 14 13 2020-08-29 2020-08-28 186.185.087.074 14 13 2020-09-05 2020-09-05 120.092.122.249 13 13 2020-09-02 2020-09-01 157.230.053.057 13 13 2020-08-24 2020-08-23 192.229.221.103 20 13 2020-08-31 2020-08-31 193.027.228.234 5050 13 2020-08-17 2020-08-26 193.027.228.238 55838 13 2020-08-16 2020-08-27 181.117.052.018 13 13 2020-08-16 2020-08-16 049.235.165.022 1599 13 2020-08-11 2020-08-30 043.227.196.092 13 13 2020-08-26 2020-08-26 020.046.145.170 13 13 2020-08-16 2020-08-16 128.014.141.114 18 13 2020-08-31 2020-08-31 087.251.074.018 452 13 2020-09-04 2020-09-03 151.030.252.039 13 13 2020-08-15 2020-08-15 005.252.035.187 16 13 2020-09-01 2020-09-01 201.249.020.001 14 13 2020-09-06 2020-09-06 186.091.136.206 14 13 2020-09-07 2020-09-07 045.142.120.078 254437 13 2020-09-03 2020-09-07 047.057.000.238 15 13 2020-09-06 2020-09-05 018.220.035.224 13 13 2020-08-12 2020-08-12 082.132.227.009 102 13 2020-08-20 2020-08-20 045.142.120.215 188091 13 2020-09-04 2020-09-07 157.245.090.137 14 13 2020-08-13 2020-08-13 047.057.002.086 15 13 2020-09-04 2020-09-04 218.001.028.154 22 13 2020-08-17 2020-08-17 072.225.134.178 3680 13 2020-08-31 2020-08-31 188.214.210.071 26 13 2020-08-24 2020-08-24 018.237.208.142 14 13 2020-08-22 2020-08-22 159.065.100.044 13 13 2020-08-31 2020-08-30 128.075.103.244 13 13 2020-09-07 2020-09-07 072.187.021.057 13 13 2020-08-15 2020-08-15 182.078.160.058 13 13 2020-08-14 2020-08-14 118.200.044.158 14 13 2020-09-06 2020-09-06 050.018.243.081 13 13 2020-08-23 2020-08-23 218.255.086.106 13 13 2020-09-03 2020-09-02 018.144.045.060 13 13 2020-08-22 2020-08-22 045.148.121.064 14 13 2020-08-11 2020-08-11 186.089.075.146 16 13 2020-08-12 2020-08-12 159.065.123.055 13 13 2020-08-15 2020-08-15 036.081.012.033 24 13 2020-08-11 2020-08-11 192.223.024.034 71 13 2020-09-08 2020-09-08 047.057.006.243 14 13 2020-09-08 2020-09-07 045.142.120.083 247852 13 2020-09-03 2020-09-07 194.059.164.037 13 13 2020-08-13 2020-08-13 050.112.024.027 13 13 2020-08-22 2020-08-22 093.155.217.035 13 13 2020-08-27 2020-08-27 072.210.066.090 46 13 2020-09-02 2020-09-02 159.065.147.235 16 13 2020-08-19 2020-08-18 185.230.083.031 15 13 2020-09-02 2020-09-02 157.033.212.130 13 13 2020-08-28 2020-08-28 113.160.172.199 13 13 2020-09-07 2020-09-07 045.142.120.121 254731 13 2020-09-03 2020-09-07 195.054.160.085 35918 13 2020-07-28 2020-08-17 188.214.133.109 17 13 2020-08-26 2020-08-26 112.124.025.213 17 13 2020-09-02 2020-09-02 182.071.197.163 13 13 2020-08-25 2020-08-25 123.207.066.141 13 13 2020-08-12 2020-08-12 192.199.230.152 13 13 2020-09-07 2020-09-07 192.099.110.158 13 13 2020-08-28 2020-08-28 099.111.085.023 46 13 2020-09-06 2020-09-06 157.049.166.030 26 13 2020-09-06 2020-09-06 061.058.033.121 13 13 2020-08-22 2020-08-22 078.171.226.222 14 13 2020-09-01 2020-09-01 077.039.008.184 18 13 2020-08-19 2020-08-19 185.217.171.023 13 13 2020-09-05 2020-09-05 045.168.064.053 13 13 2020-08-16 2020-08-16 050.068.016.090 13 13 2020-09-08 2020-09-08 061.058.033.122 13 13 2020-08-22 2020-08-22 188.166.254.116 15 13 2020-08-16 2020-08-16 045.142.120.117 247168 13 2020-09-04 2020-09-07 217.160.000.079 17 13 2020-08-28 2020-08-28 099.227.065.047 21 13 2020-08-25 2020-08-25 051.077.180.137 14 13 2020-08-12 2020-08-12 072.084.210.215 22 13 2020-08-29 2020-08-29 047.112.123.190 102 13 2020-08-28 2020-08-28 068.183.213.044 229 13 2020-08-21 2020-08-21 157.034.079.244 16 13 2020-08-11 2020-08-11 113.161.086.039 13 13 2020-08-25 2020-08-25 084.038.187.184 28 13 2020-08-27 2020-08-27 116.202.215.029 13 13 2020-08-24 2020-08-24 037.201.002.000 14 13 2020-09-07 2020-09-07 157.245.045.099 13 13 2020-09-04 2020-09-03 193.123.150.087 23 13 2020-09-08 2020-09-08 188.166.045.093 20 13 2020-09-04 2020-09-04 156.224.002.168 13 13 2020-08-29 2020-08-29 192.081.219.053 22 13 2020-08-22 2020-08-21 045.145.066.209 37362 13 2020-08-11 2020-08-13 037.026.003.038 13 13 2020-09-07 2020-09-07 185.118.167.042 13 13 2020-08-11 2020-08-11 185.226.112.101 21 13 2020-08-18 2020-08-18 005.200.014.198 15 13 2020-08-15 2020-08-15 094.004.154.103 13 13 2020-09-07 2020-09-07 202.085.223.250 18 13 2020-08-18 2020-08-18 189.127.193.070 14 13 2020-08-30 2020-08-30 192.248.169.167 26 13 2020-08-15 2020-08-15 003.016.124.126 13 13 2020-09-08 2020-09-08 045.155.205.151 13 13 2020-09-05 2020-09-05 045.142.120.049 236858 13 2020-09-03 2020-09-07 018.237.175.199 13 13 2020-09-09 2020-09-09 051.222.033.057 14 13 2020-08-27 2020-08-27 042.123.099.067 14 13 2020-08-30 2020-08-29 047.112.194.185 13 13 2020-08-22 2020-08-22 043.228.006.022 24 12 2020-08-24 2020-08-24 110.042.096.025 12 12 2020-09-02 2020-09-02 054.194.094.018 12 12 2020-08-30 2020-08-30 046.174.123.100 12 12 2020-09-01 2020-09-01 134.019.188.179 12 12 2020-08-27 2020-08-27 031.133.000.172 12 12 2020-08-17 2020-08-17 045.027.161.036 160 12 2020-09-06 2020-09-06 014.128.057.138 12 12 2020-09-02 2020-09-02 069.253.024.151 12 12 2020-09-05 2020-09-05 045.125.046.010 24 12 2020-08-22 2020-08-22 104.026.014.128 24 12 2020-09-09 2020-09-09 134.019.187.042 24 12 2020-08-30 2020-08-30 162.142.125.029 12 12 2020-09-01 2020-08-31 142.139.002.135 12 12 2020-09-05 2020-09-05 024.031.020.079 21 12 2020-09-06 2020-09-06 072.192.179.047 33 12 2020-08-11 2020-08-11 162.062.064.104 37 12 2020-08-24 2020-08-24 154.091.038.145 12 12 2020-09-01 2020-09-01 157.245.163.000 13 12 2020-08-13 2020-08-12 178.063.167.033 18 12 2020-09-03 2020-09-03 177.071.205.007 24 12 2020-08-26 2020-08-26 086.210.113.176 51 12 2020-08-28 2020-08-28 068.065.122.236 12 12 2020-08-20 2020-08-20 103.109.056.017 206 12 2020-08-23 2020-08-23 183.003.202.050 12 12 2020-08-11 2020-08-11 005.146.192.162 150 12 2020-08-28 2020-08-28 194.061.026.009 12 12 2020-08-24 2020-08-24 104.198.014.052 24 12 2020-08-29 2020-08-29 051.178.085.083 12 12 2020-08-22 2020-08-22 013.231.182.061 12 12 2020-08-13 2020-08-13 182.092.127.072 24 12 2020-08-31 2020-08-31 071.072.239.155 21 12 2020-08-19 2020-08-19 185.027.134.124 12 12 2020-08-19 2020-08-19 079.110.092.182 12 12 2020-09-06 2020-09-06 104.027.132.071 12 12 2020-08-12 2020-08-12 054.149.252.203 12 12 2020-08-22 2020-08-22 043.228.065.048 12 12 2020-09-02 2020-09-02 110.042.010.198 16 12 2020-08-14 2020-08-14 043.254.154.145 12 12 2020-09-08 2020-09-08 185.244.043.080 12 12 2020-09-09 2020-09-09 185.244.039.017 25 12 2020-09-09 2020-09-08 164.132.204.005 12 12 2020-08-21 2020-08-21 199.127.060.218 12 12 2020-09-07 2020-09-07 174.100.253.117 20 12 2020-09-01 2020-09-01 051.178.221.000 19 12 2020-09-05 2020-09-05 063.231.154.204 27 12 2020-08-20 2020-08-19 024.196.230.220 12 12 2020-08-13 2020-08-13 103.107.191.182 24 12 2020-08-29 2020-08-29 107.004.133.035 12 12 2020-08-25 2020-08-25 128.105.145.159 14 12 2020-09-09 2020-09-08 208.068.039.163 22 12 2020-08-19 2020-08-19 179.053.114.133 128 12 2020-09-09 2020-09-08 089.234.180.164 12 12 2020-09-04 2020-09-03 162.062.067.178 39 12 2020-08-18 2020-08-18 103.085.086.097 12 12 2020-08-14 2020-08-14 091.151.093.153 12 12 2020-09-05 2020-09-05 063.246.057.003 119 12 2020-09-02 2020-09-02 047.114.187.241 12 12 2020-08-18 2020-08-18 104.028.022.146 12 12 2020-08-31 2020-08-31 193.122.210.202 12 12 2020-09-03 2020-09-03 162.062.067.089 38 12 2020-08-27 2020-08-27 117.051.149.030 24 12 2020-09-05 2020-09-05 088.198.095.111 46 12 2020-08-19 2020-08-19 054.196.146.058 24 12 2020-08-31 2020-08-31 193.123.017.052 34 12 2020-08-21 2020-08-21 190.237.023.009 12 12 2020-09-08 2020-09-08 162.062.066.143 27 12 2020-08-22 2020-08-22 047.104.250.102 24 12 2020-08-31 2020-08-31 212.071.251.177 12 12 2020-08-27 2020-08-27 071.078.080.045 33 12 2020-08-22 2020-08-22 183.006.231.008 24 12 2020-08-28 2020-08-28 085.190.150.143 12 12 2020-08-11 2020-08-11 054.069.116.037 45 12 2020-08-18 2020-08-18 154.089.004.105 24 12 2020-08-12 2020-08-12 162.062.066.025 38 12 2020-08-13 2020-08-12 073.114.094.082 39 12 2020-08-11 2020-08-11 045.125.046.247 12 12 2020-09-09 2020-09-09 024.032.058.046 12 12 2020-08-13 2020-08-13 192.223.026.038 12 12 2020-08-25 2020-08-25 162.062.065.208 18 12 2020-08-21 2020-08-21 043.227.220.037 24 12 2020-08-30 2020-08-30 045.025.207.208 12 12 2020-09-07 2020-09-07 073.115.063.008 12 12 2020-08-18 2020-08-18 162.062.065.191 17 12 2020-08-26 2020-08-26 076.192.109.159 35 12 2020-08-19 2020-08-19 164.090.231.024 14 12 2020-08-21 2020-08-21 192.230.074.116 12 12 2020-09-09 2020-09-09 104.028.018.023 12 12 2020-09-06 2020-09-06 162.062.065.212 46 12 2020-08-19 2020-08-18 162.062.064.184 22 12 2020-08-14 2020-08-14 216.250.126.057 24 12 2020-08-12 2020-08-12 104.203.104.086 12 12 2020-08-14 2020-08-14 164.090.233.075 22 12 2020-09-04 2020-09-04 178.208.083.028 18 12 2020-08-12 2020-08-12 174.110.195.003 28 12 2020-08-23 2020-08-23 104.022.013.154 12 12 2020-08-15 2020-08-15 216.252.043.070 12 12 2020-08-31 2020-08-31 100.040.081.168 12 12 2020-08-11 2020-08-11 164.132.073.220 14 12 2020-08-16 2020-08-15 201.001.154.185 12 12 2020-08-20 2020-08-20 194.087.138.125 12 12 2020-08-24 2020-08-24 037.059.205.208 24 12 2020-08-23 2020-08-23 047.115.112.186 12 12 2020-08-31 2020-08-31 190.000.123.076 12 12 2020-08-17 2020-08-17 074.201.102.118 12 12 2020-09-04 2020-09-04 061.164.109.214 12 12 2020-08-30 2020-08-30 074.199.071.080 35 12 2020-08-22 2020-08-22 106.015.230.133 24 12 2020-08-23 2020-08-23 047.091.044.093 14 12 2020-09-09 2020-09-08 046.223.162.199 47 12 2020-09-07 2020-09-07 069.014.006.246 23 12 2020-09-03 2020-09-03 100.007.012.160 12 12 2020-08-16 2020-08-16 106.014.154.067 12 12 2020-08-21 2020-08-21 123.208.194.078 12 12 2020-08-30 2020-08-30 018.144.019.060 16 12 2020-08-22 2020-08-22 043.229.132.089 21 12 2020-09-02 2020-09-02 173.049.055.062 54 12 2020-08-24 2020-08-24 071.057.120.051 13 12 2020-08-16 2020-08-16 054.149.108.150 12 12 2020-08-21 2020-08-21 148.075.155.064 41 12 2020-08-18 2020-08-18 018.144.032.175 12 12 2020-08-22 2020-08-22 209.205.127.154 24 12 2020-09-05 2020-09-05 167.071.235.041 12 12 2020-08-14 2020-08-14 115.188.129.215 25 12 2020-09-03 2020-09-03 054.149.093.110 12 12 2020-08-18 2020-08-18 047.091.209.181 12 12 2020-09-08 2020-09-08 051.222.033.055 675 12 2020-08-27 2020-08-27 176.255.110.069 12 12 2020-08-14 2020-08-14 018.133.124.069 12 12 2020-08-18 2020-08-18 104.236.079.235 12 12 2020-08-19 2020-08-19 036.090.101.250 14 12 2020-08-13 2020-08-13 075.074.178.084 19 12 2020-08-17 2020-08-17 095.181.153.017 12 12 2020-09-01 2020-09-01 185.151.243.081 12 12 2020-08-28 2020-08-28 095.181.153.015 12 12 2020-09-08 2020-09-08 095.181.153.011 24 12 2020-08-28 2020-08-28 103.111.227.013 51 12 2020-08-20 2020-08-20 168.138.131.112 12 12 2020-08-16 2020-08-16 093.174.089.020 180 12 2020-08-23 2020-08-22 039.101.190.008 12 12 2020-08-15 2020-08-15 116.140.035.076 12 12 2020-08-22 2020-08-22 111.220.121.046 12 12 2020-08-29 2020-08-29 091.220.030.005 12 12 2020-08-18 2020-08-18 045.251.033.021 15 12 2020-08-28 2020-08-28 103.138.194.011 14 12 2020-08-22 2020-08-22 086.105.155.212 24 12 2020-08-17 2020-08-17 206.189.180.004 12 12 2020-08-28 2020-08-28 095.181.153.203 12 12 2020-09-03 2020-09-03 073.121.144.083 29 12 2020-09-05 2020-09-05 077.099.106.055 12 12 2020-09-02 2020-09-02 167.086.066.220 12 12 2020-08-30 2020-08-30 194.207.169.148 255 12 2020-08-28 2020-08-28 098.199.203.043 128 12 2020-08-23 2020-08-23 217.160.000.191 24 12 2020-08-31 2020-08-31 037.059.010.210 12 12 2020-08-30 2020-08-30 174.197.206.164 176 12 2020-08-22 2020-08-22 054.187.153.055 12 12 2020-09-08 2020-09-08 062.171.189.221 13 12 2020-08-14 2020-08-13 013.112.192.062 24 12 2020-09-04 2020-09-04 104.245.146.060 13 12 2020-08-22 2020-08-22 082.011.016.079 13 12 2020-08-16 2020-08-16 031.201.159.010 12 12 2020-08-24 2020-08-24 018.156.197.130 12 12 2020-08-16 2020-08-16 024.164.018.113 26 12 2020-08-20 2020-08-19 072.209.017.143 45 12 2020-09-04 2020-09-04 002.089.213.210 13 12 2020-08-25 2020-08-25 005.071.232.095 48 12 2020-08-17 2020-08-17 054.153.097.185 12 12 2020-08-11 2020-08-11 196.121.104.043 15 12 2020-08-26 2020-08-26 054.153.052.168 12 12 2020-08-22 2020-08-22 037.215.051.254 13 12 2020-09-02 2020-09-02 189.005.179.254 24 12 2020-08-29 2020-08-29 183.060.106.089 12 12 2020-08-21 2020-08-21 100.002.191.100 191 12 2020-09-04 2020-09-04 073.029.018.173 12 12 2020-09-07 2020-09-07 062.171.141.187 12 12 2020-08-19 2020-08-19 067.191.208.202 45 12 2020-09-08 2020-09-08 086.104.044.037 12 12 2020-08-30 2020-08-30 094.140.120.163 13 12 2020-08-29 2020-08-29 125.088.187.118 12 12 2020-08-24 2020-08-24 174.192.139.104 41 12 2020-09-08 2020-09-08 018.144.044.072 12 12 2020-08-21 2020-08-21 103.239.247.022 12 12 2020-08-16 2020-08-16 045.080.167.068 24 12 2020-08-15 2020-08-15 144.076.202.117 12 12 2020-09-04 2020-09-04 140.246.042.166 13319 12 2020-08-11 2020-08-11 077.072.000.158 24 12 2020-08-18 2020-08-18 039.098.135.023 12 12 2020-08-18 2020-08-18 071.214.005.041 34 12 2020-09-01 2020-09-01 119.028.025.218 24 12 2020-09-08 2020-09-08 194.184.131.243 12 12 2020-08-29 2020-08-29 183.056.212.208 2074 12 2020-07-28 2020-08-11 098.195.146.225 12 12 2020-08-13 2020-08-13 082.010.174.069 31 12 2020-08-19 2020-08-19 005.081.077.162 33 12 2020-08-18 2020-08-18 125.077.158.013 12 12 2020-08-20 2020-08-20 125.076.240.193 12 12 2020-08-13 2020-08-13 005.012.237.101 12 12 2020-08-24 2020-08-24 159.203.165.156 15 12 2020-09-04 2020-09-03 051.015.011.010 24 12 2020-08-29 2020-08-29 092.005.081.077 22 12 2020-09-06 2020-09-06 045.227.255.208 118 12 2020-08-20 2020-08-19 142.129.193.032 1130 12 2020-08-22 2020-08-22 078.033.037.114 1166 12 2020-08-19 2020-08-19 194.099.023.236 12 12 2020-08-31 2020-08-30 047.099.166.097 12 12 2020-09-01 2020-09-01 051.195.180.054 24 12 2020-08-24 2020-08-24 125.077.154.035 12 12 2020-09-03 2020-09-03 045.014.224.244 163 12 2020-08-14 2020-08-14 073.241.080.206 37 12 2020-09-02 2020-09-01 188.168.253.000 12 12 2020-08-21 2020-08-21 186.195.034.032 12 12 2020-09-08 2020-09-08 073.174.250.048 43 12 2020-08-31 2020-08-31 120.026.162.181 24 12 2020-09-03 2020-09-03 051.195.182.224 19 12 2020-08-30 2020-08-30 120.027.011.062 12 12 2020-08-31 2020-08-31 073.040.067.114 112 12 2020-08-24 2020-08-24 037.235.108.016 15 12 2020-09-01 2020-09-01 051.195.151.025 104 12 2020-08-19 2020-08-19 079.110.092.136 12 12 2020-09-06 2020-09-06 109.248.222.120 12 12 2020-08-24 2020-08-24 079.110.092.142 12 12 2020-09-06 2020-09-06 191.234.180.213 24 12 2020-09-04 2020-09-04 045.143.220.211 12 12 2020-08-13 2020-08-13 079.110.092.144 12 12 2020-09-08 2020-09-08 054.193.071.176 12 12 2020-08-18 2020-08-18 045.017.221.176 55 12 2020-09-03 2020-09-03 191.235.086.171 12 12 2020-09-05 2020-09-05 191.233.255.168 12 12 2020-09-01 2020-09-01 103.145.013.020 12 12 2020-08-29 2020-08-28 039.106.233.058 24 12 2020-09-01 2020-09-01 024.189.010.169 41 12 2020-08-18 2020-08-18 185.242.115.233 42 12 2020-08-25 2020-08-25 071.072.011.214 12 12 2020-08-28 2020-08-28 071.206.044.161 380 12 2020-08-30 2020-08-30 191.233.198.081 12 12 2020-09-04 2020-09-04 172.067.040.182 12 12 2020-09-05 2020-09-05 158.058.186.218 95 12 2020-08-15 2020-08-15 184.058.205.005 45 12 2020-09-05 2020-09-05 079.110.092.179 12 12 2020-09-06 2020-09-06 162.243.042.225 12 12 2020-08-12 2020-08-11 071.062.058.016 44 12 2020-08-31 2020-08-31 061.161.150.023 12 12 2020-09-02 2020-09-02 054.094.244.077 12 12 2020-09-05 2020-09-05 054.094.228.237 24 12 2020-09-05 2020-09-05 167.071.210.052 12 12 2020-08-27 2020-08-27 181.174.149.182 17 12 2020-08-11 2020-08-11 155.254.140.072 481 12 2020-09-06 2020-09-06 031.214.245.125 12 12 2020-09-09 2020-09-09 189.004.067.032 12 12 2020-09-06 2020-09-06 100.015.002.218 13 12 2020-09-09 2020-09-09 052.089.229.109 12 12 2020-08-30 2020-08-30 103.040.013.045 12 12 2020-08-16 2020-08-16 087.236.019.199 12 12 2020-09-01 2020-09-01 075.075.068.174 17 12 2020-08-14 2020-08-14 170.253.221.127 39 12 2020-09-06 2020-09-05 088.150.240.128 32 12 2020-08-15 2020-08-15 018.130.033.071 12 12 2020-08-14 2020-08-14 076.025.122.149 113 12 2020-08-24 2020-08-24 045.143.223.161 13 12 2020-08-23 2020-08-22 073.120.163.248 27 12 2020-09-07 2020-09-07 047.096.093.002 12 12 2020-08-28 2020-08-28 087.229.115.161 12 12 2020-08-17 2020-08-17 073.243.049.144 32 12 2020-09-08 2020-09-08 005.206.224.026 24 12 2020-09-05 2020-09-05 174.127.113.027 12 12 2020-09-01 2020-09-01 176.031.024.090 12 12 2020-09-09 2020-09-09 218.200.138.118 13 12 2020-09-08 2020-09-08 005.206.227.124 22 12 2020-08-26 2020-08-26 125.077.168.117 180 12 2020-08-13 2020-08-13 049.226.216.216 38 12 2020-08-17 2020-08-17 181.019.101.119 13 12 2020-08-15 2020-08-15 125.077.159.163 12 12 2020-08-15 2020-08-15 170.033.014.220 12 12 2020-08-29 2020-08-29 072.200.010.089 43 12 2020-08-21 2020-08-21 174.130.229.104 40 12 2020-08-24 2020-08-24 185.148.240.002 12 12 2020-08-18 2020-08-18 054.190.240.135 12 12 2020-08-23 2020-08-23 172.067.208.151 24 12 2020-08-15 2020-08-15 172.067.208.051 12 12 2020-08-13 2020-08-13 024.185.122.025 43 12 2020-09-03 2020-09-03 094.134.101.000 12 12 2020-09-04 2020-09-04 176.031.071.003 12 12 2020-08-24 2020-08-24 128.199.105.058 12 12 2020-09-03 2020-09-03 125.077.158.097 12 12 2020-09-06 2020-09-06 064.225.039.069 20 12 2020-09-05 2020-09-04 094.023.120.071 12 12 2020-08-12 2020-08-12 114.124.246.051 42 12 2020-09-01 2020-09-01 086.128.128.165 45 12 2020-08-25 2020-08-25 194.015.036.034 1613 12 2020-08-11 2020-08-12 045.132.225.019 75 12 2020-09-01 2020-09-01 172.105.115.105 24 12 2020-08-30 2020-08-30 078.095.072.155 23 12 2020-09-01 2020-09-01 147.010.188.105 44 12 2020-08-19 2020-08-19 169.055.060.226 21 12 2020-08-12 2020-08-12 123.025.015.046 13 12 2020-08-29 2020-08-29 076.086.157.206 12 12 2020-09-01 2020-09-01 147.135.030.146 34 12 2020-08-27 2020-08-27 114.005.105.239 12 12 2020-09-09 2020-09-09 094.023.122.215 180 12 2020-08-11 2020-08-11 174.072.093.025 39 12 2020-08-13 2020-08-13 054.232.240.203 12 12 2020-09-05 2020-09-05 003.101.110.230 12 12 2020-09-08 2020-09-08 064.147.114.118 12 12 2020-09-03 2020-09-03 062.098.053.143 12 12 2020-08-16 2020-08-16 150.109.105.167 12 12 2020-09-08 2020-09-08 150.109.112.053 12 12 2020-09-01 2020-09-01 064.071.185.246 12 12 2020-08-27 2020-08-27 192.064.119.057 12 12 2020-09-02 2020-09-02 023.225.034.124 12 12 2020-08-18 2020-08-18 156.238.187.080 12 12 2020-08-14 2020-08-14 128.001.087.196 43 12 2020-08-28 2020-08-28 045.138.072.211 23 12 2020-09-06 2020-09-06 088.218.118.088 12 12 2020-08-13 2020-08-13 156.236.106.029 12 12 2020-09-08 2020-09-08 073.213.192.020 45 12 2020-08-18 2020-08-18 054.218.237.080 12 12 2020-09-07 2020-09-07 192.124.249.052 12 12 2020-08-12 2020-08-12 085.093.020.247 26 12 2020-08-16 2020-08-15 034.222.095.181 13 12 2020-08-22 2020-08-22 169.051.042.165 12 12 2020-08-21 2020-08-21 171.007.249.057 45 12 2020-08-17 2020-08-17 201.178.228.138 21 12 2020-08-20 2020-08-20 094.102.048.029 12 12 2020-08-27 2020-08-27 023.225.152.007 12 12 2020-08-31 2020-08-31 091.135.178.085 12 12 2020-08-21 2020-08-21 185.117.146.167 13 12 2020-08-20 2020-08-20 171.007.249.245 45 12 2020-08-16 2020-08-16 034.209.086.134 12 12 2020-08-21 2020-08-21 073.093.143.037 24 12 2020-08-19 2020-08-19 087.123.200.182 12 12 2020-09-06 2020-09-06 045.138.068.054 24 12 2020-08-12 2020-08-12 192.035.169.125 13 12 2020-09-03 2020-09-03 124.065.018.102 44 12 2020-09-08 2020-09-07 103.010.002.215 23 12 2020-09-08 2020-09-08 003.101.086.130 12 12 2020-08-22 2020-08-22 096.230.016.135 12 12 2020-08-18 2020-08-18 051.081.079.157 12 12 2020-08-18 2020-08-18 213.032.006.224 12 12 2020-09-04 2020-09-04 047.005.132.135 51 12 2020-09-03 2020-09-03 002.027.233.148 23 12 2020-09-01 2020-09-01 181.043.103.150 12 12 2020-08-17 2020-08-17 176.009.105.137 12 12 2020-08-12 2020-08-12 178.003.128.233 21 12 2020-08-22 2020-08-22 092.077.023.069 12 12 2020-08-22 2020-08-22 092.077.015.213 12 12 2020-08-22 2020-08-22 188.077.237.176 12 12 2020-08-20 2020-08-20 045.195.060.049 12 12 2020-08-30 2020-08-30 045.195.060.022 12 12 2020-08-31 2020-08-31 122.228.086.139 12 12 2020-08-22 2020-08-22 045.061.183.128 47 12 2020-09-06 2020-09-06 024.010.105.003 44 12 2020-09-04 2020-09-04 047.240.020.214 17 12 2020-09-01 2020-08-31 045.195.024.247 12 12 2020-08-19 2020-08-19 047.006.129.096 13 12 2020-08-14 2020-08-14 045.061.142.143 617 12 2020-08-23 2020-08-23 054.213.103.076 12 12 2020-08-21 2020-08-21 213.226.117.101 12 12 2020-09-09 2020-09-09 069.126.247.219 12 12 2020-09-08 2020-09-08 192.035.168.203 44 12 2020-08-19 2020-08-19 094.102.057.181 120 12 2020-08-20 2020-08-20 091.121.148.204 24 12 2020-09-01 2020-09-01 095.148.018.140 35 12 2020-09-03 2020-09-03 045.059.083.147 26 12 2020-09-05 2020-09-05 071.114.058.190 12 12 2020-08-23 2020-08-23 190.115.021.217 12 12 2020-09-05 2020-09-05 213.226.117.005 12 12 2020-09-03 2020-09-03 045.061.139.094 15 12 2020-08-27 2020-08-27 062.122.214.026 12 12 2020-08-12 2020-08-12 059.153.074.079 12 12 2020-09-03 2020-09-03 088.214.026.091 86 12 2020-08-15 2020-08-14 045.061.142.112 35 12 2020-09-08 2020-09-08 154.122.100.036 15 12 2020-09-01 2020-09-01 045.061.142.060 43 12 2020-08-19 2020-08-19 093.168.063.047 12 12 2020-08-11 2020-08-11 134.255.216.135 12 12 2020-08-30 2020-08-30 134.255.217.057 12 12 2020-08-30 2020-08-30 110.225.022.066 12 12 2020-08-18 2020-08-18 072.082.132.253 67 12 2020-09-07 2020-09-07 051.068.134.021 12 12 2020-08-17 2020-08-17 097.074.234.226 12 12 2020-08-31 2020-08-31 023.254.128.250 12 12 2020-09-05 2020-09-05 211.027.167.145 22 12 2020-09-04 2020-09-04 072.092.084.176 143 12 2020-08-13 2020-08-13 074.133.235.195 12 12 2020-09-05 2020-09-05 077.081.181.029 69 12 2020-08-21 2020-08-21 184.105.139.067 12 12 2020-08-30 2020-08-29 192.099.001.185 12 12 2020-08-19 2020-08-19 174.057.186.240 12 12 2020-08-13 2020-08-12 073.086.198.121 45 12 2020-08-22 2020-08-22 213.238.178.051 24 12 2020-09-02 2020-09-02 027.076.250.235 14 12 2020-08-11 2020-08-11 051.077.061.253 12 12 2020-08-11 2020-08-11 034.221.001.234 59 12 2020-09-03 2020-09-03 136.035.236.000 15 12 2020-08-24 2020-08-24 086.029.084.235 45 12 2020-08-23 2020-08-23 052.229.152.250 24 12 2020-08-29 2020-08-29 107.175.087.152 15 12 2020-08-19 2020-08-19 107.180.078.005 2037 12 2020-08-24 2020-08-30 213.238.177.003 12 12 2020-09-04 2020-09-04 213.238.177.005 23 12 2020-08-13 2020-08-13 045.046.119.188 21 12 2020-08-25 2020-08-24 192.099.151.127 24 12 2020-08-23 2020-08-23 212.110.197.146 12 12 2020-08-31 2020-08-31 213.239.249.027 12 12 2020-09-07 2020-09-07 024.255.248.219 12 12 2020-09-03 2020-09-03 051.068.246.026 12 12 2020-08-12 2020-08-12 059.056.078.088 12 12 2020-08-17 2020-08-17 211.035.020.047 234 12 2020-08-24 2020-08-24 197.189.255.149 24 12 2020-08-11 2020-08-11 059.056.078.248 71 12 2020-09-09 2020-09-09 068.032.171.221 44 12 2020-09-09 2020-09-09 174.054.102.209 12 12 2020-08-15 2020-08-15 203.107.055.240 24 12 2020-08-16 2020-08-16 086.137.135.008 38 12 2020-08-23 2020-08-23 172.058.070.199 50 12 2020-09-08 2020-09-08 103.212.224.189 12 12 2020-08-11 2020-08-11 114.032.207.077 12 12 2020-08-12 2020-08-12 034.219.042.034 12 12 2020-08-22 2020-08-22 115.043.238.222 24 12 2020-09-04 2020-09-04 003.137.032.250 12 12 2020-08-19 2020-08-19 178.203.145.219 12 12 2020-08-27 2020-08-27 104.129.056.187 13 12 2020-08-24 2020-08-24 172.058.062.201 759 12 2020-08-16 2020-08-16 059.056.079.046 24 12 2020-08-20 2020-08-20 051.068.111.023 12 12 2020-08-20 2020-08-20 069.136.207.115 45 12 2020-08-25 2020-08-25 073.211.074.221 83 12 2020-08-26 2020-08-26 052.251.073.084 12 12 2020-09-08 2020-09-08 034.212.039.109 13 12 2020-08-22 2020-08-22 169.001.024.105 12 12 2020-08-30 2020-08-30 103.216.153.249 12 12 2020-08-15 2020-08-15 078.095.228.201 23 12 2020-08-19 2020-08-19 117.024.015.128 24 12 2020-08-30 2020-08-30 103.216.153.140 16 12 2020-08-26 2020-08-26 045.133.246.117 12 12 2020-08-30 2020-08-30 073.211.133.215 47 12 2020-09-07 2020-09-07 045.137.201.107 12 12 2020-09-02 2020-09-02 072.135.099.240 270 12 2020-09-09 2020-09-09 175.124.032.197 12 12 2020-08-22 2020-08-22 076.087.175.015 268 12 2020-09-09 2020-09-09 045.138.037.017 24 12 2020-09-06 2020-09-06 071.132.228.234 24 12 2020-08-17 2020-08-17 045.138.037.014 12 12 2020-08-29 2020-08-29 045.138.037.007 24 12 2020-09-03 2020-09-03 078.046.107.120 12 12 2020-09-07 2020-09-07 034.211.046.114 12 12 2020-08-22 2020-08-22 156.227.066.190 24 12 2020-08-31 2020-08-31 117.024.015.042 24 12 2020-09-06 2020-09-06 203.119.214.124 12 12 2020-08-28 2020-08-28 092.242.126.122 13 12 2020-08-24 2020-08-24 072.132.155.074 22 12 2020-09-06 2020-09-06 073.081.084.123 32 12 2020-09-01 2020-09-01 091.235.185.179 13 12 2020-08-20 2020-08-20 213.066.022.235 22 12 2020-09-05 2020-09-05 051.077.073.037 124 12 2020-08-17 2020-08-17 180.251.119.209 13 12 2020-08-19 2020-08-19 103.095.221.099 12 12 2020-08-17 2020-08-17 174.052.026.116 42 12 2020-08-27 2020-08-27 184.095.042.154 40 12 2020-08-20 2020-08-20 071.163.241.185 436 12 2020-08-24 2020-08-24 024.000.098.079 24 12 2020-08-13 2020-08-13 117.024.006.150 12 12 2020-08-11 2020-08-11 103.004.156.150 12 12 2020-09-08 2020-09-08 122.238.065.247 134 12 2020-08-17 2020-08-17 069.142.086.048 46 12 2020-08-17 2020-08-17 040.119.026.252 12 12 2020-08-11 2020-08-11 069.167.026.225 13 12 2020-08-28 2020-08-28 071.163.157.117 41 12 2020-08-24 2020-08-24 066.115.154.150 22 12 2020-08-17 2020-08-17 073.080.068.231 12 12 2020-08-26 2020-08-26 208.115.102.066 24 12 2020-08-29 2020-08-29 119.167.182.110 12 12 2020-08-31 2020-08-31 047.147.133.195 423 12 2020-09-01 2020-09-01 034.089.157.237 12 12 2020-09-06 2020-09-06 122.051.240.008 24 12 2020-08-31 2020-08-31 034.090.105.180 12 12 2020-08-15 2020-08-14 193.140.097.074 12 12 2020-09-06 2020-09-06 211.099.096.044 12 12 2020-08-14 2020-08-14 072.183.183.168 48 12 2020-08-13 2020-08-12 185.253.034.009 12 12 2020-08-23 2020-08-23 169.149.243.147 12 12 2020-08-13 2020-08-13 101.116.103.055 12 12 2020-09-07 2020-09-07 024.216.111.024 12 12 2020-08-22 2020-08-22 185.107.096.051 21 12 2020-09-06 2020-09-06 137.103.078.059 39 12 2020-08-11 2020-08-11 194.054.057.072 12 12 2020-08-18 2020-08-18 045.141.247.010 12 12 2020-08-19 2020-08-19 046.004.215.107 12 12 2020-08-31 2020-08-31 166.170.035.035 30 12 2020-08-29 2020-08-29 052.164.201.186 12 12 2020-08-21 2020-08-21 161.035.061.129 14 12 2020-08-16 2020-08-15 075.141.039.121 12 12 2020-08-24 2020-08-24 069.071.085.189 39 12 2020-09-08 2020-09-08 103.088.032.148 24 12 2020-08-30 2020-08-30 107.107.062.148 23 12 2020-09-03 2020-09-03 146.199.100.077 12 12 2020-08-17 2020-08-17 066.216.210.034 311 12 2020-09-01 2020-09-01 104.168.249.028 24 12 2020-08-12 2020-08-12 089.241.040.012 12 12 2020-09-02 2020-09-02 045.032.170.216 12 12 2020-08-30 2020-08-30 098.005.061.095 41 12 2020-08-22 2020-08-22 034.095.193.185 12 12 2020-08-16 2020-08-16 149.255.062.126 24 12 2020-08-21 2020-08-21 166.172.188.031 25 12 2020-08-23 2020-08-23 093.169.162.231 45 12 2020-09-01 2020-09-01 045.032.170.143 12 12 2020-08-15 2020-08-15 061.147.247.042 24 12 2020-08-17 2020-08-17 176.223.125.146 45 12 2020-08-28 2020-08-28 024.217.173.119 36 12 2020-08-29 2020-08-29 192.162.244.229 12 12 2020-09-05 2020-09-05 192.162.244.224 12 12 2020-08-21 2020-08-21 045.141.084.141 24 12 2020-09-05 2020-09-05 178.062.206.014 12 12 2020-08-31 2020-08-31 164.002.244.151 12 12 2020-08-22 2020-08-22 104.041.015.170 12 12 2020-09-04 2020-09-04 054.039.131.188 12 12 2020-09-08 2020-09-08 113.254.173.015 13 12 2020-08-22 2020-08-22 134.209.174.161 12 12 2020-08-18 2020-08-17 178.087.052.048 19 12 2020-09-04 2020-09-04 080.082.065.090 29 12 2020-08-25 2020-08-25 185.137.235.127 12 12 2020-08-29 2020-08-29 104.188.172.170 12 12 2020-08-26 2020-08-26 109.186.210.082 12 12 2020-08-18 2020-08-18 185.012.049.012 28 12 2020-08-23 2020-08-23 139.055.228.067 18 12 2020-08-19 2020-08-19 199.188.200.230 12 12 2020-08-25 2020-08-25 076.205.129.063 23 12 2020-08-26 2020-08-26 098.029.096.007 37 12 2020-09-06 2020-09-06 063.251.241.231 20 12 2020-08-18 2020-08-18 073.109.178.019 24 12 2020-08-13 2020-08-13 023.098.040.104 12 12 2020-09-08 2020-09-08 045.126.123.211 24 12 2020-08-22 2020-08-22 119.188.240.095 12 12 2020-09-04 2020-09-04 104.194.010.124 12 12 2020-08-15 2020-08-15 134.122.072.221 15 12 2020-09-08 2020-09-07 113.096.137.141 12 12 2020-09-02 2020-09-02 113.096.137.234 24 12 2020-08-29 2020-08-29 101.081.136.249 13 12 2020-08-16 2020-08-16 104.192.238.192 45 12 2020-09-03 2020-09-03 096.051.106.177 45 12 2020-08-16 2020-08-16 068.062.118.107 25 12 2020-08-20 2020-08-20 080.003.229.210 34 12 2020-08-19 2020-08-19 139.059.017.238 17 12 2020-08-20 2020-08-19 074.120.014.033 35 12 2020-09-01 2020-09-01 193.123.158.241 12 12 2020-09-03 2020-09-03 073.106.244.049 32 12 2020-09-09 2020-09-09 046.004.096.075 12 12 2020-08-30 2020-08-30 206.132.061.169 35 12 2020-08-14 2020-08-14 024.211.053.129 25 12 2020-08-19 2020-08-19 074.120.014.051 45 12 2020-09-01 2020-09-01 074.120.014.052 51 12 2020-09-02 2020-09-02 074.120.175.170 24 12 2020-09-08 2020-09-08 066.056.210.030 19 12 2020-09-03 2020-09-03 051.159.000.025 12 12 2020-08-13 2020-08-13 023.101.011.216 24 12 2020-08-29 2020-08-29 054.067.010.049 12 12 2020-08-22 2020-08-22 024.208.249.018 12 12 2020-08-19 2020-08-19 076.108.105.072 23 12 2020-08-17 2020-08-17 077.138.046.189 12 12 2020-08-20 2020-08-20 134.122.120.205 12 12 2020-08-15 2020-08-15 051.159.020.124 12 12 2020-08-15 2020-08-15 134.122.126.136 12 12 2020-08-28 2020-08-28 098.027.134.040 38 12 2020-08-28 2020-08-28 104.178.085.049 46 12 2020-09-07 2020-09-07 166.170.029.209 103 12 2020-08-17 2020-08-17 110.032.079.160 14 12 2020-08-17 2020-08-17 107.206.013.016 24 12 2020-08-21 2020-08-21 076.229.162.182 45 12 2020-09-03 2020-09-03 107.170.038.188 13 12 2020-08-31 2020-08-31 054.038.023.132 12 12 2020-08-15 2020-08-15 192.003.136.072 27 12 2020-08-18 2020-08-18 072.075.249.223 43 12 2020-09-06 2020-09-06 183.220.199.082 12 12 2020-09-04 2020-09-04 071.094.003.212 24 12 2020-08-25 2020-08-25 120.133.022.121 14 12 2020-09-06 2020-09-06 069.117.054.018 23 12 2020-09-01 2020-09-01 094.232.168.211 12 12 2020-08-31 2020-08-31 073.099.095.031 12 12 2020-08-26 2020-08-26 139.099.142.178 12 12 2020-08-30 2020-08-30 162.248.093.219 79 12 2020-08-14 2020-08-14 209.085.220.069 24 12 2020-08-24 2020-08-24 051.091.018.123 12 12 2020-08-12 2020-08-12 103.205.005.179 17 12 2020-08-13 2020-08-12 188.080.182.168 24 12 2020-09-05 2020-09-05 066.070.160.151 24 12 2020-09-02 2020-09-02 104.155.132.255 12 12 2020-08-14 2020-08-14 015.188.244.021 12 12 2020-08-31 2020-08-31 194.035.048.067 13 12 2020-09-06 2020-09-05 054.207.104.083 24 12 2020-09-05 2020-09-05 083.174.015.058 23 12 2020-08-13 2020-08-13 167.071.032.029 15 12 2020-08-31 2020-08-31 068.002.044.075 41 12 2020-08-22 2020-08-22 120.092.102.213 12 12 2020-08-30 2020-08-30 185.113.141.140 12 12 2020-09-02 2020-09-02 045.035.195.086 12 12 2020-09-04 2020-09-04 119.167.182.117 24 12 2020-08-28 2020-08-28 069.200.244.155 12 12 2020-08-12 2020-08-12 003.101.066.080 12 12 2020-08-21 2020-08-21 068.001.069.003 36 12 2020-08-20 2020-08-20 200.044.248.082 12 12 2020-08-20 2020-08-20 051.083.223.169 12 12 2020-08-13 2020-08-13 054.207.114.180 12 12 2020-09-05 2020-09-05 051.089.074.028 19 12 2020-09-06 2020-09-06 092.063.196.047 13 12 2020-08-14 2020-08-14 122.114.174.113 36 12 2020-09-01 2020-09-01 174.083.056.177 21 12 2020-08-13 2020-08-13 088.208.008.198 12 12 2020-09-05 2020-09-05 172.058.107.158 38 12 2020-09-08 2020-09-08 208.099.096.137 12 12 2020-09-02 2020-09-01 051.083.231.047 12 12 2020-08-29 2020-08-29 068.003.036.020 38 12 2020-09-05 2020-09-05 091.108.056.113 33 12 2020-09-08 2020-09-08 045.141.084.057 13 12 2020-08-29 2020-08-28 137.074.003.065 12 12 2020-08-22 2020-08-22 093.169.054.220 21 12 2020-09-09 2020-09-09 184.189.085.034 12 12 2020-08-13 2020-08-13 051.103.027.207 15 12 2020-08-15 2020-08-15 079.143.024.131 24 12 2020-08-11 2020-08-11 076.221.089.055 20 12 2020-08-13 2020-08-13 001.002.174.098 12 12 2020-08-25 2020-08-24 088.241.069.126 16 12 2020-08-30 2020-08-30 096.253.108.234 86 12 2020-08-24 2020-08-24 091.226.097.003 24 12 2020-09-04 2020-09-04 171.005.044.197 12 12 2020-09-04 2020-09-04 139.099.026.101 12 12 2020-08-27 2020-08-27 047.156.086.123 43 12 2020-09-05 2020-09-04 192.161.087.148 12 12 2020-08-29 2020-08-29 089.242.022.231 20 12 2020-08-23 2020-08-23 218.059.200.045 12 12 2020-08-19 2020-08-18 067.246.113.202 12 12 2020-09-05 2020-09-05 037.049.224.064 6846 12 2020-08-02 2020-08-14 034.102.189.060 12 12 2020-08-11 2020-08-11 185.002.015.046 12 12 2020-08-31 2020-08-31 083.031.201.055 22 12 2020-08-11 2020-08-11 054.241.187.092 12 12 2020-08-11 2020-08-11 181.036.219.044 12 12 2020-08-14 2020-08-14 163.172.216.204 12 12 2020-08-22 2020-08-22 139.099.125.231 19 12 2020-09-01 2020-09-01 178.062.039.189 13 12 2020-09-05 2020-09-04 049.187.135.251 36 12 2020-09-09 2020-09-09 051.091.091.152 12 12 2020-08-23 2020-08-23 002.057.122.193 12 12 2020-08-24 2020-08-23 023.145.208.189 24 12 2020-09-02 2020-09-02 103.103.082.253 12 12 2020-08-28 2020-08-28 125.039.174.193 16 12 2020-08-13 2020-08-13 178.062.049.137 19 12 2020-08-20 2020-08-19 120.151.125.165 22 12 2020-08-21 2020-08-21 051.091.157.120 12 12 2020-08-18 2020-08-18 199.231.233.158 342 12 2020-08-22 2020-08-22 023.121.217.098 12 12 2020-09-04 2020-09-04 107.150.095.003 12 12 2020-09-02 2020-09-02 174.016.081.179 12 12 2020-08-20 2020-08-20 103.221.252.034 12 12 2020-08-31 2020-08-30 069.226.225.073 45 12 2020-09-08 2020-09-08 102.129.224.218 12 12 2020-08-23 2020-08-23 067.248.253.093 138 12 2020-08-31 2020-08-31 206.074.099.181 36 12 2020-08-26 2020-08-26 107.212.248.198 41 12 2020-09-06 2020-09-05 180.188.016.041 24 12 2020-08-26 2020-08-26 067.085.184.143 248 12 2020-08-23 2020-08-23 085.010.210.080 21 12 2020-09-05 2020-09-05 085.244.002.180 12 12 2020-08-17 2020-08-17 142.093.248.215 15 12 2020-08-21 2020-08-21 037.120.186.053 12 12 2020-09-02 2020-09-02 024.151.050.128 561 12 2020-09-04 2020-09-04 103.131.202.090 12 12 2020-09-02 2020-09-02 047.039.163.072 87 12 2020-08-26 2020-08-26 074.231.120.161 27 12 2020-09-01 2020-09-01 052.033.018.151 13 12 2020-08-23 2020-08-23 090.220.196.169 12 12 2020-08-16 2020-08-16 092.170.115.014 12 12 2020-08-14 2020-08-14 196.043.196.030 12 12 2020-08-19 2020-08-18 178.217.188.012 12 12 2020-08-28 2020-08-28 202.152.026.186 16 12 2020-08-31 2020-08-31 180.188.021.251 12 12 2020-09-01 2020-09-01 149.056.108.111 167 12 2020-09-05 2020-09-05 012.224.047.154 95 12 2020-08-15 2020-08-15 177.232.005.115 44 12 2020-09-05 2020-09-05 185.173.026.194 12 12 2020-08-22 2020-08-22 165.232.042.189 12 12 2020-08-25 2020-08-25 167.172.242.129 12 12 2020-08-26 2020-08-26 044.232.106.077 12 12 2020-08-21 2020-08-21 198.251.084.069 22 12 2020-08-31 2020-08-31 076.127.016.243 72 12 2020-09-05 2020-09-05 185.223.028.224 12 12 2020-08-11 2020-08-11 024.126.070.076 44 12 2020-08-22 2020-08-22 051.254.156.114 15 12 2020-09-04 2020-09-03 099.145.053.116 693 12 2020-09-05 2020-09-05 167.172.238.159 12 12 2020-09-05 2020-09-04 142.093.138.081 12 12 2020-08-30 2020-08-30 067.167.129.015 12 12 2020-08-13 2020-08-13 173.237.038.204 12 12 2020-08-29 2020-08-29 018.231.096.224 12 12 2020-08-19 2020-08-19 198.027.115.064 20 12 2020-08-20 2020-08-20 172.074.000.190 43 12 2020-08-25 2020-08-25 076.174.099.116 15 12 2020-08-14 2020-08-14 129.208.055.226 22 12 2020-08-25 2020-08-25 185.179.202.069 12 12 2020-08-27 2020-08-27 131.093.106.244 233 12 2020-09-08 2020-09-08 089.108.082.059 12 12 2020-08-15 2020-08-15 037.123.096.100 12 12 2020-08-21 2020-08-21 099.041.248.153 43 12 2020-08-28 2020-08-28 212.174.162.037 12 12 2020-08-16 2020-08-16 212.154.246.185 12 12 2020-08-30 2020-08-30 035.143.141.136 12 12 2020-09-06 2020-09-06 052.012.157.251 12 12 2020-09-02 2020-09-02 089.040.105.107 24 12 2020-08-18 2020-08-18 167.248.133.052 40 12 2020-09-02 2020-09-02 109.166.036.042 12 12 2020-08-21 2020-08-21 073.163.187.032 83 12 2020-08-17 2020-08-17 082.026.054.028 23 12 2020-08-24 2020-08-24 014.178.161.255 14 12 2020-08-13 2020-08-13 098.240.193.238 34 12 2020-09-06 2020-09-06 045.090.105.042 43 12 2020-08-18 2020-08-18 207.148.082.196 12 12 2020-08-24 2020-08-24 099.126.241.024 20 12 2020-08-19 2020-08-19 058.049.225.144 24 12 2020-08-28 2020-08-28 177.228.075.178 12 12 2020-08-14 2020-08-14 074.077.185.089 45 12 2020-08-17 2020-08-17 072.002.174.214 29 12 2020-09-05 2020-09-05 067.162.026.071 12 12 2020-08-15 2020-08-15 018.236.126.018 12 12 2020-08-21 2020-08-21 177.228.074.010 12 12 2020-08-14 2020-08-14 099.128.002.230 41 12 2020-08-22 2020-08-22 080.110.124.079 223 12 2020-08-29 2020-08-29 071.238.016.026 41 12 2020-08-24 2020-08-24 144.217.182.225 12 12 2020-08-19 2020-08-19 054.177.234.023 12 12 2020-08-20 2020-08-20 173.216.008.201 12 12 2020-09-07 2020-09-07 008.209.067.241 12 12 2020-09-05 2020-09-04 035.163.002.156 204 12 2020-08-27 2020-08-27 094.047.121.028 13 12 2020-08-13 2020-08-13 067.185.084.147 42 12 2020-08-21 2020-08-21 111.177.018.146 12 12 2020-08-26 2020-08-26 005.063.009.037 12 12 2020-08-27 2020-08-27 044.234.103.100 25 12 2020-08-30 2020-08-30 141.168.071.080 34 12 2020-08-13 2020-08-13 185.169.134.004 12 12 2020-09-03 2020-09-03 123.201.019.055 13 12 2020-09-08 2020-09-08 142.011.195.123 24 12 2020-08-11 2020-08-11 185.169.134.172 12 12 2020-09-03 2020-09-03 083.097.020.077 18 12 2020-08-22 2020-08-22 092.118.160.041 13 12 2020-08-12 2020-08-11 074.077.102.032 1677 12 2020-08-20 2020-08-20 082.244.148.181 12 12 2020-08-14 2020-08-14 071.233.038.252 473 12 2020-08-17 2020-08-17 101.091.178.012 12 12 2020-08-11 2020-08-11 065.029.254.010 12 12 2020-09-04 2020-09-04 103.129.221.031 12 12 2020-09-08 2020-09-08 165.072.192.016 12 12 2020-08-26 2020-08-26 174.242.071.174 57 12 2020-08-22 2020-08-21 093.177.067.108 24 12 2020-09-05 2020-09-05 092.045.051.215 12 12 2020-08-19 2020-08-19 154.219.003.158 12 12 2020-08-17 2020-08-17 076.180.207.018 44 12 2020-08-22 2020-08-22 188.165.025.038 12 12 2020-08-19 2020-08-19 050.063.202.040 12 12 2020-09-02 2020-09-02 067.173.049.239 45 12 2020-09-06 2020-09-06 116.203.218.239 12 12 2020-08-15 2020-08-15 099.033.197.108 26 12 2020-08-14 2020-08-14 198.251.089.022 39 12 2020-09-07 2020-09-07 103.125.189.154 12 12 2020-08-24 2020-08-24 154.213.029.064 12 12 2020-09-01 2020-09-01 074.091.115.082 12 12 2020-08-12 2020-08-12 217.144.054.193 12 12 2020-08-30 2020-08-30 188.048.250.179 21 12 2020-09-09 2020-09-09 191.031.133.241 18 12 2020-08-24 2020-08-24 072.225.214.058 44 12 2020-08-23 2020-08-23 159.153.038.082 23 12 2020-08-21 2020-08-21 067.086.222.195 29 12 2020-08-19 2020-08-19 045.153.040.088 12 12 2020-08-27 2020-08-27 151.080.230.188 52 12 2020-08-29 2020-08-29 020.052.032.083 24 12 2020-08-21 2020-08-21 151.080.110.184 24 12 2020-09-05 2020-09-05 050.081.232.247 12 12 2020-08-14 2020-08-14 047.020.197.089 12 12 2020-08-13 2020-08-13 195.178.102.053 24 12 2020-09-01 2020-09-01 108.177.015.127 12 12 2020-08-21 2020-08-21 054.183.022.233 12 12 2020-08-22 2020-08-22 035.179.096.010 12 12 2020-08-26 2020-08-26 121.040.141.140 16 12 2020-08-12 2020-08-12 013.057.027.154 12 12 2020-08-11 2020-08-11 089.033.044.219 12 12 2020-08-22 2020-08-22 185.083.144.011 12 12 2020-08-15 2020-08-15 070.233.106.165 133 12 2020-08-21 2020-08-21 088.126.158.153 12 12 2020-08-16 2020-08-16 002.125.076.092 43 12 2020-09-05 2020-09-05 179.127.192.242 12 12 2020-08-30 2020-08-30 070.163.052.056 35 12 2020-08-14 2020-08-14 037.201.185.124 12 12 2020-09-05 2020-09-05 089.042.217.196 12 12 2020-08-22 2020-08-22 075.064.092.115 18 12 2020-09-05 2020-09-05 188.124.037.064 18 12 2020-08-14 2020-08-14 098.226.221.251 36 12 2020-08-30 2020-08-30 020.054.098.179 18 12 2020-09-07 2020-09-07 050.082.214.178 12 12 2020-08-29 2020-08-29 018.210.054.079 32 12 2020-09-04 2020-09-04 065.027.020.155 45 12 2020-08-15 2020-08-15 095.071.119.162 12 12 2020-08-19 2020-08-19 043.250.207.001 2285 12 2020-07-21 2020-08-18 114.079.169.069 12 12 2020-08-26 2020-08-26 047.025.045.073 38 12 2020-08-31 2020-08-31 043.242.200.189 24 12 2020-09-08 2020-09-08 149.056.030.110 12 12 2020-08-15 2020-08-15 035.204.110.080 14 12 2020-08-30 2020-08-30 114.079.169.023 12 12 2020-08-26 2020-08-26 177.054.148.165 12 12 2020-08-22 2020-08-22 094.156.174.065 12 12 2020-08-20 2020-08-20 037.139.007.127 13 12 2020-09-01 2020-08-31 118.171.183.216 13 12 2020-09-07 2020-09-07 088.071.037.170 12 12 2020-08-22 2020-08-22 045.155.124.058 12 12 2020-08-24 2020-08-24 008.044.063.070 16 12 2020-08-13 2020-08-13 005.039.073.129 22 12 2020-09-05 2020-09-05 130.061.233.014 193 12 2020-08-15 2020-08-15 045.154.170.200 21 12 2020-08-26 2020-08-26 087.100.087.023 12 12 2020-09-01 2020-09-01 071.246.006.250 51 12 2020-08-16 2020-08-16 013.057.186.234 12 12 2020-08-23 2020-08-23 115.070.022.105 12 12 2020-08-30 2020-08-30 020.037.082.084 41 12 2020-08-23 2020-08-23 162.209.218.123 24 12 2020-08-29 2020-08-29 103.059.145.194 12 12 2020-09-01 2020-09-01 081.099.092.115 45 12 2020-08-26 2020-08-26 106.215.200.059 12 12 2020-09-04 2020-09-04 003.022.167.066 18 12 2020-08-29 2020-08-29 129.211.076.182 14 12 2020-08-20 2020-08-20 159.138.039.164 12 12 2020-08-31 2020-08-31 084.229.054.228 12 12 2020-08-18 2020-08-18 041.176.150.169 12 12 2020-08-21 2020-08-21 018.237.233.185 12 12 2020-08-21 2020-08-21 082.102.173.090 12 12 2020-08-11 2020-08-11 193.031.117.003 12 12 2020-08-26 2020-08-26 103.132.252.071 12 12 2020-08-19 2020-08-19 052.053.125.225 13 12 2020-08-21 2020-08-21 198.098.057.036 12 12 2020-08-25 2020-08-25 045.153.169.221 24 12 2020-08-12 2020-08-12 035.199.007.194 24 12 2020-08-21 2020-08-21 099.078.090.096 23 12 2020-09-02 2020-09-02 089.040.125.235 12 12 2020-09-06 2020-09-06 193.031.119.182 12 12 2020-08-14 2020-08-14 074.068.079.208 12 12 2020-08-31 2020-08-31 065.025.022.252 36 12 2020-08-21 2020-08-21 035.167.086.146 12 12 2020-08-11 2020-08-11 075.065.113.212 22 12 2020-08-25 2020-08-25 013.056.224.124 12 12 2020-09-02 2020-09-02 159.138.142.032 12 12 2020-08-31 2020-08-31 081.091.178.070 12 12 2020-08-15 2020-08-15 185.193.030.029 24 12 2020-08-24 2020-08-24 070.170.054.129 38 12 2020-08-21 2020-08-21 003.018.225.112 24 12 2020-09-08 2020-09-08 075.190.108.095 40 12 2020-08-25 2020-08-25 129.226.112.181 12 12 2020-08-20 2020-08-19 076.174.016.173 24 12 2020-08-19 2020-08-19 106.215.139.083 12 12 2020-09-04 2020-09-04 138.197.089.186 12 12 2020-08-19 2020-08-18 035.158.108.213 12 12 2020-08-30 2020-08-30 142.093.106.177 12 12 2020-08-15 2020-08-15 091.195.240.094 12 12 2020-08-30 2020-08-30 020.037.082.026 23 12 2020-08-18 2020-08-18 095.217.017.151 12 12 2020-08-25 2020-08-25 071.255.109.029 24 12 2020-08-24 2020-08-24 047.026.210.169 559 12 2020-09-07 2020-09-07 013.057.230.253 13 12 2020-08-21 2020-08-21 167.099.156.132 12 12 2020-08-11 2020-08-11 122.010.042.251 24 12 2020-08-12 2020-08-12 219.244.016.225 24568 12 2020-07-31 2020-08-24 185.071.065.063 12 12 2020-08-26 2020-08-26 047.018.112.225 25 12 2020-09-08 2020-09-08 167.114.155.140 12 12 2020-08-24 2020-08-24 099.075.106.001 12 12 2020-08-13 2020-08-13 125.161.129.163 12 12 2020-09-09 2020-09-09 024.139.035.093 19 12 2020-09-08 2020-09-08 035.199.087.116 12 12 2020-08-15 2020-08-15 088.099.036.145 24 12 2020-08-11 2020-08-11 072.218.239.041 530 12 2020-09-05 2020-09-04 092.118.207.006 14 12 2020-09-08 2020-09-08 167.172.226.002 13 12 2020-08-19 2020-08-18 067.181.142.106 145 12 2020-08-27 2020-08-27 037.128.185.113 24 12 2020-09-08 2020-09-08 088.099.040.121 12 12 2020-08-16 2020-08-16 070.127.105.136 12 12 2020-08-31 2020-08-31 024.090.076.203 43 12 2020-09-05 2020-09-04 111.177.016.044 12 12 2020-08-26 2020-08-26 080.116.189.142 41 12 2020-08-18 2020-08-18 204.236.173.088 12 12 2020-09-03 2020-09-03 145.239.006.033 14 12 2020-09-02 2020-09-02 003.008.171.131 12 12 2020-08-18 2020-08-18 012.151.056.025 37 12 2020-08-24 2020-08-23 049.234.218.018 12 12 2020-08-14 2020-08-14 068.171.125.199 42 12 2020-08-28 2020-08-28 024.098.218.061 12 12 2020-09-07 2020-09-07 035.163.249.026 12 12 2020-08-22 2020-08-22 142.093.179.085 12 12 2020-09-07 2020-09-07 013.056.016.001 12 12 2020-09-09 2020-09-09 195.208.001.105 12 12 2020-08-12 2020-08-12 210.055.148.089 28 12 2020-08-16 2020-08-16 144.202.103.071 24 12 2020-08-12 2020-08-12 052.067.019.235 24 12 2020-08-12 2020-08-12 098.255.123.086 12 12 2020-08-28 2020-08-28 098.211.027.239 12 12 2020-09-03 2020-09-03 091.204.212.138 12 12 2020-08-24 2020-08-24 070.180.024.243 12 12 2020-09-08 2020-09-08 176.057.161.178 12 12 2020-08-21 2020-08-21 018.220.087.071 24 12 2020-08-11 2020-08-11 005.065.246.167 19 12 2020-09-07 2020-09-07 013.035.111.126 15 12 2020-08-19 2020-08-19 043.248.188.140 12 12 2020-08-11 2020-08-11 013.086.102.127 29 12 2020-08-30 2020-08-30 013.073.199.210 12 12 2020-08-29 2020-08-29 047.057.015.026 12 12 2020-08-21 2020-08-21 195.154.080.135 12 12 2020-09-02 2020-09-02 018.236.239.031 13 12 2020-08-22 2020-08-22 149.028.039.115 12 12 2020-08-15 2020-08-15 054.177.179.071 12 12 2020-08-22 2020-08-22 013.056.059.134 12 12 2020-09-02 2020-09-02 173.217.093.193 38 12 2020-08-26 2020-08-26 185.050.106.228 12 12 2020-08-29 2020-08-29 103.046.013.031 12 12 2020-08-31 2020-08-31 144.172.079.028 12 12 2020-08-14 2020-08-14 159.069.022.210 12 12 2020-09-08 2020-09-08 077.030.011.066 22 12 2020-08-25 2020-08-25 098.252.006.034 3488 12 2020-09-04 2020-09-04 027.221.078.235 12 12 2020-08-17 2020-08-17 045.009.062.046 12 12 2020-08-23 2020-08-23 068.115.104.091 12 12 2020-09-08 2020-09-08 067.169.221.102 22 12 2020-08-29 2020-08-29 005.070.089.063 12 12 2020-08-26 2020-08-26 099.097.012.101 45 12 2020-08-24 2020-08-24 076.169.098.076 13 12 2020-08-23 2020-08-23 151.070.177.101 41 12 2020-08-18 2020-08-18 198.251.225.088 12 12 2020-08-18 2020-08-18 068.230.165.068 43 12 2020-08-22 2020-08-22 202.143.111.060 12 12 2020-09-09 2020-09-09 018.237.021.022 12 12 2020-08-23 2020-08-23 031.161.201.118 24 12 2020-08-23 2020-08-23 185.198.056.049 13 12 2020-08-28 2020-08-28 045.113.202.037 64 12 2020-08-29 2020-08-29 075.045.208.205 12 12 2020-09-04 2020-09-04 185.053.177.009 12 12 2020-08-29 2020-08-29 119.023.032.142 12 12 2020-08-31 2020-08-31 061.177.172.013 77967 12 2020-08-05 2020-09-01 172.089.116.066 42 12 2020-09-06 2020-09-06 207.228.078.255 36 12 2020-08-15 2020-08-15 108.211.158.116 17 12 2020-08-25 2020-08-25 047.056.006.208 12 12 2020-09-08 2020-09-08 202.143.111.154 24 12 2020-08-31 2020-08-31 125.160.137.254 42 12 2020-09-01 2020-09-01 073.009.111.181 44 12 2020-08-30 2020-08-30 173.216.144.026 38 12 2020-08-28 2020-08-28 218.089.077.010 12 12 2020-08-11 2020-08-11 087.251.074.201 15 12 2020-09-05 2020-09-05 185.216.033.024 37 12 2020-08-30 2020-08-30 018.237.018.227 12 12 2020-09-08 2020-09-08 103.251.037.136 12 12 2020-09-03 2020-09-03 211.200.104.252 12 12 2020-09-03 2020-09-03 092.038.129.173 12 12 2020-08-24 2020-08-24 142.093.163.152 12 12 2020-09-02 2020-09-01 108.197.092.193 21 12 2020-08-26 2020-08-26 122.165.203.104 12 12 2020-08-26 2020-08-26 159.065.138.161 12 12 2020-09-05 2020-09-04 174.238.003.000 39 12 2020-09-01 2020-09-01 099.092.083.161 23 12 2020-08-15 2020-08-15 193.072.079.190 12 12 2020-08-30 2020-08-30 099.111.093.080 12 12 2020-08-30 2020-08-30 159.069.242.039 12 12 2020-08-22 2020-08-22 118.172.187.050 12 12 2020-08-14 2020-08-14 052.056.099.177 13 12 2020-08-16 2020-08-16 068.204.053.058 34 12 2020-08-12 2020-08-12 027.221.075.021 24 12 2020-08-20 2020-08-20 213.163.094.077 12 12 2020-08-12 2020-08-12 098.211.003.161 41 12 2020-09-08 2020-09-08 104.248.050.177 175 12 2020-08-25 2020-08-25 119.008.017.111 23 12 2020-09-08 2020-09-08 062.060.210.053 24 12 2020-08-15 2020-08-15 213.142.151.063 12 12 2020-08-17 2020-08-17 098.214.141.098 126 12 2020-08-24 2020-08-24 054.177.221.168 12 12 2020-08-21 2020-08-21 039.046.254.061 12 12 2020-08-29 2020-08-29 157.047.055.114 14 12 2020-08-27 2020-08-27 082.022.017.249 12 12 2020-09-07 2020-09-07 050.096.079.077 49 12 2020-08-14 2020-08-14 181.106.226.072 13 12 2020-09-07 2020-09-07 018.217.066.028 12 12 2020-08-19 2020-08-19 062.210.172.008 12 12 2020-08-28 2020-08-27 119.008.016.216 12 12 2020-09-06 2020-09-06 092.038.154.005 12 12 2020-08-28 2020-08-28 085.249.039.032 12 12 2020-08-17 2020-08-17 112.124.110.228 12 12 2020-08-23 2020-08-23 213.142.156.015 12 12 2020-08-27 2020-08-27 197.045.096.250 14 12 2020-09-09 2020-09-09 099.242.085.220 50 12 2020-08-17 2020-08-17 182.075.165.202 12218 12 2020-07-26 2020-08-17 077.099.154.058 24 12 2020-08-28 2020-08-28 103.115.044.189 19 12 2020-08-20 2020-08-20 145.239.080.014 24 12 2020-08-24 2020-08-24 188.164.194.018 12 12 2020-08-30 2020-08-30 012.163.076.002 23 12 2020-09-03 2020-09-03 090.168.203.043 293 12 2020-08-28 2020-08-28 089.039.013.179 24 12 2020-09-01 2020-09-01 054.187.070.140 12 12 2020-09-03 2020-09-03 154.209.006.003 24 12 2020-08-15 2020-08-15 073.254.111.216 43 12 2020-09-06 2020-09-06 142.112.164.153 203 12 2020-09-08 2020-09-08 213.142.156.026 12 12 2020-09-02 2020-09-02 003.010.214.207 12 12 2020-09-03 2020-09-03 099.122.008.156 39 12 2020-08-20 2020-08-20 070.122.249.105 28 12 2020-09-05 2020-09-05 083.097.020.088 13216 12 2020-09-06 2020-09-06 047.052.123.052 24 12 2020-09-01 2020-09-01 212.113.183.252 12 12 2020-09-03 2020-09-03 052.067.093.074 24 12 2020-08-12 2020-08-12 065.024.059.135 23 12 2020-08-11 2020-08-11 191.095.146.253 309 12 2020-09-07 2020-09-07 082.221.128.188 24 12 2020-08-30 2020-08-30 141.098.080.067 101079 12 2020-08-06 2020-08-15 159.065.157.234 12 12 2020-09-08 2020-09-08 217.106.107.170 12 12 2020-08-17 2020-08-17 076.025.165.211 12 12 2020-08-13 2020-08-13 171.240.202.050 94 12 2020-08-30 2020-08-30 018.236.238.097 13 12 2020-08-19 2020-08-19 005.173.177.007 12 12 2020-09-05 2020-09-05 149.028.185.190 12 12 2020-08-29 2020-08-29 076.169.217.124 45 12 2020-08-24 2020-08-24 185.078.022.018 12 12 2020-08-31 2020-08-31 185.062.189.219 12 12 2020-08-29 2020-08-29 185.078.022.074 12 12 2020-08-31 2020-08-31 174.218.129.235 12 12 2020-09-05 2020-09-05 185.165.190.034 15 12 2020-08-16 2020-08-15 068.183.218.187 12 12 2020-08-19 2020-08-19 118.123.018.106 12 12 2020-09-02 2020-09-02 043.254.154.163 12 12 2020-09-08 2020-09-08 106.051.240.089 12 12 2020-08-24 2020-08-24 083.097.020.097 12 12 2020-08-26 2020-08-25 159.089.053.094 14 12 2020-08-12 2020-08-12 076.106.150.216 36 11 2020-08-16 2020-08-16 084.065.201.042 36 11 2020-09-08 2020-09-08 218.059.200.040 11 11 2020-08-18 2020-08-17 024.236.189.014 28 11 2020-08-21 2020-08-21 024.012.132.169 104 11 2020-08-25 2020-08-25 107.199.108.137 44 11 2020-09-03 2020-09-03 172.058.109.127 106 11 2020-09-08 2020-09-08 079.170.125.164 40 11 2020-09-02 2020-09-02 084.065.194.146 52 11 2020-08-31 2020-08-31 173.234.027.134 64 11 2020-08-16 2020-08-16 193.025.253.102 22 11 2020-09-02 2020-09-02 108.234.182.113 346 11 2020-08-12 2020-08-12 068.053.150.068 28 11 2020-08-23 2020-08-23 080.012.083.251 12 11 2020-08-14 2020-08-13 050.049.101.097 36 11 2020-08-31 2020-08-31 024.088.211.037 19 11 2020-08-24 2020-08-24 104.042.219.041 49 11 2020-08-23 2020-08-23 092.238.121.059 50 11 2020-08-22 2020-08-22 075.090.245.200 40 11 2020-08-30 2020-08-30 071.191.221.103 20 11 2020-09-04 2020-09-04 054.207.056.159 11 11 2020-08-19 2020-08-19 162.253.172.110 38 11 2020-09-03 2020-09-03 104.071.238.077 19 11 2020-09-09 2020-09-09 107.192.178.043 48 11 2020-08-17 2020-08-16 096.060.187.173 94 11 2020-09-07 2020-09-07 162.216.007.221 112 11 2020-08-29 2020-08-28 174.020.111.004 23 11 2020-08-23 2020-08-23 108.003.146.118 40 11 2020-08-29 2020-08-29 192.161.192.192 20 11 2020-08-22 2020-08-22 172.058.107.181 21 11 2020-09-08 2020-09-08 066.075.026.168 91 11 2020-08-14 2020-08-14 107.194.181.036 44 11 2020-08-21 2020-08-21 064.188.176.028 14 11 2020-08-20 2020-08-20 069.121.214.173 27 11 2020-09-07 2020-09-06 185.211.244.209 11 11 2020-08-31 2020-08-31 108.003.166.103 21 11 2020-08-31 2020-08-30 074.141.164.122 21 11 2020-08-15 2020-08-15 144.172.066.106 22 11 2020-08-17 2020-08-17 174.020.187.014 30 11 2020-08-22 2020-08-22 107.194.003.008 37 11 2020-09-03 2020-09-03 068.183.070.027 11 11 2020-08-19 2020-08-19 076.219.110.201 19 11 2020-08-28 2020-08-28 064.188.178.019 28 11 2020-08-12 2020-08-12 172.058.107.222 21 11 2020-09-08 2020-09-08 024.013.093.128 44 11 2020-09-05 2020-09-05 064.186.077.084 322 11 2020-08-25 2020-08-25 071.197.191.223 37 11 2020-08-18 2020-08-18 069.121.019.113 75 11 2020-09-04 2020-09-04 069.121.008.250 40 11 2020-09-03 2020-09-03 066.066.198.089 32 11 2020-08-14 2020-08-14 146.200.096.254 25 11 2020-08-16 2020-08-16 065.025.224.229 39 11 2020-09-09 2020-09-09 172.058.158.128 20 11 2020-08-26 2020-08-25 065.025.088.097 34 11 2020-08-29 2020-08-29 068.183.075.207 11 11 2020-08-19 2020-08-19 096.060.081.197 37 11 2020-08-18 2020-08-18 108.235.223.158 34 11 2020-09-08 2020-09-08 071.255.102.049 37 11 2020-08-25 2020-08-25 096.060.089.054 63 11 2020-08-29 2020-08-29 104.060.054.012 115 11 2020-08-24 2020-08-24 064.187.178.133 35 11 2020-08-16 2020-08-16 080.007.099.206 38 11 2020-08-23 2020-08-23 068.052.195.125 21 11 2020-08-23 2020-08-23 054.183.118.054 11 11 2020-08-22 2020-08-22 065.024.134.055 105 11 2020-09-07 2020-09-07 116.106.016.243 96 11 2020-08-17 2020-08-17 178.062.018.009 11 11 2020-09-03 2020-09-02 044.234.102.244 46 11 2020-08-27 2020-08-27 044.234.103.011 17 11 2020-08-17 2020-08-17 107.216.246.107 43 11 2020-09-04 2020-09-04 065.043.151.002 24 11 2020-08-16 2020-08-16 076.226.083.027 38 11 2020-09-05 2020-09-05 069.114.043.149 37 11 2020-08-31 2020-08-31 107.212.251.007 18 11 2020-09-02 2020-09-02 074.141.057.199 22 11 2020-08-19 2020-08-19 139.099.135.136 1018 11 2020-08-25 2020-08-25 072.004.030.172 42 11 2020-08-25 2020-08-25 107.212.251.205 25 11 2020-09-01 2020-09-01 072.004.031.130 42 11 2020-08-25 2020-08-25 024.126.208.070 19 11 2020-08-31 2020-08-31 081.019.214.131 29 11 2020-09-07 2020-09-07 076.180.158.181 38 11 2020-09-05 2020-09-05 044.234.103.172 42 11 2020-08-25 2020-08-25 172.058.142.223 36 11 2020-08-27 2020-08-27 069.114.034.108 40 11 2020-08-17 2020-08-17 068.051.028.168 18 11 2020-08-29 2020-08-29 024.126.159.254 30 11 2020-08-21 2020-08-21 179.214.128.040 11 11 2020-09-08 2020-09-08 212.033.203.225 30 11 2020-08-14 2020-08-13 076.104.210.213 176 11 2020-08-20 2020-08-20 082.194.046.135 58 11 2020-09-07 2020-09-07 162.248.093.192 581 11 2020-09-04 2020-09-04 172.058.140.191 39 11 2020-08-29 2020-08-29 069.115.021.002 242 11 2020-08-20 2020-08-20 172.058.140.007 38 11 2020-08-18 2020-08-18 071.195.096.133 39 11 2020-08-20 2020-08-20 185.132.053.115 15 11 2020-08-17 2020-08-17 054.203.114.114 11 11 2020-09-05 2020-09-05 185.132.053.118 11 11 2020-08-26 2020-08-26 095.217.205.018 26 11 2020-08-26 2020-08-26 073.186.093.230 136 11 2020-09-03 2020-09-03 066.069.073.100 21 11 2020-08-15 2020-08-15 075.038.021.081 25 11 2020-08-20 2020-08-20 187.190.116.203 1446 11 2020-08-26 2020-08-26 073.157.074.099 27 11 2020-08-22 2020-08-22 106.012.091.102 11 11 2020-08-20 2020-08-19 106.054.095.188 16 11 2020-09-04 2020-09-04 172.058.140.053 12 11 2020-08-17 2020-08-17 172.058.140.015 124 11 2020-08-15 2020-08-15 024.128.255.188 25 11 2020-09-03 2020-09-03 079.141.072.019 28 11 2020-08-23 2020-08-23 172.058.140.122 22 11 2020-08-28 2020-08-28 024.228.194.028 18 11 2020-09-07 2020-09-07 065.043.215.007 42 11 2020-08-16 2020-08-16 024.127.125.154 38 11 2020-09-01 2020-09-01 050.054.114.243 121 11 2020-08-26 2020-08-25 005.188.071.007 206 11 2020-09-06 2020-09-06 068.199.052.127 113 11 2020-08-22 2020-08-22 172.058.140.111 47 11 2020-08-16 2020-08-16 162.248.088.240 775 11 2020-08-29 2020-08-29 095.010.201.153 12 11 2020-09-08 2020-09-08 075.060.153.204 467 11 2020-08-25 2020-08-25 044.234.102.082 42 11 2020-08-16 2020-08-16 069.120.190.025 125 11 2020-08-22 2020-08-22 073.156.244.255 144 11 2020-08-29 2020-08-29 118.211.092.216 35 11 2020-08-22 2020-08-22 139.099.237.068 11 11 2020-09-04 2020-09-04 068.051.158.110 25 11 2020-09-06 2020-09-06 107.204.125.080 33 11 2020-08-27 2020-08-27 077.182.110.043 22 11 2020-08-25 2020-08-25 125.024.185.089 13 11 2020-08-31 2020-08-31 069.117.109.137 28 11 2020-08-21 2020-08-21 073.185.036.197 58 11 2020-08-16 2020-08-16 046.019.085.170 17 11 2020-09-03 2020-09-03 084.064.170.168 41 11 2020-09-07 2020-09-07 103.089.091.005 11 11 2020-08-17 2020-08-17 024.088.153.133 32 11 2020-09-02 2020-09-02 024.014.194.056 124 11 2020-08-29 2020-08-29 068.052.085.039 38 11 2020-08-20 2020-08-20 005.188.156.081 11 11 2020-09-08 2020-09-08 185.134.022.094 101 11 2020-09-08 2020-09-08 107.201.046.127 24 11 2020-09-09 2020-09-09 073.188.078.184 38 11 2020-08-13 2020-08-13 068.052.049.033 25 11 2020-08-23 2020-08-23 072.075.253.132 37 11 2020-08-20 2020-08-20 066.068.054.160 30 11 2020-08-25 2020-08-25 076.180.084.179 35 11 2020-08-27 2020-08-27 073.156.232.178 37 11 2020-09-08 2020-09-08 137.025.172.098 39 11 2020-09-07 2020-09-07 172.058.110.204 36 11 2020-08-22 2020-08-22 069.117.088.020 40 11 2020-08-22 2020-08-22 069.117.084.255 29 11 2020-09-02 2020-09-02 199.231.209.158 22 11 2020-09-07 2020-09-07 069.113.068.050 19 11 2020-08-11 2020-08-11 069.116.149.165 26 11 2020-08-26 2020-08-26 172.058.143.032 43 11 2020-09-01 2020-09-01 071.227.138.238 20 11 2020-08-20 2020-08-20 071.194.208.003 22 11 2020-09-06 2020-09-06 089.179.007.084 11 11 2020-09-03 2020-09-03 172.058.143.024 25 11 2020-09-08 2020-09-08 069.116.079.131 110 11 2020-08-22 2020-08-22 193.025.253.039 19 11 2020-08-24 2020-08-24 079.141.065.183 12 11 2020-08-29 2020-08-29 071.227.164.075 32 11 2020-08-22 2020-08-22 107.218.241.163 35 11 2020-08-16 2020-08-16 088.109.076.175 70 11 2020-08-21 2020-08-21 167.114.061.245 11 11 2020-09-02 2020-09-02 107.208.189.183 36 11 2020-08-11 2020-08-11 066.070.180.055 13 11 2020-08-31 2020-08-31 107.209.076.070 23 11 2020-08-26 2020-08-26 069.112.064.047 295 11 2020-09-04 2020-09-04 108.243.237.107 98 11 2020-08-26 2020-08-26 089.179.090.067 11 11 2020-08-15 2020-08-15 054.183.074.230 11 11 2020-08-22 2020-08-22 054.039.015.063 11 11 2020-08-22 2020-08-22 073.187.151.074 37 11 2020-09-08 2020-09-08 206.071.159.164 38 11 2020-08-18 2020-08-18 051.038.057.078 11 11 2020-09-02 2020-09-01 104.050.107.135 30 11 2020-09-09 2020-09-09 072.005.053.020 48 11 2020-08-12 2020-08-12 072.090.137.106 11 11 2020-08-13 2020-08-13 081.004.254.010 11 11 2020-08-14 2020-08-14 024.105.017.110 21 11 2020-08-31 2020-08-31 073.089.228.052 25 11 2020-09-06 2020-09-06 073.090.036.227 21 11 2020-08-22 2020-08-22 034.221.067.199 11 11 2020-08-21 2020-08-21 051.039.228.018 23 11 2020-08-12 2020-08-12 072.087.126.240 26 11 2020-08-29 2020-08-29 171.007.235.122 38 11 2020-08-13 2020-08-13 079.133.120.072 65 11 2020-08-14 2020-08-14 075.111.181.058 25 11 2020-09-08 2020-09-08 095.019.054.194 30 11 2020-08-23 2020-08-23 074.134.167.254 29 11 2020-08-21 2020-08-21 073.090.161.186 20 11 2020-08-26 2020-08-26 085.171.232.201 27 11 2020-09-03 2020-09-03 096.242.218.034 38 11 2020-09-04 2020-09-04 091.133.105.036 12 11 2020-08-12 2020-08-12 076.095.169.065 31 11 2020-08-24 2020-08-24 069.142.200.246 37 11 2020-08-19 2020-08-19 208.114.082.118 32 11 2020-08-19 2020-08-19 034.221.046.218 11 11 2020-08-22 2020-08-22 101.175.065.109 27 11 2020-09-01 2020-09-01 073.152.151.078 27 11 2020-09-02 2020-09-02 024.094.082.164 15 11 2020-08-20 2020-08-20 068.187.243.046 33 11 2020-08-26 2020-08-26 064.130.154.066 19 11 2020-08-14 2020-08-14 068.034.133.113 38 11 2020-08-29 2020-08-29 066.115.175.046 27 11 2020-08-18 2020-08-18 108.194.143.095 37 11 2020-08-22 2020-08-22 074.134.101.116 41 11 2020-09-09 2020-09-09 072.089.045.243 44 11 2020-09-04 2020-09-04 192.111.133.016 59 11 2020-08-22 2020-08-22 103.066.115.174 22 11 2020-09-02 2020-09-02 050.029.210.192 19 11 2020-09-08 2020-09-08 172.090.116.085 33 11 2020-08-24 2020-08-24 064.130.180.181 57 11 2020-08-17 2020-08-17 101.174.010.243 44 11 2020-08-18 2020-08-18 073.152.225.003 30 11 2020-08-28 2020-08-28 178.195.123.056 231 11 2020-08-23 2020-08-23 024.250.218.150 11 11 2020-08-31 2020-08-31 050.018.010.154 11 11 2020-09-06 2020-09-06 076.252.122.175 62 11 2020-08-17 2020-08-17 108.185.198.099 61 11 2020-09-09 2020-09-09 068.190.056.038 272 11 2020-08-25 2020-08-25 069.136.220.167 18 11 2020-08-19 2020-08-19 068.037.195.016 17 11 2020-08-16 2020-08-16 188.236.145.170 21 11 2020-08-28 2020-08-28 108.184.225.092 38 11 2020-08-14 2020-08-14 136.228.120.144 33 11 2020-08-20 2020-08-20 034.221.187.160 11 11 2020-09-06 2020-09-06 101.166.037.077 20 11 2020-08-19 2020-08-19 075.017.252.101 28 11 2020-08-15 2020-08-15 047.223.120.236 86 11 2020-08-28 2020-08-28 101.166.016.172 28 11 2020-08-23 2020-08-23 147.012.249.006 17 11 2020-08-27 2020-08-27 073.199.232.090 22 11 2020-08-14 2020-08-14 184.090.001.054 34 11 2020-08-21 2020-08-21 069.137.169.078 39 11 2020-08-31 2020-08-31 073.091.219.029 75 11 2020-09-08 2020-09-08 073.091.195.148 20 11 2020-08-23 2020-08-23 071.237.067.151 28 11 2020-08-12 2020-08-12 079.173.232.186 34 11 2020-08-29 2020-08-29 091.133.189.060 27 11 2020-08-30 2020-08-30 076.176.223.172 27 11 2020-09-02 2020-09-02 075.110.222.129 33 11 2020-08-14 2020-08-14 078.095.214.100 20 11 2020-09-02 2020-09-02 076.096.155.211 30 11 2020-08-14 2020-08-13 193.188.109.135 31 11 2020-09-02 2020-09-02 054.219.137.252 11 11 2020-09-06 2020-09-06 095.019.095.177 41 11 2020-08-22 2020-08-22 024.250.129.113 42 11 2020-08-16 2020-08-16 112.141.049.011 20 11 2020-08-29 2020-08-29 078.046.098.130 42 11 2020-09-02 2020-09-02 096.242.001.201 151 11 2020-08-12 2020-08-12 101.166.106.249 14 11 2020-08-19 2020-08-19 024.107.169.081 41 11 2020-09-05 2020-09-05 185.195.017.041 53 11 2020-09-02 2020-09-02 024.247.212.138 34 11 2020-08-14 2020-08-14 034.221.004.008 11 11 2020-09-06 2020-09-06 172.058.046.230 29 11 2020-08-26 2020-08-26 065.031.240.170 16 11 2020-09-09 2020-09-09 193.036.225.119 21 11 2020-09-01 2020-09-01 174.054.031.101 19 11 2020-08-12 2020-08-12 034.220.054.220 11 11 2020-08-21 2020-08-21 108.204.057.040 20 11 2020-08-13 2020-08-13 024.253.228.150 17 11 2020-08-11 2020-08-11 173.171.228.080 71 11 2020-08-29 2020-08-29 024.253.228.136 43 11 2020-09-01 2020-09-01 188.247.079.027 16 11 2020-08-26 2020-08-26 172.058.067.061 19 11 2020-09-01 2020-09-01 047.219.082.129 21 11 2020-08-19 2020-08-19 172.058.067.122 22 11 2020-09-01 2020-09-01 172.058.067.229 19 11 2020-09-08 2020-09-08 052.224.091.058 38 11 2020-08-13 2020-08-13 172.058.070.198 20 11 2020-09-01 2020-09-01 193.203.014.202 11 11 2020-08-27 2020-08-27 188.071.235.212 20 11 2020-08-23 2020-08-23 003.008.183.070 19 11 2020-08-21 2020-08-21 064.121.198.049 41 11 2020-08-27 2020-08-27 068.033.012.170 38 11 2020-08-23 2020-08-23 034.219.099.023 11 11 2020-08-23 2020-08-23 082.178.082.038 18 11 2020-09-05 2020-09-05 144.217.016.166 354 11 2020-08-25 2020-08-25 024.098.112.072 28 11 2020-08-31 2020-08-31 086.136.195.050 25 11 2020-09-08 2020-09-08 184.101.016.203 34 11 2020-09-06 2020-09-06 050.025.229.146 39 11 2020-09-08 2020-09-08 176.113.115.245 23 11 2020-08-16 2020-08-15 173.171.030.010 236 11 2020-09-06 2020-09-06 151.106.015.091 21 11 2020-09-05 2020-09-05 193.037.253.039 50787 11 2020-08-07 2020-08-22 068.185.175.124 24 11 2020-08-28 2020-08-28 107.179.172.123 21 11 2020-08-24 2020-08-24 073.152.003.188 33 11 2020-09-02 2020-09-02 172.058.059.244 53 11 2020-08-13 2020-08-13 157.055.199.077 4333 11 2020-08-12 2020-08-13 086.030.132.132 20 11 2020-08-23 2020-08-23 050.026.210.200 93 11 2020-09-09 2020-09-09 068.185.157.016 44 11 2020-09-03 2020-09-03 077.081.164.188 44 11 2020-08-16 2020-08-16 068.185.129.229 17 11 2020-08-15 2020-08-15 024.095.077.168 38 11 2020-09-07 2020-09-07 096.246.023.119 39 11 2020-08-26 2020-08-26 051.068.183.103 29 11 2020-08-19 2020-08-19 024.253.025.194 22 11 2020-09-04 2020-09-04 068.051.007.121 33 11 2020-09-02 2020-09-02 184.098.043.071 19 11 2020-08-31 2020-08-31 068.185.068.036 41 11 2020-09-02 2020-09-02 074.134.036.010 27 11 2020-08-23 2020-08-23 108.196.012.112 41 11 2020-08-18 2020-08-18 184.097.155.229 107 11 2020-08-25 2020-08-25 003.131.039.197 13 11 2020-08-27 2020-08-27 047.220.189.229 40 11 2020-08-22 2020-08-22 005.132.219.187 18 11 2020-08-31 2020-08-31 093.126.213.225 22 11 2020-08-19 2020-08-19 086.134.121.168 37 11 2020-08-17 2020-08-17 087.135.207.207 22 11 2020-09-04 2020-09-04 084.013.174.178 21 11 2020-08-16 2020-08-16 075.115.105.137 93 11 2020-08-18 2020-08-18 052.226.001.085 26 11 2020-08-22 2020-08-22 173.172.035.071 19 11 2020-08-22 2020-08-22 024.099.026.176 22 11 2020-08-14 2020-08-14 096.249.150.061 41 11 2020-08-17 2020-08-17 066.203.228.128 60 11 2020-08-29 2020-08-29 108.210.200.068 38 11 2020-09-08 2020-09-08 047.219.112.080 20 11 2020-08-14 2020-08-14 096.248.108.103 37 11 2020-09-08 2020-09-08 077.001.034.116 38 11 2020-08-14 2020-08-14 096.248.017.113 35 11 2020-08-11 2020-08-11 050.026.231.134 106 11 2020-08-22 2020-08-22 003.132.123.039 18 11 2020-08-24 2020-08-24 075.115.121.120 20 11 2020-08-26 2020-08-26 054.219.234.017 11 11 2020-08-22 2020-08-22 184.098.168.161 43 11 2020-09-01 2020-09-01 185.198.056.060 203 11 2020-08-22 2020-08-22 108.199.085.243 28 11 2020-09-09 2020-09-09 086.134.094.218 34 11 2020-08-13 2020-08-13 066.108.228.203 19 11 2020-09-06 2020-09-06 172.058.087.121 37 11 2020-08-24 2020-08-24 071.244.141.101 41 11 2020-08-31 2020-08-31 024.242.043.090 19 11 2020-09-03 2020-09-03 082.047.074.144 22 11 2020-08-24 2020-08-24 024.117.063.006 42 11 2020-08-26 2020-08-26 066.085.014.228 48 11 2020-08-31 2020-08-30 051.039.078.103 27 11 2020-09-08 2020-09-08 109.230.214.221 13 11 2020-08-29 2020-08-29 162.225.093.030 118 11 2020-09-07 2020-09-07 075.027.004.251 35 11 2020-08-30 2020-08-30 180.211.105.022 11 11 2020-08-16 2020-08-16 146.255.180.107 49 11 2020-08-19 2020-08-19 068.041.160.237 36 11 2020-08-12 2020-08-12 096.230.169.043 17 11 2020-08-21 2020-08-21 172.058.095.016 49 11 2020-08-14 2020-08-14 050.039.169.124 38 11 2020-08-26 2020-08-26 047.234.168.059 44 11 2020-09-01 2020-09-01 069.126.091.252 31 11 2020-08-18 2020-08-18 047.233.019.173 17 11 2020-08-11 2020-08-11 088.080.011.100 14 11 2020-08-31 2020-08-31 047.233.016.071 38 11 2020-09-06 2020-09-06 173.176.239.088 43 11 2020-09-02 2020-09-02 073.095.119.205 34 11 2020-09-05 2020-09-05 044.234.076.068 19 11 2020-08-30 2020-08-30 094.049.132.051 21 11 2020-08-14 2020-08-14 078.095.005.131 13 11 2020-09-07 2020-09-07 096.231.139.129 23 11 2020-09-05 2020-09-05 074.137.161.247 22 11 2020-09-05 2020-09-05 193.031.024.155 22 11 2020-08-13 2020-08-13 076.099.121.162 34 11 2020-08-13 2020-08-13 024.008.098.154 48 11 2020-08-30 2020-08-30 071.231.006.076 22 11 2020-08-17 2020-08-17 073.192.247.033 37 11 2020-09-09 2020-09-08 051.039.100.101 17 11 2020-09-08 2020-09-08 003.101.103.059 11 11 2020-08-22 2020-08-22 108.178.043.134 23 11 2020-08-24 2020-08-24 074.137.206.081 32 11 2020-08-18 2020-08-18 050.038.245.083 26 11 2020-08-16 2020-08-16 # (c) SANS Inst. / DShield. some rights reserved. # Creative Commons ShareAlike License 2.5 # http://creativecommons.org/licenses/by-nc-sa/2.5/ prelude-correlator-5.2.0/rules/spamhaus_drop.dat0000644000000000000000000006270213726164427022002 0ustar rootroot00000000000000; Spamhaus DROP List 2020/09/09 - (c) 2020 The Spamhaus Project ; https://www.spamhaus.org/drop/drop.txt ; Last-Modified: Wed, 09 Sep 2020 03:21:50 GMT ; Expires: Wed, 09 Sep 2020 14:43:58 GMT 1.10.16.0/20 ; SBL256894 1.19.0.0/16 ; SBL434604 1.32.128.0/18 ; SBL286275 2.58.176.0/23 ; SBL494020 2.58.178.0/23 ; SBL494021 2.59.200.0/22 ; SBL463003 5.134.128.0/19 ; SBL270738 5.180.4.0/22 ; SBL494577 5.183.60.0/22 ; SBL463004 5.188.10.0/23 ; SBL402741 23.92.80.0/20 ; SBL372561 24.233.0.0/19 ; SBL210084 27.126.160.0/20 ; SBL257064 27.146.0.0/16 ; SBL326434 31.14.65.0/24 ; SBL493554 31.14.66.0/23 ; SBL493555 31.40.164.0/22 ; SBL475938 36.0.8.0/21 ; SBL225949 36.37.48.0/20 ; SBL258006 36.116.0.0/16 ; SBL303895 36.119.0.0/16 ; SBL303894 37.156.64.0/23 ; SBL493556 37.156.173.0/24 ; SBL493557 37.252.220.0/22 ; SBL461634 41.77.240.0/21 ; SBL478585 41.93.128.0/17 ; SBL464277 42.0.32.0/19 ; SBL265729 42.1.128.0/17 ; SBL204231 42.96.0.0/18 ; SBL253878 42.128.0.0/12 ; SBL262062 42.160.0.0/12 ; SBL262364 42.194.128.0/17 ; SBL234290 42.208.0.0/12 ; SBL283229 43.229.52.0/22 ; SBL256092 43.236.0.0/16 ; SBL240624 43.250.116.0/22 ; SBL240942 43.252.80.0/22 ; SBL225581 45.4.128.0/22 ; SBL336186 45.4.136.0/22 ; SBL336185 45.6.48.0/22 ; SBL389130 45.9.156.0/22 ; SBL448779 45.11.184.0/22 ; SBL475953 45.11.188.0/22 ; SBL475954 45.41.0.0/18 ; SBL447379 45.41.192.0/18 ; SBL447382 45.43.128.0/18 ; SBL325536 45.59.128.0/18 ; SBL447383 45.65.32.0/22 ; SBL462997 45.65.112.0/22 ; SBL475955 45.65.120.0/22 ; SBL494578 45.65.188.0/22 ; SBL389129 45.80.216.0/22 ; SBL492801 45.80.248.0/23 ; SBL494022 45.80.250.0/23 ; SBL494023 45.86.20.0/22 ; SBL494579 45.95.40.0/22 ; SBL475957 45.114.240.0/22 ; SBL456723 45.117.52.0/22 ; SBL449963 45.117.208.0/22 ; SBL263886 45.117.232.0/22 ; SBL456873 45.121.204.0/22 ; SBL283285 45.130.100.0/22 ; SBL475958 45.135.193.0/24 ; SBL482095 45.147.148.0/22 ; SBL492804 45.150.108.0/22 ; SBL492809 45.159.56.0/22 ; SBL475956 45.220.64.0/18 ; SBL476286 46.102.177.0/24 ; SBL493558 46.102.178.0/23 ; SBL493559 46.102.180.0/24 ; SBL493560 46.102.182.0/23 ; SBL493561 46.102.190.0/24 ; SBL493880 46.174.204.0/22 ; SBL463014 46.232.192.0/21 ; SBL259017 49.156.160.0/19 ; SBL169202 49.238.64.0/18 ; SBL286276 58.14.0.0/15 ; SBL201384 58.145.176.0/21 ; SBL135368 59.153.60.0/22 ; SBL475959 60.233.0.0/16 ; SBL266791 61.11.224.0/19 ; SBL221384 61.45.251.0/24 ; SBL209995 63.141.34.0/23 ; SBL476632 63.141.36.0/23 ; SBL476644 67.213.112.0/20 ; SBL287739 74.114.148.0/22 ; SBL288405 77.36.62.0/24 ; SBL493703 77.81.84.0/23 ; SBL493562 77.81.86.0/24 ; SBL493581 77.81.89.0/24 ; SBL493582 77.81.90.0/23 ; SBL493583 80.243.128.0/20 ; SBL492816 83.175.0.0/18 ; SBL241020 84.238.160.0/22 ; SBL339089 85.121.39.0/24 ; SBL111502 85.153.47.0/24 ; SBL493039 85.209.4.0/22 ; SBL463005 86.55.40.0/23 ; SBL195122 86.55.42.0/23 ; SBL195132 86.104.0.0/23 ; SBL493584 86.104.2.0/24 ; SBL493585 86.104.212.0/23 ; SBL493586 86.104.222.0/23 ; SBL461195 86.104.224.0/23 ; SBL461196 86.105.2.0/24 ; SBL493587 86.105.6.0/24 ; SBL493588 86.105.176.0/24 ; SBL493589 86.105.178.0/24 ; SBL493590 86.105.184.0/23 ; SBL493591 86.105.186.0/24 ; SBL493881 86.105.229.0/24 ; SBL493592 86.105.230.0/24 ; SBL493593 86.105.242.0/23 ; SBL493594 86.106.10.0/24 ; SBL493595 86.106.13.0/24 ; SBL493596 86.106.14.0/23 ; SBL493597 86.106.94.0/23 ; SBL493599 86.106.105.0/24 ; SBL493600 86.106.106.0/23 ; SBL493601 86.106.109.0/24 ; SBL493602 86.106.110.0/23 ; SBL493605 86.106.114.0/23 ; SBL493606 86.106.116.0/23 ; SBL493625 86.106.118.0/24 ; SBL493626 86.106.138.0/23 ; SBL461197 86.106.140.0/23 ; SBL461198 86.106.174.0/23 ; SBL493627 86.107.72.0/24 ; SBL493628 86.107.193.0/24 ; SBL493629 86.107.194.0/23 ; SBL493630 88.218.40.0/22 ; SBL494580 88.218.148.0/22 ; SBL463006 89.32.43.0/24 ; SBL493631 89.32.170.0/24 ; SBL493632 89.32.202.0/24 ; SBL493882 89.33.46.0/23 ; SBL493633 89.33.116.0/24 ; SBL493634 89.33.134.0/24 ; SBL493635 89.33.198.0/23 ; SBL493636 89.33.200.0/23 ; SBL493637 89.33.206.0/24 ; SBL493638 89.33.250.0/23 ; SBL493639 89.33.254.0/23 ; SBL493640 89.34.0.0/24 ; SBL493883 89.34.4.0/24 ; SBL493884 89.34.102.0/24 ; SBL493641 89.34.104.0/23 ; SBL493642 89.35.54.0/24 ; SBL493643 89.35.89.0/24 ; SBL493647 89.35.90.0/24 ; SBL461199 89.36.38.0/23 ; SBL493648 89.36.136.0/24 ; SBL493649 89.36.138.0/23 ; SBL493650 89.36.141.0/24 ; SBL493651 89.37.92.0/23 ; SBL493652 89.37.94.0/24 ; SBL493653 89.37.96.0/24 ; SBL493654 89.37.129.0/24 ; SBL493655 89.37.130.0/23 ; SBL493656 89.37.132.0/23 ; SBL493657 89.37.134.0/24 ; SBL493659 89.38.240.0/24 ; SBL493660 89.39.69.0/24 ; SBL461209 89.39.212.0/24 ; SBL493662 89.39.215.0/24 ; SBL493663 89.39.241.0/24 ; SBL493665 89.40.138.0/24 ; SBL493885 89.40.140.0/23 ; SBL493666 89.40.207.0/24 ; SBL461200 89.40.209.0/24 ; SBL493667 89.41.27.0/24 ; SBL493668 89.41.28.0/23 ; SBL493669 89.41.49.0/24 ; SBL493670 89.41.50.0/23 ; SBL463471 89.41.189.0/24 ; SBL493671 89.41.190.0/23 ; SBL493672 89.42.10.0/24 ; SBL493673 89.42.152.0/23 ; SBL493674 89.42.154.0/24 ; SBL493675 89.45.82.0/24 ; SBL493676 89.46.47.0/24 ; SBL493677 91.132.164.0/22 ; SBL494323 91.197.196.0/22 ; SBL406133 91.200.12.0/22 ; SBL190623 91.200.133.0/24 ; SBL494045 91.200.248.0/22 ; SBL83326 91.218.236.0/22 ; SBL461201 91.220.163.0/24 ; SBL179440 91.232.18.0/24 ; SBL494046 91.235.130.0/23 ; SBL493678 91.246.176.0/21 ; SBL493704 91.246.200.0/24 ; SBL493706 93.114.51.0/24 ; SBL461206 93.114.52.0/23 ; SBL461207 93.114.54.0/24 ; SBL461208 93.114.58.0/23 ; SBL493679 93.115.59.0/24 ; SBL493680 93.119.118.0/23 ; SBL493681 93.119.120.0/23 ; SBL493682 93.119.124.0/23 ; SBL493683 93.120.34.0/24 ; SBL493739 93.120.46.0/24 ; SBL493740 94.154.32.0/22 ; SBL492822 101.42.0.0/16 ; SBL434606 101.134.0.0/15 ; SBL434605 101.192.0.0/14 ; SBL201382 101.203.128.0/19 ; SBL257142 101.248.0.0/15 ; SBL204948 102.13.240.0/20 ; SBL439868 102.18.224.0/19 ; SBL440649 102.28.224.0/19 ; SBL440650 102.29.224.0/19 ; SBL440651 102.196.96.0/19 ; SBL441689 102.211.224.0/19 ; SBL440772 102.212.224.0/19 ; SBL441843 102.228.0.0/16 ; SBL434607 102.232.0.0/16 ; SBL434608 102.240.0.0/16 ; SBL434609 103.14.208.0/22 ; SBL320737 103.16.76.0/24 ; SBL209988 103.23.8.0/22 ; SBL235784 103.23.124.0/22 ; SBL402303 103.24.232.0/22 ; SBL320053 103.30.12.0/22 ; SBL295418 103.32.0.0/16 ; SBL434611 103.32.132.0/22 ; SBL389071 103.34.0.0/16 ; SBL434612 103.35.160.0/22 ; SBL327238 103.36.64.0/22 ; SBL247953 103.73.172.0/22 ; SBL327240 103.75.36.0/22 ; SBL322513 103.76.96.0/22 ; SBL326989 103.76.128.0/22 ; SBL326990 103.77.32.0/22 ; SBL327001 103.99.0.0/22 ; SBL427003 103.100.168.0/22 ; SBL456874 103.134.144.0/23 ; SBL475960 103.135.144.0/24 ; SBL475961 103.155.224.0/19 ; SBL440654 103.158.224.0/19 ; SBL441974 103.167.224.0/19 ; SBL440688 103.171.224.0/19 ; SBL441977 103.174.224.0/19 ; SBL440774 103.180.224.0/19 ; SBL440775 103.189.224.0/19 ; SBL442337 103.197.8.0/22 ; SBL332288 103.197.240.0/22 ; SBL456875 103.199.88.0/22 ; SBL456876 103.205.84.0/22 ; SBL282275 103.207.160.0/22 ; SBL287233 103.210.244.0/22 ; SBL463000 103.215.80.0/22 ; SBL337302 103.223.4.0/22 ; SBL493022 103.225.72.0/22 ; SBL215767 103.225.128.0/22 ; SBL215764 103.226.192.0/22 ; SBL453359 103.228.60.0/22 ; SBL261012 103.229.36.0/22 ; SBL221511 103.230.144.0/22 ; SBL221501 103.232.136.0/22 ; SBL224778 103.232.172.0/22 ; SBL226519 103.236.32.0/22 ; SBL270821 103.239.28.0/22 ; SBL302348 103.239.56.0/22 ; SBL456877 103.243.8.0/22 ; SBL384551 103.243.124.0/22 ; SBL456879 104.143.16.0/20 ; SBL463283 104.153.244.0/22 ; SBL252074 104.166.96.0/19 ; SBL447336 104.207.64.0/19 ; SBL447330 104.233.0.0/18 ; SBL325520 104.239.0.0/17 ; SBL325523 104.243.192.0/20 ; SBL325525 104.247.96.0/19 ; SBL447376 104.250.192.0/19 ; SBL325529 104.250.224.0/19 ; SBL447331 106.95.0.0/16 ; SBL434614 107.182.112.0/20 ; SBL447332 107.182.240.0/20 ; SBL390277 107.190.160.0/20 ; SBL447333 110.41.0.0/16 ; SBL434615 111.223.192.0/19 ; SBL78432 113.212.128.0/19 ; SBL78429 116.119.0.0/17 ; SBL215707 116.144.0.0/15 ; SBL178615 116.146.0.0/15 ; SBL178616 117.58.0.0/17 ; SBL279124 117.120.64.0/18 ; SBL303509 119.58.0.0/16 ; SBL286278 119.232.0.0/16 ; SBL230571 120.48.0.0/15 ; SBL262363 121.46.124.0/22 ; SBL287428 122.8.0.0/16 ; SBL458178 122.129.0.0/18 ; SBL221386 123.136.80.0/20 ; SBL225929 124.20.0.0/16 ; SBL201390 124.68.0.0/15 ; SBL211387 124.157.0.0/18 ; SBL221387 124.242.0.0/16 ; SBL262407 125.31.192.0/18 ; SBL233458 125.58.0.0/18 ; SBL221388 125.169.0.0/16 ; SBL242253 128.24.0.0/16 ; SBL388093 128.85.0.0/16 ; SBL210373 130.21.0.0/16 ; SBL323571 130.148.0.0/16 ; SBL257919 130.196.0.0/16 ; SBL257914 130.222.0.0/16 ; SBL101196 131.108.16.0/22 ; SBL276764 131.143.0.0/16 ; SBL101198 131.200.0.0/16 ; SBL312492 132.255.132.0/22 ; SBL249352 134.18.0.0/16 ; SBL221372 134.22.0.0/16 ; SBL214750 134.23.0.0/16 ; SBL101571 134.33.0.0/16 ; SBL7097 134.127.0.0/16 ; SBL101572 134.172.0.0/16 ; SBL101573 137.19.0.0/16 ; SBL312493 137.31.0.0/16 ; SBL101324 137.33.0.0/16 ; SBL303513 137.55.0.0/16 ; SBL302504 137.72.0.0/16 ; SBL101329 137.76.0.0/16 ; SBL205801 137.105.0.0/16 ; SBL268209 137.114.0.0/16 ; SBL101325 137.218.0.0/16 ; SBL278657 138.31.0.0/16 ; SBL307104 138.36.92.0/22 ; SBL249351 138.36.136.0/22 ; SBL296343 138.52.0.0/16 ; SBL307426 138.59.4.0/22 ; SBL291137 138.59.204.0/22 ; SBL286073 138.94.144.0/22 ; SBL276751 138.94.216.0/22 ; SBL276765 138.97.156.0/22 ; SBL286076 138.122.192.0/22 ; SBL276761 138.125.0.0/16 ; SBL312494 138.185.116.0/22 ; SBL492823 138.186.208.0/22 ; SBL286081 138.216.0.0/16 ; SBL268207 138.219.172.0/22 ; SBL286074 138.249.0.0/16 ; SBL267346 139.44.0.0/16 ; SBL458175 139.81.0.0/16 ; SBL444402 139.188.0.0/16 ; SBL221373 140.167.0.0/16 ; SBL212527 141.98.68.0/23 ; SBL494024 141.98.70.0/23 ; SBL494025 141.136.22.0/24 ; SBL115039 141.178.0.0/16 ; SBL268203 141.253.0.0/16 ; SBL235382 142.102.0.0/16 ; SBL307428 143.0.236.0/22 ; SBL286070 143.49.0.0/16 ; SBL7182 143.135.0.0/16 ; SBL84946 143.136.0.0/16 ; SBL458176 143.253.0.0/16 ; SBL458177 145.231.0.0/16 ; SBL268204 146.3.0.0/16 ; SBL220725 146.51.0.0/16 ; SBL458201 146.183.0.0/16 ; SBL287250 146.202.0.0/16 ; SBL419633 146.252.0.0/16 ; SBL418513 147.7.0.0/16 ; SBL268216 147.16.0.0/14 ; SBL302620 147.78.224.0/22 ; SBL463008 147.119.0.0/16 ; SBL267344 148.148.0.0/16 ; SBL312498 148.154.0.0/16 ; SBL208416 148.178.0.0/16 ; SBL79700 148.185.0.0/16 ; SBL272522 148.248.0.0/16 ; SBL84763 149.118.0.0/16 ; SBL181786 149.143.64.0/18 ; SBL181787 149.207.0.0/16 ; SBL458131 150.10.0.0/16 ; SBL222568 150.22.128.0/17 ; SBL235649 150.25.0.0/16 ; SBL268451 150.40.0.0/16 ; SBL247797 150.121.0.0/16 ; SBL258296 150.129.212.0/22 ; SBL277063 150.129.228.0/22 ; SBL277064 150.141.0.0/16 ; SBL79702 150.242.100.0/22 ; SBL277065 150.242.120.0/22 ; SBL277066 150.242.144.0/22 ; SBL277067 151.212.0.0/16 ; SBL229160 152.89.228.0/23 ; SBL494026 152.89.230.0/23 ; SBL494027 152.109.0.0/16 ; SBL307830 152.147.0.0/16 ; SBL8847 153.14.0.0/16 ; SBL220726 153.52.0.0/14 ; SBL302505 153.93.0.0/16 ; SBL268208 154.65.96.0/20 ; SBL476288 155.11.0.0/16 ; SBL311378 155.40.0.0/16 ; SBL266803 155.66.0.0/16 ; SBL267343 155.71.0.0/16 ; SBL410855 155.73.0.0/16 ; SBL257918 155.94.64.0/19 ; SBL425799 155.94.96.0/20 ; SBL425800 155.108.0.0/16 ; SBL257917 155.159.0.0/16 ; SBL457565 155.235.0.0/16 ; SBL458170 155.249.0.0/16 ; SBL257915 156.96.0.0/16 ; SBL461359 157.115.0.0/16 ; SBL268212 157.162.0.0/16 ; SBL220085 157.186.0.0/16 ; SBL186753 157.195.0.0/16 ; SBL208418 158.54.0.0/16 ; SBL209870 158.90.0.0/17 ; SBL224702 158.249.0.0/16 ; SBL307429 159.80.0.0/16 ; SBL307427 159.85.0.0/16 ; SBL210102 159.151.0.0/16 ; SBL267532 159.174.0.0/16 ; SBL240976 159.219.0.0/16 ; SBL254875 159.229.0.0/16 ; SBL214155 160.14.0.0/16 ; SBL249299 160.21.0.0/16 ; SBL267366 160.115.0.0/16 ; SBL446860 160.116.0.0/16 ; SBL458209 160.117.0.0/16 ; SBL316955 160.121.0.0/16 ; SBL458199 160.122.0.0/16 ; SBL457567 160.180.0.0/16 ; SBL272081 160.184.0.0/16 ; SBL458212 160.188.0.0/16 ; SBL331922 160.200.0.0/16 ; SBL227957 160.235.0.0/16 ; SBL235294 160.240.0.0/16 ; SBL253946 160.255.0.0/16 ; SBL247066 161.0.0.0/19 ; SBL233406 161.0.68.0/22 ; SBL291136 161.1.0.0/16 ; SBL390711 162.208.124.0/22 ; SBL264554 162.212.188.0/22 ; SBL252073 162.216.0.0/22 ; SBL390270 162.216.152.0/21 ; SBL390271 162.222.128.0/21 ; SBL379822 163.47.19.0/24 ; SBL209997 163.50.0.0/16 ; SBL247800 163.53.247.0/24 ; SBL274861 163.59.0.0/16 ; SBL233285 163.127.224.0/19 ; SBL441343 163.128.224.0/19 ; SBL441345 163.198.0.0/16 ; SBL458207 163.216.0.0/19 ; SBL442395 163.250.0.0/16 ; SBL287443 163.254.0.0/16 ; SBL242814 164.6.0.0/16 ; SBL268270 164.79.0.0/16 ; SBL287439 164.88.0.0/16 ; SBL458132 164.137.0.0/16 ; SBL268215 164.155.0.0/16 ; SBL457563 165.3.0.0/16 ; SBL457564 165.25.0.0/16 ; SBL458197 165.52.0.0/14 ; SBL458173 165.102.0.0/16 ; SBL229889 165.205.0.0/16 ; SBL221429 165.209.0.0/16 ; SBL204517 166.93.0.0/16 ; SBL470307 166.117.0.0/16 ; SBL287440 167.74.0.0/18 ; SBL178647 167.97.0.0/16 ; SBL12947 167.103.0.0/16 ; SBL247801 167.158.0.0/16 ; SBL325621 167.160.96.0/19 ; SBL217799 167.162.0.0/16 ; SBL221376 167.175.0.0/16 ; SBL222563 167.224.0.0/19 ; SBL106073 167.249.200.0/22 ; SBL286077 168.0.212.0/22 ; SBL286078 168.64.0.0/16 ; SBL287441 168.80.0.0/15 ; SBL458208 168.90.96.0/22 ; SBL286828 168.129.0.0/16 ; SBL195898 168.151.0.0/22 ; SBL240033 168.151.4.0/23 ; SBL430375 168.151.6.0/24 ; SBL430376 168.151.32.0/21 ; SBL477397 168.151.43.0/24 ; SBL477402 168.151.44.0/22 ; SBL477399 168.151.48.0/22 ; SBL477401 168.151.52.0/23 ; SBL477400 168.151.54.0/24 ; SBL477398 168.151.56.0/21 ; SBL477405 168.151.64.0/22 ; SBL477404 168.151.68.0/23 ; SBL477403 168.151.72.0/21 ; SBL477406 168.151.80.0/20 ; SBL477408 168.151.96.0/19 ; SBL477409 168.151.128.0/20 ; SBL477407 168.151.145.0/24 ; SBL477412 168.151.146.0/23 ; SBL477413 168.151.148.0/22 ; SBL477410 168.151.152.0/22 ; SBL477411 168.151.157.0/24 ; SBL477416 168.151.158.0/23 ; SBL477415 168.151.160.0/20 ; SBL477417 168.151.176.0/21 ; SBL477418 168.151.184.0/22 ; SBL477414 168.151.192.0/20 ; SBL477388 168.151.208.0/21 ; SBL477389 168.151.216.0/22 ; SBL477390 168.151.220.0/23 ; SBL477391 168.151.232.0/21 ; SBL477392 168.151.240.0/21 ; SBL477395 168.151.248.0/22 ; SBL477393 168.151.254.0/24 ; SBL477394 168.181.52.0/22 ; SBL291135 168.195.76.0/22 ; SBL379851 168.196.236.0/22 ; SBL405273 168.196.240.0/22 ; SBL424251 168.198.0.0/16 ; SBL458174 168.205.72.0/22 ; SBL424252 168.206.0.0/16 ; SBL458172 168.211.0.0/16 ; SBL458200 168.227.128.0/22 ; SBL424250 168.227.140.0/22 ; SBL396809 169.239.152.0/22 ; SBL463216 170.67.0.0/16 ; SBL8148 170.83.232.0/22 ; SBL396810 170.113.0.0/16 ; SBL102573 170.114.0.0/16 ; SBL182245 170.120.0.0/16 ; SBL90515 170.179.0.0/16 ; SBL221379 170.244.40.0/22 ; SBL336187 170.244.240.0/22 ; SBL424249 170.245.40.0/22 ; SBL424253 170.247.220.0/22 ; SBL379853 171.25.0.0/17 ; SBL241017 171.25.212.0/22 ; SBL390709 171.26.0.0/16 ; SBL268364 172.98.0.0/18 ; SBL447377 174.136.192.0/18 ; SBL447378 175.103.64.0/18 ; SBL221380 176.56.192.0/19 ; SBL442803 176.96.88.0/21 ; SBL493741 176.102.120.0/21 ; SBL493742 176.103.240.0/21 ; SBL493744 176.116.232.0/22 ; SBL493745 176.126.192.0/23 ; SBL493684 176.126.194.0/24 ; SBL493685 176.223.116.0/23 ; SBL493686 176.223.118.0/24 ; SBL493687 176.223.160.0/23 ; SBL493688 177.234.136.0/21 ; SBL291134 178.212.184.0/21 ; SBL493746 178.213.176.0/22 ; SBL447631 179.63.0.0/17 ; SBL234494 180.178.192.0/18 ; SBL240529 180.236.0.0/14 ; SBL214502 181.177.64.0/18 ; SBL214239 184.175.192.0/22 ; SBL425801 185.0.96.0/19 ; SBL439870 185.21.8.0/22 ; SBL476630 185.30.168.0/22 ; SBL448551 185.39.8.0/22 ; SBL476733 185.55.4.0/22 ; SBL493747 185.55.140.0/22 ; SBL493749 185.60.201.0/24 ; SBL493888 185.60.202.0/23 ; SBL493887 185.63.35.0/24 ; SBL492824 185.64.23.0/24 ; SBL492825 185.77.248.0/24 ; SBL476631 185.80.112.0/22 ; SBL493689 185.102.48.0/22 ; SBL493889 185.105.56.0/22 ; SBL310725 185.105.188.0/22 ; SBL493890 185.110.0.0/22 ; SBL461185 185.116.172.0/23 ; SBL310726 185.116.175.0/24 ; SBL310727 185.120.8.0/22 ; SBL493891 185.120.16.0/22 ; SBL493892 185.122.128.0/22 ; SBL310728 185.123.144.0/20 ; SBL461181 185.123.248.0/21 ; SBL461182 185.124.0.0/22 ; SBL461183 185.124.56.0/21 ; SBL310721 185.126.68.0/22 ; SBL493893 185.126.116.0/22 ; SBL493894 185.126.136.0/22 ; SBL461186 185.126.148.0/22 ; SBL461187 185.126.160.0/22 ; SBL461188 185.126.224.0/22 ; SBL461189 185.126.236.0/22 ; SBL461190 185.126.248.0/22 ; SBL461191 185.127.44.0/22 ; SBL461184 185.127.56.0/22 ; SBL310729 185.127.92.0/22 ; SBL461192 185.129.8.0/22 ; SBL310730 185.129.208.0/22 ; SBL448437 185.130.36.0/22 ; SBL310731 185.130.40.0/22 ; SBL310732 185.132.8.0/22 ; SBL461193 185.135.140.0/22 ; SBL405265 185.144.180.0/22 ; SBL463001 185.147.140.0/22 ; SBL303516 185.156.88.0/21 ; SBL333429 185.156.92.0/22 ; SBL333433 185.161.148.0/22 ; SBL463010 185.165.24.0/22 ; SBL391308 185.175.140.0/22 ; SBL366503 185.180.192.0/22 ; SBL463011 185.184.192.0/22 ; SBL340166 185.185.48.0/22 ; SBL390720 185.187.236.0/22 ; SBL366504 185.194.100.0/22 ; SBL448553 185.203.64.0/22 ; SBL461459 185.215.132.0/22 ; SBL448554 185.227.200.0/22 ; SBL382543 185.230.44.0/22 ; SBL494342 185.234.64.0/22 ; SBL494343 185.236.20.0/24 ; SBL492826 185.237.226.0/23 ; SBL494344 185.238.176.0/22 ; SBL463012 185.239.44.0/22 ; SBL493122 185.242.0.0/22 ; SBL493121 185.248.132.0/22 ; SBL448290 186.65.112.0/20 ; SBL264087 186.179.0.0/18 ; SBL264520 188.172.160.0/19 ; SBL308891 188.208.48.0/22 ; SBL461202 188.208.52.0/22 ; SBL493690 188.208.109.0/24 ; SBL461210 188.208.220.0/22 ; SBL493692 188.209.120.0/21 ; SBL493693 188.212.254.0/24 ; SBL493694 188.213.23.0/24 ; SBL493895 188.213.206.0/23 ; SBL493695 188.213.214.0/23 ; SBL493696 188.213.248.0/22 ; SBL461203 188.213.252.0/22 ; SBL461204 188.214.94.0/24 ; SBL461205 188.214.95.0/24 ; SBL493697 188.214.140.0/24 ; SBL493896 188.214.155.0/24 ; SBL493897 188.214.193.0/24 ; SBL493898 188.241.211.0/24 ; SBL493698 188.247.230.0/24 ; SBL122292 190.123.208.0/20 ; SBL276762 190.185.108.0/22 ; SBL424254 191.101.167.0/24 ; SBL406433 192.5.103.0/24 ; SBL212979 192.12.131.0/24 ; SBL226062 192.22.0.0/16 ; SBL287442 192.26.25.0/24 ; SBL84941 192.31.212.0/23 ; SBL84945 192.40.29.0/24 ; SBL210095 192.43.160.0/24 ; SBL69618 192.43.175.0/24 ; SBL84942 192.43.176.0/21 ; SBL84943 192.43.184.0/24 ; SBL84944 192.46.192.0/18 ; SBL303949 192.54.110.0/24 ; SBL221778 192.67.16.0/24 ; SBL6648 192.96.146.0/24 ; SBL461490 192.101.44.0/24 ; SBL210168 192.101.181.0/24 ; SBL210187 192.101.200.0/21 ; SBL97211 192.101.240.0/21 ; SBL97209 192.101.248.0/23 ; SBL97208 192.133.3.0/24 ; SBL221771 192.152.194.0/24 ; SBL221768 192.154.11.0/24 ; SBL226063 192.160.44.0/24 ; SBL9493 192.161.80.0/20 ; SBL280279 192.190.49.0/24 ; SBL210175 192.190.97.0/24 ; SBL223556 192.195.150.0/24 ; SBL223555 192.197.87.0/24 ; SBL103493 192.203.252.0/24 ; SBL223554 192.206.114.0/24 ; SBL226064 192.219.120.0/21 ; SBL103494 192.219.128.0/18 ; SBL103497 192.219.192.0/20 ; SBL103495 192.219.208.0/21 ; SBL103496 192.226.16.0/20 ; SBL245072 192.229.32.0/19 ; SBL106075 192.231.66.0/24 ; SBL221765 192.234.189.0/24 ; SBL221779 192.245.101.0/24 ; SBL210097 192.251.231.0/24 ; SBL419281 193.25.48.0/20 ; SBL211796 193.30.254.0/23 ; SBL493699 193.32.66.0/23 ; SBL493700 193.35.48.0/22 ; SBL475449 193.46.172.0/22 ; SBL406134 193.139.0.0/16 ; SBL268277 193.151.160.0/22 ; SBL494028 193.201.232.0/22 ; SBL475952 193.243.0.0/17 ; SBL241018 193.254.48.0/20 ; SBL493701 194.41.60.0/23 ; SBL493702 195.182.57.0/24 ; SBL88206 195.210.96.0/19 ; SBL369604 196.1.109.0/24 ; SBL209998 196.10.64.0/19 ; SBL458171 196.15.64.0/18 ; SBL458198 196.16.0.0/14 ; SBL364590 196.42.128.0/17 ; SBL247063 196.61.192.0/20 ; SBL473193 196.62.0.0/16 ; SBL458232 196.192.192.0/18 ; SBL458230 196.193.0.0/16 ; SBL458196 196.194.0.0/15 ; SBL458210 196.207.64.0/18 ; SBL458231 196.246.0.0/16 ; SBL461489 197.154.0.0/16 ; SBL256082 197.231.208.0/22 ; SBL476635 198.13.0.0/20 ; SBL97016 198.20.16.0/20 ; SBL107773 198.45.32.0/20 ; SBL110170 198.45.64.0/19 ; SBL177843 198.54.232.0/24 ; SBL458233 198.56.64.0/18 ; SBL178648 198.57.64.0/20 ; SBL101250 198.62.70.0/24 ; SBL210101 198.62.76.0/24 ; SBL210161 198.96.224.0/20 ; SBL110171 198.99.117.0/24 ; SBL221773 198.102.222.0/24 ; SBL221777 198.148.212.0/24 ; SBL221776 198.151.16.0/20 ; SBL244694 198.151.64.0/18 ; SBL156894 198.151.152.0/22 ; SBL23969 198.160.205.0/24 ; SBL221774 198.169.201.0/24 ; SBL212980 198.177.175.0/24 ; SBL210085 198.177.176.0/22 ; SBL210086 198.177.180.0/24 ; SBL210087 198.177.214.0/24 ; SBL212981 198.178.64.0/19 ; SBL178649 198.179.22.0/24 ; SBL217199 198.181.64.0/19 ; SBL106080 198.181.96.0/20 ; SBL281608 198.183.32.0/19 ; SBL96708 198.184.193.0/24 ; SBL212982 198.184.208.0/24 ; SBL223553 198.186.25.0/24 ; SBL23976 198.187.64.0/18 ; SBL179271 198.187.192.0/24 ; SBL223552 198.190.173.0/24 ; SBL212764 198.199.212.0/24 ; SBL212983 198.200.0.0/21 ; SBL462737 198.200.8.0/23 ; SBL462736 198.202.237.0/24 ; SBL217198 198.204.0.0/21 ; SBL8179 198.206.140.0/24 ; SBL301221 198.212.132.0/24 ; SBL223551 199.5.152.0/23 ; SBL96745 199.5.229.0/24 ; SBL221780 199.26.137.0/24 ; SBL212765 199.26.207.0/24 ; SBL221772 199.26.251.0/24 ; SBL221782 199.33.222.0/24 ; SBL221781 199.34.128.0/18 ; SBL96704 199.46.32.0/19 ; SBL96703 199.48.160.0/21 ; SBL390272 199.60.102.0/24 ; SBL9159 199.71.192.0/20 ; SBL147763 199.84.55.0/24 ; SBL210094 199.84.56.0/22 ; SBL210092 199.84.60.0/24 ; SBL210093 199.84.64.0/19 ; SBL96702 199.89.16.0/20 ; SBL156916 199.89.198.0/24 ; SBL212766 199.120.163.0/24 ; SBL6658 199.165.32.0/19 ; SBL97023 199.166.200.0/22 ; SBL6026 199.184.82.0/24 ; SBL210159 199.185.192.0/20 ; SBL156981 199.196.192.0/19 ; SBL106606 199.198.160.0/20 ; SBL96701 199.198.176.0/21 ; SBL109341 199.198.184.0/23 ; SBL109342 199.198.188.0/22 ; SBL109343 199.200.64.0/19 ; SBL107014 199.212.96.0/20 ; SBL156982 199.223.0.0/20 ; SBL180441 199.230.64.0/19 ; SBL97024 199.230.96.0/21 ; SBL97026 199.233.85.0/24 ; SBL212984 199.233.96.0/24 ; SBL210099 199.241.64.0/19 ; SBL301222 199.244.56.0/21 ; SBL265745 199.245.138.0/24 ; SBL9923 199.246.137.0/24 ; SBL113125 199.246.213.0/24 ; SBL113126 199.246.215.0/24 ; SBL103499 199.249.64.0/19 ; SBL179270 199.253.32.0/20 ; SBL245070 199.253.48.0/21 ; SBL245071 199.253.224.0/20 ; SBL180442 199.254.32.0/20 ; SBL156983 200.0.60.0/23 ; SBL291133 200.22.0.0/16 ; SBL84896 200.71.124.0/22 ; SBL237882 200.189.44.0/22 ; SBL291132 200.234.128.0/18 ; SBL439740 201.148.168.0/22 ; SBL247631 201.169.0.0/16 ; SBL244233 202.0.192.0/18 ; SBL209865 202.20.32.0/19 ; SBL209868 202.21.64.0/19 ; SBL209869 202.27.96.0/23 ; SBL270428 202.27.98.0/24 ; SBL270960 202.27.99.0/24 ; SBL270961 202.27.100.0/22 ; SBL271129 202.27.120.0/22 ; SBL271127 202.27.161.0/24 ; SBL269891 202.27.162.0/23 ; SBL269892 202.27.164.0/22 ; SBL269893 202.27.168.0/24 ; SBL269894 202.39.112.0/20 ; SBL237236 202.40.32.0/19 ; SBL222855 202.40.64.0/18 ; SBL221383 202.68.0.0/18 ; SBL197720 202.86.0.0/22 ; SBL262270 202.148.32.0/20 ; SBL264045 202.148.176.0/20 ; SBL264043 202.183.0.0/19 ; SBL221385 202.189.80.0/20 ; SBL270956 203.2.200.0/22 ; SBL247802 203.9.0.0/19 ; SBL221390 203.31.88.0/23 ; SBL8083 203.34.70.0/23 ; SBL9682 203.86.252.0/22 ; SBL233286 203.169.0.0/22 ; SBL249298 203.191.64.0/18 ; SBL258585 203.195.0.0/18 ; SBL410856 204.14.80.0/22 ; SBL492818 204.19.38.0/23 ; SBL210079 204.44.32.0/20 ; SBL104258 204.44.224.0/20 ; SBL110044 204.52.96.0/19 ; SBL325533 204.52.255.0/24 ; SBL13483 204.57.16.0/20 ; SBL116417 204.75.147.0/24 ; SBL223550 204.75.228.0/24 ; SBL210096 204.80.198.0/24 ; SBL217200 204.86.16.0/20 ; SBL181088 204.87.199.0/24 ; SBL210160 204.89.224.0/24 ; SBL11667 204.106.128.0/18 ; SBL105808 204.106.192.0/19 ; SBL106078 204.107.208.0/24 ; SBL96699 204.126.244.0/23 ; SBL96747 204.128.151.0/24 ; SBL212985 204.128.180.0/24 ; SBL210100 204.130.16.0/20 ; SBL301223 204.130.167.0/24 ; SBL113127 204.147.64.0/21 ; SBL287254 204.194.64.0/21 ; SBL249621 204.225.16.0/20 ; SBL156998 204.225.159.0/24 ; SBL113128 204.225.210.0/24 ; SBL113129 204.232.0.0/18 ; SBL103685 204.238.137.0/24 ; SBL223547 204.238.170.0/24 ; SBL217201 204.238.183.0/24 ; SBL221024 205.137.0.0/20 ; SBL116418 205.142.104.0/22 ; SBL98307 205.144.0.0/20 ; SBL96698 205.144.176.0/20 ; SBL116419 205.148.128.0/18 ; SBL277040 205.148.192.0/18 ; SBL303950 205.151.128.0/19 ; SBL180437 205.159.45.0/24 ; SBL209488 205.159.174.0/24 ; SBL221762 205.159.180.0/24 ; SBL113130 205.166.77.0/24 ; SBL219931 205.166.84.0/24 ; SBL210098 205.166.130.0/24 ; SBL221342 205.166.168.0/24 ; SBL223549 205.166.211.0/24 ; SBL221761 205.172.244.0/22 ; SBL96743 205.175.160.0/19 ; SBL104260 205.189.71.0/24 ; SBL105802 205.189.72.0/23 ; SBL105804 205.203.0.0/19 ; SBL104616 205.203.224.0/19 ; SBL104251 205.207.134.0/24 ; SBL210088 205.210.107.0/24 ; SBL210089 205.210.139.0/24 ; SBL212767 205.210.171.0/24 ; SBL243632 205.210.172.0/22 ; SBL243633 205.214.96.0/19 ; SBL104252 205.214.128.0/19 ; SBL104253 205.233.224.0/20 ; SBL156985 205.236.185.0/24 ; SBL210091 205.236.189.0/24 ; SBL9442 205.237.88.0/21 ; SBL286239 206.41.160.0/19 ; SBL209495 206.51.29.0/24 ; SBL210090 206.124.104.0/21 ; SBL325532 206.130.188.0/24 ; SBL212986 206.143.128.0/17 ; SBL226353 206.195.224.0/19 ; SBL180439 206.197.28.0/24 ; SBL14253 206.197.29.0/24 ; SBL14251 206.197.77.0/24 ; SBL221760 206.197.165.0/24 ; SBL234413 206.209.80.0/20 ; SBL156986 206.223.17.0/24 ; SBL338924 206.224.160.0/19 ; SBL96697 206.226.0.0/19 ; SBL177387 206.226.32.0/19 ; SBL177459 206.227.64.0/18 ; SBL96696 207.22.192.0/18 ; SBL107317 207.45.224.0/20 ; SBL89255 207.90.0.0/18 ; SBL209121 207.110.64.0/18 ; SBL177484 207.110.96.0/19 ; SBL177485 207.110.128.0/18 ; SBL177686 207.183.192.0/19 ; SBL104254 208.84.132.0/22 ; SBL390273 208.93.4.0/22 ; SBL209467 209.66.128.0/19 ; SBL180438 209.95.192.0/19 ; SBL107139 209.99.128.0/18 ; SBL211023 209.145.0.0/19 ; SBL109583 209.161.96.0/20 ; SBL463217 209.182.64.0/19 ; SBL104261 209.242.192.0/19 ; SBL416162 212.162.152.0/22 ; SBL494589 213.173.36.0/22 ; SBL462991 213.247.0.0/19 ; SBL458234 216.83.208.0/20 ; SBL390111 216.179.128.0/17 ; SBL103083 220.154.0.0/16 ; SBL234221 221.132.192.0/18 ; SBL233662 223.0.0.0/15 ; SBL230805 223.169.0.0/16 ; SBL208009 223.173.0.0/16 ; SBL204954 223.254.0.0/16 ; SBL212803 prelude-correlator-5.2.0/selinux/0000755000000000000000000000000013726164430016763 5ustar rootroot00000000000000prelude-correlator-5.2.0/selinux/Makefile0000644000000000000000000000042013726164407020423 0ustar rootroot00000000000000TARGETS?= prelude-correlator MODULES?=${TARGETS:=.pp.bz2} all: ${TARGETS:=.pp.bz2} %.pp.bz2: %.pp @echo Compressing $^ -\ $@ bzip2 -9 $^ %.pp: %.te make -f /usr/share/selinux/devel/Makefile $@ clean: make -f /usr/share/selinux/devel/Makefile clean rm -f *.pp.bz2 prelude-correlator-5.2.0/selinux/prelude-correlator.te0000644000000000000000000000313113726164407023131 0ustar rootroot00000000000000 module prelude-correlator 1.0; require { type var_run_t; type device_t; type proc_t; type tmp_t; type http_port_t; type prelude_correlator_t; type bin_t; type var_lib_t; class sock_file write; class capability { sys_tty_config ipc_lock }; class dir { write read add_name remove_name search }; class file { read create write getattr unlink open execute }; class tcp_socket name_connect; } #============= prelude_correlator_t ============== allow prelude_correlator_t bin_t:dir read; allow prelude_correlator_t bin_t:file getattr; allow prelude_correlator_t device_t:sock_file write; allow prelude_correlator_t proc_t:file { read getattr open }; allow prelude_correlator_t self:capability { sys_tty_config ipc_lock }; # This is needed for the correlator to be able to write context files allow prelude_correlator_t var_lib_t:dir { read write add_name }; allow prelude_correlator_t var_lib_t:file { write read getattr open create }; # Add permissions to write on directory /var/run/ to create the PID file allow prelude_correlator_t var_run_t:dir { read search write add_name }; allow prelude_correlator_t var_run_t:file { write create open getattr }; # Add a policy to allow downloading .dat files (IP blacklists) # from the Internet allow prelude_correlator_t http_port_t:tcp_socket name_connect; # Add a policy for temporary files allow prelude_correlator_t tmp_t:dir { write remove_name add_name }; allow prelude_correlator_t tmp_t:file { write create unlink open }; # This is needed for systemd service to start allow prelude_correlator_t bin_t:file { execute }; prelude-correlator-5.2.0/AUTHORS0000644000000000000000000000017513726164407016353 0ustar rootroot00000000000000Prelude-Correlator is brought to you by CS GROUP (http://www.csgroup.eu), Written by Yoann Vandoorselaere prelude-correlator-5.2.0/COPYING0000644000000000000000000004325413726164407016343 0ustar rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. prelude-correlator-5.2.0/HACKING.README0000644000000000000000000000143213726164407017223 0ustar rootroot00000000000000This directory and its children contain the Prelude-Correlator software. Changes: if you wish to contribute a change which is a significant one in terms of the amount of code changes (rulesets excluded), please be aware that CS GROUP - France wishes to retain copyright of the Prelude-Correlator software. Therefore you will have to sign over copyright ownership of your code to CS GROUP - France before we can include your changes in the main source tree. Before you start modifying anything for real, you should probably join the prelude-devel mailing list and send a mail describing what you want to do and how you want to do it so you don't waste time working on something we can't integrate. This also allows us to keep track of what's being worked on so efforts aren't duplicated. prelude-correlator-5.2.0/INSTALL0000644000000000000000000000211413726164407016327 0ustar rootroot00000000000000Installation Instructions ************************* Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without warranty of any kind. Dependencies ============ Build requires: - python >= 2.6 (not python 3.x) - python-setuptools Run requires: - python >= 2.6 (not python 3.x) - python-netaddr - python-setuptools - libprelude with python bindings Basic Installation ================== Briefly, the shell commands `python setup.py install' should configure, build, and install this package. See the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. Go to https://www.prelude-siem.org/projects/prelude/wiki/InstallingPreludeCorrelator for more installation instructions. prelude-correlator-5.2.0/MANIFEST.in0000644000000000000000000000030013726164407017027 0ustar rootroot00000000000000include AUTHORS include COPYING include HACKING.README include NEWS include README include INSTALL include prelude-correlator.conf graft preludecorrelator graft selinux graft rules graft data prelude-correlator-5.2.0/NEWS0000644000000000000000000004310713726164407016004 0ustar rootroot00000000000000* 2020-09-09, prelude-correlator-5.2.0: No new changes. * 2020-08-18, prelude-correlator-5.2.0rc3: Author: Antoine Luong - Take timeout into account for CTI data * 2020-08-04, prelude-correlator-5.2.0rc2: Author: Antoine Luong - Change company name * 2020-07-23, prelude-correlator-5.2.0rc1: Author: Antoine Luong - Fix DownloadCache initialization * 2020-06-30, prelude-correlator-5.2.0beta2: Author: Antoine Luong - Add SELinux rule for service startup * 2020-06-19, prelude-correlator-5.2.0beta1: Author: Camille Gardet - Add 'CTI' in CTI related alerts Author: Thomas Andrejak - Change 300s to 20s for CTI correlation rules Author: Antoine Luong - Fix grouping option with listed path - Avoid undefined analyzerid when referencing alerts * 2019-09-13, prelude-correlator-5.1.0: Author: Antoine Luong - Add metadata for rules * 2019-09-04, prelude-correlator-5.1.0rc1: Author: Antoine Luong - Add a correlation grouping option Author: Song Tran - Document the 'filename' option for CTI rules - Update default CTI data Author: Yoann Vandoorselaere - Do not reset timer on update by default * 2019-07-17, prelude-correlator-5.1.0beta1: No new changes. * 2019-03-15, prelude-correlator-5.1.0alpha1: Author: Antoine Luong - Fix meta-correlation - Fix context constructor signature Author: Augustin Laville - Replace optparse with argparse Author: Yoann Vandoorselaere - Fix python 3 compatibility * 2018-09-07, prelude-correlator-5.0.0: No new changes. * 2018-08-17, prelude-correlator-5.0.0rc1: Author: Antoine Luong - Allow local meta-correlation - Provide the rule ID in correlation alerts - Stop using ez_setup.py Author: Yoann Vandoorselaere - Environment should be globally available - Implement a plugin state saving method Author: Thomas Andrejak - Fix python 3 compatibility * 2018-05-04, prelude-correlator-5.0.0beta2: * 2018-04-13, prelude-correlator-5.0.0beta1: No new changes. * 2018-02-09, prelude-correlator-4.2.0rc1: Author: Antoine Luong - Fix context destruction while iterating - Add flake8 rules and make the code PEP-8 valid * 2017-07-21, prelude-correlator-4.1.0: Author: Thomas Andrejak - Add support for key:value out of a config section Author: Antoine Luong - Avoid displaying a traceback * 2017-07-13, prelude-correlator-4.1.0rc2: Author: Antoine Luong - Allow passing prelude-specific options in configuration * 2017-06-30, prelude-correlator-4.1.0rc1: * 2017-06-23, prelude-correlator-4.1.0beta2: * 2017-06-16, prelude-correlator-4.1.0beta1: No new changes. * 2017-02-16, prelude-correlator-4.0.0: No new changes. * 2017-02-12, prelude-correlator-4.0.0rc3: Author: Thomas Andrejak - Fix Python 3 compatibility Author: Camille Gardet - Fix CIArmy config keyword * 2017-02-03, prelude-correlator-4.0.0rc2: Author: Song Tran - Add INSTALL file * 2017-01-27, prelude-correlator-4.0.0rc1: * 2017-01-12, prelude-correlator-4.0.0beta2: * 2016-12-23, prelude-correlator-4.0.0beta1: No new changes. * 2016-09-14, prelude-correlator-3.1.0: * 2016-09-01, prelude-correlator-3.1.0rc3: * 2016-08-19, prelude-correlator-3.1.0rc2: No new changes. * 2016-08-05, prelude-correlator-3.1.0rc1: Author: Antoine Luong - Prevent potential import errors when loading contexts - Rename analyzer model to 'Prelude Correlator' - Minor fixes in exception handling Author: Thomas Andrejak - Make the context able to access plugins - Disable flatten when getting alert.source(*) in BruteForce - Missing import in prelude-correlator plugin manager Author: Abdel Elmili - Add --profile option to prelude-correlator The goal of adding this option is to allow operators to run more than one correlator on the same host. Each correlator will use a different profile. Author: Sélim Menouar - Clearly separate File and IDMEFClient inputs * 2016-04-22, prelude-correlator-3.0.0: No new changes. * 2016-04-15, prelude-correlator-3.0.0rc4: Author: François Poirotte - Re-enable SpamHaus plugin & add warning * 2016-04-08, prelude-correlator-1.3.0rc3: Author: Thomas Andrejak - Add CIArmy blacklist like DShield or Spamhaus - Fix download() with text/plain files * 2016-04-01, prelude-correlator-1.3.0rc2: Author: Yoann Vandoorselaere - Fix incorrect aggregation in some corner case Author: François Poirotte - Single alert for hosts with multiple IPs * 2016-03-25, prelude-correlator-1.3.0rc1: Author: Yoann Vandoorselaere - Pickle compatibility for IDMEF object Author: Louis-David Gabet - Comment python_rules section by default * 2016-03-18, prelude-correlator-1.3.0beta2: Author: Louis-David Gabet - Fix 'python_rules' section error Author: Thomas Andrejak - Fix wrong access to entrypoint name * 2016-03-01, prelude-correlator-1.3.0beta1: Author: Song Tran - Add additional SELinux policies Author: Thomas Andrejak - Load plugins from entrypoints and directories - The README in conf.d was not the right file - Change prelude-ids.com to prelude-siem.com * 2016-01-11, prelude-correlator-1.3.0alpha1: Author: Louis-David Gabet - Add include section to configuration file to allow independent configuration files for plugins Author: Antoine Luong - Correct download address parameter in conf Author: Song Tran - Add SELinux policy for prelude-correlator * 2015-07-31, prelude-correlator-1.2.6: No new changes. * 2015-07-27, prelude-correlator-1.2.6rc5: Author: Antoine Luong - Disable SpamhausDrop rule by default - Add the -D shortcut for debug mode, to be consistent with other Prelude modules - Update dshield.dat and spamhaus_drop.dat * 2014-10-27, prelude-correlator-1.2.6rc4: Author: Yoann Vandoorselaere - Reset IDMEF CreateTime when sending an alert - Fix possible exception in case of download failure - Minor fixes * 2014-09-23, prelude-correlator-1.2.6rc2: Author: Yoann Vandoorselaere - Rework exception flow - Verify plugin enable/disable attribute before entrypoint loading Allow the user to disable a plugin before the entrypoint is called (useful if the plugin entrypoint triggers, for example, an exception). - Remove semi broken EGG support for now, improve require API for future use - Namespace support - Corrected permissions checking - Remove uppercase from package name, as specified in PEP8 - Update for latest libprelude bindings API changes High level bindings in libprelude are now the standard, and got renamed from "PreludeEasy" to "prelude". Method names were also renamed. - Python3 compatibility work * 2014-09-16, prelude-correlator-1.2.6rc1: Author: Yoann Vandoorselaere - Fix problem with --root installation, and --prefix=/ - Syslog logging fallback to UDP localhost if no socket is found - Various timer fixes - Timers added multiple times on reset - Timers with negative expiration time not initialized correctly - Unnecessary traversal of the timer list on reset - Introduce a new DownloadCache, used by Dshield and Spamhaus plugin - Prevent traceback on profile error * 2014-07-07, prelude-correlator-1.2.5: - Improved exception handling - Support IDMEF Alert merge, to avoid CorrelationAlert listing the same source multiples times - Allow pluginmanager API to be used with multiples entrypoints A Prelude-Correlator plugin may now use the pluginmanager API with their own entrypoint to load their own sub-plugins. - Allow plugin to specify a list of conflicting plugins Using this interface, a plugin can now provide a list of other plugins that conflict with him, and that shouldn't be loaded. Additionally, provide a way for the user to force loading of a plugin that was disabled because of a conflict (using enable = force in the configuration section for the plugin). - Add autoload attribute to the generic Plugin class This attribute controls whether PluginManager() will directly load a given plugin or only references the plugin class for later loading. Default behavior is to load the plugins. - Various timer improvements - Add an option to read IDMEF input from file, within the given offset / limit - Add a stats() function which can be used by a plugin to provide statistics printing - Implement GetAdditionalDataByMeaning() method - Always retrieve the current time when no argument is supplied - Add --disabledl option to setup.py sdist Downloading Spamhaus database need real user-agent, using Mozilla 5 - Logging fixes, using Python logging API - Add the ability to set debug log level - Updated dshield.dat, spamhaus_drop.dat - Removed rhel6 packaging * 2013-09-20, prelude-correlator-1.0.2: - setup.py : Fixed files downloading behind proxies - RHEL : Added missing dependency to python-setuptools - RHEL : Fixed #517 : Prelude Correlator not starting (SELinux) - RHEL : Fixed #494 : Prelude Correlator not stopping - Added some debug infos * 2012-06-01, prelude-correlator-1.0.1: - Fixed #494 : Prelude Correlator not stopping - Changed Copyright - Added packaging for rhel6 - Ability to specify an input IDMEF criteria There is now a [general] configuration section in prelude-correlator.conf allowing to specify a criteria option that use an IDMEF criteria parameter as an argument. Using this option, it is possible to specify an input filter for events to be processed by the correlator. Additionally, always use an IDMEFCriteria to check whether the input event is an alert, in place of manually retrieving alert.create_time. - Fixed some typo - Implement Context time merging capability Introduced time merging capability within Prelude-Correlator: as of now, correlation contexts are associated with the time of the triggering IDMEF event. When searching for a matching context, an existing context will only be returned in case the specified search time match the time windows of an existing context. This mean that when receiving a burst of events, the time carried with events is directly taken into account : separate instances exists for the same Context associated with events received at a different time. Additionally, context can be merged if more than one context time windows overlap. * 2010-03-16, prelude-correlator-1.0.0: - When Prelude-Correlator is started as a daemon, make sure we use syslog for logging. - Fix an exception when adding an alert with no source or target to the generated Correlation alert, by Frédéric Yhuel - Do not generate Brute Force CorrelationAlert for multiples successful authentication. - Workaround documentation installation problem. * 2010-03-08, prelude-correlator-1.0.0rc4: - Fix installation problem (#372). * 2010-03-05, prelude-correlator-1.0.0rc3: - Prelude-Correlator wasn't properly updating context (and thus, didn't generate correlation events) since context identifiers were escaped twice. - Prevent exception when Prelude-Correlator attempt to restore contexts from an earlier Prelude-Correlator version, and that the context internal attributes have changed. - A sample-plugin example has been included in the distribution. * 2010-02-01, prelude-correlator-1.0.0rc2: - Fix generated tarball name, so that the package might easily be included in various distribution for testing. * 2010-01-29, prelude-correlator-1.0.0rc1: - [Firewall]: The plugin will now report CorrelationAlert for events / sets of events that appear to have passed through a firewall known to protect the target machine. If no firewall ever emit block concerning a given host, then this host is considered un-protected, and there is no point in reporting CorrelationAlert. - [OpenSSHAuth]: The plugin has been modified so that it can now generate a single CorrelationAlert for multiples authentication method used in a given time slice. - [Spamhaus]: The plugin has been modified so that it can now generate a single CorrelationAlert for multiples events received from the same source. - [BruteForce]: Various improvement, do not limit the number of events the plugin is able to report in a single CorrelationAlert. - [Scan]: do not limit the number of events the plugin is able to report in a single CorrelationAlert. - Context initialization now take an optional 'overwrite' argument. This argument, if set to False, mean that the Context() will be returned un-modified if it already exist. If it doesn't, it will be created. - New Context.update() method, which provide exactly the same functionality as calling Context() with the 'update=True' argument. This is useful since some plugin need to defer an update to another place in the code. - If the context creation/update function is called with an IDMEF message parameter, then we automatically call addAlertReference on the context CorrelationAlert using the provided message as the parameter. - Make it possible to change context option on update - Automatically set CorrelationAlert DetectTime : reported CorrelationAlert DetectTime now match the time of the first event that was detected. - Make it possible for plugin to specify a function to be called on Timer expiration. - Disable BusinessHour correlation by default since it is very verbose - Various bug fixes. * 2009-11-03, prelude-correlator-0.9.0-beta8: - Include spamhaus_drop.dat in the source distribution. Fix installation issue (closes #364). * 2009-11-02, prelude-correlator-0.9.0-beta7: - Initial SpamhausDrop plugin implementation, by Wes Young (closes #363) - Do not discard --root parameters if prefix is absolute. - Python 2.4 backward compatibility fixes. - Handle plugin loading error gracefully. - Improve WormPlugin accuracy, and make it carry a reference to the initial event. The plugin used to alert when seeing an alert to a given target, and this same alert going back to the source. This can happen in a number of case (example: Netbios alert triggered by Snort) As of now, the plugin will wait for the events to be repeated against at least 5 differents hosts. - Dshield CorrelationAlert now handle multiples events. Previously, we used to generate a single Dshield CorrelationAlert for each events where the source address would match the Dshield database. The plugin now generate CorrelationAlert for multiples events received from the same source. * 2009-07-09, prelude-correlator-0.9.0-beta6: - Provide a default configuration file, and fixes the prelude-correlator --config option. - A rare exception could occur when IDMEF:Set() was called with an empty list/tuple as the value argument. - Normalize libprelude logging through our own log callback (only enabled if libprelude >= 0.9.24 is installed). - The DShield plugin didn't report any events since address loaded from the DShield database weren't correctly normalized. - Automatic download + reloading of the DShield database was fixed. - DShield generated alerts now include additional details. - Make it possible to specify your own DShield database file, and to prevent automatic download. This is useful on system with no direct internet access. - Handle both standard installation, and EGG installation method (in EGG mode, configuration and data files are self contained). - Introduce a new plugin logging mechanism. - Add some utility method to the Timer class. - Make it possible for plugin to define a 'signal' method that will get called when prelude-correlator handle a signal (can be used to perform special handling before exit, statistics or debugging purposes). * 2009-06-18, prelude-correlator-0.9.0-beta5: - A bug prevented prelude-correlator from starting in daemon mode when using the '--pidfile' option. Fixes #355. - Prevent prelude-correlator from abording if a plugin fail. Emit a warning explaining why a given plugin couldn't load, and continue processing. - Implement a timeout for Dshield.org server connection. The default is 10 seconds, and might be modified from the prelude-correlator.conf configuration file. This prevent Dshield host list loading from blocking forever, and fixes #353. - Make it possible to disable plugin (fixes #354), by adding the following setting in prelude-correlator.conf: [PluginClassName] disable = true - Read plugin configuration from prelude-correlator.conf - Use the Python logging facility. - Correct copyright notice, add missing AUTHORS, COPYING, HACKING.README files. * 2009-06-17, prelude-correlator-0.9.0-beta4: - Initial Python Correlator version. Rationale for the switch available here: http://lists.prelude-ids.org/pipermail/prelude-user/2009-April/005163.html - Support DShield correlation! * 2008-07-11, prelude-correlator-0.9.0-beta3: - Add missing AUTHORS file. - Allow setting 'nil' IDMEF value using IDMEF:set() (#297). - Fix ctx:set() typo in the business-hour.lua rulese (#297). * 2008-07-03, prelude-correlator-0.9.0-beta2: - Fix issues with the business-hour ruleset, that tried updating a non existing context. This rule does not need a context at all, rather a simple IDMEF object is sufficiant. - Always return a table when retrieving multiple path (even with empty path). Fix #295. - Correct multi-path detection (was not working with exactly two IDMEF path). - Fix invalid installation path under certain conditions, thanks to Steve Grubb for pointing that out. * 2008-06-27, prelude-correlator-0.9.0-beta1b: - Fix invalid installation path under certain conditions. * 2008-06-27, prelude-correlator-0.9.0-beta1a: - Always use $(DESTDIR) when installing files. - Check for lua.pc as well as lua5.1.pc, since different distribution seems to be using different default. * 2008-06-27, prelude-correlator-0.9.0-beta1: - First Prelude-Correlator release. prelude-correlator-5.2.0/README0000644000000000000000000000271313726164407016163 0ustar rootroot00000000000000Prelude-Correlator: The Prelude-Correlator. Prelude-Correlator is brought to you by CS GROUP (http://www.csgroup.eu). Prelude-Correlator Overview =========================== Prelude-Correlator allows conducting multistream correlations thanks to a powerful programming language for writing correlation rules. With any type of alert able to be correlated, event analysis becomes simpler, quicker and more incisive. IRC === If there's something you just can't find out elsewhere, you want to give feedback directly to the authors or you're just bored, visit #prelude on irc.freenode.net Get Support =========== Prelude-user forums can be accessed at: https://www.prelude-siem.org/projects/prelude/boards Commercial Support is available through the CS GROUP - France company: https://www.prelude-siem.com, contact.prelude@csgroup.eu Help development ================ 1. SUBMITTING PATCHES The Prelude source is constantly changing. If you want to submit a patch, please do so from the most recent GIT source tree, subscribe to the prelude-devel forum and post your patch with a description of functionality. You can also attach patches to bugs on https://www.prelude-siem.org 2. BUGS If you find any bugs, please report them to: https://www.prelude-siem.org Please make sure that what you're reporting is actually a BUG and not a problem on your side. 3. SUGGESTIONS Subscribe to prelude-devel and give us your suggestions. prelude-correlator-5.2.0/prelude-correlator.conf0000644000000000000000000000656013726164407021770 0ustar rootroot00000000000000# This is a template configuration file for prelude-correlator # include = /etc/prelude/default/idmef-client.conf [general] # # Only attempt to correlate input events that match the following criteria: # criteria = # # Only correlate input events sharing the same value for the following path. # Note that this feature should be used with caution, as the number of # contexts will rise with the number of different existing values. # grouping = # Plugin configuration: # # [BruteForcePlugin] # disable = false # # Disable BusinessHour correlation by default since it is very verbose [BusinessHourPlugin] disable = true # # [OpenSSHAuthPlugin] # disable = false # # [EventScanPlugin] # disable = false # # [EventStormPlugin] # disable = false # # [EventSweepPlugin] # disable = false # # [WormPlugin] # disable = false # repeat-target = 5 # # [CIArmyPlugin] # disable = false # # How often in seconds the CIArmy database should be reloaded (download + reload) # (default: once a week). 0 to disable reloading. # reload = 604800 # # The address to load the CIArmy database from: # uri = http://cinsscore.com/list/ci-badguys.txt # # Define the maximum allowed time for downloading the database # timeout = 10 # # Define the path to the database file # filename = /var/lib/prelude-correlator/prelude-correlator/ciarmy.dat # # [DshieldPlugin] # disable = false # # How often the Dshield database should be reloaded (download + reload) # (default: once a week). 0 to disable reloading. # reload = 604800 # # The address to load the Dshield database from: # uri = http://www.dshield.org/ipsascii.html?limit=10000 # # Define the maximum allowed time for downloading the database # timeout = 10 # # Define the path to the database file # filename = /var/lib/prelude-correlator/prelude-correlator/dshield.dat # [SpamhausDropPlugin] # # Note: the python-netaddr package is required for this plugin to work. # Also, versions 0.7.10 to 0.7.15 (inclusive) are known to be very slow # due to a bug in python-netaddr. # See https://github.com/drkjam/netaddr/issues/94 for more information # # disable = true # # How often the Spamhaus database should be reloaded (download + reload) # (default: once a week). 0 to disable reloading. # reload = 604800 # # The address to load the Spamhaus database from: # uri = http://www.spamhaus.org/drop/drop.txt # # Define the maximum allowed time for downloading the database # timeout = 10 # # Define the path to the database file # filename = /var/lib/prelude-correlator/prelude-correlator/spamhaus_drop.dat # # This plugin will report CorrelationAlert for events / sets of events # that appear to have passed through a firewall known to protect the # target machine. # # If no firewall ever emit block concerning a given host, then this host # is considered un-protected, and there is no point in reporting # CorrelationAlert. # # The 'flush-protected-hosts' variable allow you to define how much # time a given target hosts should be considered as protected when a # firewall drop is noticed for this machine. # # The plugin is disabled by default since it tend to be very verbose [FirewallPlugin] disable = True flush-protected-hosts = 3600 # [python_rules] # Python rules folder # paths = /etc/prelude-correlator/rules/python # Logging configuration might also be defined in this file: # http://docs.python.org/library/logging.html # Include additional configuration files [include] conf.d/*.conf prelude-correlator-5.2.0/setup.py0000644000000000000000000001347113726164407017020 0ustar rootroot00000000000000#!/usr/bin/env python # Copyright (C) 2009-2020 CS GROUP - France. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import os from setuptools import setup, find_packages from setuptools.command.install import install from setuptools.command.sdist import sdist try: import urllib.request as urlreq except: import urllib2 as urlreq PRELUDE_CORRELATOR_VERSION = "5.2.0" class my_sdist(sdist): user_options = sdist.user_options + [('disabledl', None, "Disable the download of databases")] disabledl = False def _downloadDatabase(self, dname, url, filename): print("Downloading %s database, this might take a while..." % (dname)) req = urlreq.Request(url) req.add_header('User-agent', 'Mozilla 5.10') r = urlreq.urlopen(req) fd = open(filename, "w") fd.write(r.read()) fd.close() def __init__(self, *args, **kwargs): fin = os.popen('git log --summary --stat --no-merges --date=short', 'r') fout = open('ChangeLog', 'w') fout.write(fin.read()) fout.close() sdist.__init__(self, *args) def run(self): if self.disabledl: print("Automatic downloading of databases is disabled.") print("As a result, they won't be included in the generated source distribution.") else: self._downloadDatabase("DShield", "http://www.dshield.org/ipsascii.html?limit=10000", "rules/dshield.dat") self._downloadDatabase("Spamhaus", "http://www.spamhaus.org/drop/drop.lasso", "rules/spamhaus_drop.dat") self._downloadDatabase("CIArmy", "http://cinsscore.com/list/ci-badguys.txt", "rules/ciarmy.dat") sdist.run(self) class my_install(install): def run(self): for dirname, flist in self.distribution.data_files: prefix = self.prefix if self.prefix == "/usr": prefix = os.sep destdir = os.path.join(os.path.normpath((self.root or '') + prefix), dirname) self.mkpath(destdir) for f in flist: dest = os.path.join(destdir, os.path.basename(f)) if dest[-4:] == "conf" and os.path.exists(dest): dest += "-dist" self.copy_file(f, destdir) self.distribution.data_files = [] self.init_siteconfig(prefix) install.run(self) os.remove("preludecorrelator/siteconfig.py") def init_siteconfig(self, prefix): config = open("preludecorrelator/siteconfig.py", "w") config.write("conf_dir = '%s'\n" % os.path.abspath(prefix + "/etc/prelude-correlator")) config.write("lib_dir = '%s'\n" % os.path.abspath(prefix + "/var/lib/prelude-correlator")) config.close() setup( name="prelude-correlator", version=PRELUDE_CORRELATOR_VERSION, maintainer="Prelude Team", maintainer_email="support.prelude@csgroup.eu", author="Yoann Vandoorselaere", author_email="yoannv@gmail.com", license="GPL", url="https://www.prelude-siem.org", download_url="https://www.prelude-siem.org/projects/prelude/files", description="Prelude-Correlator perform real time correlation of events received by Prelude", long_description=""" Prelude-Correlator perform real time correlation of events received by Prelude. Several isolated alerts, generated from different sensors, can thus trigger a single CorrelationAlert should the events be related. This CorrelationAlert then appears within the Prewikka interface and indicates the potential target information via the set of correlation rules. Signature creation with Prelude-Correlator is based on the Python programming language. Prelude's integrated correlation engine is distributed with a default set of correlation rules, yet you still have the opportunity to modify and create any correlation rule that suits your needs. """, classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: System Administrators", "License :: OSI Approved :: GNU General Public License (GPL)", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Security", "Topic :: System :: Monitoring" ], packages=find_packages(".", exclude=["rules"]), entry_points={ 'console_scripts': [ 'prelude-correlator = preludecorrelator.main:main', ], 'preludecorrelator.plugins': [ ] }, package_data={}, data_files=[ ("etc/prelude-correlator", ["prelude-correlator.conf"]), ("etc/prelude-correlator/conf.d", ['data/conf.d/README']), ("etc/prelude-correlator/rules/python", [ os.path.join('rules', x) for x in os.listdir('rules') if x.endswith('.py') ]), ("var/lib/prelude-correlator/prelude-correlator", [ os.path.join('rules', x) for x in os.listdir('rules') if x.endswith('.dat') ]) ], install_requires=["prelude >= 5.2.0"], cmdclass={ 'sdist': my_sdist, 'install': my_install } ) prelude-correlator-5.2.0/PKG-INFO0000644000000000000000000000300413726164430016366 0ustar rootroot00000000000000Metadata-Version: 1.1 Name: prelude-correlator Version: 5.2.0 Summary: Prelude-Correlator perform real time correlation of events received by Prelude Home-page: https://www.prelude-siem.org Author: Prelude Team Author-email: support.prelude@csgroup.eu License: GPL Download-URL: https://www.prelude-siem.org/projects/prelude/files Description: Prelude-Correlator perform real time correlation of events received by Prelude. Several isolated alerts, generated from different sensors, can thus trigger a single CorrelationAlert should the events be related. This CorrelationAlert then appears within the Prewikka interface and indicates the potential target information via the set of correlation rules. Signature creation with Prelude-Correlator is based on the Python programming language. Prelude's integrated correlation engine is distributed with a default set of correlation rules, yet you still have the opportunity to modify and create any correlation rule that suits your needs. Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Console Classifier: Intended Audience :: System Administrators Classifier: License :: OSI Approved :: GNU General Public License (GPL) Classifier: Natural Language :: English Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Topic :: Security Classifier: Topic :: System :: Monitoring prelude-correlator-5.2.0/setup.cfg0000644000000000000000000000025513726164430017117 0ustar rootroot00000000000000[flake8] exclude = .git,__pycache__,build max_line_length = 120 builtins = env format = pylint statistics = True [egg_info] tag_build = tag_date = 0 tag_svn_revision = 0